r1654 - in trunk: . maven-i18n-plugin/src/site maven-i18n-plugin/src/site/apt nuiton-i18n-api/src/site nuiton-i18n-api/src/site/apt nuiton-i18n-editor nuiton-i18n-editor/src/site nuiton-i18n-editor/src/site/apt src/site
Author: tchemit Date: 2009-08-22 19:43:33 +0200 (Sat, 22 Aug 2009) New Revision: 1654 Added: trunk/maven-i18n-plugin/src/site/apt/ trunk/maven-i18n-plugin/src/site/apt/index.apt trunk/nuiton-i18n-api/src/site/apt/ trunk/nuiton-i18n-api/src/site/apt/index.apt trunk/nuiton-i18n-editor/src/site/apt/ trunk/nuiton-i18n-editor/src/site/apt/index.apt Removed: trunk/maven-i18n-plugin/src/site/rst/ trunk/nuiton-i18n-api/src/site/rst/ trunk/nuiton-i18n-editor/src/site/fr/ trunk/nuiton-i18n-editor/src/site/rst/ Modified: trunk/maven-i18n-plugin/src/site/site.xml trunk/nuiton-i18n-api/src/site/site.xml trunk/nuiton-i18n-editor/pom.xml trunk/nuiton-i18n-editor/src/site/site.xml trunk/pom.xml trunk/src/site/site.xml Log: do not use jrst in modules (before jrst artifact) except for nuiton-i18n-editor Copied: trunk/maven-i18n-plugin/src/site/apt/index.apt (from rev 1651, trunk/maven-i18n-plugin/src/site/rst/index.rst) =================================================================== --- trunk/maven-i18n-plugin/src/site/apt/index.apt (rev 0) +++ trunk/maven-i18n-plugin/src/site/apt/index.apt 2009-08-22 17:43:33 UTC (rev 1654) @@ -0,0 +1,42 @@ +---- +Introduction +---- +---- +2009-08-22 +---- + +Maven I18n Plugin + + The Maven I18n Plugin is used to compute i18n bundles for a given maven module. + +Goals Overview + + The I18n plugin has the following goals: + + * {{{parserJava-mojo.html} i18n:parserJava}} parse Java sources. + + * {{{parserJaxx-mojo.html} i18n:parserJaxx}} parse Jaxx sources. + + * {{{parserSwixat-mojo.html} i18n:parserSwixat}} parse Jaxx sources. + + * {{{parserValidation-mojo.html} i18n:parserValidation}} parse XWorks validation sources. + + * {{{parserJavaActionConfig-mojo.html} i18n:parserJavaActionConfig}} parse actions jaxx. + + * {{{parserJavaTabConfig-mojo.html} i18n:parserJavaTabConfig}} parse tabs jaxx. + + * {{{get-mojo.html} i18n:get}} assembly getter computed by parser-like goals. + + * {{{gen-mojo.html} i18n:gen}} generate i18n bundle from getters. + + * {{{bundle-mojo.html} i18n:bundle}} generate unique i18n bundle for final application. + + * {{{help-mojo.html} i18n:help}} display help. + +Usage + + Instructions on how to use the Help Plugin can be found in {{{usages.html} usages}} page. + +Examples + + <to be done.> Modified: trunk/maven-i18n-plugin/src/site/site.xml =================================================================== --- trunk/maven-i18n-plugin/src/site/site.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/maven-i18n-plugin/src/site/site.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -29,6 +29,7 @@ <menu name="Utilisateur"> <item name="Introduction" href="index.html"/> + <item name="Usages" href="usages.html"/> <item name="Goals" href="plugin-info.html"> <item name="parserJava" href="parserJava-mojo.html"/> <item name="parserJaxx" href="parserJaxx-mojo.html"/> Copied: trunk/nuiton-i18n-api/src/site/apt/index.apt (from rev 1651, trunk/nuiton-i18n-api/src/site/rst/index.rst) =================================================================== (Binary files differ) Modified: trunk/nuiton-i18n-api/src/site/site.xml =================================================================== --- trunk/nuiton-i18n-api/src/site/site.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/nuiton-i18n-api/src/site/site.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -32,11 +32,11 @@ </menu> <menu name="Téléchargement"> - <item href="${repository.home.url}/org/nuiton/${project.artifactId}/${project.version}/${project.build.finalName}.jar" + <item href="${repository.home.url}/org/nuiton/i18n/${project.artifactId}/${project.version}/${project.build.finalName}.jar" name="Librairie (jar)"/> - <item href="${repository.home.url}/org/nuiton/${project.artifactId}/${project.version}/${project.build.finalName}-javadoc.jar" + <item href="${repository.home.url}/org/nuiton/i18n/${project.artifactId}/${project.version}/${project.build.finalName}-javadoc.jar" name="Javadoc (jar)"/> - <item href="${repository.home.url}/org/nuiton/${project.artifactId}/${project.version}/${project.build.finalName}-sources.jar" + <item href="${repository.home.url}/org/nuiton/i18n/${project.artifactId}/${project.version}/${project.build.finalName}-sources.jar" name="Sources (jar)"/> </menu> Modified: trunk/nuiton-i18n-editor/pom.xml =================================================================== --- trunk/nuiton-i18n-editor/pom.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/nuiton-i18n-editor/pom.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -123,7 +123,7 @@ <plugin> <groupId>org.nuiton.jaxx</groupId> <artifactId>maven-jaxx-plugin</artifactId> - <version>${jaxx.version}</version> + <version>${jaxx.version}</version> <executions> <execution> <goals> @@ -202,6 +202,20 @@ </archive> </configuration> </plugin> + + <!-- plugin site --> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>2.0.1</version> + <dependencies> + <dependency> + <groupId>org.nuiton</groupId> + <artifactId>doxia-module-jrst</artifactId> + <version>1.0.2-rc-1</version> + </dependency> + </dependencies> + </plugin> + </plugins> </pluginManagement> </build> Copied: trunk/nuiton-i18n-editor/src/site/apt/index.apt (from rev 1651, trunk/nuiton-i18n-editor/src/site/rst/index.rst) =================================================================== --- trunk/nuiton-i18n-editor/src/site/apt/index.apt (rev 0) +++ trunk/nuiton-i18n-editor/src/site/apt/index.apt 2009-08-22 17:43:33 UTC (rev 1654) @@ -0,0 +1,25 @@ +---- +Nuiton-i18n-editor +---- +---- +2009-08-22 +---- + +Présentation + + Application swing pour éditer des bundles i18n. + +Set it in action from Web + +~~[images/webstart.gif] webstart + + To run this application in + {{{http://java.sun.com/products/javawebstart/} Java Web Start}}, + click the {{{launch-nuiton-i18n-editor.jnlp}following link}}. + + Actually does not work very well, prefer use the zip version... + +Set it in action from Zip + + You can download at the section download the zip file, extract it and then + launch <go.sh> or <go.bat>. Modified: trunk/nuiton-i18n-editor/src/site/site.xml =================================================================== --- trunk/nuiton-i18n-editor/src/site/site.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/nuiton-i18n-editor/src/site/site.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -19,6 +19,11 @@ <poweredBy> <logo href="http://maven-site.nuiton.org/jaxx" name="JAXX" img="images/jaxx-logo.png"/> + <logo href="http://jrst.labs.libre-entreprise.org/jrst" name="JRst" + img="images/jrst-logo.png"/> + + <logo href="http://docutils.sourceforge.net/rst.html" name="ReStructuredText" + img="images/restructuredtext-logo.png"/> </poweredBy> <body> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/pom.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -97,7 +97,7 @@ <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>1.5.5</version> + <version>1.5.15</version> <scope>compile</scope> </dependency> Modified: trunk/src/site/site.xml =================================================================== --- trunk/src/site/site.xml 2009-08-20 15:09:21 UTC (rev 1653) +++ trunk/src/site/site.xml 2009-08-22 17:43:33 UTC (rev 1654) @@ -21,8 +21,6 @@ <poweredBy> <logo href="http://maven.apache.org" name="Maven" img="${project.url}/images/logos/maven-feather.png"/> - <logo href="http://jrst.labs.libre-entreprise.org" name="JRst" img="${project.url}/images/jrst-logo.png"/> - <logo href="http://docutils.sourceforge.net/rst.html" name="ReStructuredText" img="${project.url}/images/restructuredtext-logo.png"/> </poweredBy> <body>
participants (1)
-
tchemit@users.nuiton.org