[jboss-cvs] JBossAS SVN: r72005 - trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Apr 11 05:14:35 EDT 2008


Author: newtonm
Date: 2008-04-11 05:14:35 -0400 (Fri, 11 Apr 2008)
New Revision: 72005

Added:
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/jboss.xsl
Removed:
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl
Modified:
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl
   trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl
Log:
Renamed redhat.xsl to jboss.xsl

Copied: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/jboss.xsl (from rev 71562, trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl)
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/jboss.xsl	                        (rev 0)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/jboss.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -0,0 +1,86 @@
+<?xml version='1.0'?>
+ 
+<!--
+	Copyright 2007 Red Hat, Inc.
+	License: GPL
+	Author: Jeff Fearn <jfearn at redhat.com>
+	Author: Tammy Fox <tfox at redhat.com>
+	Author: Andy Fitzsimon <afitzsim at redhat.com>
+        Author: Mark Newton <mark.newton at jboss.org>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+				xmlns:exsl="http://exslt.org/common"
+				version="1.0"
+				exclude-result-prefixes="exsl">
+
+<!-- Modify the default navigation wording -->
+<xsl:param name="local.l10n.xml" select="document('')" />
+<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
+ <l:l10n language="en">
+  <l:gentext key="nav-home" text="Front page"/>
+ </l:l10n>
+</l:i18n>
+
+<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
+ <l:l10n language="en">
+  <l:gentext key="nav-up" text="Top of page"/>
+ </l:l10n>
+</l:i18n>
+
+<!-- titles after all elements -->
+<!-- <xsl:param name="formal.title.placement">
+figure after
+example after
+equation after
+table after
+procedure before 
+</xsl:param> -->
+
+<!--
+Copied from fo/params.xsl
+-->
+<xsl:param name="l10n.gentext.default.language" select="'en'"/>
+
+<!-- This sets the filename based on the ID.								-->
+<xsl:param name="use.id.as.filename" select="'1'"/>
+
+<xsl:template match="command">
+	<xsl:call-template name="inline.monoseq"/>
+</xsl:template>
+
+<xsl:template match="application">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guibutton">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guiicon">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guilabel">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guimenu">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guimenuitem">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="guisubmenu">
+	<xsl:call-template name="inline.boldseq"/>
+</xsl:template>
+
+<xsl:template match="filename">
+	<xsl:call-template name="inline.monoseq"/>
+</xsl:template>
+
+</xsl:stylesheet>
+
+

Modified: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl	2008-04-11 09:01:18 UTC (rev 72004)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-eclipse.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -19,7 +19,7 @@
 <!-- We need to override the imported html/chunk.xsl from eclipse/eclipse.xsl to generate valid XHTML -->
 <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/chunk.xsl"/>
 
-<xsl:include href="redhat.xsl"/>
+<xsl:include href="jboss.xsl"/>
 <xsl:include href="xhtml-common.xsl"/>
 <xsl:include href="highlight.xsl"/>
 

Modified: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl	2008-04-11 09:01:18 UTC (rev 72004)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-html.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -19,7 +19,7 @@
 <xsl:include href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/manifest.xsl"/>
 <xsl:include href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/chunk-code.xsl"/>
 
-<xsl:include href="redhat.xsl"/>
+<xsl:include href="jboss.xsl"/>
 <xsl:include href="xhtml-common.xsl"/>
 <xsl:include href="highlight.xsl"/>
 

Modified: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl	2008-04-11 09:01:18 UTC (rev 72004)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/main-pdf.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -23,7 +23,7 @@
 
 <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/fo/docbook.xsl"/>
 <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/fo/graphics.xsl"/>
-<xsl:import href="redhat.xsl"/>
+<xsl:import href="jboss.xsl"/>
 <xsl:import href="highlight-pdf.xsl"/>
 <xsl:import href="common.xsl" />
 

Modified: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl	2008-04-11 09:01:18 UTC (rev 72004)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/nochunk-html.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -16,7 +16,7 @@
 
 	<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.72.0/xhtml/docbook.xsl"/>
 
-	<xsl:include href="redhat.xsl"/>
+	<xsl:include href="jboss.xsl"/>
 	<xsl:include href="xhtml-common.xsl"/>
         <xsl:include href="highlight.xsl"/>
         

Deleted: trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl
===================================================================
--- trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl	2008-04-11 09:01:18 UTC (rev 72004)
+++ trunk/docbook-support/jbossorg-docbook-xslt/src/main/resources/xslt/org/jboss/redhat.xsl	2008-04-11 09:14:35 UTC (rev 72005)
@@ -1,86 +0,0 @@
-<?xml version='1.0'?>
- 
-<!--
-	Copyright 2007 Red Hat, Inc.
-	License: GPL
-	Author: Jeff Fearn <jfearn at redhat.com>
-	Author: Tammy Fox <tfox at redhat.com>
-	Author: Andy Fitzsimon <afitzsim at redhat.com>
-        Author: Mark Newton <mark.newton at jboss.org>
--->
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-				xmlns:exsl="http://exslt.org/common"
-				version="1.0"
-				exclude-result-prefixes="exsl">
-
-<!-- Modify the default navigation wording -->
-<xsl:param name="local.l10n.xml" select="document('')" />
-<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
- <l:l10n language="en">
-  <l:gentext key="nav-home" text="Front page"/>
- </l:l10n>
-</l:i18n>
-
-<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
- <l:l10n language="en">
-  <l:gentext key="nav-up" text="Top of page"/>
- </l:l10n>
-</l:i18n>
-
-<!-- titles after all elements -->
-<!-- <xsl:param name="formal.title.placement">
-figure after
-example after
-equation after
-table after
-procedure before 
-</xsl:param> -->
-
-<!--
-Copied from fo/params.xsl
--->
-<xsl:param name="l10n.gentext.default.language" select="'en'"/>
-
-<!-- This sets the filename based on the ID.								-->
-<xsl:param name="use.id.as.filename" select="'1'"/>
-
-<xsl:template match="command">
-	<xsl:call-template name="inline.monoseq"/>
-</xsl:template>
-
-<xsl:template match="application">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guibutton">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guiicon">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guilabel">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guimenu">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guimenuitem">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guisubmenu">
-	<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="filename">
-	<xsl:call-template name="inline.monoseq"/>
-</xsl:template>
-
-</xsl:stylesheet>
-
-




More information about the jboss-cvs-commits mailing list