From: Michael D. <mik...@us...> - 2004-10-20 18:08:52
|
Update of /cvsroot/nhibernate/nhibernate/doc/reference/en/styles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv982/en/styles Modified Files: html.xsl Log Message: worked on a little bit more. Index: html.xsl =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/doc/reference/en/styles/html.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** html.xsl 19 Oct 2004 04:32:02 -0000 1.1 --- html.xsl 20 Oct 2004 18:08:40 -0000 1.2 *************** *** 3,86 **** <!-- ! This is the XSL HTML configuration file for the Hibernate ! Reference Documentation. ! It took me days to figure out this stuff and fix most of ! the obvious bugs in the DocBook XSL distribution. Some of ! the workarounds might not be appropriate with a newer version ! of DocBook XSL. This file is released as part of Hibernate, ! hence LGPL licensed. ! chr...@hi... --> <!DOCTYPE xsl:stylesheet [ ! <!ENTITY db_xsl_path "../../support/docbook-xsl/"> ]> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ! version="1.0" ! xmlns="http://www.w3.org/TR/xhtml1/transitional" ! exclude-result-prefixes="#default"> ! <xsl:import href="&db_xsl_path;/html/docbook.xsl"/> ! <!--################################################### ! HTML Settings ! ################################################### --> ! <xsl:param name="html.stylesheet">../shared/css/html.css</xsl:param> ! <!-- These extensions are required for table printing and other stuff --> ! ! <!-- this requires jars to be available so I'm setting it to 0 instead of 1 --> ! <xsl:param name="use.extensions">0</xsl:param> ! <xsl:param name="tablecolumns.extension">0</xsl:param> ! <xsl:param name="callout.extensions">0</xsl:param> ! <xsl:param name="graphicsize.extension">0</xsl:param> ! <!--################################################### ! Table Of Contents ! ################################################### --> ! <!-- Generate the TOCs for named components only --> ! <xsl:param name="generate.toc"> ! book toc ! </xsl:param> ! ! <!-- Show only Sections up to level 3 in the TOCs --> ! <xsl:param name="toc.section.depth">3</xsl:param> ! ! <!--################################################### ! Labels ! ################################################### --> ! <!-- Label Chapters and Sections (numbering) --> ! <xsl:param name="chapter.autolabel">1</xsl:param> ! <xsl:param name="section.autolabel" select="1"/> ! <xsl:param name="section.label.includes.component.label" select="1"/> ! <!--################################################### ! Callouts ! ################################################### --> ! <!-- Don't use graphics, use a simple number style --> ! <xsl:param name="callout.graphics">0</xsl:param> ! <!-- Place callout marks at this column in annotated areas --> ! <xsl:param name="callout.defaultcolumn">90</xsl:param> ! <!--################################################### ! Misc ! ################################################### --> - <!-- Placement of titles --> - <xsl:param name="formal.title.placement"> - figure after - example before - equation before - table before - procedure before - </xsl:param> - </xsl:stylesheet> --- 3,80 ---- <!-- ! This is the XSL HTML configuration file for the Hibernate ! Reference Documentation. ! It took me days to figure out this stuff and fix most of ! the obvious bugs in the DocBook XSL distribution. Some of ! the workarounds might not be appropriate with a newer version ! of DocBook XSL. This file is released as part of Hibernate, ! hence LGPL licensed. ! chr...@hi... --> <!DOCTYPE xsl:stylesheet [ ! <!ENTITY db_xsl_path "../../support/docbook-xsl/"> ]> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ! version="1.0" ! xmlns="http://www.w3.org/TR/xhtml1/transitional" ! exclude-result-prefixes="#default"> ! <xsl:import href="&db_xsl_path;/html/docbook.xsl"/> ! <!-- HTML Settings --> ! <!-- ! modified this so the stylesheet would be lang specific since it is stored ! under the lang subdirectory anyway ! --> ! <xsl:param name="html.stylesheet">styles/html.css</xsl:param> ! <!-- These extensions are required for table printing and other stuff --> ! <!-- this requires jars to be available so I'm setting it to 0 instead of 1 --> ! <xsl:param name="use.extensions">0</xsl:param> ! <xsl:param name="tablecolumns.extension">0</xsl:param> ! <xsl:param name="callout.extensions">0</xsl:param> ! <xsl:param name="graphicsize.extension">0</xsl:param> ! <!-- Table Of Contents --> ! <!-- Generate the TOCs for named components only --> ! <xsl:param name="generate.toc"> ! book toc ! </xsl:param> ! <!-- Show only Sections up to level 3 in the TOCs --> ! <xsl:param name="toc.section.depth">3</xsl:param> ! ! <!-- Labels --> ! <!-- Label Chapters and Sections (numbering) --> ! <xsl:param name="chapter.autolabel">1</xsl:param> ! <xsl:param name="section.autolabel" select="1"/> ! <xsl:param name="section.label.includes.component.label" select="1"/> ! <!-- Callouts --> ! <!-- Don't use graphics, use a simple number style --> ! <xsl:param name="callout.graphics">0</xsl:param> ! ! <!-- Place callout marks at this column in annotated areas --> ! <xsl:param name="callout.defaultcolumn">90</xsl:param> ! ! <!-- Misc --> ! ! <!-- Placement of titles --> ! <xsl:param name="formal.title.placement"> ! figure after ! example before ! equation before ! table before ! procedure before ! </xsl:param> </xsl:stylesheet> |