From: <de...@us...> - 2009-12-10 13:16:11
|
Revision: 5548 http://fudaa.svn.sourceforge.net/fudaa/?rev=5548&view=rev Author: deniger Date: 2009-12-10 13:16:00 +0000 (Thu, 10 Dec 2009) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2009-12-10 13:06:16 UTC (rev 5547) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2009-12-10 13:16:00 UTC (rev 5548) @@ -113,8 +113,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "0.95"; - infoSoft.date = "2009-12-08"; + infoSoft.version = "0.96"; + infoSoft.date = "2009-12-10"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2010-01-03 21:33:55
|
Revision: 5581 http://fudaa.svn.sourceforge.net/fudaa/?rev=5581&view=rev Author: deniger Date: 2010-01-03 21:33:49 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-01-03 21:30:58 UTC (rev 5580) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-01-03 21:33:49 UTC (rev 5581) @@ -85,9 +85,7 @@ } public static void init() { - if (infoSoft != null) { - return; - } + if (infoSoft != null) { return; } final String languages = "fr,en"; @@ -113,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "0.96"; - infoSoft.date = "2009-12-10"; + infoSoft.version = "0.96RC3"; + infoSoft.date = "2009-12-22"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; @@ -130,7 +128,7 @@ } else { infoSoft.man = manUrl.toString() + '/'; } - infoSoft.authors = new String[] {"Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul" }; + infoSoft.authors = new String[] { "Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul" }; infoSoft.contributors = new String[] { "Equipes Dodico, Ebli et Fudaa" }; infoSoft.documentors = new String[] { "" }; infoSoft.testers = new String[] { "Fr\xE9d\xE9ric Deniger, Patrick Gomi, Vanessya Laborie", "Andr\xE9 Paquier", @@ -256,16 +254,12 @@ } public TrImplHelperAbstract getImplHelper(final String _id) { - if (_id == null) { - return null; - } + if (_id == null) { return null; } if (FileFormatSoftware.REFLUX_IS.name.equals(_id)) { return getRefluxImplHelper(); } else if (FileFormatSoftware.TELEMAC_IS.name.equals(_id)) { return getTelemacImplHelper(); - } else if (FileFormatSoftware.RUBAR_IS.name.equals(_id)) { - return getRubarImplHelper(); - } + } else if (FileFormatSoftware.RUBAR_IS.name.equals(_id)) { return getRubarImplHelper(); } FuLog.warning(new Throwable()); return null; } @@ -314,34 +308,26 @@ } public TrEditorImplementation findImplWithOpenedFile(final File _f) { - if (_f == null || !_f.exists()) { - return null; - } + if (_f == null || !_f.exists()) { return null; } final DefaultListModel model = BuRegistry.getModel(); for (int i = model.getSize() - 1; i >= 0; i--) { final Object app = model.get(i); if (app instanceof BuApplication && ((BuApplication) app).getImplementation() instanceof TrEditorImplementation) { final TrEditorImplementation imp = (TrEditorImplementation) ((BuApplication) app).getImplementation(); - if (imp.projetCourant() != null && _f.equals(imp.projetCourant().getParamsFile())) { - return imp; - } + if (imp.projetCourant() != null && _f.equals(imp.projetCourant().getParamsFile())) { return imp; } } } return null; } public boolean isUsedInEditor(final File _f) { - if (_f == null) { - return false; - } + if (_f == null) { return false; } final DefaultListModel model = BuRegistry.getModel(); for (int i = model.getSize() - 1; i >= 0; i--) { final Object app = model.get(i); if (app instanceof BuApplication && ((BuApplication) app).getImplementation() instanceof TrEditorImplementation) { final TrEditorImplementation imp = (TrEditorImplementation) ((BuApplication) app).getImplementation(); - if (imp.projetCourant() != null && imp.projetCourant().isAlreadyUsed(_f)) { - return true; - } + if (imp.projetCourant() != null && imp.projetCourant().isAlreadyUsed(_f)) { return true; } } } return false; @@ -352,17 +338,13 @@ } public TrPostImplementation findPostWithOpenedFile(final File _f) { - if (_f == null || !_f.exists()) { - return null; - } + if (_f == null || !_f.exists()) { return null; } final DefaultListModel model = BuRegistry.getModel(); for (int i = model.getSize() - 1; i >= 0; i--) { final Object app = model.get(i); if (app instanceof BuApplication && ((BuApplication) app).getImplementation() instanceof TrPostImplementation) { final TrPostImplementation imp = (TrPostImplementation) ((BuApplication) app).getImplementation(); - if (imp.getCurrentProject() != null && imp.getCurrentProject().isOpened(_f)) { - return imp; - } + if (imp.getCurrentProject() != null && imp.getCurrentProject().getSources().isOpened(_f)) { return imp; } } } return null; @@ -407,13 +389,13 @@ * Methode appelee pour generer le trpost avec le ficheir de layout ouvert. */ public TrPostImplementation openLayoutPost(final File _f) { - - //-- version scop ou non --// -// if(TrApplicationManager.isScopFormat(_f)){ -// return openScopPost(_f); -// -// } - + + // -- version scop ou non --// + // if(TrApplicationManager.isScopFormat(_f)){ + // return openScopPost(_f); + // + // } + final TrPostImplementation alreadyOpened = findPostWithOpenedFile(_f); if (alreadyOpened != null) { alreadyOpened.setMainErrorAndClear(TrLib.getMessageAlreadyOpen(_f)); @@ -442,7 +424,7 @@ return post; } - + /** * Methode appelee pour generer le trpost avec le fichier scop choisi (S, T ou GENE) */ @@ -465,10 +447,9 @@ public void run() { if (_f != null) { - - post.cmdOuvrirScopFile(_f); - - + + post.cmdOuvrirScopFile(_f); + } } @@ -477,7 +458,6 @@ return post; } - public TrPostImplementation openPost(final File _f) { final TrPostImplementation alreadyOpened = findPostWithOpenedFile(_f); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fa...@us...> - 2010-01-28 13:18:37
|
Revision: 5652 http://fudaa.svn.sourceforge.net/fudaa/?rev=5652&view=rev Author: fargeix Date: 2010-01-28 13:18:08 +0000 (Thu, 28 Jan 2010) Log Message: ----------- Fudaa-Prepro version 1.00 Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-01-27 17:05:41 UTC (rev 5651) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-01-28 13:18:08 UTC (rev 5652) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "0.96RC4"; - infoSoft.date = "2010-01-18"; + infoSoft.version = "1.00"; + infoSoft.date = "2010-01-27"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; @@ -128,7 +128,7 @@ } else { infoSoft.man = manUrl.toString() + '/'; } - infoSoft.authors = new String[] { "Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul" }; + infoSoft.authors = new String[] { "Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul", "M\xE9d\xE9ric FARGEIX" }; infoSoft.contributors = new String[] { "Equipes Dodico, Ebli et Fudaa" }; infoSoft.documentors = new String[] { "" }; infoSoft.testers = new String[] { "Fr\xE9d\xE9ric Deniger, Patrick Gomi, Vanessya Laborie", "Andr\xE9 Paquier", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2010-08-30 21:16:43
|
Revision: 5904 http://fudaa.svn.sourceforge.net/fudaa/?rev=5904&view=rev Author: deniger Date: 2010-08-30 21:16:37 +0000 (Mon, 30 Aug 2010) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-08-30 21:15:48 UTC (rev 5903) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-08-30 21:16:37 UTC (rev 5904) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC8"; - infoSoft.date = "2010-08-24"; + infoSoft.version = "1.1RC9"; + infoSoft.date = "2010-08-31"; // infoSoft.version = "1.00"; // infoSoft.date = "2010-01-27"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2010-11-06 01:04:47
|
Revision: 6034 http://fudaa.svn.sourceforge.net/fudaa/?rev=6034&view=rev Author: deniger Date: 2010-11-05 23:50:42 +0000 (Fri, 05 Nov 2010) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-05 23:30:34 UTC (rev 6033) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-05 23:50:42 UTC (rev 6034) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC13"; - infoSoft.date = "2010-10-20"; + infoSoft.version = "1.1RC14"; + infoSoft.date = "2010-11-05"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2010-11-12 14:02:50
|
Revision: 6038 http://fudaa.svn.sourceforge.net/fudaa/?rev=6038&view=rev Author: deniger Date: 2010-11-12 14:02:39 +0000 (Fri, 12 Nov 2010) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-12 14:01:08 UTC (rev 6037) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-12 14:02:39 UTC (rev 6038) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC14"; - infoSoft.date = "2010-11-05"; + infoSoft.version = "1.1RC15"; + infoSoft.date = "2010-11-12"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2010-11-26 17:15:46
|
Revision: 6052 http://fudaa.svn.sourceforge.net/fudaa/?rev=6052&view=rev Author: deniger Date: 2010-11-26 17:15:40 +0000 (Fri, 26 Nov 2010) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-26 16:05:17 UTC (rev 6051) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2010-11-26 17:15:40 UTC (rev 6052) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC15"; - infoSoft.date = "2010-11-12"; + infoSoft.version = "1.1RC16"; + infoSoft.date = "2010-11-23"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-01-10 21:19:05
|
Revision: 6074 http://fudaa.svn.sourceforge.net/fudaa/?rev=6074&view=rev Author: deniger Date: 2011-01-10 21:18:58 +0000 (Mon, 10 Jan 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-01-10 21:18:36 UTC (rev 6073) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-01-10 21:18:58 UTC (rev 6074) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC19"; - infoSoft.date = "2011-11-06"; + infoSoft.version = "1.1RC20"; + infoSoft.date = "2011-01-10"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-03-27 21:37:20
|
Revision: 6178 http://fudaa.svn.sourceforge.net/fudaa/?rev=6178&view=rev Author: deniger Date: 2011-03-27 21:37:13 +0000 (Sun, 27 Mar 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-03-27 21:36:56 UTC (rev 6177) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-03-27 21:37:13 UTC (rev 6178) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC20"; - infoSoft.date = "2011-01-10"; + infoSoft.version = "1.1RC21"; + infoSoft.date = "2011-03-28"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-04-28 22:39:24
|
Revision: 6240 http://fudaa.svn.sourceforge.net/fudaa/?rev=6240&view=rev Author: deniger Date: 2011-04-28 22:39:18 +0000 (Thu, 28 Apr 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-04-28 22:31:32 UTC (rev 6239) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-04-28 22:39:18 UTC (rev 6240) @@ -112,7 +112,7 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; infoSoft.version = "1.1RC24"; - infoSoft.date = "2011-04-21"; + infoSoft.date = "2011-04-29"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-07-06 22:13:58
|
Revision: 6324 http://fudaa.svn.sourceforge.net/fudaa/?rev=6324&view=rev Author: deniger Date: 2011-07-06 22:13:51 +0000 (Wed, 06 Jul 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-07-06 21:59:32 UTC (rev 6323) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-07-06 22:13:51 UTC (rev 6324) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC24"; - infoSoft.date = "2011-04-29"; + infoSoft.version = "1.1RC25"; + infoSoft.date = "2011-07-07"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-08-25 07:48:13
|
Revision: 6352 http://fudaa.svn.sourceforge.net/fudaa/?rev=6352&view=rev Author: deniger Date: 2011-08-25 07:48:07 +0000 (Thu, 25 Aug 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-08-25 07:47:08 UTC (rev 6351) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-08-25 07:48:07 UTC (rev 6352) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC26"; - infoSoft.date = "2011-08-08"; + infoSoft.version = "1.1RC27"; + infoSoft.date = "2011-08-25"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-09-26 19:22:46
|
Revision: 6451 http://fudaa.svn.sourceforge.net/fudaa/?rev=6451&view=rev Author: deniger Date: 2011-09-26 19:22:40 +0000 (Mon, 26 Sep 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-09-26 19:20:12 UTC (rev 6450) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-09-26 19:22:40 UTC (rev 6451) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC27"; - infoSoft.date = "2011-08-25"; + infoSoft.version = "1.1RC28"; + infoSoft.date = "2011-09-26"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2011-09-28 20:25:09
|
Revision: 6456 http://fudaa.svn.sourceforge.net/fudaa/?rev=6456&view=rev Author: deniger Date: 2011-09-28 20:25:03 +0000 (Wed, 28 Sep 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-09-28 20:19:15 UTC (rev 6455) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2011-09-28 20:25:03 UTC (rev 6456) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC28"; - infoSoft.date = "2011-09-26"; + infoSoft.version = "1.1RC29"; + infoSoft.date = "2011-09-28"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-01-17 21:50:23
|
Revision: 6923 http://fudaa.svn.sourceforge.net/fudaa/?rev=6923&view=rev Author: deniger Date: 2012-01-17 21:50:16 +0000 (Tue, 17 Jan 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-01-17 21:49:47 UTC (rev 6922) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-01-17 21:50:16 UTC (rev 6923) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC29-Rubar"; - infoSoft.date = "2011-12-13"; + infoSoft.version = "1.1RC30-Rubar"; + infoSoft.date = "2012-01-18"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-03-05 22:40:03
|
Revision: 6962 http://fudaa.svn.sourceforge.net/fudaa/?rev=6962&view=rev Author: deniger Date: 2012-03-05 22:39:56 +0000 (Mon, 05 Mar 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-03-05 22:28:43 UTC (rev 6961) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-03-05 22:39:56 UTC (rev 6962) @@ -111,8 +111,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.1RC32"; - infoSoft.date = "2012-02-17"; + infoSoft.version = "1.1RC33"; + infoSoft.date = "2012-03-05"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-05-25 23:21:24
|
Revision: 7241 http://fudaa.svn.sourceforge.net/fudaa/?rev=7241&view=rev Author: deniger Date: 2012-05-25 23:21:18 +0000 (Fri, 25 May 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-05-25 23:19:29 UTC (rev 7240) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-05-25 23:21:18 UTC (rev 7241) @@ -77,8 +77,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.2RC5"; - infoSoft.date = "2012-05-14"; + infoSoft.version = "1.2RC6"; + infoSoft.date = "2012-05-25"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-06-26 10:23:51
|
Revision: 7404 http://fudaa.svn.sourceforge.net/fudaa/?rev=7404&view=rev Author: deniger Date: 2012-06-26 10:23:40 +0000 (Tue, 26 Jun 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-06-26 10:22:22 UTC (rev 7403) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-06-26 10:23:40 UTC (rev 7404) @@ -1,9 +1,6 @@ /** - * @creation 24 mai 2004 - * @modification $Date: 2007-12-04 09:09:26 $ - * @license GNU General Public License 2 - * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne - * @mail de...@fu... + * @creation 24 mai 2004 @modification $Date: 2007-12-04 09:09:26 $ @license GNU General Public License 2 @copyright (c)1998-2001 + * CETMEF 2 bd Gambetta F-60231 Compiegne @mail de...@fu... */ package org.fudaa.fudaa.tr; @@ -77,8 +74,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.2RC8"; - infoSoft.date = "2012-06-12"; + infoSoft.version = "1.2RC9"; + infoSoft.date = "2012-06-26"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; @@ -94,10 +91,10 @@ } else { infoSoft.man = manUrl.toString() + '/'; } - infoSoft.authors = new String[] { "Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul" }; - infoSoft.contributors = new String[] { "Equipes Dodico, Ebli et Fudaa" }; - infoSoft.documentors = new String[] { "" }; - infoSoft.testers = new String[] { "Fr\xE9d\xE9ric Deniger, Patrick Gomi, Vanessya Laborie", "Andr\xE9 Paquier", "Didier Roug\xE9" }; + infoSoft.authors = new String[]{"Fr\xE9d\xE9ric Deniger", "Nicolas Clavreul"}; + infoSoft.contributors = new String[]{"Equipes Dodico, Ebli et Fudaa"}; + infoSoft.documentors = new String[]{""}; + infoSoft.testers = new String[]{"Fr\xE9d\xE9ric Deniger, Patrick Gomi, Vanessya Laborie", "Andr\xE9 Paquier", "Didier Roug\xE9"}; infoSoft.citation = ""; FudaaSaveLib.configureDb4o(); } @@ -146,17 +143,11 @@ return _impl; } - protected FollowApp tail_; - TrImplHelperAbstract helper_; - private TrRefluxImplHelper refluxImplHelper_; - private TrTelemacImplHelper telemacImplHelper_; - private TrRubarImplHelper rubarImplHelper_; - protected TrSupervisorImplementation supervisor_; /** @@ -214,7 +205,7 @@ @Override public String[] getDefaultArgs() { - return new String[] { "--no_splash", "--no_log" }; + return new String[]{"--no_splash", "--no_log"}; } @Override @@ -254,7 +245,7 @@ * @return les choix */ public static String[] getChoices() { - return new String[] { FileFormatSoftware.REFLUX_IS.name, FileFormatSoftware.RUBAR_IS.name, FileFormatSoftware.TELEMAC_IS.name }; + return new String[]{FileFormatSoftware.REFLUX_IS.name, FileFormatSoftware.RUBAR_IS.name, FileFormatSoftware.TELEMAC_IS.name}; } /** @@ -265,7 +256,8 @@ final String init = TrPreferences.TR.getStringProperty("tr.code.id", null); final String[] choix = getChoices(); final BuDialogChoice dialc = new BuDialogChoice(null, TrEditorImplementation.informationsSoftware(), - TrResource.getS("Configuration cha\xEEne de calcul"), TrResource.getS("Veuillez s\xE9lectionner la cha\xEEne de calcul utilis\xE9e"), choix); + TrResource.getS("Configuration cha\xEEne de calcul"), TrResource.getS( + "Veuillez s\xE9lectionner la cha\xEEne de calcul utilis\xE9e"), choix); dialc.setSize(200, 200); if (init != null) { dialc.setValue(init); @@ -402,7 +394,6 @@ post.cmdOuvrirLayoutFile(_f, forceRecompute); } } - }); return post; @@ -437,7 +428,6 @@ } } - }); return post; @@ -467,7 +457,6 @@ post.cmdOuvrirFile(_f); } } - }); return post; @@ -525,7 +514,8 @@ public void ouvrirHydEditor(final String _hydId, final File _projectFile) { final TrEditorImplementation alreadyOpened = findImplWithOpenedFile(_projectFile); if (alreadyOpened != null) { - alreadyOpened.warn(TrResource.getS("Ouverture"), TrResource.getS("Le fichier {0} est d\xE9j\xE0 ouvert", _projectFile.getName()), false); + alreadyOpened.warn(TrResource.getS("Ouverture"), TrResource.getS("Le fichier {0} est d\xE9j\xE0 ouvert", _projectFile.getName()), + false); alreadyOpened.getFrame().setVisible(true); alreadyOpened.getFrame().setState(Frame.NORMAL); alreadyOpened.getFrame().requestFocus(); @@ -533,10 +523,13 @@ } BuLib.invokeNow(new Runnable() { + @Override public void run() { - final TrEditorImplementation impl = (TrEditorImplementation) launch(null, TrLauncherDefault.this, new TrEditorImplementation()); + final TrEditorImplementation impl = (TrEditorImplementation) launch(null, TrLauncherDefault.this, + new TrEditorImplementation()); BuLib.invokeLater(new Runnable() { + @Override public void run() { if (_projectFile != null) { @@ -548,7 +541,6 @@ }); } - static JDialog updateDial_; @Override @@ -581,5 +573,4 @@ public static BuInformationsSoftware getInfosSoftware() { return infoSoft; } - } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-06-28 14:28:03
|
Revision: 7412 http://fudaa.svn.sourceforge.net/fudaa/?rev=7412&view=rev Author: deniger Date: 2012-06-28 14:27:52 +0000 (Thu, 28 Jun 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-06-28 11:30:33 UTC (rev 7411) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-06-28 14:27:52 UTC (rev 7412) @@ -74,8 +74,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.2RC9"; - infoSoft.date = "2012-06-26"; + infoSoft.version = "1.2RC10"; + infoSoft.date = "2012-06-28"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-07-11 09:16:53
|
Revision: 7478 http://fudaa.svn.sourceforge.net/fudaa/?rev=7478&view=rev Author: deniger Date: 2012-07-11 09:16:43 +0000 (Wed, 11 Jul 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-07-11 08:47:49 UTC (rev 7477) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-07-11 09:16:43 UTC (rev 7478) @@ -23,7 +23,6 @@ import com.memoire.fu.FuLib; import com.memoire.fu.FuLog; -import org.fudaa.ctulu.CtuluLib; import org.fudaa.ctulu.gui.CtuluLibDialog; import org.fudaa.ctulu.gui.CtuluTaskOperationGUI; import org.fudaa.dodico.fichiers.FileFormatSoftware; @@ -74,8 +73,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.2RC10"; - infoSoft.date = "2012-06-28"; + infoSoft.version = "1.2RC11"; + infoSoft.date = "2012-07-11"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2012-10-24 15:55:54
|
Revision: 7798 http://fudaa.svn.sourceforge.net/fudaa/?rev=7798&view=rev Author: deniger Date: 2012-10-24 15:55:43 +0000 (Wed, 24 Oct 2012) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-10-24 15:51:50 UTC (rev 7797) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2012-10-24 15:55:43 UTC (rev 7798) @@ -73,8 +73,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.2"; - infoSoft.date = "2012-10-15"; + infoSoft.version = "1.2-RC15"; + infoSoft.date = "2012-10-24"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2014-06-25 21:05:11
|
Revision: 8775 http://sourceforge.net/p/fudaa/svn/8775 Author: deniger Date: 2014-06-25 21:05:04 +0000 (Wed, 25 Jun 2014) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2014-06-25 21:00:10 UTC (rev 8774) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2014-06-25 21:05:04 UTC (rev 8775) @@ -72,8 +72,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.3-RC4"; - infoSoft.date = "2014-06-24"; + infoSoft.version = "1.3-RC5"; + infoSoft.date = "2014-06-25"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2015-08-24 21:40:27
|
Revision: 9154 http://sourceforge.net/p/fudaa/svn/9154 Author: deniger Date: 2015-08-24 21:40:25 +0000 (Mon, 24 Aug 2015) Log Message: ----------- Maj version Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2015-08-24 21:19:43 UTC (rev 9153) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2015-08-24 21:40:25 UTC (rev 9154) @@ -72,8 +72,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.3.0-RC8"; - infoSoft.date = "2014-10-09"; + infoSoft.version = "1.3.0-RC9"; + infoSoft.date = "2015-08-24"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2016-04-26 22:30:07
|
Revision: 9391 http://sourceforge.net/p/fudaa/svn/9391 Author: deniger Date: 2016-04-26 22:30:04 +0000 (Tue, 26 Apr 2016) Log Message: ----------- version 1.9-SNAPSHOT Modified Paths: -------------- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java Modified: trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java =================================================================== --- trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2016-04-26 22:06:09 UTC (rev 9390) +++ trunk/soft/fudaa-prepro/ui/src/main/java/org/fudaa/fudaa/tr/TrLauncherDefault.java 2016-04-26 22:30:04 UTC (rev 9391) @@ -72,8 +72,8 @@ infoSoft = new BuInformationsSoftware(); infoSoft.name = "prepro"; - infoSoft.version = "1.3.1-RC10"; - infoSoft.date = "2016-20-01"; + infoSoft.version = "1.3.0-RC12"; + infoSoft.date = "2016-04-27"; infoSoft.rights = TrResource.getS("Tous droits r\xE9serv\xE9s") + ". CETMEF (c)2003-2009"; infoSoft.contact = "fre...@fu..."; infoSoft.license = "GPL2"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |