Changeset 735
- Timestamp:
- 10/11/05 12:48:00
- Files:
-
- trunk/docs/book/build.sh (modified) (2 diffs)
- trunk/docs/book/xsl/chunked.xsl (modified) (1 diff)
- trunk/docs/book/xsl/html.xsl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/book/build.sh
r658 r735 62 62 mkdir html 63 63 mkdir html/css 64 mkdir html/images 65 cp xml/*.gif html/images/ 64 66 cp css/*.css html/css/ 65 67 untarDocbook 68 cd xml 66 69 xsltproc \ 67 70 --timing \ 68 71 --xinclude \ 69 --output html/index.html \70 xsl/html.xsl \71 xml/cherrypy.xml72 72 --output ../html/index.html \ 73 ../xsl/html.xsl \ 74 cherrypy.xml 75 cd .. 73 76 # 74 77 # Let's chunk the doc in different files … … 77 80 mkdir chunk 78 81 mkdir chunk/css 82 mkdir chunk/images 79 83 cp css/*.css chunk/css/ 84 cp xml/*.gif chunk/images/ 80 85 untarDocbook 86 cd xml 81 87 xsltproc \ 82 88 --timing \ 83 89 --xinclude \ 84 --output chunk/index.html \85 xsl/chunked.xsl \86 xml/cherrypy.xml87 90 --output ../chunk/index.html \ 91 ../xsl/chunked.xsl \ 92 cherrypy.xml 93 cd .. 88 94 exit trunk/docs/book/xsl/chunked.xsl
r658 r735 19 19 <xsl:param name="chunk.section.depth" select="1"/> 20 20 <xsl:param name="local.l10n.xml" select="document('')"/> 21 <xsl:param name="img.src.path">./images/</xsl:param> 21 22 <l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> 22 23 <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en"> trunk/docs/book/xsl/html.xsl
r658 r735 18 18 <xsl:param name="chunk.section.depth" select="1"/> 19 19 <xsl:param name="local.l10n.xml" select="document('')"/> 20 <xsl:param name="img.src.path">./images/</xsl:param> 20 21 <l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> 21 22 <l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="en">

