Author: echatellier Date: 2010-02-08 11:28:27 +0100 (Mon, 08 Feb 2010) New Revision: 447 Modified: trunk/jrst/src/main/resources/xsl/rst2xdoc.xsl Log: #286 : R?\195?\169gression sur la g?\195?\169n?\195?\169ration des m?\195?\169ta-donn?\195?\169es Modified: trunk/jrst/src/main/resources/xsl/rst2xdoc.xsl =================================================================== --- trunk/jrst/src/main/resources/xsl/rst2xdoc.xsl 2010-02-05 15:00:27 UTC (rev 446) +++ trunk/jrst/src/main/resources/xsl/rst2xdoc.xsl 2010-02-08 10:28:27 UTC (rev 447) @@ -3,8 +3,8 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict"> -<!-- xdoc is mostly an xhtml document wrapped inside a DOCUMENT tag --> -<xsl:import href="rst2xhtml.xsl"/> + <!-- xdoc is mostly an xhtml document wrapped inside a DOCUMENT tag --> + <xsl:import href="rst2xhtml.xsl"/> <xsl:template match="/document"> <document> @@ -16,7 +16,7 @@ <xsl:attribute name="name"><xsl:value-of select="title"/></xsl:attribute> <xsl:apply-templates /> </section> - </body> + </body> </document> </xsl:template> @@ -32,6 +32,17 @@ </xsl:choose> </xsl:template> + <!-- #286 : Régression sur la génération des méta-données + TODO peut etre que les xsl de xhtml et xdoc devrait être indépendante --> + <xsl:template match="docinfo"> + <table class="bodyTable" border="0"> + <col class="docinfo-name" /> + <col class="docinfo-content" /> + <tbody valign="top"> + <xsl:apply-templates/> + </tbody> + </table> + </xsl:template> </xsl:transform>
participants (1)
-
echatellier@users.nuiton.org