Author: jpages Date: 2012-05-25 15:10:47 +0200 (Fri, 25 May 2012) New Revision: 677 Url: http://nuiton.org/repositories/revision/jrst/677 Log: Coorection de JRSTParser pour la g?\195?\169n?\195?\169ration de site. Modified: branches/jrst-docutils-jython/doxia-module-jrst/changelog.txt branches/jrst-docutils-jython/doxia-module-jrst/src/main/java/org/nuiton/jrst/JrstParser.java Modified: branches/jrst-docutils-jython/doxia-module-jrst/changelog.txt =================================================================== --- branches/jrst-docutils-jython/doxia-module-jrst/changelog.txt 2012-05-25 10:03:29 UTC (rev 676) +++ branches/jrst-docutils-jython/doxia-module-jrst/changelog.txt 2012-05-25 13:10:47 UTC (rev 677) @@ -1,3 +1,7 @@ +doxia-module-jrst (1.6.0) + + * JrstParser use now JRST.java methods to generate the site + doxia-module-jrst (1.1.0) ? * migrate to nuiton Modified: branches/jrst-docutils-jython/doxia-module-jrst/src/main/java/org/nuiton/jrst/JrstParser.java =================================================================== --- branches/jrst-docutils-jython/doxia-module-jrst/src/main/java/org/nuiton/jrst/JrstParser.java 2012-05-25 10:03:29 UTC (rev 676) +++ branches/jrst-docutils-jython/doxia-module-jrst/src/main/java/org/nuiton/jrst/JrstParser.java 2012-05-25 13:10:47 UTC (rev 677) @@ -56,8 +56,12 @@ IOUtil.copy(source, fileWriter); // Generation of the xml file + // Transformation to XML Document doc = JRST.generateDocutils(sourceFile); + // Application of xsl stylesheets + doc = JRST.generateXml(doc, JRST.TYPE_XDOC); + // Give xsl result to XDoc parser Reader reader = new StringReader(doc.asXML()); super.parse(reader, sink);
participants (1)
-
jpages@users.nuiton.org