Change 20071217-ben-K by [EMAIL PROTECTED] on 2007-12-17 12:42:03 PST
in /Users/ben/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Make doc build output a doctype
Bugs Fixed: LPP-5258 doctools should generate html with a DOCTYPE
Technical Reviewer: ptw (pending)
Documentation:
In order to generate html with a doctype, we have to tell docbook-
xsl's chunker
that we want a doctype. These two parameters are the way we do so:
+ <xsl:param name="chunker.output.doctype-public" select="'-//W3C//
DTD HTML 4.01 Transitional//EN'"/>
+ <xsl:param name="chunker.output.doctype-system" select="'http://
www.w3.org/TR/html4/loose.dtd'"/>
Release Notes:
Details:
Tests:
ant clean doc
inspect one of the output files
notice it begins with...
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/
TR/html4/loose.dtd">
Files:
M docs/src/xsl/parameters.xsl
Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20071217-ben-
K.tar