[richfaces-svn-commits] JBoss Rich Faces SVN: r13595 - trunk/docs/common-resources/en/src/main/xslt.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Apr 15 08:28:09 EDT 2009


Author: artdaw
Date: 2009-04-15 08:28:08 -0400 (Wed, 15 Apr 2009)
New Revision: 13595

Modified:
   trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml-diffmk.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml-release.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml-single-diffmk.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml-single-release.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml-single.xsl
   trunk/docs/common-resources/en/src/main/xslt/xhtml.xsl
Log:
https://jira.jboss.org/jira/browse/RF-5655 - XSL files were fixed

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-common.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -198,11 +198,11 @@
     </xsl:choose>
 </xsl:template>
 
-<xsl:template name="header.navigation.multiPage">
+<xsl:template name="header.navigation">
 	<xsl:param name="prev" select="/foo"/>
 	<xsl:param name="next" select="/foo"/>
 	<xsl:param name="nav.context"/>
-	<xsl:param name="nightly" select="0"/>
+	
 	<xsl:variable name="home" select="/*[1]"/>
 	<xsl:variable name="up" select="parent::*"/>
 	<xsl:variable name="row1" select="$navig.showtitles != 0"/>
@@ -289,8 +289,7 @@
 	</xsl:if>
 </xsl:template>
 
- <xsl:template name="book.titlepage.recto.singlePage">
-	  <xsl:param name="nightly" select="0"/>
+ <xsl:template name="book.titlepage.recto">
 			<xsl:if test="$nightly &gt; 0">
 				<div id="overlay">
 					<xsl:text> </xsl:text>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-diffmk.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-diffmk.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-diffmk.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -13,10 +13,8 @@
 	   
 	<xsl:param name="chunk.fast" select="1"/>
 	<xsl:param name="html.stylesheet" select="'css/html-release.css'"/>
-		
-	<xsl:template name="header.navigation">
-		<xsl:call-template name="header.navigation.multiPage" />
-	</xsl:template>
+	<xsl:variable name="nightly" select="0" />		
+
 	<xsl:template name="chunk">
 		<xsl:call-template name="chunkerdoc" />
 	</xsl:template>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-release.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-release.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-release.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -13,10 +13,8 @@
 	  
 	<xsl:param name="chunk.fast" select="1"/>
 	<xsl:param name="html.stylesheet" select="'css/html-release.css'"/>
+	<xsl:variable name="nightly" select="0" />
 
-	<xsl:template name="header.navigation">
-		<xsl:call-template name="header.navigation.multiPage" />
-	</xsl:template>
 	<xsl:template name="chunk">
 		<xsl:call-template name="chunkerdoc" />
 	</xsl:template>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-single-diffmk.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-single-diffmk.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-single-diffmk.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -10,8 +10,5 @@
 	<xsl:import href="classpath:/xslt/org/jboss/xhtml-single.xsl"/>
 	<xsl:import href="xhtml-common-reldiffmk.xsl"/>
 	<xsl:param name="html.stylesheet" select="'css/html-release.css'"/>
-	
-	<xsl:template name="book.titlepage.recto">
-		<xsl:call-template name="book.titlepage.recto.singlePage" />
-	</xsl:template>
+	<xsl:variable name="nightly" select="0" />	
 </xsl:stylesheet>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-single-release.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-single-release.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-single-release.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -12,9 +12,6 @@
 	<xsl:import href="xhtml-common-reldiffmk.xsl"/>
 
 	<xsl:param name="html.stylesheet" select="'css/html-release.css'"/>
-	  
-	<xsl:template name="book.titlepage.recto">
-		<xsl:call-template name="book.titlepage.recto.singlePage" />
-	</xsl:template>
+	<xsl:variable name="nightly" select="0" />
 
 </xsl:stylesheet>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml-single.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml-single.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml-single.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -11,11 +11,6 @@
 <xsl:import href="classpath:/xslt/org/jboss/xhtml-single.xsl"/>
 <xsl:import href="xhtml-common.xsl"/>
 <xsl:param name="html.stylesheet" select="'css/html.css'"/>
+<xsl:variable name="nightly" select="1" />
 
-<xsl:template name="book.titlepage.recto">
-	<xsl:call-template name="book.titlepage.recto.singlePage">
-		 <xsl:with-param name="nightly" select="1" />
-	</xsl:call-template>
-</xsl:template>
-
 </xsl:stylesheet>

Modified: trunk/docs/common-resources/en/src/main/xslt/xhtml.xsl
===================================================================
--- trunk/docs/common-resources/en/src/main/xslt/xhtml.xsl	2009-04-15 11:35:20 UTC (rev 13594)
+++ trunk/docs/common-resources/en/src/main/xslt/xhtml.xsl	2009-04-15 12:28:08 UTC (rev 13595)
@@ -13,12 +13,8 @@
 	   
 	<xsl:param name="chunk.fast" select="1"/>
 	<xsl:param name="html.stylesheet" select="'css/html.css'"/>
-		
-	<xsl:template name="header.navigation">
-		<xsl:call-template name="header.navigation.multiPage">
-			 <xsl:with-param name="nightly" select="1" />
-		</xsl:call-template>
-	</xsl:template>
+	<xsl:variable name="nightly" select="1" />
+
 	<xsl:template name="chunk">
 		<xsl:call-template name="chunkerdoc" />
 	</xsl:template>




More information about the richfaces-svn-commits mailing list