[Lutinweb-commits] r116 - in lutinrss/trunk: . src/site src/site/fr/rst
Author: tchemit Date: 2008-10-09 14:01:53 +0000 (Thu, 09 Oct 2008) New Revision: 116 Added: lutinrss/trunk/changelog lutinrss/trunk/src/site/fr/rst/Todo.rst lutinrss/trunk/src/site/site.xml Modified: lutinrss/trunk/pom.xml lutinrss/trunk/src/site/fr/rst/index.rst Log: ajout d'un site mise en conformite du pom sur lutinproject 3.0 Added: lutinrss/trunk/changelog =================================================================== --- lutinrss/trunk/changelog (rev 0) +++ lutinrss/trunk/changelog 2008-10-09 14:01:53 UTC (rev 116) @@ -0,0 +1,2 @@ +ver-2.3.8 chemit 200810XX + * 20081008 [chemit] Using lutinpluginproject 3.0 in a better way :) Modified: lutinrss/trunk/pom.xml =================================================================== --- lutinrss/trunk/pom.xml 2008-10-09 13:03:07 UTC (rev 115) +++ lutinrss/trunk/pom.xml 2008-10-09 14:01:53 UTC (rev 116) @@ -1,51 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <!--The version of maven's project object model--> <modelVersion>4.0.0</modelVersion> - - <distributionManagement> - <site> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> - </site> - <repository> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2</url> - </repository> - </distributionManagement> - <!--A unique name for this project--> - <groupId>lutinlib</groupId> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> + <groupId>org.codelutin</groupId> + <artifactId>lutinpluginproject</artifactId> + <version>3.0</version> + </parent> + <artifactId>lutinrss</artifactId> - <name>LutinRSS</name> - - <!--ejb, jar, war...--> - <packaging>war</packaging> - - <!--Version--> - <version>2.3.7</version> - - <!--Description--> - <description>Servlet pouvant etre appeler depuis du JS pour recuperer un - flux RSS - </description> - <inceptionYear>2008</inceptionYear> - - <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=41</url> - </issueManagement> - <!--Librairies--> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> @@ -75,8 +46,8 @@ <version>0.9</version> <scope>compile</scope> </dependency> - - <!--Provided--> + + <!--Provided--> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> @@ -84,78 +55,60 @@ <scope>provided</scope> </dependency> </dependencies> - + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>LutinRSS</name> + <version>2.3.8-SNAPSHOT</version> + <description>Servlet pouvant etre appeler depuis du JS pour recuperer un + flux RSS + </description> + <inceptionYear>2008</inceptionYear> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + <packaging>war</packaging> + + <properties> + <!-- id du projet du labs --> + <labs.id>41</labs.id> + + <!-- nom du projet sur le labs --> + <labs.project>lutinweb</labs.project> + + </properties> + <build> <plugins> + <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> + <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <source>${maven.compile.source}</source> - <target>${maven.compile.target}</target> + <link>http://java.sun.com/javase/6/docs/api/index.html</link> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> - <!--warName>lutinrss</warName--> - <webappDirectory>target/lutinrss</webappDirectory> - </configuration> + <!--warName>lutinrss</warName--> + <webappDirectory>target/lutinrss</webappDirectory> + </configuration> </plugin> </plugins> </build> - <profiles> - <profile> - <id>project</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <properties> - <maven.compile.source>1.5</maven.compile.source> - <maven.compile.target>1.5</maven.compile.target> - </properties> - <!--pluginRepositories> - <pluginRepository> - <id>codelutin-plugins</id> - <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> - </pluginRepository> - </pluginRepositories--> - </profile> - </profiles> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + <scm> + <connection>${maven.scm.connection}</connection> + <developerConnection>${maven.scm.developerConnection}</developerConnection> + <url>${maven.scm.url}</url> + </scm> + </project> Added: lutinrss/trunk/src/site/fr/rst/Todo.rst =================================================================== --- lutinrss/trunk/src/site/fr/rst/Todo.rst (rev 0) +++ lutinrss/trunk/src/site/fr/rst/Todo.rst 2008-10-09 14:01:53 UTC (rev 116) @@ -0,0 +1,5 @@ +==== +TODO +==== + +Reste a faire ? \ No newline at end of file Modified: lutinrss/trunk/src/site/fr/rst/index.rst =================================================================== --- lutinrss/trunk/src/site/fr/rst/index.rst 2008-10-09 13:03:07 UTC (rev 115) +++ lutinrss/trunk/src/site/fr/rst/index.rst 2008-10-09 14:01:53 UTC (rev 116) @@ -1,6 +1,13 @@ RSS Servlet/Ajax ================ +... contents:: + +Utilisation +=========== + +A faire ... + <script src="lutinrss.js"> rss("rss1", "url", max, login, password) </script> @@ -9,4 +16,3 @@ - si pas de fichier html pour l'url demandée ou plus vielle que N - récupération de de l'url et sauvegarde en html - renvoi du html -< \ No newline at end of file Added: lutinrss/trunk/src/site/site.xml =================================================================== --- lutinrss/trunk/src/site/site.xml (rev 0) +++ lutinrss/trunk/src/site/site.xml 2008-10-09 14:01:53 UTC (rev 116) @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="${project.name}"> + + <publishDate format="dd/MM/yyyy"/> + + <skin> + <groupId>org.codelutin</groupId> + <artifactId>maven-lutin-skin</artifactId> + <version>0.2</version> + </skin> + + <bannerLeft> + <name>Java ReStructuredText parser</name> + </bannerLeft> + + <bannerRight> + <src>http://www.codelutin.com/images/lutinorange-codelutin.png</src> + <href>http://www.codelutin.com</href> + </bannerRight> + + <poweredBy> + <logo href="http://maven.apache.org" name="Maven" img="images/logos/maven-feather.png"/> + <logo href="http://jrst.labs.libre-entreprise.org" name="JRst" img="images/jrst-logo.png"/> + <logo href="http://docutils.sourceforge.net/rst.html" name="ReStructuredText" + img="images/restructuredtext-logo.png"/> + </poweredBy> + + <body> + <links> + <item name="Labs" href="http://labs.libre-entreprise.org/"/> + <item name="Code Lutin" href="http://www.codelutin.com/"/> + </links> + + <menu ref="parent"/> + + <menu name="Utilisateur"> + <item href="index.html" name="Accueil"/> + </menu> + + <menu name="Téléchargement"> + <item href="${labs.builder.url}/org/codelutin/${project.artifactId}/${project.version}" + name="Télécharger la dernière version"/> + <item href="${labs.builder.url}/org/codelutin/${project.artifactId}" + name="Voir toutes les versions"/> + </menu> + + <menu name="Developpeur"> + <item name="Todo" href="Todo.html"/> + </menu> + + <menu ref="reports"/> + + </body> +</project> \ No newline at end of file
participants (1)
-
tchemit@users.labs.libre-entreprise.org