Author: echatellier Date: 2014-05-15 11:18:11 +0200 (Thu, 15 May 2014) New Revision: 136 Url: http://forge.nuiton.org/projects/diswork/repository/revisions/136 Log: Update project (a little) to refresh site publish Modified: trunk/LICENSE.txt trunk/diswork-daemon/LICENSE.txt trunk/diswork-fs/LICENSE.txt trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkAlreadyExistsException.java trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystem.java trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystemConfig.java trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/storage/Storage.java trunk/diswork-fs/src/main/resources/tester.properties trunk/diswork-fs/src/test/java/org/nuiton/diswork/fs/AbstractDisworkFileSystemTest.java trunk/diswork-fs/src/test/resources/log4j.properties trunk/pom.xml trunk/src/site/rst/devel-draft-0.2.rst trunk/src/site/rst/diswork-daemon/devel.rst trunk/src/site/rst/diswork-daemon/draft.rst trunk/src/site/rst/diswork-fs/devel.rst trunk/src/site/rst/diswork-fs/history.rst trunk/src/site/rst/index.rst trunk/src/site/rst/user/how_to_use.rst trunk/src/site/site_en.xml Modified: trunk/LICENSE.txt =================================================================== --- trunk/LICENSE.txt 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/LICENSE.txt 2014-05-15 09:18:11 UTC (rev 136) @@ -10,7 +10,7 @@ the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. - 0. Additional Definitions. + 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU @@ -111,7 +111,7 @@ a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked - Version. + Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the @@ -163,4 +163,3 @@ apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. - Modified: trunk/diswork-daemon/LICENSE.txt =================================================================== --- trunk/diswork-daemon/LICENSE.txt 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-daemon/LICENSE.txt 2014-05-15 09:18:11 UTC (rev 136) @@ -10,7 +10,7 @@ the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. - 0. Additional Definitions. + 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU @@ -111,7 +111,7 @@ a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked - Version. + Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the @@ -163,4 +163,3 @@ apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. - Modified: trunk/diswork-fs/LICENSE.txt =================================================================== --- trunk/diswork-fs/LICENSE.txt 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/LICENSE.txt 2014-05-15 09:18:11 UTC (rev 136) @@ -10,7 +10,7 @@ the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. - 0. Additional Definitions. + 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU @@ -111,7 +111,7 @@ a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked - Version. + Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the @@ -163,4 +163,3 @@ apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. - Modified: trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkAlreadyExistsException.java =================================================================== --- trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkAlreadyExistsException.java 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkAlreadyExistsException.java 2014-05-15 09:18:11 UTC (rev 136) @@ -1,5 +1,27 @@ package org.nuiton.diswork.fs; +/* + * #%L + * Diswork File-System + * %% + * Copyright (C) 2010 - 2014 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% + */ + /** thrown when if path lead to something that already exists */ public class DisworkAlreadyExistsException extends DisworkFileSystemException { Modified: trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystem.java =================================================================== --- trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystem.java 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystem.java 2014-05-15 09:18:11 UTC (rev 136) @@ -87,7 +87,7 @@ protected static final int LOCK_WAIT = 10 * 1000; // ten seconds /** default constructor (uses default configuration parameters) - * @throws IOException caused by network issue + * @throws DisworkFileSystemException caused by network issue */ public DisworkFileSystem() throws DisworkFileSystemException { this(new DisworkFileSystemConfig()); @@ -96,7 +96,7 @@ /** constructor allowing to provide another configuration to use * * @param config the configuration - * @throws IOException caused by network issue + * @throws DisworkFileSystemException caused by network issue */ public DisworkFileSystem(DisworkFileSystemConfig config) throws DisworkFileSystemException { @@ -109,7 +109,7 @@ * or {@link #createSymbolicLink(String, String)} has been done before. * @param path a path in the virtual FS * @return true is something (a link, a file, or a directory) exists at path - * @throws IOException + * @throws DisworkFileSystemException */ public boolean exists(String path) throws DisworkFileSystemException { checkPathSyntax(path); @@ -124,7 +124,7 @@ * @param path the path to the file to read * @return an InputStream on the file * @throws FileNotFoundException if no file exists at this path - * @throws IOException if path exists but is a directory + * @throws DisworkFileSystemException if path exists but is a directory */ public InputStream read(String path) throws DisworkFileSystemException, FileNotFoundException { @@ -158,7 +158,7 @@ * write a file on the file system at a given place * @param path * @param source - * @throws IOException if file already exists + * @throws DisworkFileSystemException if file already exists * @throws ConcurrentModificationException if file is already being written */ public void write(String path, InputStream source) @@ -248,7 +248,7 @@ /** * creates a new empty directory * @param path the absolute path (ending by the name) of the directory - * @throws IOException if parent path is not correct + * @throws DisworkFileSystemException if parent path is not correct */ public void createDirectory(String path) throws DisworkFileSystemException { checkPathSyntax(path); @@ -777,7 +777,7 @@ * @param current * @param content * @return null if path is not valid or the entry corresponding to path - * @throws IOException + * @throws DisworkFileSystemException */ protected String walk(String path, String current, String content) throws DisworkFileSystemException { Modified: trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystemConfig.java =================================================================== --- trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystemConfig.java 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/DisworkFileSystemConfig.java 2014-05-15 09:18:11 UTC (rev 136) @@ -78,7 +78,6 @@ * returns the IP on the local machine. Trying to get an public IP or a LAN * IP or the loopback IP if there is no other interface * @return - * @throws UnknownHostException */ public static String getLocalIp() { InetAddress result = null; Modified: trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/storage/Storage.java =================================================================== --- trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/storage/Storage.java 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/main/java/org/nuiton/diswork/fs/storage/Storage.java 2014-05-15 09:18:11 UTC (rev 136) @@ -162,9 +162,9 @@ /** * * @param config an instance of - * @param null at normal use. Will set map according to the content of + * @param map null at normal use. Will set map according to the content of * config - * @throws IOException if network fail + * @throws DisworkFileSystemException if network fail */ public Storage(DisworkFileSystemConfig config, DisworkMap map) throws DisworkFileSystemException { @@ -210,7 +210,7 @@ /** * @return the content (entries) of the root directory - * @throws IOException + * @throws DisworkFileSystemException */ public String getRootDirectory() throws DisworkFileSystemException { String result = getDirectory(EntryUtil.ROOT_DIRECTORY); @@ -222,7 +222,7 @@ /** * @param id an id of a directory * @return a the entries of the directory - * @throws IOException + * @throws DisworkFileSystemException */ public String getDirectory(String id) throws DisworkFileSystemException { InputStream in = get(id); Modified: trunk/diswork-fs/src/main/resources/tester.properties =================================================================== --- trunk/diswork-fs/src/main/resources/tester.properties 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/main/resources/tester.properties 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,24 @@ +### +# #%L +# Diswork File-System +# %% +# Copyright (C) 2010 - 2014 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% +### # IP where the coordinator will execute tester.server=127.0.0.1 Modified: trunk/diswork-fs/src/test/java/org/nuiton/diswork/fs/AbstractDisworkFileSystemTest.java =================================================================== --- trunk/diswork-fs/src/test/java/org/nuiton/diswork/fs/AbstractDisworkFileSystemTest.java 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/test/java/org/nuiton/diswork/fs/AbstractDisworkFileSystemTest.java 2014-05-15 09:18:11 UTC (rev 136) @@ -71,7 +71,7 @@ /** * This setUp creates in a temp directory a file of size - * {@link randomFileSize} (fulfilling it with random bytes) + * {@link #randomFileSize} (fulfilling it with random bytes) * This file can be found at {@link #randomFilePath} * At the end of the method {@link #fileSystem} is ready to be used * @throws Exception @@ -146,7 +146,7 @@ } /** - * tests {@link org.nuiton.diswork.fs.storage.Storage#SplitBlocksInputStream} + * tests {@code org.nuiton.diswork.fs.storage.Storage.SplitBlocksInputStream} * by storing a "-1" byte, can be buggy due to the use of read() */ @Test Modified: trunk/diswork-fs/src/test/resources/log4j.properties =================================================================== --- trunk/diswork-fs/src/test/resources/log4j.properties 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/diswork-fs/src/test/resources/log4j.properties 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,24 @@ +### +# #%L +# Diswork File-System +# %% +# Copyright (C) 2010 - 2014 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% +### # Global logging configuration log4j.rootLogger=WARN, stdout # Console output... Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/pom.xml 2014-05-15 09:18:11 UTC (rev 136) @@ -10,7 +10,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>mavenpom4redmine</artifactId> - <version>2.4.1</version> + <version>5.0.6</version> </parent> <artifactId>diswork</artifactId> @@ -216,11 +216,9 @@ <!-- Source control management. --> <scm> - <connection>scm:svn:http://svn.nuiton.org/svn/diswork/trunk</connection> - <developerConnection> - scm:svn:http://svn.nuiton.org/svn/diswork/trunk - </developerConnection> - <url>http://www.nuiton.org/repositories/browse/diswork/trunk</url> + <connection>scm:svn:https://svn.nuiton.org/diswork/trunk</connection> + <developerConnection>scm:svn:https://svn.nuiton.org/diswork/trunk</developerConnection> + <url>http://www.nuiton.org/projects/diswork/repository/trunk</url> </scm> </project> Modified: trunk/src/site/rst/devel-draft-0.2.rst =================================================================== --- trunk/src/site/rst/devel-draft-0.2.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/devel-draft-0.2.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + ======================== Draft pour Diswork v 0.2 ======================== Modified: trunk/src/site/rst/diswork-daemon/devel.rst =================================================================== --- trunk/src/site/rst/diswork-daemon/devel.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/diswork-daemon/devel.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + ======================== How Diswork Daemon works ======================== Modified: trunk/src/site/rst/diswork-daemon/draft.rst =================================================================== --- trunk/src/site/rst/diswork-daemon/draft.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/diswork-daemon/draft.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + Diswork first draft (fin mars 2010) =================================== Modified: trunk/src/site/rst/diswork-fs/devel.rst =================================================================== --- trunk/src/site/rst/diswork-fs/devel.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/diswork-fs/devel.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + ============================= How Diswork File System works ============================= Modified: trunk/src/site/rst/diswork-fs/history.rst =================================================================== --- trunk/src/site/rst/diswork-fs/history.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/diswork-fs/history.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + ========== Historique ========== Modified: trunk/src/site/rst/index.rst =================================================================== --- trunk/src/site/rst/index.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/index.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + Presentation ============ Modified: trunk/src/site/rst/user/how_to_use.rst =================================================================== --- trunk/src/site/rst/user/how_to_use.rst 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/rst/user/how_to_use.rst 2014-05-15 09:18:11 UTC (rev 136) @@ -1,3 +1,25 @@ +.. - +.. * #%L +.. * Diswork +.. * %% +.. * Copyright (C) 2010 - 2014 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% +.. - + ================== How to use Diswork ================== Modified: trunk/src/site/site_en.xml =================================================================== --- trunk/src/site/site_en.xml 2010-11-21 14:31:17 UTC (rev 135) +++ trunk/src/site/site_en.xml 2014-05-15 09:18:11 UTC (rev 136) @@ -1,6 +1,47 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- + #%L + Diswork + %% + Copyright (C) 2010 - 2014 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% + --> + <project name="${project.name}"> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.3.1</version> + </skin> + + <custom> + <fluidoSkin> + <topBarEnabled>false</topBarEnabled> + <googleSearch/> + <sideBarEnabled>true</sideBarEnabled> + <searchEnabled>true</searchEnabled> + <sourceLineNumbersEnabled>true</sourceLineNumbersEnabled> + </fluidoSkin> + </custom> + + <publishDate position="right"/> + <version position="right"/> + <bannerLeft> <name>${project.name}</name> <href>index.html</href> @@ -8,7 +49,7 @@ <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://doc.nuiton.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>