japi-cvs Mailing List for JAPI (Page 9)
Status: Beta
Brought to you by:
christianhujer
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
(115) |
May
(11) |
Jun
(5) |
Jul
(2) |
Aug
(10) |
Sep
(35) |
Oct
(14) |
Nov
(49) |
Dec
(27) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(57) |
Feb
(1) |
Mar
|
Apr
(2) |
May
(25) |
Jun
(134) |
Jul
(76) |
Aug
(34) |
Sep
(27) |
Oct
(5) |
Nov
|
Dec
(1) |
2008 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(63) |
Nov
(30) |
Dec
(43) |
2009 |
Jan
(10) |
Feb
(420) |
Mar
(67) |
Apr
(3) |
May
(61) |
Jun
(21) |
Jul
(19) |
Aug
|
Sep
(6) |
Oct
(16) |
Nov
(1) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
(7) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: <chr...@us...> - 2009-03-01 21:05:37
|
Revision: 1210 http://japi.svn.sourceforge.net/japi/?rev=1210&view=rev Author: christianhujer Date: 2009-03-01 21:05:28 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Update historic libraries for IntelliJ IDEA. Modified Paths: -------------- historic/trunk/historic.iml Modified: historic/trunk/historic.iml =================================================================== --- historic/trunk/historic.iml 2009-03-01 21:04:50 UTC (rev 1209) +++ historic/trunk/historic.iml 2009-03-01 21:05:28 UTC (rev 1210) @@ -13,7 +13,6 @@ </content> <orderEntry type="inheritedJdk" /> <orderEntry type="sourceFolder" forTests="false" /> - <orderEntry type="library" name="annotations" level="project" /> <orderEntry type="module" module-name="libs-lang" /> <orderEntry type="module" module-name="libs-swing-action" /> <orderEntry type="module" module-name="libs-swing-keyprefs" /> @@ -22,8 +21,16 @@ <orderEntry type="module" module-name="libs-swing-tod" /> <orderEntry type="module" module-name="libs-swing-extlib" /> <orderEntry type="module" module-name="libs-swing-prefs" /> - <orderEntry type="library" name="junit" level="project" /> <orderEntry type="module" module-name="libs-xml" /> + <orderEntry type="module-library"> + <library name="annotations"> + <CLASSES> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> </component> <component name="copyright"> <Base> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 21:04:59
|
Revision: 1209 http://japi.svn.sourceforge.net/japi/?rev=1209&view=rev Author: christianhujer Date: 2009-03-01 21:04:50 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Fix IntelliJ IDEA warnings. Modified Paths: -------------- libs/swing-about/trunk/src/prj/net/sf/japi/swing/about/AboutDialog.java Modified: libs/swing-about/trunk/src/prj/net/sf/japi/swing/about/AboutDialog.java =================================================================== --- libs/swing-about/trunk/src/prj/net/sf/japi/swing/about/AboutDialog.java 2009-03-01 20:54:33 UTC (rev 1208) +++ libs/swing-about/trunk/src/prj/net/sf/japi/swing/about/AboutDialog.java 2009-03-01 21:04:50 UTC (rev 1209) @@ -206,11 +206,13 @@ */ @NotNull private Component buildLicenseSubTab(@NotNull final String number) { String licenseText; + //noinspection ProhibitedExceptionCaught try { final Reader in = new InputStreamReader(new BufferedInputStream(getClass().getClassLoader().getResource(actionBuilder.getString("license." + number + ".file")).openStream())); try { final StringBuilder sb = new StringBuilder(); final char[] buf = new char[BUF_SIZE]; + //noinspection NestedAssignment for (int bytesRead; (bytesRead = in.read(buf)) != -1;) { sb.append(buf, 0, bytesRead); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 20:54:48
|
Revision: 1208 http://japi.svn.sourceforge.net/japi/?rev=1208&view=rev Author: christianhujer Date: 2009-03-01 20:54:33 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Removed deprecated variant of the showMessageDialog() method. Modified Paths: -------------- libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/ActionBuilder.java libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DefaultActionBuilder.java libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DummyActionBuilder.java Modified: libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/ActionBuilder.java =================================================================== --- libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/ActionBuilder.java 2009-03-01 20:36:29 UTC (rev 1207) +++ libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/ActionBuilder.java 2009-03-01 20:54:33 UTC (rev 1208) @@ -420,19 +420,9 @@ /** Show a localized message dialog. * @param parentComponent determines the Frame in which the dialog is displayed; if <code>null</code>, or if the <code>parentComponent</code> has * no <code>Frame</code>, a default <code>Frame</code> is used - * @param messageType the type of message to be displayed * @param key localization key to use for the title, the message and eventually the icon * @param args formatting arguments for the message text - * @deprecated use {@link #showMessageDialog(Component, String, Object...)} instead and put the messagetype in the action.properties file. */ - @Deprecated void showMessageDialog(Component parentComponent, int messageType, String key, Object... args); - - /** Show a localized message dialog. - * @param parentComponent determines the Frame in which the dialog is displayed; if <code>null</code>, or if the <code>parentComponent</code> has - * no <code>Frame</code>, a default <code>Frame</code> is used - * @param key localization key to use for the title, the message and eventually the icon - * @param args formatting arguments for the message text - */ void showMessageDialog(@Nullable Component parentComponent, @NotNull String key, Object... args); /** Get the message type for a dialog. Modified: libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DefaultActionBuilder.java =================================================================== --- libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DefaultActionBuilder.java 2009-03-01 20:36:29 UTC (rev 1207) +++ libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DefaultActionBuilder.java 2009-03-01 20:54:33 UTC (rev 1208) @@ -819,21 +819,9 @@ /** Show a localized message dialog. * @param parentComponent determines the Frame in which the dialog is displayed; if <code>null</code>, or if the <code>parentComponent</code> has * no <code>Frame</code>, a default <code>Frame</code> is used - * @param messageType the type of message to be displayed * @param key localization key to use for the title, the message and eventually the icon * @param args formatting arguments for the message text - * @deprecated use {@link #showMessageDialog(Component, String, Object...)} instead and put the messagetype in the action.properties file. */ - @Deprecated public void showMessageDialog(final Component parentComponent, final int messageType, final String key, final Object... args) { - JOptionPane.showMessageDialog(parentComponent, format(key + ".message", args), format(key + ".title", args), messageType); - } - - /** Show a localized message dialog. - * @param parentComponent determines the Frame in which the dialog is displayed; if <code>null</code>, or if the <code>parentComponent</code> has - * no <code>Frame</code>, a default <code>Frame</code> is used - * @param key localization key to use for the title, the message and eventually the icon - * @param args formatting arguments for the message text - */ public void showMessageDialog(@Nullable final Component parentComponent, @NotNull final String key, final Object... args) { JOptionPane.showMessageDialog(parentComponent, format(key + ".message", args), format(key + ".title", args), getMessageType(key)); } Modified: libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DummyActionBuilder.java =================================================================== --- libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DummyActionBuilder.java 2009-03-01 20:36:29 UTC (rev 1207) +++ libs/swing-action/trunk/src/prj/net/sf/japi/swing/action/DummyActionBuilder.java 2009-03-01 20:54:33 UTC (rev 1208) @@ -182,10 +182,6 @@ } /** {@inheritDoc} */ - @Deprecated public void showMessageDialog(final Component parentComponent, final int messageType, final String key, final Object... args) { - } - - /** {@inheritDoc} */ public void showMessageDialog(@Nullable final Component parentComponent, @NotNull final String key, final Object... args) { } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 20:36:41
|
Revision: 1207 http://japi.svn.sourceforge.net/japi/?rev=1207&view=rev Author: christianhujer Date: 2009-03-01 20:36:29 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Updated IntelliJ IDEa module files to new settings. Modified Paths: -------------- libs/argparser/trunk/libs-argparser.iml libs/finance/trunk/libs-finance.iml libs/io/trunk/libs-io.iml libs/lang/trunk/libs-lang.iml libs/logging/trunk/libs-logging.iml libs/midi/trunk/midi.iml libs/net/trunk/libs-net.iml libs/registry/trunk/libs-registry.iml libs/swing-about/trunk/libs-swing-about.iml libs/swing-action/trunk/libs-swing-action.iml libs/swing-app/trunk/libs-swing-app.iml libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml libs/swing-extlib/trunk/libs-swing-extlib.iml libs/swing-font/trunk/libs-swing-font.iml libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml libs/swing-list/trunk/libs-swing-list.iml libs/swing-misc/trunk/libs-swing-misc.iml libs/swing-prefs/trunk/libs-swing-prefs.iml libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml libs/swing-recent/trunk/libs-swing-recent.iml libs/swing-tod/trunk/libs-swing-tod.iml libs/swing-treetable/trunk/libs-swing-treetable.iml libs/taglets/trunk/libs-taglets.iml libs/util/trunk/libs-util.iml libs/xml/trunk/libs-xml.iml progs/batcher/trunk/Batcher.iml progs/cardlearn/trunk/cardlearn.iml progs/jeduca/trunk/JEduca.iml progs/jhexedit/trunk/jhexedit.iml progs/jhexview/trunk/jhexview.iml progs/jirus/trunk/jirus.iml progs/jtype/trunk/jtype.iml progs/midilearn/trunk/midilearn.iml progs/pffhtrain/trunk/pffhtrain.iml progs/textedit/trunk/textedit.iml tools/archStat/trunk/archStat.iml tools/cstyle/trunk/cstyle.iml tools/dircount/trunk/dircount.iml tools/findLongestPath/trunk/findLongestPath.iml tools/fontbrowser/trunk/fontbrowser.iml tools/gdbControl/trunk/gdbControl.iml tools/jgrep/trunk/jgrep.iml tools/jwget/trunk/jwget.iml tools/keystrokes/trunk/keystrokes.iml tools/mail/trunk/mail.iml tools/midiDeviceLister/trunk/midiDeviceLister.iml tools/midiMonitor/trunk/midiMonitor.iml tools/prefsbrowser/trunk/prefsbrowser.iml tools/replacer/trunk/replacer.iml tools/scriptEngineLister/trunk/scriptEngineLister.iml tools/scriptInterpreter/trunk/scriptInterpreter.iml tools/string2bytes/trunk/string2bytes.iml tools/todoScanner/trunk/todoScanner.iml Modified: libs/argparser/trunk/libs-argparser.iml =================================================================== --- libs/argparser/trunk/libs-argparser.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/argparser/trunk/libs-argparser.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/finance/trunk/libs-finance.iml =================================================================== --- libs/finance/trunk/libs-finance.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/finance/trunk/libs-finance.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/io/trunk/libs-io.iml =================================================================== --- libs/io/trunk/libs-io.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/io/trunk/libs-io.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/lang/trunk/libs-lang.iml =================================================================== --- libs/lang/trunk/libs-lang.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/lang/trunk/libs-lang.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/logging/trunk/libs-logging.iml =================================================================== --- libs/logging/trunk/libs-logging.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/logging/trunk/libs-logging.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/midi/trunk/midi.iml =================================================================== --- libs/midi/trunk/midi.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/midi/trunk/midi.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/net/trunk/libs-net.iml =================================================================== --- libs/net/trunk/libs-net.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/net/trunk/libs-net.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/registry/trunk/libs-registry.iml =================================================================== --- libs/registry/trunk/libs-registry.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/registry/trunk/libs-registry.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-about/trunk/libs-swing-about.iml =================================================================== --- libs/swing-about/trunk/libs-swing-about.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-about/trunk/libs-swing-about.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -13,7 +13,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-action/trunk/libs-swing-action.iml =================================================================== --- libs/swing-action/trunk/libs-swing-action.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-action/trunk/libs-swing-action.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -13,7 +13,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-app/trunk/libs-swing-app.iml =================================================================== --- libs/swing-app/trunk/libs-swing-app.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-app/trunk/libs-swing-app.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml =================================================================== --- libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-extlib/trunk/libs-swing-extlib.iml =================================================================== --- libs/swing-extlib/trunk/libs-swing-extlib.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-extlib/trunk/libs-swing-extlib.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-font/trunk/libs-swing-font.iml =================================================================== --- libs/swing-font/trunk/libs-swing-font.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-font/trunk/libs-swing-font.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml =================================================================== --- libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-list/trunk/libs-swing-list.iml =================================================================== --- libs/swing-list/trunk/libs-swing-list.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-list/trunk/libs-swing-list.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-misc/trunk/libs-swing-misc.iml =================================================================== --- libs/swing-misc/trunk/libs-swing-misc.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-misc/trunk/libs-swing-misc.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-prefs/trunk/libs-swing-prefs.iml =================================================================== --- libs/swing-prefs/trunk/libs-swing-prefs.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-prefs/trunk/libs-swing-prefs.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml =================================================================== --- libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-recent/trunk/libs-swing-recent.iml =================================================================== --- libs/swing-recent/trunk/libs-swing-recent.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-recent/trunk/libs-swing-recent.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-tod/trunk/libs-swing-tod.iml =================================================================== --- libs/swing-tod/trunk/libs-swing-tod.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-tod/trunk/libs-swing-tod.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/swing-treetable/trunk/libs-swing-treetable.iml =================================================================== --- libs/swing-treetable/trunk/libs-swing-treetable.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/swing-treetable/trunk/libs-swing-treetable.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/taglets/trunk/libs-taglets.iml =================================================================== --- libs/taglets/trunk/libs-taglets.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/taglets/trunk/libs-taglets.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/util/trunk/libs-util.iml =================================================================== --- libs/util/trunk/libs-util.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/util/trunk/libs-util.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: libs/xml/trunk/libs-xml.iml =================================================================== --- libs/xml/trunk/libs-xml.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ libs/xml/trunk/libs-xml.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/batcher/trunk/Batcher.iml =================================================================== --- progs/batcher/trunk/Batcher.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/batcher/trunk/Batcher.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/cardlearn/trunk/cardlearn.iml =================================================================== --- progs/cardlearn/trunk/cardlearn.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/cardlearn/trunk/cardlearn.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/jeduca/trunk/JEduca.iml =================================================================== --- progs/jeduca/trunk/JEduca.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/jeduca/trunk/JEduca.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/jhexedit/trunk/jhexedit.iml =================================================================== --- progs/jhexedit/trunk/jhexedit.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/jhexedit/trunk/jhexedit.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/jhexview/trunk/jhexview.iml =================================================================== --- progs/jhexview/trunk/jhexview.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/jhexview/trunk/jhexview.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/jirus/trunk/jirus.iml =================================================================== --- progs/jirus/trunk/jirus.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/jirus/trunk/jirus.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/jtype/trunk/jtype.iml =================================================================== --- progs/jtype/trunk/jtype.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/jtype/trunk/jtype.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/midilearn/trunk/midilearn.iml =================================================================== --- progs/midilearn/trunk/midilearn.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/midilearn/trunk/midilearn.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/pffhtrain/trunk/pffhtrain.iml =================================================================== --- progs/pffhtrain/trunk/pffhtrain.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/pffhtrain/trunk/pffhtrain.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: progs/textedit/trunk/textedit.iml =================================================================== --- progs/textedit/trunk/textedit.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ progs/textedit/trunk/textedit.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/archStat/trunk/archStat.iml =================================================================== --- tools/archStat/trunk/archStat.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/archStat/trunk/archStat.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/cstyle/trunk/cstyle.iml =================================================================== --- tools/cstyle/trunk/cstyle.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/cstyle/trunk/cstyle.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/dircount/trunk/dircount.iml =================================================================== --- tools/dircount/trunk/dircount.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/dircount/trunk/dircount.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/findLongestPath/trunk/findLongestPath.iml =================================================================== --- tools/findLongestPath/trunk/findLongestPath.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/findLongestPath/trunk/findLongestPath.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/fontbrowser/trunk/fontbrowser.iml =================================================================== --- tools/fontbrowser/trunk/fontbrowser.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/fontbrowser/trunk/fontbrowser.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/gdbControl/trunk/gdbControl.iml =================================================================== --- tools/gdbControl/trunk/gdbControl.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/gdbControl/trunk/gdbControl.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/jgrep/trunk/jgrep.iml =================================================================== --- tools/jgrep/trunk/jgrep.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/jgrep/trunk/jgrep.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/jwget/trunk/jwget.iml =================================================================== --- tools/jwget/trunk/jwget.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/jwget/trunk/jwget.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/keystrokes/trunk/keystrokes.iml =================================================================== --- tools/keystrokes/trunk/keystrokes.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/keystrokes/trunk/keystrokes.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/mail/trunk/mail.iml =================================================================== --- tools/mail/trunk/mail.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/mail/trunk/mail.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/midiDeviceLister/trunk/midiDeviceLister.iml =================================================================== --- tools/midiDeviceLister/trunk/midiDeviceLister.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/midiDeviceLister/trunk/midiDeviceLister.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/midiMonitor/trunk/midiMonitor.iml =================================================================== --- tools/midiMonitor/trunk/midiMonitor.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/midiMonitor/trunk/midiMonitor.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/prefsbrowser/trunk/prefsbrowser.iml =================================================================== --- tools/prefsbrowser/trunk/prefsbrowser.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/prefsbrowser/trunk/prefsbrowser.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/replacer/trunk/replacer.iml =================================================================== --- tools/replacer/trunk/replacer.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/replacer/trunk/replacer.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/scriptEngineLister/trunk/scriptEngineLister.iml =================================================================== --- tools/scriptEngineLister/trunk/scriptEngineLister.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/scriptEngineLister/trunk/scriptEngineLister.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/scriptInterpreter/trunk/scriptInterpreter.iml =================================================================== --- tools/scriptInterpreter/trunk/scriptInterpreter.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/scriptInterpreter/trunk/scriptInterpreter.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/string2bytes/trunk/string2bytes.iml =================================================================== --- tools/string2bytes/trunk/string2bytes.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/string2bytes/trunk/string2bytes.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: tools/todoScanner/trunk/todoScanner.iml =================================================================== --- tools/todoScanner/trunk/todoScanner.iml 2009-03-01 19:36:11 UTC (rev 1206) +++ tools/todoScanner/trunk/todoScanner.iml 2009-03-01 20:36:29 UTC (rev 1207) @@ -12,7 +12,7 @@ <orderEntry type="module-library"> <library> <CLASSES> - <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" /> + <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 19:36:17
|
Revision: 1206 http://japi.svn.sourceforge.net/japi/?rev=1206&view=rev Author: christianhujer Date: 2009-03-01 19:36:11 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Removed redundant svn:externals property from imajar. Property Changed: ---------------- imajar/trunk/ Property changes on: imajar/trunk ___________________________________________________________________ Deleted: svn:externals - ^/common/trunk common This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 19:19:58
|
Revision: 1205 http://japi.svn.sourceforge.net/japi/?rev=1205&view=rev Author: christianhujer Date: 2009-03-01 19:19:55 +0000 (Sun, 01 Mar 2009) Log Message: ----------- Get jlfgr-1_0.jar. Modified Paths: -------------- games/jmines/trunk/build.xml Modified: games/jmines/trunk/build.xml =================================================================== --- games/jmines/trunk/build.xml 2009-03-01 19:18:39 UTC (rev 1204) +++ games/jmines/trunk/build.xml 2009-03-01 19:19:55 UTC (rev 1205) @@ -24,6 +24,8 @@ <target name="getlibs"> <get src="http://downloads.sourceforge.net/japi/japi-lib-swing-action-0.1.0.jar" dest="lib/japi-lib-swing-action.jar" /> + <get src="http://downloads.sourceforge.net/japi/jlfgr-1_0.jar" dest="lib/jlfgr-1_0.jar" usetimestamp="true" /> + <get src="http://downloads.sourceforge.net/japi/LICENSE-jlfgr-1_0.jar" dest="lib/LICENSE-jlfgr-1_0.jar" usetimestamp="true" /> </target> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-03-01 19:18:43
|
Revision: 1204 http://japi.svn.sourceforge.net/japi/?rev=1204&view=rev Author: christianhujer Date: 2009-03-01 19:18:39 +0000 (Sun, 01 Mar 2009) Log Message: ----------- jlfgr-1_0.jar is no longer always downloaded. Now needs to be downloaded by the modules that need it. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-28 14:13:37 UTC (rev 1203) +++ common/trunk/commonBuild.xml 2009-03-01 19:18:39 UTC (rev 1204) @@ -102,9 +102,7 @@ <target name="get3rdparty" unless="has3rdparty"> <get src="http://downloads.sourceforge.net/japi/annotations.jar" dest="lib/annotations.jar" usetimestamp="true" /> - <get src="http://downloads.sourceforge.net/japi/jlfgr-1_0.jar" dest="lib/jlfgr-1_0.jar" usetimestamp="true" /> <get src="http://downloads.sourceforge.net/japi/LICENSE-annotations.jar" dest="lib/LICENSE-annotations.jar" usetimestamp="true" /> - <get src="http://downloads.sourceforge.net/japi/LICENSE-jlfgr-1_0.jar" dest="lib/LICENSE-jlfgr-1_0.jar" usetimestamp="true" /> </target> <target name="getPack200" unless="hasPack200"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-28 14:13:54
|
Revision: 1203 http://japi.svn.sourceforge.net/japi/?rev=1203&view=rev Author: christianhujer Date: 2009-02-28 14:13:37 +0000 (Sat, 28 Feb 2009) Log Message: ----------- [ 2611368 ] common/lib content should be downloaded Modified Paths: -------------- common/trunk/commonBuild.xml Removed Paths: ------------- common/trunk/lib/LICENSE-annotations.jar common/trunk/lib/LICENSE-jlfgr-1_0.jar common/trunk/lib/annotations.jar common/trunk/lib/jlfgr-1_0.jar Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-28 13:54:00 UTC (rev 1202) +++ common/trunk/commonBuild.xml 2009-02-28 14:13:37 UTC (rev 1203) @@ -84,6 +84,7 @@ <fileset dir="${commonPath}" includes="lib/*.jar" excludes="lib/LICENSE-*.jar" /> </path> +<available property="has3rdparty" file="lib/annotations.jar" /> <available property="hasAntmeat" file="${commonPath}/antlib.auto/antmeat.jar" /> <available property="hasCheckstyle" file="${commonPath}/antlib.auto/checkstyle-all-4.4.jar" /> <available property="hasJunit" file="${commonPath}/antlib.auto/junit.jar" /> @@ -99,6 +100,13 @@ depends = "compile, test" /> +<target name="get3rdparty" unless="has3rdparty"> + <get src="http://downloads.sourceforge.net/japi/annotations.jar" dest="lib/annotations.jar" usetimestamp="true" /> + <get src="http://downloads.sourceforge.net/japi/jlfgr-1_0.jar" dest="lib/jlfgr-1_0.jar" usetimestamp="true" /> + <get src="http://downloads.sourceforge.net/japi/LICENSE-annotations.jar" dest="lib/LICENSE-annotations.jar" usetimestamp="true" /> + <get src="http://downloads.sourceforge.net/japi/LICENSE-jlfgr-1_0.jar" dest="lib/LICENSE-jlfgr-1_0.jar" usetimestamp="true" /> +</target> + <target name="getPack200" unless="hasPack200"> <mkdir dir="${commonPath}/antlib.auto" /> <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamp="true" /> @@ -188,7 +196,7 @@ <delete dir="docs" /> </target> -<target name="compile" description="Compiles this module."> +<target name="compile" description="Compiles this module." depends="get3rdparty"> <mkdir dir="classes/production/${module.shortname}" /> <javac srcdir="src/prj" Deleted: common/trunk/lib/LICENSE-annotations.jar =================================================================== --- common/trunk/lib/LICENSE-annotations.jar 2009-02-28 13:54:00 UTC (rev 1202) +++ common/trunk/lib/LICENSE-annotations.jar 2009-02-28 14:13:37 UTC (rev 1203) @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. Deleted: common/trunk/lib/LICENSE-jlfgr-1_0.jar =================================================================== --- common/trunk/lib/LICENSE-jlfgr-1_0.jar 2009-02-28 13:54:00 UTC (rev 1202) +++ common/trunk/lib/LICENSE-jlfgr-1_0.jar 2009-02-28 14:13:37 UTC (rev 1203) @@ -1,10 +0,0 @@ -Copyright 2000 by Sun Microsystems, Inc. All Rights Reserved. - -Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, and redistribute this software graphics artwork, as individual graphics or as a collection, as part of software code or programs that you develop, provided that i) this copyright notice and license accompany the software graphics artwork; and ii) you do not utilize the software graphics artwork in a manner which is disparaging to Sun. Unless enforcement is prohibited by applicable law, you may not modify the graphics, and must use them true to color and unmodified in every way. - -This software graphics artwork is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE GRAPHICS ARTWORK. - -IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE GRAPHICS ARTWORK, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -If any of the above provisions are held to be in violation of applicable law, void, or unenforceable in any jurisdiction, then such provisions are waived to the extent necessary for this Disclaimer to be otherwise enforceable in such jurisdiction. - Deleted: common/trunk/lib/annotations.jar =================================================================== (Binary files differ) Deleted: common/trunk/lib/jlfgr-1_0.jar =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-28 13:54:06
|
Revision: 1202 http://japi.svn.sourceforge.net/japi/?rev=1202&view=rev Author: christianhujer Date: 2009-02-28 13:54:00 +0000 (Sat, 28 Feb 2009) Log Message: ----------- Auto-download xmlrpc for antmeat. Modified Paths: -------------- common/trunk/commonBuild.xml Removed Paths: ------------- common/trunk/antlib/LICENSE-xmlrpc-2.0.jar common/trunk/antlib/xmlrpc-2.0.jar Deleted: common/trunk/antlib/LICENSE-xmlrpc-2.0.jar =================================================================== --- common/trunk/antlib/LICENSE-xmlrpc-2.0.jar 2009-02-28 13:45:16 UTC (rev 1201) +++ common/trunk/antlib/LICENSE-xmlrpc-2.0.jar 2009-02-28 13:54:00 UTC (rev 1202) @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. Deleted: common/trunk/antlib/xmlrpc-2.0.jar =================================================================== (Binary files differ) Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-28 13:45:16 UTC (rev 1201) +++ common/trunk/commonBuild.xml 2009-02-28 13:54:00 UTC (rev 1202) @@ -116,6 +116,11 @@ </unzip> <move file="${commonPath}/antlib.auto/antmeat-0.3/antmeat.jar" tofile="${commonPath}/antlib.auto/antmeat.jar" /> <delete dir="${commonPath}/antlib.auto/antmeat-0.3/" /> + <get src="http://mirror.serversupportforum.de/apache/ws/xmlrpc/binaries/xmlrpc-3.1.1-bin.tar.gz" dest="${commonPath}/antlib.auto/xmlrpc-3.1.1-bin.tar.gz" usetimestamp="true" /> + <untar compression="gzip" src="${commonPath}/antlib.auto/xmlrpc-3.1.1-bin.tar.gz" dest="${commonPath}/antlib.auto"> + <patternset includes="**/*.jar" excludes="**/*sources*.jar,**/*javadoc*.jar" /> + <mapper type="flatten" /> + </untar> </target> <target This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-28 13:45:19
|
Revision: 1201 http://japi.svn.sourceforge.net/japi/?rev=1201&view=rev Author: christianhujer Date: 2009-02-28 13:45:16 +0000 (Sat, 28 Feb 2009) Log Message: ----------- [ 2648725 ] Generate md5 checksums for released files Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-27 12:35:12 UTC (rev 1200) +++ common/trunk/commonBuild.xml 2009-02-28 13:45:16 UTC (rev 1201) @@ -342,6 +342,15 @@ </parallel> <delete file="${distPath}.src.tar" /> <delete file="${distPath}.doc.tar" /> + <checksum format="MD5SUM"> + <fileset dir="." includes="${distPath}*" /> + </checksum> + <concat destfile="${distPath}.md5sums"> + <fileset dir="." includes="${distPath}*.MD5" /> + </concat> + <delete> + <fileset dir="." includes="${distPath}*.MD5" /> + </delete> </target> <target name="getTaglets" unless="hasTaglets"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-27 12:35:23
|
Revision: 1200 http://japi.svn.sourceforge.net/japi/?rev=1200&view=rev Author: christianhujer Date: 2009-02-27 12:35:12 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Add missing files to pmd. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-27 12:22:48 UTC (rev 1199) +++ common/trunk/commonBuild.xml 2009-02-27 12:35:12 UTC (rev 1200) @@ -497,6 +497,8 @@ <get src="http://downloads.sourceforge.net/pmd/pmd-bin-4.2.5.zip" dest="${commonPath}/antlib.auto/pmd-bin-4.2.5.zip" usetimestamp="true" /> <unzip src="${commonPath}/antlib.auto/pmd-bin-4.2.5.zip" dest="${commonPath}/antlib.auto"> <patternset includes="**/lib/pmd-4.2.5.jar" /> + <patternset includes="**/lib/jaxen-1.1.1.jar" /> + <patternset includes="**/lib/asm-3.1.jar" /> <mapper type="flatten" /> </unzip> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-27 12:22:52
|
Revision: 1199 http://japi.svn.sourceforge.net/japi/?rev=1199&view=rev Author: christianhujer Date: 2009-02-27 12:22:48 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Fixed path to pmd jar. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-27 11:58:59 UTC (rev 1198) +++ common/trunk/commonBuild.xml 2009-02-27 12:22:48 UTC (rev 1199) @@ -502,7 +502,7 @@ </target> <target name="pmd" description="Performs quality checks using PMD." depends="compile,getPmd"> - <taskdef name="pmd" classpath="${commonPath}/antlib.auto/pmd-4.2.5/lib/pmd-4.2.5.jar" classname="net.sourceforge.pmd.ant.PMDTask"/> + <taskdef name="pmd" classpath="${commonPath}/antlib.auto/pmd-4.2.5.jar" classname="net.sourceforge.pmd.ant.PMDTask"/> <pmd shortFilenames="true" failOnError="true" failOnRuleViolation="true"> <ruleset>${commonPath}/pmd_checks.xml</ruleset> <formatter type="text" toConsole="true" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-27 11:59:08
|
Revision: 1198 http://japi.svn.sourceforge.net/japi/?rev=1198&view=rev Author: christianhujer Date: 2009-02-27 11:58:59 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Add pmd to common build. Currently it is optional and needs to be triggered manually. Will be enabled as soon as all pmd issues are fixed. Modified Paths: -------------- common/trunk/commonBuild.xml Added Paths: ----------- common/trunk/pmd_checks.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-27 11:58:10 UTC (rev 1197) +++ common/trunk/commonBuild.xml 2009-02-27 11:58:59 UTC (rev 1198) @@ -88,6 +88,7 @@ <available property="hasCheckstyle" file="${commonPath}/antlib.auto/checkstyle-all-4.4.jar" /> <available property="hasJunit" file="${commonPath}/antlib.auto/junit.jar" /> <available property="hasPack200" file="${commonPath}/antlib.auto/Pack200Task.jar" /> +<available property="hasPmd" file="${commonPath}/antlib.auto/pmd-4.2.5.jar" /> <available property="hasTaglets" file="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> <!-- targets are sorted alphabetically. --> @@ -490,3 +491,26 @@ <report format="frames" todir="docs/test" /> </junitreport> </target> + +<target name="getPmd" unless="hasPmd"> + <mkdir dir="${commonPath}/antlib.auto" /> + <get src="http://downloads.sourceforge.net/pmd/pmd-bin-4.2.5.zip" dest="${commonPath}/antlib.auto/pmd-bin-4.2.5.zip" usetimestamp="true" /> + <unzip src="${commonPath}/antlib.auto/pmd-bin-4.2.5.zip" dest="${commonPath}/antlib.auto"> + <patternset includes="**/lib/pmd-4.2.5.jar" /> + <mapper type="flatten" /> + </unzip> +</target> + +<target name="pmd" description="Performs quality checks using PMD." depends="compile,getPmd"> + <taskdef name="pmd" classpath="${commonPath}/antlib.auto/pmd-4.2.5/lib/pmd-4.2.5.jar" classname="net.sourceforge.pmd.ant.PMDTask"/> + <pmd shortFilenames="true" failOnError="true" failOnRuleViolation="true"> + <ruleset>${commonPath}/pmd_checks.xml</ruleset> + <formatter type="text" toConsole="true" /> + <fileset dir="src/prj"> + <include name="**/*.java"/> + </fileset> + <fileset dir="src/tst"> + <include name="**/*.java"/> + </fileset> + </pmd> +</target> Added: common/trunk/pmd_checks.xml =================================================================== --- common/trunk/pmd_checks.xml (rev 0) +++ common/trunk/pmd_checks.xml 2009-02-27 11:58:59 UTC (rev 1198) @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<ruleset name="Custom ruleset" + xmlns="http://pmd.sf.net/ruleset/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" + xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd" +> + <description> + PMD Ruleset for JAPI. + </description> + + <rule ref="rulesets/basic.xml"> + <exclude name="EmptyCatchBlock" /> + </rule> + <rule ref="rulesets/basic.xml/EmptyCatchBlock"> + <properties> + <property name="allowCommentedBlocks" value="true" /> + </properties> + </rule> + +</ruleset> Property changes on: common/trunk/pmd_checks.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-27 11:58:20
|
Revision: 1197 http://japi.svn.sourceforge.net/japi/?rev=1197&view=rev Author: christianhujer Date: 2009-02-27 11:58:10 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Fixed pmd issue. Modified Paths: -------------- libs/argparser/trunk/src/prj/net/sf/japi/io/args/TokenReader.java Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/TokenReader.java =================================================================== --- libs/argparser/trunk/src/prj/net/sf/japi/io/args/TokenReader.java 2009-02-26 17:47:07 UTC (rev 1196) +++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/TokenReader.java 2009-02-27 11:58:10 UTC (rev 1197) @@ -100,9 +100,7 @@ final char c = (char) rc; switch (mode) { case WHITESPACE: - if (Character.isWhitespace(c)) { - // nothing to do - still whitespace. - } else if (c == '"') { + if (c == '"') { mode = Mode.STRING; tokenValid = true; } else if (c == '\'') { @@ -111,7 +109,7 @@ } else if (c == '\\') { mode = Mode.ESCAPE; tokenValid = true; - } else { + } else if (!Character.isWhitespace(c)) { nextToken.append(c); mode = Mode.NORMAL; tokenValid = true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 17:47:09
|
Revision: 1196 http://japi.svn.sourceforge.net/japi/?rev=1196&view=rev Author: christianhujer Date: 2009-02-26 17:47:07 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Created release tag 0.1.0 for branch 0.1. Added Paths: ----------- libs/swing-tod/tags/0.1.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 17:45:26
|
Revision: 1195 http://japi.svn.sourceforge.net/japi/?rev=1195&view=rev Author: christianhujer Date: 2009-02-26 17:45:24 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Created branch 0.1. Added Paths: ----------- libs/swing-tod/branches/0.1/ Property changes on: libs/swing-tod/branches/0.1 ___________________________________________________________________ Added: svn:ignore + bin classes dest developer.properties dist docs Added: svn:externals + ^/common/trunk@1194 common Added: svn:mergeinfo + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 17:24:45
|
Revision: 1194 http://japi.svn.sourceforge.net/japi/?rev=1194&view=rev Author: christianhujer Date: 2009-02-26 17:24:36 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Created release tag 0.1.0 for branch 0.1. Added Paths: ----------- libs/swing-misc/tags/0.1.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 17:21:54
|
Revision: 1193 http://japi.svn.sourceforge.net/japi/?rev=1193&view=rev Author: christianhujer Date: 2009-02-26 17:21:39 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Created branch 0.1. Added Paths: ----------- libs/swing-misc/branches/0.1/ Property changes on: libs/swing-misc/branches/0.1 ___________________________________________________________________ Added: svn:ignore + bin classes dest developer.properties dist docs Added: svn:externals + ^/common/trunk@1192 common Added: svn:mergeinfo + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 14:29:09
|
Revision: 1192 http://japi.svn.sourceforge.net/japi/?rev=1192&view=rev Author: christianhujer Date: 2009-02-26 14:29:00 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Added class HashMapWithDefault. Added Paths: ----------- libs/util/trunk/src/prj/net/sf/japi/util/HashMapWithDefault.java Added: libs/util/trunk/src/prj/net/sf/japi/util/HashMapWithDefault.java =================================================================== --- libs/util/trunk/src/prj/net/sf/japi/util/HashMapWithDefault.java (rev 0) +++ libs/util/trunk/src/prj/net/sf/japi/util/HashMapWithDefault.java 2009-02-26 14:29:00 UTC (rev 1192) @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2009 Christian Hujer. + * + * This library 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 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +package net.sf.japi.util; + +import java.util.HashMap; +import java.util.Map; + +/** + * HashMap implementation which provides default values for unmapped keys which can be distinct from <code>null</code>. + * @warning This map implementation violates the contract of {@link Map#get(Object)} regarding the return value. + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> + * @param <K> Type for the map keys. + * @param <V> Type for the map values. + */ +@SuppressWarnings({"ClassExtendsConcreteCollection"}) +public class HashMapWithDefault<K, V> extends HashMap<K, V> { + + /** Serial Version. */ + private static final long serialVersionUID = 1L; + + /** The default value to return if a key is not mapped. + * @serial include + */ + // It is the responsibility of the user to choose a serializable V for a map that is serialized. + @SuppressWarnings({"NonSerializableFieldInSerializableClass"}) + private V defaultValue; + + /** Creates a HashMapWithDefault. + * @param defaultValue Value to be returned by {@link Map#get(Object)} for unmapped keys. + */ + public HashMapWithDefault(final V defaultValue) { + this.defaultValue = defaultValue; + } + + /** {@inheritDoc} */ + @Override + public V get(final Object key) { + return containsKey(key) ? super.get(key) : defaultValue; + } +} Property changes on: libs/util/trunk/src/prj/net/sf/japi/util/HashMapWithDefault.java ___________________________________________________________________ Added: svn:mime-type + text/plain Added: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 13:38:10
|
Revision: 1191 http://japi.svn.sourceforge.net/japi/?rev=1191&view=rev Author: christianhujer Date: 2009-02-26 13:38:08 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Hardened javadoc inspections. Modified Paths: -------------- japi.ipr Modified: japi.ipr =================================================================== --- japi.ipr 2009-02-26 10:34:15 UTC (rev 1190) +++ japi.ipr 2009-02-26 13:38:08 UTC (rev 1191) @@ -831,25 +831,25 @@ <inspection_tool class="JavaDoc" level="ERROR" enabled="true"> <option name="TOP_LEVEL_CLASS_OPTIONS"> <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> - <option name="REQUIRED_TAGS" value="" /> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="package" /> + <option name="REQUIRED_TAGS" value="@author@param" /> </value> </option> <option name="INNER_CLASS_OPTIONS"> <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="private" /> <option name="REQUIRED_TAGS" value="" /> </value> </option> <option name="METHOD_OPTIONS"> <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="private" /> <option name="REQUIRED_TAGS" value="@return@param@throws or @exception" /> </value> </option> <option name="FIELD_OPTIONS"> <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="private" /> <option name="REQUIRED_TAGS" value="" /> </value> </option> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-26 10:34:20
|
Revision: 1190 http://japi.svn.sourceforge.net/japi/?rev=1190&view=rev Author: christianhujer Date: 2009-02-26 10:34:15 +0000 (Thu, 26 Feb 2009) Log Message: ----------- Removed redundant jlfgr lib. Removed Paths: ------------- tools/scriptInterpreter/trunk/lib/LICENSE-jlfgr-1_0.jar tools/scriptInterpreter/trunk/lib/jlfgr-1_0.jar Deleted: tools/scriptInterpreter/trunk/lib/LICENSE-jlfgr-1_0.jar =================================================================== --- tools/scriptInterpreter/trunk/lib/LICENSE-jlfgr-1_0.jar 2009-02-25 08:30:40 UTC (rev 1189) +++ tools/scriptInterpreter/trunk/lib/LICENSE-jlfgr-1_0.jar 2009-02-26 10:34:15 UTC (rev 1190) @@ -1,10 +0,0 @@ -Copyright 2000 by Sun Microsystems, Inc. All Rights Reserved. - -Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, and redistribute this software graphics artwork, as individual graphics or as a collection, as part of software code or programs that you develop, provided that i) this copyright notice and license accompany the software graphics artwork; and ii) you do not utilize the software graphics artwork in a manner which is disparaging to Sun. Unless enforcement is prohibited by applicable law, you may not modify the graphics, and must use them true to color and unmodified in every way. - -This software graphics artwork is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE GRAPHICS ARTWORK. - -IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE GRAPHICS ARTWORK, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -If any of the above provisions are held to be in violation of applicable law, void, or unenforceable in any jurisdiction, then such provisions are waived to the extent necessary for this Disclaimer to be otherwise enforceable in such jurisdiction. - Deleted: tools/scriptInterpreter/trunk/lib/jlfgr-1_0.jar =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-25 08:30:51
|
Revision: 1189 http://japi.svn.sourceforge.net/japi/?rev=1189&view=rev Author: christianhujer Date: 2009-02-25 08:30:40 +0000 (Wed, 25 Feb 2009) Log Message: ----------- Auto-remove created test file. Modified Paths: -------------- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/OutputStreamConverterTest.java Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/OutputStreamConverterTest.java =================================================================== --- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/OutputStreamConverterTest.java 2009-02-24 20:37:48 UTC (rev 1188) +++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/OutputStreamConverterTest.java 2009-02-25 08:30:40 UTC (rev 1189) @@ -18,9 +18,12 @@ package test.net.sf.japi.io.args.converter; +import java.io.File; +import java.io.IOException; import java.io.OutputStream; import junit.framework.Assert; import net.sf.japi.io.args.converter.OutputStreamConverter; +import org.junit.After; import org.junit.Test; /** @@ -29,6 +32,14 @@ */ public class OutputStreamConverterTest { + /** Remove the test file created by some test cases. + * @throws IOException (unexpected). + */ + @After + public void removeTestFile() throws IOException { + new File("foo.txt").delete(); + } + /** Tests that {@link OutputStreamConverter#convert(String)} works with "-". * @throws Exception (unexpected). */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 20:37:53
|
Revision: 1188 http://japi.svn.sourceforge.net/japi/?rev=1188&view=rev Author: christianhujer Date: 2009-02-24 20:37:48 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Renamed pretend to dry-run / dryRun in code. Modified Paths: -------------- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java =================================================================== --- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-24 20:30:27 UTC (rev 1187) +++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-24 20:37:48 UTC (rev 1188) @@ -103,7 +103,7 @@ * If <code>true</code>, changes are just pretended to be made, but files are never changed. * If <code>false</code> (default), the program changes files. */ - private boolean pretend; + private boolean dryRun; /** The number of errors that occurred. * Errors are only cases where actual exceptions were thrown, i.e. {@link FileNotFoundException} or {@link IOException}. @@ -242,7 +242,7 @@ System.err.print("File : " + file); System.err.flush(); } - if (pretend) { + if (dryRun) { System.err.println(); return; } @@ -267,7 +267,7 @@ * @throws IOException in case of I/O problems. */ private void copyFile(@NotNull final File src, @NotNull final File dest) throws IOException { - if (pretend) { + if (dryRun) { return; } final InputStream in = new FileInputStream(src); @@ -304,7 +304,7 @@ * @throws IOException In case of I/O problems when trying to make the file writable. */ private void makeWritable(@NotNull final File file) throws IOException { - if (pretend) { + if (dryRun) { return; } final String makeWritableCommand = this.makeWritableCommand; @@ -368,19 +368,19 @@ return verbose; } - /** Sets or unsets the pretend option. - * @param pretend Value of the pretend option. + /** Sets or unsets the dry-run option. + * @param dryRun Value of the dry-run option. */ @Option({"n", "dry-run"}) - public void setPretend(final boolean pretend) { - this.pretend = pretend; + public void setDryRun(final boolean dryRun) { + this.dryRun = dryRun; } - /** Returns whether or not the pretend option is set. - * @return <code>true</code> if the pretend option is set, otherwise <code>false</code>. + /** Returns whether or not the dry-run option is set. + * @return <code>true</code> if the dry-run option is set, otherwise <code>false</code>. */ - public boolean isPretend() { - return pretend; + public boolean isDryRun() { + return dryRun; } /** Sets or unsets the recurse option. Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties =================================================================== --- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties 2009-02-24 20:30:27 UTC (rev 1187) +++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties 2009-02-24 20:37:48 UTC (rev 1188) @@ -21,7 +21,7 @@ setBackupExtension=File extension for backup files (default: .bak). setEncoding=Encoding to use for reading and writing files. setMakeWritableCommand=The command for making a file writable. E.g. 'cleartool checkout -nc "%f"' (UNTESTED!) -setPretend=When set, only pretend - do not really change files. +setDryRun=When set, only pretend - do not really change files. listEncodings=List available encodings for reading and writing files. addSubstitution=Adds a substitution to the list of substitutions that will be performed. addSubstitutionsFromFile=Specify a text file with substitutions. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 20:30:32
|
Revision: 1187 http://japi.svn.sourceforge.net/japi/?rev=1187&view=rev Author: christianhujer Date: 2009-02-24 20:30:27 +0000 (Tue, 24 Feb 2009) Log Message: ----------- renamed p / pretend option to n / dry-run (like in make). Modified Paths: -------------- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java =================================================================== --- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-24 08:47:10 UTC (rev 1186) +++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-24 20:30:27 UTC (rev 1187) @@ -371,7 +371,7 @@ /** Sets or unsets the pretend option. * @param pretend Value of the pretend option. */ - @Option({"p", "pretend"}) + @Option({"n", "dry-run"}) public void setPretend(final boolean pretend) { this.pretend = pretend; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 08:47:13
|
Revision: 1186 http://japi.svn.sourceforge.net/japi/?rev=1186&view=rev Author: christianhujer Date: 2009-02-24 08:47:10 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Handle bogus Pack200 zip file. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:43:10 UTC (rev 1185) +++ common/trunk/commonBuild.xml 2009-02-24 08:47:10 UTC (rev 1186) @@ -102,7 +102,8 @@ <mkdir dir="${commonPath}/antlib.auto" /> <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamp="true" /> <unzip src="${commonPath}/antlib.auto/ant-task.zip" dest="${commonPath}/antlib.auto"> - <patternset includes="Pack200Task.jar" /> + <patternset includes="**/*Pack200Task.jar" /> + <mapper type="flatten" /> </unzip> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |