Author: newtonm
Date: 2008-04-18 05:26:33 -0400 (Fri, 18 Apr 2008)
New Revision: 7967
Added:
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/common.xsl
Log:
Forgot to add new common.xsl file during the refactoring commit.
Added:
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/common.xsl
===================================================================
---
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/common.xsl
(rev 0)
+++
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/common.xsl 2008-04-18
09:26:33 UTC (rev 7967)
@@ -0,0 +1,35 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2008 JBoss, a division of Red Hat
+ License: LGPL
+ Author: Mark Newton <mark.newton(a)jboss.org>
+-->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <xsl:param name="use.simplified.author.group" select="1"/>
+
+ <!-- XHTML settings -->
+ <xsl:param name="html.stylesheet"
select="'css/seamframework.css'"/>
+
+ <xsl:param name="siteHref"
select="'http://www.seamframework.org'"/>
+ <xsl:param name="docHref"
select="'http://www.seamframework.org/Documentation'"/>
+ <xsl:param name="siteLinkText"
select="'SeamFramework.org'"/>
+
+ <!-- XHTML and PDF -->
+ <xsl:param name="callout.graphics.path">
+ <xsl:if test="$img.src.path != ''">
+ <xsl:value-of select="$img.src.path"/>
+ </xsl:if>
+ <xsl:text>images/seamframework/docbook/callouts/</xsl:text>
+ </xsl:param>
+
+ <xsl:param name="admon.graphics.path">
+ <xsl:if test="$img.src.path != ''">
+ <xsl:value-of select="$img.src.path"/>
+ </xsl:if>
+ <xsl:text>images/seamframework/docbook/</xsl:text>
+ </xsl:param>
+
+</xsl:stylesheet>