r2511 - in trunk/nuiton-updater/src: main/java/org/nuiton/util/updater site site/apt test/java/org/nuiton/util/updater test/resources
Author: tchemit Date: 2013-02-24 11:50:12 +0100 (Sun, 24 Feb 2013) New Revision: 2511 Url: http://nuiton.org/projects/nuiton-utils/repository/revisions/2511 Log: update link and headers Modified: trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationInfo.java trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdater.java trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdaterCallback.java trunk/nuiton-updater/src/site/apt/index.apt trunk/nuiton-updater/src/site/site_fr.xml trunk/nuiton-updater/src/test/java/org/nuiton/util/updater/ApplicationUpdaterTest.java trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkAuthTest.properties trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkTest.properties trunk/nuiton-updater/src/test/resources/ApplicationUpdaterTest.properties trunk/nuiton-updater/src/test/resources/log4j.properties Modified: trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationInfo.java =================================================================== --- trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationInfo.java 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationInfo.java 2013-02-24 10:50:12 UTC (rev 2511) @@ -6,7 +6,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2013 CodeLutin + * Copyright (C) 2013 CodeLutin, Tony Chemit * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdater.java =================================================================== --- trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdater.java 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdater.java 2013-02-24 10:50:12 UTC (rev 2511) @@ -6,7 +6,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2013 CodeLutin + * Copyright (C) 2013 CodeLutin, Tony Chemit * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdaterCallback.java =================================================================== --- trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdaterCallback.java 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/main/java/org/nuiton/util/updater/ApplicationUpdaterCallback.java 2013-02-24 10:50:12 UTC (rev 2511) @@ -6,7 +6,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2013 CodeLutin + * Copyright (C) 2013 CodeLutin, Tony Chemit * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as @@ -68,17 +68,13 @@ void startUpdate(ApplicationInfo info); /** - * Appeler une fois qu'une mise a jour a parfaitement fonctionne + * Appeler une fois qu'une mise a jour a parfaitement fonctionné. * - * @param name le nom de l'application - * @param oldVersion l'ancienne version - * @param newVersion la nouvelle version - * @param applicationURL l'url d'ou provient le zip de l'application - * @param dest le repertoire ou se trouve la nouvelle version + * @param appToUpdate le dictionnaire des applications mises à jour + * @param appUpdateError le dictionnaires des erreurs rencontrées lors des mises à jour */ - void updateDone( - Map<String, ApplicationInfo> appToUpdate, - Map<String, Exception> appUpdateError); + void updateDone(Map<String, ApplicationInfo> appToUpdate, + Map<String, Exception> appUpdateError); /** * Called when exception occur during process initialization Modified: trunk/nuiton-updater/src/site/apt/index.apt =================================================================== --- trunk/nuiton-updater/src/site/apt/index.apt 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/site/apt/index.apt 2013-02-24 10:50:12 UTC (rev 2511) @@ -1,3 +1,10 @@ + ---- + Nuiton updater + ---- + ---- + 2013-02-24 + ---- + ~~~ ~~ #%L ~~ Nuiton Utils :: Nuiton Updater @@ -4,31 +11,24 @@ ~~ $Id$ ~~ $HeadURL$ ~~ %% -~~ Copyright (C) 2013 CodeLutin +~~ Copyright (C) 2013 CodeLutin,Tony Chemit ~~ %% ~~ 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 +~~ 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 +~~ +~~ 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% ~~~ - ---- - Nuiton updater - ---- - ---- - 2013-02-24 - ---- - Présentation TODO Modified: trunk/nuiton-updater/src/site/site_fr.xml =================================================================== --- trunk/nuiton-updater/src/site/site_fr.xml 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/site/site_fr.xml 2013-02-24 10:50:12 UTC (rev 2511) @@ -5,7 +5,7 @@ $Id$ $HeadURL$ %% - Copyright (C) 2013 CodeLutin + Copyright (C) 2013 CodeLutin,Tony Chemit %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/test/java/org/nuiton/util/updater/ApplicationUpdaterTest.java =================================================================== --- trunk/nuiton-updater/src/test/java/org/nuiton/util/updater/ApplicationUpdaterTest.java 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/test/java/org/nuiton/util/updater/ApplicationUpdaterTest.java 2013-02-24 10:50:12 UTC (rev 2511) @@ -6,7 +6,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2013 CodeLutin + * Copyright (C) 2013 CodeLutin, Tony Chemit * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkAuthTest.properties =================================================================== --- trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkAuthTest.properties 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkAuthTest.properties 2013-02-24 10:50:12 UTC (rev 2511) @@ -1,10 +1,10 @@ ### # #%L -# Nuiton Utils :: Nuiton Utils +# Nuiton Utils :: Nuiton Updater # $Id$ # $HeadURL$ # %% -# Copyright (C) 2004 - 2013 CodeLutin +# Copyright (C) 2013 CodeLutin, Tony Chemit # %% # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkTest.properties =================================================================== --- trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkTest.properties 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/test/resources/ApplicationUpdaterNetworkTest.properties 2013-02-24 10:50:12 UTC (rev 2511) @@ -1,10 +1,10 @@ ### # #%L -# Nuiton Utils :: Nuiton Utils +# Nuiton Utils :: Nuiton Updater # $Id$ # $HeadURL$ # %% -# Copyright (C) 2004 - 2013 CodeLutin +# Copyright (C) 2013 CodeLutin, Tony Chemit # %% # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as @@ -22,8 +22,8 @@ # #L% ### App1.version=0.3 -App1.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-utils/src/test/resources... +App1.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-updater/src/test/resourc... linux.App3.version=8 -linux.App3.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-utils/src/test/resources... +linux.App3.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-updater/src/test/resourc... linux.amd64.App2.version=7 -linux.amd64.App2.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-utils/src/test/resources... +linux.amd64.App2.url=zip:http://svn.nuiton.org/svn/nuiton-utils/trunk/nuiton-updater/src/test/resourc... Modified: trunk/nuiton-updater/src/test/resources/ApplicationUpdaterTest.properties =================================================================== --- trunk/nuiton-updater/src/test/resources/ApplicationUpdaterTest.properties 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/test/resources/ApplicationUpdaterTest.properties 2013-02-24 10:50:12 UTC (rev 2511) @@ -1,10 +1,10 @@ ### # #%L -# Nuiton Utils :: Nuiton Utils +# Nuiton Utils :: Nuiton Updater # $Id$ # $HeadURL$ # %% -# Copyright (C) 2004 - 2013 CodeLutin +# Copyright (C) 2013 CodeLutin, Tony Chemit # %% # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as Modified: trunk/nuiton-updater/src/test/resources/log4j.properties =================================================================== --- trunk/nuiton-updater/src/test/resources/log4j.properties 2013-02-24 10:39:44 UTC (rev 2510) +++ trunk/nuiton-updater/src/test/resources/log4j.properties 2013-02-24 10:50:12 UTC (rev 2511) @@ -1,11 +1,10 @@ ### # #%L -# Nuiton Utils -# +# Nuiton Utils :: Nuiton Updater # $Id$ # $HeadURL$ # %% -# Copyright (C) 2004 - 2011 CodeLutin, Chatellier Eric +# Copyright (C) 2013 CodeLutin, Tony Chemit # %% # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as @@ -31,4 +30,4 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) %M - %m%n # package level -log4j.logger.org.nuiton.util=INFO +log4j.logger.org.nuiton.util.updater=INFO
participants (1)
-
tchemit@users.nuiton.org