Author: steve.ebersole(a)jboss.com
Date: 2009-06-23 01:54:56 -0400 (Tue, 23 Jun 2009)
New Revision: 16879
Added:
hibernate-jdocbook-style/trunk/src/main/xslt/
hibernate-jdocbook-style/trunk/src/main/xslt/org/
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/common.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/eclipse.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/fop1.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/pdf.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-common.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl
Modified:
hibernate-jdocbook-style/trunk/pom.xml
Log:
consolidate style+xslt into just style & prep for 2.0.0 release
Modified: hibernate-jdocbook-style/trunk/pom.xml
===================================================================
--- hibernate-jdocbook-style/trunk/pom.xml 2009-06-23 05:46:34 UTC (rev 16878)
+++ hibernate-jdocbook-style/trunk/pom.xml 2009-06-23 05:54:56 UTC (rev 16879)
@@ -1,16 +1,39 @@
-<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<!--
+ ~ Copyright (c) 2009, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ -->
+<project
xmlns="http://maven.apache.org/POM/4.0.0"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-jdocbook-style</artifactId>
- <packaging>jdocbook-style</packaging>
- <version>2.0.0-SNAPSHOT</version>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-jdocbook-style</artifactId>
+ <packaging>jdocbook-style</packaging>
+ <version>2.0.0-SNAPSHOT</version>
- <name>Hibernate jDocBook Style Bundle</name>
- <description>
+ <name>Hibernate jDocBook Style Bundle</name>
+ <description>
The jDocBook style bundle for the Hibernate reference documentation.
- </description>
+ </description>
<url>http://hibernate.org</url>
<organization>
@@ -56,39 +79,67 @@
<
url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/hibernate-jdo...
</scm>
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-style-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.wst.css</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.wst.sse</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-fonts</artifactId>
+ <type>jdocbook-style</type>
<version>1.0.0</version>
- <extensions>true</extensions>
- </plugin>
- </plugins>
- </build>
+ </dependency>
+ </dependencies>
- <distributionManagement>
- <repository>
- <!-- Copy the dist to the local checkout of the JBoss maven2 repo
${maven.repository.root} -->
- <!-- It is anticipated that ${maven.repository.root} be set in user's
settings.xml -->
- <!-- todo : replace this with direct svn access once the svnkit providers are
available -->
- <id>repository.jboss.org</id>
- <url>file://${maven.repository.root}</url>
- </repository>
- <snapshotRepository>
- <id>snapshots.jboss.org</id>
- <name>JBoss Snapshot Repository</name>
- <
url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-style-plugin</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ <distributionManagement>
+ <repository>
+ <!-- Copy the dist to the local checkout of the JBoss maven2 repo
${maven.repository.root} -->
+ <!-- It is anticipated that ${maven.repository.root} be set in user's
settings.xml -->
+ <!-- todo : replace this with direct svn access once the svnkit providers
are available -->
+ <id>repository.jboss.org</id>
+ <url>file://${maven.repository.root}</url>
+ </repository>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <
url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
-
</project>
Added:
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/common.xsl
===================================================================
--- hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/common.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/common.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,49 @@
+<?xml version="1.0"?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <!-- copied largely from the work done by Mark Newton for the Seam documentation
-->
+
+ <xsl:param name="use.simplified.author.group" select="1"/>
+
+ <xsl:param name="callout.graphics.path">
+ <xsl:if test="$img.src.path != ''">
+ <xsl:value-of select="$img.src.path"/>
+ </xsl:if>
+ <xsl:text>images/org/hibernate/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/org/hibernate/docbook/</xsl:text>
+ </xsl:param>
+
+</xsl:stylesheet>
+
Added:
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/eclipse.xsl
===================================================================
--- hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/eclipse.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/eclipse.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,43 @@
+<?xml version='1.0'?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <!-- copied largely from the work done by Mark Newton for the Seam documentation
-->
+
+ <xsl:import href="classpath:/xslt/org/jboss/eclipse.xsl"/>
+ <xsl:import href="common.xsl"/>
+ <xsl:import href="xhtml-common.xsl"/>
+
+ <xsl:param name="html.stylesheet"
select="'css/hibernate-eclipse.css'"/>
+
+ <xsl:param name="eclipse.plugin.name">Hibernate
Help</xsl:param>
+ <xsl:param
name="eclipse.plugin.id">org.hibernate.help</xsl:param>
+ <xsl:param
name="eclipse.plugin.provider">Hibernate.org</xsl:param>
+
+</xsl:stylesheet>
+
Added: hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/fop1.xsl
===================================================================
--- hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/fop1.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/fop1.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,100 @@
+<?xml version='1.0'?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+
xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ version='1.0'>
+
+ <!-- this one taken verbatim from the Seam xslt -->
+
+ <xsl:template match="*" mode="fop1.outline">
+ <xsl:apply-templates select="*" mode="fop1.outline"/>
+ </xsl:template>
+
+ <xsl:template match="set|book|part|reference|
+ preface|chapter|appendix|article
+ |glossary|bibliography|index|setindex
+ |refentry
+ |sect1|sect2|sect3|sect4|sect5|section"
+ mode="fop1.outline">
+
+ <xsl:variable name="id">
+ <xsl:call-template name="object.id"/>
+ </xsl:variable>
+ <xsl:variable name="bookmark-label">
+ <xsl:apply-templates select="."
mode="object.title.markup"/>
+ </xsl:variable>
+
+ <!-- Put the root element bookmark at the same level as its children -->
+ <!-- If the object is a set or book, generate a bookmark for the toc -->
+
+ <xsl:choose>
+ <xsl:when test="parent::*">
+ <fo:bookmark internal-destination="{$id}"
starting-state="hide">
+ <fo:bookmark-title>
+ <xsl:value-of
select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
+ </fo:bookmark-title>
+ <xsl:apply-templates select="*"
mode="fop1.outline"/>
+ </fo:bookmark>
+ </xsl:when>
+ <xsl:otherwise>
+ <fo:bookmark internal-destination="{$id}"
starting-state="hide">
+ <fo:bookmark-title>
+ <xsl:value-of
select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
+ </fo:bookmark-title>
+ </fo:bookmark>
+
+ <xsl:variable name="toc.params">
+ <xsl:call-template name="find.path.params">
+ <xsl:with-param name="table"
select="normalize-space($generate.toc)"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <xsl:if test="contains($toc.params, 'toc')
+ and (book|part|reference|preface|chapter|appendix|article
+ |glossary|bibliography|index|setindex
+ |refentry
+ |sect1|sect2|sect3|sect4|sect5|section)">
+ <fo:bookmark internal-destination="toc...{$id}"
starting-state="hide">
+ <fo:bookmark-title>
+ <xsl:call-template name="gentext">
+ <xsl:with-param name="key"
select="'TableofContents'"/>
+ </xsl:call-template>
+ </fo:bookmark-title>
+ </fo:bookmark>
+ </xsl:if>
+ <xsl:apply-templates select="*"
mode="fop1.outline"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ <!--
+ <fo:bookmark internal-destination="{$id}"/>
+-->
+ </xsl:template>
+
+
+</xsl:stylesheet>
+
Added: hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/pdf.xsl
===================================================================
--- hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/pdf.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/pdf.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,133 @@
+<?xml version='1.0'?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0"
+
xmlns="http://www.w3.org/TR/xhtml1/transitional"
+
xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ exclude-result-prefixes="#default">
+
+ <!-- copied largely from the work done by Mark Newton for the Seam documentation
-->
+
+ <xsl:import href="classpath:/xslt/org/jboss/pdf.xsl"/>
+ <xsl:import href="common.xsl"/>
+ <xsl:import href="fop1.xsl" />
+
+ <xsl:import href="classpath:/xslt/org/jboss/xslt/fonts/pdf/fonts.xsl"
/>
+
+ <xsl:param name="title.font.family">
+ <xsl:variable name="font">
+ <xsl:call-template name="pickfont-sans"/>
+ </xsl:variable>
+ <xsl:message>
+ <xsl:text>Setting 'title.font.family' param
=</xsl:text><xsl:copy-of select="$font"/>
+ </xsl:message>
+ <xsl:copy-of select="$font"/>
+ </xsl:param>
+
+ <xsl:param name="body.font.family">
+ <xsl:variable name="font">
+ <xsl:call-template name="pickfont-sans"/>
+ </xsl:variable>
+ <xsl:message>
+ <xsl:text>Setting 'body.font.family' param
=</xsl:text><xsl:copy-of select="$font"/>
+ </xsl:message>
+ <xsl:copy-of select="$font"/>
+ </xsl:param>
+
+ <xsl:param name="monospace.font.family">
+ <xsl:variable name="font">
+ <xsl:call-template name="pickfont-mono"/>
+ </xsl:variable>
+ <xsl:message>
+ <xsl:text>Setting 'monospace.font.family' param
=</xsl:text><xsl:copy-of select="$font"/>
+ </xsl:message>
+ <xsl:copy-of select="$font"/>
+ </xsl:param>
+
+ <xsl:param name="sans.font.family">
+ <xsl:variable name="font">
+ <xsl:call-template name="pickfont-sans"/>
+ </xsl:variable>
+ <xsl:message>
+ <xsl:text>Setting 'sans.font.family' param
=</xsl:text><xsl:copy-of select="$font"/>
+ </xsl:message>
+ <xsl:copy-of select="$font"/>
+ </xsl:param>
+
+ <!-- Change the font color for titles to
Hibernate.org one -->
+ <xsl:param name="title.color">#4a5d75</xsl:param>
+ <xsl:param name="titlepage.color">#4a5d75</xsl:param>
+ <xsl:param name="chapter.title.color">#4a5d75</xsl:param>
+ <xsl:param name="section.title.color">#4a5d75</xsl:param>
+
+ <!-- Style tables to look like
SeamFramework.org
+ <xsl:param name="table.cell.border.color">#D3D2D1</xsl:param>
+ <xsl:param name="table.frame.border.color">#D3D2D1</xsl:param>
+ <xsl:param name="table.cell.border.thickness">0.6pt</xsl:param>
+
+ <xsl:param
name="table.frame.border.thickness">0.6pt</xsl:param>
+ <xsl:param
name="table.cell.border.right.color">white</xsl:param>
+ <xsl:param
name="table.cell.border.left.color">#D3D2D1</xsl:param>
+ <xsl:param
name="table.frame.border.right.color">white</xsl:param>
+ <xsl:param
name="table.frame.border.left.color">white</xsl:param>
+-->
+
+ <xsl:template name="table.cell.block.properties">
+ <!-- highlight this entry? -->
+ <xsl:if test="ancestor::thead or ancestor::tfoot">
+ <xsl:attribute name="font-weight">bold</xsl:attribute>
+ <xsl:attribute
name="background-color">#EDE8DB</xsl:attribute>
+ <xsl:attribute name="color">black</xsl:attribute>
+ </xsl:if>
+ </xsl:template>
+
+ <!--
+ From: fo/table.xsl
+ Reason: Table Header format
+ Version:1.72
+ -->
+ <!-- customize this template to add row properties -->
+ <xsl:template name="table.row.properties">
+ <xsl:variable name="bgcolor">
+ <xsl:call-template name="dbfo-attribute">
+ <xsl:with-param name="pis"
select="processing-instruction('dbfo')" />
+ <xsl:with-param name="attribute"
select="'bgcolor'" />
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:if test="$bgcolor != ''">
+ <xsl:attribute name="background-color">
+ <xsl:value-of select="$bgcolor" />
+ </xsl:attribute>
+ </xsl:if>
+ <xsl:if test="ancestor::thead or ancestor::tfoot">
+ <xsl:attribute
name="background-color">#EDE8DB</xsl:attribute>
+ </xsl:if>
+ </xsl:template>
+
+</xsl:stylesheet>
+
Added:
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-common.xsl
===================================================================
---
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-common.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-common.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,58 @@
+<?xml version="1.0"?>
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <xsl:param name="siteHref"
select="'http://www.hibernate.org'"/>
+ <xsl:param name="docHref"
select="'http://hibernate.org/Documentation/DocumentationOvervie...
+ <xsl:param name="siteLinkText"
select="'Hibernate.org'"/>
+<!--
+ <xsl:param name="use.id.as.filename">1</xsl:param>
+-->
+ <xsl:param
name="legalnotice.filename">legalnotice.html</xsl:param>
+
+ <xsl:template match="legalnotice" mode="chunk-filename">
+ <xsl:value-of select="$legalnotice.filename"/>
+ </xsl:template>
+
+ <xsl:template name="user.footer.content">
+ <HR/>
+ <a>
+ <xsl:attribute name="href">
+ <xsl:apply-templates select="//legalnotice[1]"
mode="chunk-filename"/>
+ </xsl:attribute>
+ <xsl:choose>
+ <xsl:when test="//book/bookinfo/copyright[1]">
+ <xsl:apply-templates
select="//book/bookinfo/copyright[1]" mode="titlepage.mode"/>
+ </xsl:when>
+ <xsl:when test="//legalnotice[1]">
+ <xsl:apply-templates select="//legalnotice[1]"
mode="titlepage.mode"/>
+ </xsl:when>
+ </xsl:choose>
+ </a>
+ </xsl:template>
+
+</xsl:stylesheet>
Added:
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl
===================================================================
---
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,39 @@
+<?xml version='1.0'?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <!-- copied largely from the work done by Mark Newton for the Seam documentation
-->
+
+ <xsl:import href="classpath:/xslt/org/jboss/xhtml-single.xsl"/>
+ <xsl:import href="common.xsl"/>
+ <xsl:import href="xhtml-common.xsl"/>
+
+ <xsl:param name="html.stylesheet"
select="'css/hibernate-single.css'"/>
+
+</xsl:stylesheet>
+
Added: hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl
===================================================================
--- hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl
(rev 0)
+++
hibernate-jdocbook-style/trunk/src/main/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl 2009-06-23
05:54:56 UTC (rev 16879)
@@ -0,0 +1,39 @@
+<?xml version='1.0'?>
+
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ ~
+ -->
+
+<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
+
+ <!-- copied largely from the work done by Mark Newton for the Seam documentation
-->
+
+ <xsl:import href="classpath:/xslt/org/jboss/xhtml.xsl"/>
+ <xsl:import href="common.xsl"/>
+ <xsl:import href="xhtml-common.xsl"/>
+
+ <xsl:param name="html.stylesheet"
select="'css/hibernate.css'"/>
+
+</xsl:stylesheet>
+