r695 - in branches/jrst-docutils-jython: jrst/src/test/java/org/nuiton/jrst jrst-doc/src/site jrst-doc/src/site/en/rst/devel jrst-doc/src/site/en/rst/user jrst-doc/src/site/rst/devel jrst-doc/src/site/rst/user
Author: jpages Date: 2012-06-04 18:16:06 +0200 (Mon, 04 Jun 2012) New Revision: 695 Url: http://nuiton.org/repositories/revision/jrst/695 Log: Correction de la documentation. Suppression des index en doubles dans les dossiers user en fran?\195?\167ais et en anglais. Modification des tests de JRSTGeneratorTest pour utiliser la classe de test JRSTTestGenerator. Removed: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/user/index.rst branches/jrst-docutils-jython/jrst-doc/src/site/rst/user/index.rst Modified: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDoc.rst branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocDocutils.rst branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocJRSTParser.rst branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevDocutils.rst branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevJRSTParser.rst branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDeveloppeur.rst branches/jrst-docutils-jython/jrst-doc/src/site/site_en.xml branches/jrst-docutils-jython/jrst-doc/src/site/site_fr.xml branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTAbstractTest.java branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTGeneratorTest.java Modified: branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTAbstractTest.java =================================================================== --- branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTAbstractTest.java 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTAbstractTest.java 2012-06-04 16:16:06 UTC (rev 695) @@ -138,10 +138,4 @@ public void generate(String outputType, File in, File out, JRST.Overwrite overwrite) throws Exception { new JRSTTestGenerator(outputType, in, out, overwrite); } - - public void generateCommandLine(String[] commands) throws Exception { - JRST.main(commands); - commands[commands.length-1] = ""; - JRST.main(commands); - } } Modified: branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTGeneratorTest.java =================================================================== --- branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTGeneratorTest.java 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst/src/test/java/org/nuiton/jrst/JRSTGeneratorTest.java 2012-06-04 16:16:06 UTC (rev 695) @@ -48,9 +48,8 @@ /** to use log facility, just put in your code: log.info("..."); */ protected static Log log = LogFactory.getLog(JRSTGeneratorTest.class); - public static String getResourcesTestPath() { - File file = getTestFile("test.rst"); - return file.getPath(); + public static File getResourcesTestPath() { + return getTestFile("test.rst"); } // Not implemented @@ -63,7 +62,7 @@ } String test1 = getOutputTestPath("jrst-RstToRst.rst"); - generateCommandLine(new String[]{"-t", "rst", "--force", "-o", test1, getResourcesTestPath()}); + new JRSTTestGenerator("rst", getResourcesTestPath(), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -74,7 +73,7 @@ } String test1 = getOutputTestPath("jrst-RstToHtml.html"); - generateCommandLine(new String[]{"-t", "html", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("html", getResourcesTestPath(), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -85,7 +84,7 @@ } String test1 = getOutputTestPath("jrst-RstToHtml2.html"); - generateCommandLine(new String[]{"-t", "html", "--force", "-o", test1, getTestFile("docDeveloppeur.rst").getPath(), "--simple"}); + new JRSTTestGenerator("html", getTestFile("docDeveloppeur.rst"), new File(test1), JRST.Overwrite.ALLTIME); } @@ -97,7 +96,7 @@ } String test1 = getOutputTestPath("jrst-RstToDocbook.dbk"); - generateCommandLine(new String[]{"-t", "docbook", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("docbook", getResourcesTestPath(), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -108,7 +107,7 @@ } String test1 = getOutputTestPath("jrst-RstToXdoc.xdoc"); - generateCommandLine(new String[]{"-t", "xdoc", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getResourcesTestPath(), new File(test1), JRST.Overwrite.ALLTIME); } /** @@ -124,7 +123,7 @@ } String test1 = getOutputTestPath("jrst-RstToXdoc2.xdoc"); - generateCommandLine(new String[]{"-t", "xdoc", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getTestFile("test2.rst"), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -135,7 +134,7 @@ } String test1 = getOutputTestPath("jrst-RstToXdoc3.xdoc"); - generateCommandLine(new String[]{"-t", "xdoc", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getTestFile("test3.rst"), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -146,7 +145,7 @@ } String test1 = getOutputTestPath("jrst-RstToXdoc4.xdoc"); - generateCommandLine(new String[]{"-t", "xdoc", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getTestFile("test4.rst"), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -157,7 +156,7 @@ } String test1 = getOutputTestPath("jrst-RstToXdocJrstSite.xdoc"); - generateCommandLine(new String[]{"-t", "xdoc", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getTestFile("frEntier.rst"), new File(test1), JRST.Overwrite.ALLTIME); } @@ -169,7 +168,7 @@ } String test1 = getOutputTestPath("jrst-RstToPDF.pdf"); - generateCommandLine(new String[]{"-t", "pdf", "--force", "-o", test1, getResourcesTestPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getResourcesTestPath(), new File(test1), JRST.Overwrite.ALLTIME); } @Test @@ -180,6 +179,6 @@ } String test1 = getOutputTestPath("jrst-RstToPDF2.pdf"); - generateCommandLine(new String[]{"-t", "pdf", "--force", "-o", test1, getTestFile("docDeveloppeur.rst").getPath(), "--simple"}); + new JRSTTestGenerator("xdoc", getTestFile("docDeveloppeur.rst"), new File(test1), JRST.Overwrite.ALLTIME); } } Modified: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDoc.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDoc.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDoc.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -43,7 +43,7 @@ Use of our own parser --------------------- -The second method allows a simpler and faster generation but the whole ReStructuredText specification_ is not available. It could be used with simple documents. +The second method allows a simpler and faster generation but the whole ReStructuredText specification_ is not available. It could be used with simple documents. To use this mode, just add the argument "--simple". You can visit `this page`_ if you want more informations. Modified: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocDocutils.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocDocutils.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocDocutils.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -27,7 +27,7 @@ Developer Documentation ======================= -Default mode for the JRST generation uses Jython_ and DocUtils_ to produce the intermediate XML document. In this way, generation corresponds to the ReStructuredText specification_. This method is usefull when RST file are complex or if the other method with `our parser`_ doesn't work. +Default mode for the JRST generation uses Jython_ and DocUtils_ to produce the intermediate XML document, which is the reference implementation of the ReStructuredText specification_. This method is usefull when RST file are complex or if the other method with `our parser`_ doesn't work. .. contents:: @@ -67,7 +67,7 @@ Title ===== - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: this text must be interpreted independently because it must be interpreted like a **paragraph** @@ -113,7 +113,7 @@ .. topic:: Titre - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: this text must be interpreted independently because it must be interpreted like a **paragraph** Modified: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocJRSTParser.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocJRSTParser.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/devel/developerDocJRSTParser.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -27,7 +27,7 @@ Developer Documentation ======================= -When you launch JRST, you can activate the simple generation mode to use our JRST parser. It allows to easily and quickly generate documents if they are not complex. +When you launch JRST, you can activate the simple generation mode (with "--simple") to use our JRST parser. It allows to easily and quickly generate documents if they are not complex. If a functionality is not available for your document, you can use the `other mode`_. .. contents:: @@ -80,7 +80,7 @@ Title ===== - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: this text must be interpreted independently because it must be interpreted like a **paragraph** @@ -131,7 +131,7 @@ .. topic:: Titre - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: this text must be interpreted independently because it must be interpreted like a **paragraph** Deleted: branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/user/index.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/user/index.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/en/rst/user/index.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -1,105 +0,0 @@ -.. - -.. * #%L -.. * JRst :: Documentation -.. * -.. * $Id$ -.. * $HeadURL$ -.. * %% -.. * Copyright (C) 2009 - 2010 CodeLutin -.. * %% -.. * This program is free software: you can redistribute it and/or modify -.. * it under the terms of the GNU Lesser General Public License as -.. * published by the Free Software Foundation, either version 3 of the -.. * License, or (at your option) any later version. -.. * -.. * This program is distributed in the hope that it will be useful, -.. * but WITHOUT ANY WARRANTY; without even the implied warranty of -.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -.. * GNU General Lesser Public License for more details. -.. * -.. * You should have received a copy of the GNU General Lesser Public -.. * License along with this program. If not, see -.. * <http://www.gnu.org/licenses/lgpl-3.0.html>. -.. * #L% -.. - - -=============================== -reStructuredText_ parser : JRst -=============================== - -User Documentation -================== - -.. contents:: - - -Presentation ------------- - -reStructuredText_ format is a document description format. Like other LaTex_ -or DocBook_, it can be converted toward a multitude of formats. These formats -have usually invading syntax which, if it is necessary for very specific -documents, becomes useless when it is used to quickly creating a simple -document. RST has a so simple syntax that it becomes almost invisible. - -JRST uses Jython_ to execute DocUtils_ scripts to transform RST_ files to DocUtils XML to create a tree representation -document. It becomes easy to generate document representation towards different -formats. - -How to use it -------------- - -JRST takes a reStructuredText_ file and generates XML file. Which could be used to produce -various files formats with generation XSL_ files. The available output formats are HTML, xhtml, -rst, pdf, docbook or odt(Open-Office) [1]_. - -If JRST is launched without arguments, a graphical user interface is displayed for the user. Thus, we can choose easily files, output type or external XSL stylesheets to apply. - -:: - - JRST myfile.rst - -This command converts myfile.rst toward XML file, displayed to the standard output (console). -Several options are available : - --o file, --outFile=file To write toward a file. --t format, --outType format To specify exit format, so using generation XSL_ file(s). Several formats are available xhtml, docbook, xml, HTML, xdoc, pdf. --x xslFile, --xslFile xslFile To specify generation XSL_ file at using. ---force To overwrite, if file exists, it will be replaced by the new one. ---help To display available options : - -:: - - Usage: [options] FILE - [--force] : overwrite existing out file - [--help] : display this help and exit - [--outFile -o value] : Output file - [--outType -t /xhtml|docbook|xml|html|xdoc|rst/] : Output type - [--xslFile -x value] : XSL file list to apply, comma separated - -ex : - -:: - - JRST --force -t html -o myfile.html myfile.rst - -This command produces html file (myfile.html) from rst file (myfile.rst) -even if myfile.html already exists. - - -Maven_ Plugin -------------- - -Maven_ plugin is available at the following links : http://jrst.labs.libre-entreprise.org/maven-jrst-plugin. -It enables the use of JRST from Maven_. - -.. [1] Only html, xhtml, DocBook_, xdoc and pdf are available for the moment. - -.. _reStructuredText: ./user/RSTpresentation.html -.. _RST: ./user/RSTpresentation.html -.. _Maven: http://maven.apache.org/ -.. _XSL: http://jrst.labs.libre-entreprise.org/en/devel/XSLpresentation.rst -.. _DocBook: http://www.docbook.org/ -.. _LaTex: http://www.latex-project.org/ -.. _DocUtils: http://docutils.sourceforge.net/docs/ref/doctree.html -.. _Jython: http://jython.org/index.html Modified: branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevDocutils.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevDocutils.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevDocutils.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -27,7 +27,7 @@ Documentation développeur ========================= -Le mode par défaut de génération de JRST utilise Jython_ et DocUtils_ pour produire le document XML intermédiaire. De cette manière, la génération est parfaitement fidèle à la spécification_ de ReStructuredText. Cette méthode est adaptée lorsque les fichiers RST sont plus complexes ou lorsque les fonctionnalités ne sont pas encore implémentées dans `notre parseur`_. +Le mode par défaut de génération de JRST utilise Jython_ pour exécuter les scripts de DocUtils_ pour produire le document XML intermédiaire, qui est l'implémentation de référence de la spécification_ de ReStructuredText. Cette méthode est adaptée lorsque les fichiers RST sont plus complexes ou lorsque les fonctionnalités ne sont pas encore implémentées dans `notre parseur`_. .. contents:: Sommaire @@ -72,7 +72,7 @@ Titre ===== - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: texte à être réinterprété comme un fichier rst indépendant ceci est considéré comme un **paragraphe** @@ -116,7 +116,7 @@ .. topic:: Titre - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: texte à être réinterprété comme un fichier rst indépendant ceci est considéré comme un **paragraphe** @@ -127,5 +127,5 @@ .. _RST: http://docutils.sourceforge.net/rst.html .. _DocUtils: http://docutils.sourceforge.net/docs/ref/doctree.html .. _Jython: http://jython.org/index.html -.. _spécification: http://jython.org/index.html +.. _spécification: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html .. _`notre parseur`: docDevJRSTParser.html Modified: branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevJRSTParser.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevJRSTParser.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDevJRSTParser.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -27,7 +27,7 @@ Documentation développeur - Génération avec JRST Parser ======================================================= -Parmi les options de lancement de JRST, il est possible d'activer un mode de génération simple qui utilise notre propre parseur JRST. L'avantage est de permettre une génération simplifiée et rapide qui convient parfaitement aux documents classiques. +Parmi les options de lancement de JRST, il est possible d'activer un mode de génération simple ( --simple ) qui utilise notre propre parseur JRST. L'avantage est de permettre une génération simplifiée et rapide qui convient parfaitement aux documents classiques. Si jamais une fonctionnalité_ n'est pas disponible pour votre document, il est toujours possible d'utiliser l'`autre mode`_. .. contents:: Sommaire @@ -79,7 +79,7 @@ Titre ===== - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: texte à être réinterprété comme un fichier rst indépendant ceci est considéré comme un **paragraphe** @@ -129,7 +129,7 @@ .. topic:: Titre - :Author: Letellier Sylvain + :Author: - Letellier Sylvain .. Attention:: texte à être réinterprété comme un fichier rst indépendant ceci est considéré comme un **paragraphe** Modified: branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDeveloppeur.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDeveloppeur.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/rst/devel/docDeveloppeur.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -45,7 +45,7 @@ ----------------------------------- La seconde méthode propose une génération plus simple et plus rapide mais celle-ci a l'inconvénient de proposer une implémentation incomplète de la spécification de ReStructuredText_. -Elle peut être utilisée dans le cadre de documents simples. +Elle peut être utilisée dans le cadre de documents simples. L'argument pour passer dans ce mode là est "--simple". Vous pouvez accéder à `cette page`_ pour des compléments d'information. Deleted: branches/jrst-docutils-jython/jrst-doc/src/site/rst/user/index.rst =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/rst/user/index.rst 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/rst/user/index.rst 2012-06-04 16:16:06 UTC (rev 695) @@ -1,116 +0,0 @@ -.. - -.. * #%L -.. * JRst :: Documentation -.. * -.. * $Id$ -.. * $HeadURL$ -.. * %% -.. * Copyright (C) 2009 - 2010 CodeLutin -.. * %% -.. * This program is free software: you can redistribute it and/or modify -.. * it under the terms of the GNU Lesser General Public License as -.. * published by the Free Software Foundation, either version 3 of the -.. * License, or (at your option) any later version. -.. * -.. * This program is distributed in the hope that it will be useful, -.. * but WITHOUT ANY WARRANTY; without even the implied warranty of -.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -.. * GNU General Lesser Public License for more details. -.. * -.. * You should have received a copy of the GNU General Lesser Public -.. * License along with this program. If not, see -.. * <http://www.gnu.org/licenses/lgpl-3.0.html>. -.. * #L% -.. - - -=================================== -Parseur reStructuredText_ : le JRst -=================================== - -Documentation utilisateur -========================= - -.. contents:: Sommaire - - -Présentation ------------- - -Le format reStructuredText_ est un format de description de documents. A l'image -d'autres LaTeX_ ou DocBook_, il peut être décliné en une multitude de formats. Ces -formats souffrent habituellement d'une syntaxe envahissante qui, si elle est -nécessaire pour des documents très spécifiques, devient gênante quand il s'agit -de créer rapidement un document pas trop complexe. RST_ dispose quant à lui d'une -syntaxe tellement simple qu'elle en devient presque invisible. - -Deux méthodes de génération sont proposées : - - La première utilise Jython_ pour lancer des scripts de DocUtils_ afin de transformer le RST_ en XML. Puisque celle-ci est basée sur les scripts externes de DocUtils, toutes les fonctionnalités proposées par ReStructuredText sont prises en comptes mais la génération est un peu plus longue. - - La seconde utilise notre propre parseur JRST pour générer ce XML, ce qui permet d'obtenir de très bonne performances mais certaines fonctionnalités_ ne sont pas encore implémentées. - -A partir du document XML, nous permettons la transformation en divers formats comme HTML ou PDF. - - -Usage ------ - -JRST prend un fichier reStructuredText_ en entrée et génère un fichier XML -qui pourra ensuite servir à produire divers formats de fichiers grâce à des fichiers -XSL de générations. Les formats de sortie disponibles sont le html, le xhtml, le rst, -le pdf, le docbook_ ou du XML [1]_. - -Lorsque JRST est lancé sans argument, une interface graphique est proposée à l'utilisateur. Ainsi, on peut choisir plus aisément les fichiers, le type de sortie, les feuilles de style XSL externes à appliquer ou bien la génération simplifiée ou non. - -:: - - JRST myfile.rst - -Cette commande aura pour effet de convertir le fichier myfile.rst en XML qui sera affiché sur la sortie standard (console). -Plusieurs options sont disponibles : - --o file,--outFile=file pour rediriger la sortie vers un fichier. --t format,--outType format pour préciser un format de sortie, donc utiliser un ou des fichiers XSL_ de génération. Plusieurs formats sont disponibles xhtml, docbook, xml, html, xdoc, rst, pdf, odt, rtf. --x xslFile,--xslFile xslFile sert à préciser le fichier xsl de génération à utiliser. ---force forcer l'écriture d'un fichier, si le fichier de sortie existe, il sera remplacé. ---simple Utiliser notre propre parseur JRST pour générer le XML intermédiaire. Toutes les fonctionnalités ne sont pas implémentées mais la génération est plus rapide. ---help pour afficher les options disponibles : - - -:: - - Usage: [options] FILE - [--force] : overwrite existing out file - [--simple] : use our own parser to generate the file - [--help] : display this help and exit - [--outFile -o value] : Output file - [--outType -t /xhtml|docbook|xml|html|xdoc|rst/] : Output type - [--xslFile -x value] : XSL file list to apply, comma separated - - -ex : - -:: - - JRST --force -t html -o myfile.html myfile.rst - -Cette commande produira un fichier html (myfile.html) à partir du fichier reStructuredText_ (myfile.rst) -même si myfile.html existe déjà. - - -Plugin Maven_ -------------- - -Un plugin Maven_ est disponible à l'adresse suivante -http://jrst.labs.libre-entreprise.org/maven-jrst-plugin. Il permet l'utilisation -depuis Maven_ de JRst. - -.. [1] Seul les formats html, xhtml, DocBook_, xdoc et pdf sont disponible pour le moment. - -.. _reStructuredText: presentationRST.html -.. _RST: presentationRST.html -.. _fonctionnalités: fonctionnalites.html -.. _Maven: http://maven.apache.org/ -.. _XSL: ../devel/presentationXSL.html -.. _DocBook: http://www.docbook.org/ -.. _LaTex: http://www.latex-project.org/ -.. _DocUtils: http://docutils.sourceforge.net/docs/ref/doctree.html -.. _Jython: http://jython.org/index.html Modified: branches/jrst-docutils-jython/jrst-doc/src/site/site_en.xml =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/site_en.xml 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/site_en.xml 2012-06-04 16:16:06 UTC (rev 695) @@ -45,15 +45,15 @@ <item name="${project.name}" href="index.html"/> </breadcrumbs> - <links> - <item name="[fr" href="../index.html"/> - <item name="en]" href="index.html"/> - </links> - <menu name="Project Parent"> <item name="JRst" href="../../en/index.html"/> </menu> + <menu name="Language"> + <item name="Français" href="index.html"/> + <item name="English" href="en/index.html"/> + </menu> + <menu name="User"> <item href="/user/index.html" name="About"/> <item href="/user/RSTpresentation.html" name="A ReStructuredText Primer"/> Modified: branches/jrst-docutils-jython/jrst-doc/src/site/site_fr.xml =================================================================== --- branches/jrst-docutils-jython/jrst-doc/src/site/site_fr.xml 2012-06-04 14:42:30 UTC (rev 694) +++ branches/jrst-docutils-jython/jrst-doc/src/site/site_fr.xml 2012-06-04 16:16:06 UTC (rev 695) @@ -45,14 +45,13 @@ <item name="${project.name}" href="index.html"/> </breadcrumbs> - - <links> - <item name="[fr" href="index.html"/> - <item name="en]" href="en/index.html"/> - </links> - <menu ref="parent"/> + <menu name="Langue"> + <item name="Français" href="index.html"/> + <item name="English" href="en/index.html"/> + </menu> + <menu name="Utilisateur"> <item href="/user/index.html" name="Présentation de JRST"/> <item href="/user/presentationRST.html"
participants (1)
-
jpages@users.nuiton.org