japi-cvs Mailing List for JAPI (Page 57)
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...> - 2006-04-04 22:22:01
|
Revision: 8 Author: christianhujer Date: 2006-04-04 15:21:47 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=8&view=rev Log Message: ----------- Added some unit tests. Improved test structure. Added Paths: ----------- trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java trunk/src/test/net/sf/japi/util/ trunk/src/test/net/sf/japi/util/Arrays2Test.java Removed Paths: ------------- trunk/src/test/net/sf/japi/lang/test/ Copied: trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java (from rev 7, trunk/src/test/net/sf/japi/lang/test/SuperClassIteratorTest.java) =================================================================== --- trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java (rev 0) +++ trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java 2006-04-04 22:21:47 UTC (rev 8) @@ -0,0 +1,57 @@ +/* JAPI - (Yet another (hopefully) useful) Java API + * + * Copyright (C) 2004-2006 Christian Hujer + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +package test.net.sf.japi.lang; + +/** Test for SuperClassIterator. + * @author <a href="mailto:ch...@it...">Christian Hujer</a> + */ + +import junit.framework.TestCase; +import net.sf.japi.lang.SuperClassIterator; + +/** Test for {@link SuperClassIterator}. + * @author <a href="mailto:ch...@it...">Christian Hujer</a> + */ +public class SuperClassIteratorTest extends TestCase { + + /** {@inheritDoc} */ + @Override public void setUp() throws Exception { + super.setUp(); + } + + /** {@inheritDoc} */ + @Override public void tearDown() throws Exception { + super.tearDown(); + } + + /** Test case for {@link SuperClassIterator#SuperClassIterator(Class<?>)}. */ + public void testSuperClassIterator() throws Exception { + final SuperClassIterator it = new SuperClassIterator(null); + assertFalse("SuperClassIterator with null class must not have next.", it.hasNext()); + try { + it.remove(); + fail("Expected UnsupportedOperationException."); + } catch (final UnsupportedOperationException ignore) { + /* ignore */ + } + } + +} // class SuperClassIteratorTest Property changes on: trunk/src/test/net/sf/japi/lang/SuperClassIteratorTest.java ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/src/test/net/sf/japi/util/Arrays2Test.java =================================================================== --- trunk/src/test/net/sf/japi/util/Arrays2Test.java (rev 0) +++ trunk/src/test/net/sf/japi/util/Arrays2Test.java 2006-04-04 22:21:47 UTC (rev 8) @@ -0,0 +1,61 @@ +/* JAPI - (Yet another (hopefully) useful) Java API + * + * Copyright (C) 2004-2006 Christian Hujer + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +package test.net.sf.japi.util; + +/** TODO + * @author <a href="mailto:ch...@it...">Christian Hujer</a> + */ + +import java.util.Arrays; +import junit.framework.TestCase; +import net.sf.japi.util.Arrays2; + +/** + * Test for {@link Arrays2}. + * @author <a href="mailto:ch...@it...">Christian Hujer</a> + */ +public class Arrays2Test extends TestCase { + + /** {@inheritDoc} */ + @Override public void setUp() throws Exception { + super.setUp(); + } + + /** {@inheritDoc} */ + @Override public void tearDown() throws Exception { + super.tearDown(); + } + + /** Test case for {@link Arrays2#concat(double[]...)}. */ + @SuppressWarnings({"ImplicitNumericConversion"}) + public void testConcat() throws Exception { + final byte[] data1Orig = {1, 2, 3}; + final byte[] data2Orig = {4, 5, 6, 7}; + final byte[] data1Copy = data1Orig.clone(); + final byte[] data2Copy = data2Orig.clone(); + final byte[] concatExpected = {1, 2, 3, 4, 5, 6, 7}; + final byte[] concatResult = Arrays2.concat(data1Copy, data2Copy); + assertTrue("Original arrays must be unmodified", Arrays.equals(data1Orig, data1Copy)); + assertTrue("Original arrays must be unmodified", Arrays.equals(data2Orig, data2Copy)); + assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); + } + +} // class Arrays2Test \ No newline at end of file Property changes on: trunk/src/test/net/sf/japi/util/Arrays2Test.java ___________________________________________________________________ Name: svn:mime-type + text/plain Name: 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...> - 2006-04-03 21:00:49
|
Revision: 7 Author: christianhujer Date: 2006-04-03 14:00:14 -0700 (Mon, 03 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=7&view=rev Log Message: ----------- Set svn:keywords Date on **/*.xhtml. Modified Paths: -------------- trunk/src/doc/api/start.xhtml trunk/src/doc/changes.xhtml trunk/src/doc/copyright.xhtml trunk/src/doc/guide/io/start.xhtml trunk/src/doc/guide/start.xhtml trunk/src/doc/guide/swing/action/basic/start.xhtml trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/guide/swing/action/start.xhtml trunk/src/doc/guide/swing/tod/start.xhtml trunk/src/doc/guide/xml/start.xhtml trunk/src/doc/releasePlan.xhtml trunk/src/doc/start.xhtml trunk/src/doc/subversion.xhtml trunk/src/doc/wontFixes.xhtml Property Changed: ---------------- trunk/src/doc/api/start.xhtml trunk/src/doc/changes.xhtml trunk/src/doc/copyright.xhtml trunk/src/doc/guide/io/start.xhtml trunk/src/doc/guide/start.xhtml trunk/src/doc/guide/swing/action/basic/start.xhtml trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/guide/swing/action/start.xhtml trunk/src/doc/guide/swing/tod/start.xhtml trunk/src/doc/guide/xml/start.xhtml trunk/src/doc/releasePlan.xhtml trunk/src/doc/start.xhtml trunk/src/doc/subversion.xhtml trunk/src/doc/wontFixes.xhtml Modified: trunk/src/doc/api/start.xhtml =================================================================== --- trunk/src/doc/api/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/api/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -5,7 +5,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8"/> - <meta name="Date" content="$Date: 2006/03/29 21:29:31 $"/> + <meta name="Date" content="$Date$"/> <title>JAPI API Documentation</title> </head> <body> Property changes on: trunk/src/doc/api/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/changes.xhtml =================================================================== --- trunk/src/doc/changes.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/changes.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:09:28 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI - Important Changes</title> </head> <body> Property changes on: trunk/src/doc/changes.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/copyright.xhtml =================================================================== --- trunk/src/doc/copyright.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/copyright.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:20:13 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Copyright</title> </head> <body> Property changes on: trunk/src/doc/copyright.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/io/start.xhtml =================================================================== --- trunk/src/doc/guide/io/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/io/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/08 00:57:38 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: I/O</title> </head> <body> Property changes on: trunk/src/doc/guide/io/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/start.xhtml =================================================================== --- trunk/src/doc/guide/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/15 00:32:35 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide</title> </head> <body> Property changes on: trunk/src/doc/guide/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/basic/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/basic/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/basic/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/16 14:59:29 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: Swing Actions</title> </head> <body> Property changes on: trunk/src/doc/guide/swing/action/basic/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/fromScratch/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/18 22:54:27 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI: How to develop Swing applications with JAPI</title> <xi:include parse="xml" href="src/net/sf/japi/examples/editor/Editor.java.xhtml" xpointer="/1/1/1" /> </head> Property changes on: trunk/src/doc/guide/swing/action/fromScratch/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/action/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/action/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/action/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/01/30 21:28:34 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: Swing Actions</title> </head> <body> Property changes on: trunk/src/doc/guide/swing/action/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/swing/tod/start.xhtml =================================================================== --- trunk/src/doc/guide/swing/tod/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/swing/tod/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/15 00:47:15 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI: Using TipOfTheDayManager</title> <xi:include parse="xml" href="src/net/sf/japi/examples/editor/Editor.java.xhtml" xpointer="/1/1/1" /> </head> Property changes on: trunk/src/doc/guide/swing/tod/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/guide/xml/start.xhtml =================================================================== --- trunk/src/doc/guide/xml/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/guide/xml/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/02/12 01:48:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Guide: XML</title> </head> <body> Property changes on: trunk/src/doc/guide/xml/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/releasePlan.xhtml =================================================================== --- trunk/src/doc/releasePlan.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/releasePlan.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Release Planning</title> </head> <body> Property changes on: trunk/src/doc/releasePlan.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/start.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:20:33 $" /> + <meta name="Date" content="$Date$" /> <meta name="keywords" content="JAPI, Java, Swing, Java API, API, i18n, l10n, internationalization, localization, prefs, preferences" /> <meta name="description" content="JAPI is a Java API intended to make Swing programming more efficient, especially in the fields of UI creation and actions, internationalization, localization and perferences dialogs." /> <link rel="alternate" type="application/rss+xml" title="Project news releases" href="http://sourceforge.net/export/rss2_projnews.php?group_id=149894" /> Property changes on: trunk/src/doc/start.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/subversion.xhtml =================================================================== --- trunk/src/doc/subversion.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/subversion.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Subversion Developer Access</title> </head> <body> Property changes on: trunk/src/doc/subversion.xhtml ___________________________________________________________________ Name: svn:keywords + Date Modified: trunk/src/doc/wontFixes.xhtml =================================================================== --- trunk/src/doc/wontFixes.xhtml 2006-04-03 02:07:32 UTC (rev 6) +++ trunk/src/doc/wontFixes.xhtml 2006-04-03 21:00:14 UTC (rev 7) @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> - <meta name="Date" content="$Date: 2006/03/03 21:57:27 $" /> + <meta name="Date" content="$Date$" /> <title>JAPI Won't Fix List</title> </head> <body> Property changes on: trunk/src/doc/wontFixes.xhtml ___________________________________________________________________ Name: svn:keywords + Date This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 02:07:39
|
Revision: 6 Author: christianhujer Date: 2006-04-02 19:07:32 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=6&view=rev Log Message: ----------- Updated changes and releases for Subversion migration. Modified Paths: -------------- trunk/src/doc/changes.xhtml trunk/src/doc/releasePlan.xhtml Modified: trunk/src/doc/changes.xhtml =================================================================== --- trunk/src/doc/changes.xhtml 2006-04-03 01:41:18 UTC (rev 5) +++ trunk/src/doc/changes.xhtml 2006-04-03 02:07:32 UTC (rev 6) @@ -8,6 +8,7 @@ <title>JAPI - Important Changes</title> </head> <body> + <h2>JAPI migrated to Subversion (2006-04-03)</h2> <h2>Release 0.8.0 (2006-03-29)</h2> <h3>New additions and features</h3> <ul> Modified: trunk/src/doc/releasePlan.xhtml =================================================================== --- trunk/src/doc/releasePlan.xhtml 2006-04-03 01:41:18 UTC (rev 5) +++ trunk/src/doc/releasePlan.xhtml 2006-04-03 02:07:32 UTC (rev 6) @@ -13,7 +13,7 @@ The following releases with the following changes and release dates are planned: </p> <dl> - <dt>2006-04-03: JAPI 0.9.0</dt> + <dt>2006-04-10: JAPI 0.9.0</dt> <dd> <ul> <li>Additions to ActionFactory to support explicitely reading strings from the bundle, ignoring preferences.</li> @@ -32,7 +32,6 @@ <dt>2006-06-01: JAPI 0.11.0</dt> <dd> <ul> - <li>Migrate from CVS to SVN.</li> <li>Final implementation of JAPI's first treetable.</li> <li>Provide a splash screen implementation, which supports both, Java 6.0's new splash screen and a Java 5.0 fallback implementation, and implements progress so the user can be informed about application loading progress while the splash screen is displayed.</li> </ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 01:41:29
|
Revision: 5 Author: christianhujer Date: 2006-04-02 18:41:18 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=5&view=rev Log Message: ----------- Added subversion documentation. Modified Paths: -------------- trunk/src/doc/start.xhtml Added Paths: ----------- trunk/src/doc/subversion.xhtml Modified: trunk/src/doc/start.xhtml =================================================================== --- trunk/src/doc/start.xhtml 2006-04-03 00:54:20 UTC (rev 4) +++ trunk/src/doc/start.xhtml 2006-04-03 01:41:18 UTC (rev 5) @@ -37,6 +37,7 @@ <li>Overview of <a href="changes">Changes to previous versions</a></li> <li><a href="releasePlan">Release Plan</a></li> <li><a href="wontFixes">Known flaws that won't be fixed</a></li> + <li><a href="subversion">Accessing JAPI's Subversion Repository</a></li> </ul> <h2>Contact the developers</h2> <ul> Added: trunk/src/doc/subversion.xhtml =================================================================== --- trunk/src/doc/subversion.xhtml (rev 0) +++ trunk/src/doc/subversion.xhtml 2006-04-03 01:41:18 UTC (rev 5) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id: releasePlan.xhtml,v 1.6 2006/03/29 22:21:14 christianhujer Exp $ --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> + <head> + <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> + <meta name="Date" content="$Date: 2006/03/29 22:21:14 $" /> + <title>JAPI Subversion Developer Access</title> + </head> + <body> + <h2>Checking out a normal working copy</h2> + <p> + To checkout a normal working copy of the latest development, checkout the trunk. + This is what's called HEAD or MAIN/LATEST in other version control systems. + </p> + <p><code>svn co https://svn.sourceforge.net/svnroot/japi japi/trunk</code></p> + <h2>Rules</h2> + <p> + Current rules are this: + </p> + <ul> + <li> + All files need a mime type. + For normal source code, use <code>text/plain</code>. + Use <code>svn propset svn:mime-type text/plain <var>filename</var></code> to set the mime type. + </li> + <li> + All files with a text based mime type need a line ending setting. + JAPI convention is to always use <code>LF</code>. + Use <code>svn propset svn:eol-style LF <var>filename</var></code> to set the line ending style. + </li> + </ul> + <h2>Releases</h2> + <p> + Releases are created in the following way: + </p> + <ol> + <li> + A branch with the new release name is created. + Usually the branch will increase the minor revision and use it as its name. + Example: <code>svn copy trunk branch/0.8</code>. + The policy for branches is that they aren't completely frozen, but only changes required for release and bug fixing are allowed. + </li> + <li> + The branch is braught into releasable state. + This usually should be zero effort, yet consider this a separate step. + </li> + <li> + The release is published. + As a part of the release publishing, a tag with the new release name and patch level is created. + Example: <code>svn copy branch/0.8 tag/0.8.0</code>. + The policy for tags is that they are completely frozen, tags must never ever be changed. + </li> + </ol> + <h2>Checking out a released version</h2> + <p> + To checkout a released version, use <code>svn co https://svn.sourceforge.net/svnroot/japi japi/tag/<var>version</var></code> with + <var>version</var> being the release name. + To checkout, for example, version <samp>0.8.0</samp>, use <samp>svn co https://svn.sourceforge.net/svnroot/japi japi/tag/0.8.0</samp>. + </p> + </body> +</html> Property changes on: trunk/src/doc/subversion.xhtml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: 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...> - 2006-04-03 00:54:27
|
Revision: 4 Author: christianhujer Date: 2006-04-02 17:54:20 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=4&view=rev Log Message: ----------- Created release tag for the release the current version is based on. Added Paths: ----------- tags/0.8.0/ Copied: tags/0.8.0 (from rev 3, branches/0.8) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 00:50:15
|
Revision: 3 Author: christianhujer Date: 2006-04-02 17:49:31 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=3&view=rev Log Message: ----------- Created branch for the release the current version is based on. Added Paths: ----------- branches/0.8/ branches/0.8/COPYING branches/0.8/CREDITS branches/0.8/FAQ branches/0.8/INSTALL branches/0.8/LICENSE branches/0.8/NEWS branches/0.8/README branches/0.8/build.xml branches/0.8/lib/ branches/0.8/progs/ branches/0.8/project.properties branches/0.8/src/ branches/0.8/tools/ Copied: branches/0.8 (from rev 1, trunk) Copied: branches/0.8/COPYING (from rev 2, trunk/COPYING) =================================================================== --- branches/0.8/COPYING (rev 0) +++ branches/0.8/COPYING 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. Copied: branches/0.8/CREDITS (from rev 2, trunk/CREDITS) =================================================================== --- branches/0.8/CREDITS (rev 0) +++ branches/0.8/CREDITS 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,8 @@ +The following people have contributed to JAPI: + +* Christian Hujer <ch...@it...> + Inventor, creator, maintainer + +* Daniel Viegas <der...@so...> + Several contributions, suggestions for enhancements and feedback + Copied: branches/0.8/FAQ (from rev 2, trunk/FAQ) =================================================================== --- branches/0.8/FAQ (rev 0) +++ branches/0.8/FAQ 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,4 @@ +FAQ +--- + +No faq yet. Copied: branches/0.8/INSTALL (from rev 2, trunk/INSTALL) =================================================================== --- branches/0.8/INSTALL (rev 0) +++ branches/0.8/INSTALL 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,24 @@ +BUILDING / INSTALLING JAPI +-------------------------- + + +JAPI is a library for Java developers. Because of that, installation is not +applicable. The rest of the file is concerned with building JAPI only. + +To build JAPI, you need Java 5.0 and Ant 1.6.5. The applications you build +using JAPI will need Java 5.0 or newer. + + +To build JAPI, just run ant in the project's root directory or specifying the +build.xml in the project's root directory. To find out, what other options +you have for building JAPI, try "ant -projecthelp". + + +Usually, you'd just want to use JAPI in your favorite IDE and include all +those JAPI classes that you used directly or indirectly in your build. To do +so, the easiest way usually is this: +1. Create a .jar file with the JAPI classes by running "ant distLib". +2. Include that .jar file in the classpath of your IDE. +3. When building your application distribution archive with Ant, add JAPI's + src/app directory to the sourcepath (not srcdir) of your javac task. + Plain javac usage is analogous. Copied: branches/0.8/LICENSE (from rev 2, trunk/LICENSE) =================================================================== --- branches/0.8/LICENSE (rev 0) +++ branches/0.8/LICENSE 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,9 @@ +JAPI LICENSE INFORMATION +------------------------ + +JAPI is licensed under GPL. See file COPYING. + +JAPI uses some third part libraries, especially for building. These libraries +are contained in the lib/ directory and have their own licenses. See the +corresponding LICENSE-*-files in the lib/ directory for the licenses of third +party libraries. Copied: branches/0.8/NEWS (from rev 2, trunk/NEWS) =================================================================== --- branches/0.8/NEWS (rev 0) +++ branches/0.8/NEWS 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,4 @@ +NEWS +---- + +Currently no news. Copied: branches/0.8/README (from rev 2, trunk/README) =================================================================== --- branches/0.8/README (rev 0) +++ branches/0.8/README 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,134 @@ +JAPI README +----------- + +This file contains some important information about JAPI. You should read it +first. + + +TABLE OF CONTENTS +* project description +* project website +* system requirements +* file structure +* build / installation (see file INSTALL) +* maintainers / credits (see file CREDITS) +* project news (see file NEWS) +* mailing lists +* license information (see file LICENSE) + + +PROJECT DESCRIPTION + +JAPI is a library for Java developers. Its intention is to make the creation +of internationalized swing applications easier. Additionally it contains +several classes that its inventors think could be useful for other developers. + + +PROJECT WEBSITE + +Project homepage: http://japi.sourceforge.net/ +Project website: http://sourceforge.net/projects/japi/ + + +SYSTEM REQUIREMENTS + +Java 5.0 + Previous versions of Java will not work. JAPI uses Generics, autoboxing, + static imports, foreach loops, assertions and varargs quite a lot. + +Ant 1.6.5 + Previous versions of Ant might work but are not tested. + + +FILE STRUCTURE + +.cvsignore + Hidden file to keep generated files that reside outside dest/ and are not + part of the cvs repository out of cvs screen messages. + +build.xml + The build file to build the project with Ant. + +COPYING + JAPI license conditions. Note: applies to JAPI only, not third party + libraries. + +CREDITS + List of project contributors. + +dest/ + The directory containing generated files. + +developer.proprties + Optional file for changing default settings of the Ant build. You won't + need to tweak this file for normal building. But if you want to set or + override properties for build.xml, this is the place to put them. + +dist/ + Generated directory containing distribution archives. + +lib/ + Directory containing third part libraries used to build JAPI. Please note + that these third party libraries have their own license conditions. The + licenses of the third party libraries are included in the lib/ directory. + +LICENSE + File with license information. + +progs/ + Small JAPI-based programs that are yet too small to be worth a project of + their own. + +project.properties + File with automatically changed settings for Ant. + +src/ + Source files. + +src/app/ + Core JAPI library sources. + +src/doc/ + Documentation source files (website). + +src/doc/guide/ + Guide part of the documentation. Also Contains useful JAPI usage examples. + +src/test/ + Unit test suite for automated unit testing of JAPI. + +tools/ + Small sometimes JAPI-based programs for use by JAPI developers. + + +BUILD / INSTALLATION + +See the file INSTALL. + + +MAINTAINERS / CREDITS + +See the file CREDITS + + +PROJECT NEWS + +See the file NEWS + + +MAILING LISTS + +JAPI mailing lists are the usual sourceforge hosted sourceforge project +mailing lists. The current mailing lists are: +* jap...@li... + News for JAPI users and developers (Low traffic, read only) +* japi-devel + JAPI developer talk list +* japi-cvs + cvs commit digest list (currently unused, and probably being replaced + by a corresponding svn commit digest list soon) + + +LICENSE INFORMATION + +See the file LICENSE Copied: branches/0.8/build.xml (from rev 2, trunk/build.xml) =================================================================== --- branches/0.8/build.xml (rev 0) +++ branches/0.8/build.xml 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,433 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id: build.xml,v 1.35 2006/03/26 15:22:48 christianhujer Exp $ --> +<!DOCTYPE project [ + <!ENTITY catalogForAnt SYSTEM "src/doc/dtd/catalogForAnt.xml"> +]> +<project default="compile"> + + <description> + Build file for JAPI - (Yet another (hopefully) useful) Java API. + </description> + + <property file="developer.properties" /> + <property file="project.properties" /> + <property name="build.source.encoding" value="utf-8" /> + <property name="build.source.version" value="1.5" /> + <property name="build.target.version" value="${build.source.version}" /> + <property name="debug" value="false" /> + <property name="javac.args" value="-Xlint:all,-path,-unchecked,-fallthrough,-serial" /> + <property name="user.javadoc.link" value="http://java.sun.com/j2se/1.5.0/docs/api/" /> + <property name="user.javadoc.javasrc" value="${user.javadoc.javahome}/src" /> + + <taskdef name="megaxslt" classpath="lib/megaxslt.jar" classname="com.hujer.ant.tasks.megaxslt.MegaXsltTask" /> + <taskdef name="rgzip" classpath="lib/megaxslt.jar" classname="com.hujer.ant.tasks.rgzip.RGZipTask" /> + <taskdef name="pack200" classpath="lib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> + <taskdef name="freshmeat" classpath="lib/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement"> + <classpath> + <pathelement path="lib/xmlrpc-2.0.1.jar" /> + <pathelement path="lib/commons-codec-1.3.jar" /> + </classpath> + </taskdef> + + &catalogForAnt; + + <target + name = "update" + if = "dev.autoupdate" + > + <cvs command = "update" /> + </target> + + <target + name = "init" + depends = "update" + > + </target> + + <target + name = "clean" + description = "Removes all generated files." + > + <delete dir="dest" /> + <delete dir="dist" /> + <subant target="clean"> + <fileset dir="src/doc/guide" includes="**/build.xml" /> + </subant> + </target> + + <target + name = "guideProjects" + description = "builds all guide projects." + > + <subant> + <fileset dir="src/doc/guide" includes="**/build.xml" /> + </subant> + </target> + + <target + name = "compile" + depends = "init" + description = "Compiles the JAPI sources." + > + <mkdir dir="dest/app" /> + <javac + srcdir = "src/app" + destdir = "dest/app" + encoding = "${build.source.encoding}" + source = "${build.source.version}" + target = "${build.target.version}" + debug = "${debug}" + excludes = "test/**/*.java" + > + <classpath> + <fileset dir="lib" includes="annotations.jar" /> + </classpath> + <compilerarg line="${javac.args}" /> + </javac> + <copy todir="dest/app"> + <fileset dir="src/app" includes="**/*.properties" /> + </copy> + </target> + + <target + name = "doc" + depends = "editorialDoc, apiDoc" + description = "Creates project documentation." + /> + + <target + name = "java2html" + description = "Converts documentation java sources to XHTML." + > + <taskdef name="java2html" classpath="lib/java2html.jar" classname="de.java2html.anttasks.Java2HtmlTask" /> + <java2html + srcdir = "src/doc" + destdir = "src/doc" + includes = "**/*.java" + outputformat = "xhtml11" + tabs = "4" + style = "eclipse" + addlineanchors = "true" + includedocumentfooter = "true" + includedocumentheader = "true" + lineanchorprefix = "line" + showdefaulttitle = "true" + showfilename = "true" + showlinenumbers = "true" + showtableborder = "true" + /> + </target> + + <target + name = "editorialDoc" + description = "Creates the editorial part of the project documentation." + depends = "java2html" + > + <mkdir dir="dest/doc" /> + <megaxslt + srcdir="src/doc" + destdir="dest/doc" + includes="**/*.xhtml" + validatesource="true" + validatedest="true" + ending="xhtml" + > + <xmlcatalog refid="commonDTDs" /> + <transformation stylesheet="src/doc/transform.xslt" /> + <transformation stylesheet="src/doc/cleanupXhtml11.xslt" /> + </megaxslt> + <megaxslt + srcdir="dest/doc" + destdir="dest/doc" + includes="**/*.xhtml" + validatesource="true" + validatedest="false" + ending="html" + converttocanonical="true" + > + <xmlcatalog refid="commonDTDs" /> + <transformation stylesheet="src/doc/xhtml2html.xslt" /> + </megaxslt> + <copy + todir="dest/doc" + > + <fileset dir="src/doc"> + <include name="**/.htaccess" /> + <include name="**/*.html" /> + <include name="**/*.css" /> + <include name="**/*.png" /> + <exclude name="**/.xvpics/*.png" /> + </fileset> + </copy> + </target> + + <target + name = "apiDoc" + depends = "init" + description = "Creates public javadoc documentation." + > + <mkdir dir="dest/doc/api/${project.version}" /> + <copy todir="dest/doc/api/${project.version}" file="src/doc/api/public/copyright.html" /> + <copy todir="dest/doc/api/${project.version}" file="src/doc/api/public/.htaccess" /> + <javadoc + destdir = "dest/doc/api/${project.version}" + access = "protected" + author = "yes" + version = "yes" + locale = "en_US" + use = "yes" + splitindex = "yes" + windowtitle = "JAPI API documentation" + doctitle = "JAPI<br />Yet another Java API<br />API Documentation" + header = "JAPI ${project.version}<br />Yet another Java API<br />API Documentation" + footer = "JAPI<br />Yet another Java API<br />API Documentation" + bottom = "<div style="text-align:center;">© 2005-2006 Christian Hujer. All rights reserved. See <a href="{@docRoot}/copyright.html">copyright</a></div>" + serialwarn = "yes" + charset = "${build.source.encoding}" + docencoding = "${build.source.encoding}" + source = "${build.source.version}" + encoding = "${build.source.encoding}" + linksource = "yes" + overview = "src/app/overview.html" + link = "${user.javadoc.link}" + > + <classpath> + <fileset dir="lib" includes="annotations.jar" /> + </classpath> + <sourcepath> + <pathelement path="${user.javadoc.javasrc}" /> + <pathelement path="src/app" /> + </sourcepath> + <packageset + dir="src/app" + defaultexcludes="yes" + > + <include name="**" /> + </packageset> + <tag enabled="true" name="retval" description="Return Values:" scope="methods" /> + <tag enabled="true" name="pre" description="Preconditions:" scope="methods,constructors" /> + <tag enabled="true" name="post" description="Postconditions:" scope="methods" /> + <tag enabled="true" name="note" description="Notes:" /> + <tag enabled="true" name="warning" description="Warnings:" /> + <tag enabled="true" name="todo" description="Todo:" /> + <tag enabled="true" name="fixme" description="Fixme:" /> + <tag enabled="true" name="xxx" description="XXX:" /> + <tag enabled="false" name="used" description="Manually marked as used." /> + </javadoc> + </target> + + <target + name = "dist" + description = "Packs distribution archives." + depends = "distSrc, distLib, distDoc" + /> + + <target + name = "distSrc" + description = "Packs source distribution archives." + > + <mkdir dir="dist" /> + <property name="distSrc" value="dist/japi-${project.version}.src" /> + <parallel> + <tar tarfile="${distSrc}.tar"> + <tarfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </tarfileset> + </tar> + <zip destfile="${distSrc}.zip"> + <zipfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </zipfileset> + </zip> + <jar destfile="${distSrc}.jar"> + <zipfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </zipfileset> + </jar> + </parallel> + <parallel> + <gzip src="${distSrc}.tar" destfile="${distSrc}.tar.gz" /> + <bzip2 src="${distSrc}.tar" destfile="${distSrc}.tar.bz2" /> + </parallel> + <delete file="${distSrc}.tar" /> + </target> + + <target + name = "distLib" + description = "Packs library distribution archives." + depends = "compile" + > + <mkdir dir="dist" /> + <property name="distLib" value="dist/japi-${project.version}.lib" /> + <jar destfile="${distLib}.jar"> + <zipfileset dir="dest/app"/> + <zipfileset src="lib/annotations.jar"/> + <manifest> + <attribute name="Implementation-Title" value="JAPI" /> + <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" /> + <attribute name="Implementation-Version" value="${project.version}" /> + <attribute name="Implementation-URL" value="http://sourceforge.net/projets/japi/" /> + </manifest> + </jar> + <pack200 + src="${distLib}.jar" + destfile="${distLib}.pack.gz" + gzipoutput="true" + stripdebug="true" + effort="9" + keepfileorder="false" + modificationtime="latest" + deflatehint="false" + /> + </target> + + <target + name = "distDoc" + description = "Packs documentation archives." + depends = "apiDoc" + > + <mkdir dir="dist" /> + <property name="distDoc" value="dist/japi-${project.version}.doc" /> + <parallel> + <tar tarfile="${distDoc}.tar"> + <tarfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </tarfileset> + </tar> + <zip destfile="${distDoc}.zip"> + <zipfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </zipfileset> + </zip> + <jar destfile="${distDoc}.jar"> + <zipfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </zipfileset> + </jar> + </parallel> + <parallel> + <gzip src="${distDoc}.tar" destfile="${distDoc}.tar.gz" /> + <bzip2 src="${distDoc}.tar" destfile="${distDoc}.tar.bz2" /> + </parallel> + <delete file="${distDoc}.tar" /> + </target> + + <target + name = "checkDevMail" + description = "checks whether the developer defined his / her email address" + unless = "developer.email" + > + <fail message="You must define the property developer.email with your email address in the file developer.properties." /> + </target> + + <target + name = "releaseDist" + description = "uploads distribution archives to sourceforge." + if = "developer.email" + depends = "checkDevMail, dist" + > + <touch file="src/doc/api/start.xhtml" millis="0" /> + <megaxslt + srcdir="src/doc/api" + destdir="src/doc/api" + includes="start.xhtml" + validatesource="true" + validatedest="true" + ending="xhtml" + converttocanonical="true" + checktimestamps="true" + > + <xmlcatalog refid="commonDTDs" /> + <parameter name="project.version" value="${project.version}" /> + <transformation stylesheet="src/doc/api/release.xslt" /> + </megaxslt> + <cvs command="commit -m '' src/doc/api/start.xhtml" /> + <exec executable="rsync"> + <arg line="-auzv -e ssh dest/doc/api/ ${user.rsync.username}@${user.rsync.host}:${user.rsync.dir}/htdocs/api/" /> + </exec> + <sshexec + host="${user.rsync.host}" + username="${user.rsync.username}" + keyfile="${user.ssh.keyfile}" + command="rm ${user.rsync.dir}/htdocs/api/latest ; ln -s ${project.version} ${user.rsync.dir}/htdocs/api/latest" + /> + <ftp + server = "upload.sourceforge.net" + userid = "anonymous" + password = "${developer.email}" + remotedir = "incoming" + action = "put" + > + <fileset dir="dist" /> + </ftp> + <cvs command="tag -c japi_${project.tag}" failonerror="true"/> + <antcall target="uploadDoc" /> + </target> + + <target + name = "uploadDoc" + description = "uploads the latest editorial documentation." + depends = "editorialDoc" + > + <exec executable="rsync"> + <arg line="-auzv --exclude=api/*/ -e ssh dest/doc/ ${user.rsync.username}@${user.rsync.host}:${user.rsync.dir}/htdocs/" /> + </exec> + </target> + + <target + name = "announce" + description = "announce new version on freshmeat.net" + > + <echo>Announcing. Press return to start announcing this release at FreshMeat.</echo> + <input/> + <freshmeat + username = "${user.freshmeat.username}" + password = "${user.freshmeat.password}" + > + <printlicenses/> + <printreleasefoci/> + <publish + projectname = "japi" + branchname = "Default" + version = "${project.version}" + focus = "${project.focus}" + > + <changes file="LatestNews" /> + <urlblock + homepage = "http://japi.sourceforge.net/" + cvs = "http://cvs.sourceforge.net/viewcvs.py/japi/" + mailinglist = "http://sourceforge.net/mailarchive/forum.php?forum=japi-users" + tgz = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.tar.gz?download" + bz2 = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.tar.bz2?download" + zip = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.zip?download" + /> + </publish> + </freshmeat> + </target> + + <target + name = "release" + description = "Releases a new version of JAPI." + > + <antcall target="clean" /> + <antcall target="releaseDist" /> + <echo>I've uploaded the distribution archives to sourceforge. +Press return when you're done configuring the new file releases on sourceforge. +I will then announce the release at FreshMeat.</echo> + <input/> + <antcall target="announce" /> + </target> + + <target + name = "changelogTest" + description = "Test task to try out CvsChangeLog" + > + <cvschangelog destfile="changelog.xml" tag="japi_${project.version}"> + <user displayname="Christian Hujer" userid="christianhujer" /> + </cvschangelog> + </target> + +</project> Copied: branches/0.8/lib (from rev 2, trunk/lib) Copied: branches/0.8/progs (from rev 2, trunk/progs) Copied: branches/0.8/project.properties (from rev 2, trunk/project.properties) =================================================================== --- branches/0.8/project.properties (rev 0) +++ branches/0.8/project.properties 2006-04-03 00:49:31 UTC (rev 3) @@ -0,0 +1,6 @@ +project.version.major=0 +project.version.minor=8 +project.version.patch=0 +project.version=${project.version.major}.${project.version.minor}.${project.version.patch} +project.tag=${project.version.major}_${project.version.minor}_${project.version.patch} +project.focus=majorEnhancements Copied: branches/0.8/src (from rev 2, trunk/src) Copied: branches/0.8/tools (from rev 2, trunk/tools) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2006-04-03 00:45:31
|
Revision: 2 Author: christianhujer Date: 2006-04-02 17:38:05 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=2&view=rev Log Message: ----------- Initial source commit. Added Paths: ----------- trunk/COPYING trunk/CREDITS trunk/FAQ trunk/INSTALL trunk/LICENSE trunk/NEWS trunk/README trunk/build.xml trunk/lib/ trunk/lib/LICENSE-Pack200Task.jar trunk/lib/LICENSE-annotations.jar trunk/lib/LICENSE-antmeat.jar trunk/lib/LICENSE-java2html.jar trunk/lib/LICENSE-jlfgr-1_0.jar trunk/lib/LICENSE-junit.jar trunk/lib/LICENSE-megaxslt.jar trunk/lib/LICENSE-xmlrpc-1.2-b1.jar trunk/lib/Pack200Task.jar trunk/lib/README trunk/lib/annotations.jar trunk/lib/antmeat.jar trunk/lib/commons-codec-1.3.jar trunk/lib/java2html.jar trunk/lib/jlfgr-1_0.jar trunk/lib/junit.jar trunk/lib/megaxslt.jar trunk/lib/src_annotations.zip trunk/lib/xmlrpc-2.0.1.jar trunk/progs/ trunk/project.properties trunk/src/ trunk/src/app/ trunk/src/app/net/ trunk/src/app/net/sf/ trunk/src/app/net/sf/japi/ trunk/src/app/net/sf/japi/cpp/ trunk/src/app/net/sf/japi/cpp/CPreProcessor.java trunk/src/app/net/sf/japi/cpp/State.java trunk/src/app/net/sf/japi/io/ trunk/src/app/net/sf/japi/io/ARGV.java trunk/src/app/net/sf/japi/io/ARGVEnumeration.java trunk/src/app/net/sf/japi/io/ARGVInputStream.java trunk/src/app/net/sf/japi/io/ARGVReader.java trunk/src/app/net/sf/japi/io/BCD.java trunk/src/app/net/sf/japi/io/IOHelper.java trunk/src/app/net/sf/japi/io/Nibbles.java trunk/src/app/net/sf/japi/io/package.html trunk/src/app/net/sf/japi/lang/ trunk/src/app/net/sf/japi/lang/Properties.java trunk/src/app/net/sf/japi/lang/SuperClassIterator.java trunk/src/app/net/sf/japi/lang/package.html trunk/src/app/net/sf/japi/net/ trunk/src/app/net/sf/japi/net/ProxySettings.java trunk/src/app/net/sf/japi/sql/ trunk/src/app/net/sf/japi/sql/CachedResultSetTableModel.java trunk/src/app/net/sf/japi/sql/DatabaseTreeModel.java trunk/src/app/net/sf/japi/sql/ResultSetTableModel.java trunk/src/app/net/sf/japi/sql/SQLHelper.java trunk/src/app/net/sf/japi/sql/ScrollResultSetTableModel.java trunk/src/app/net/sf/japi/sql/package.html trunk/src/app/net/sf/japi/swing/ trunk/src/app/net/sf/japi/swing/ActionFactory.java trunk/src/app/net/sf/japi/swing/ActionMethod.java trunk/src/app/net/sf/japi/swing/ColumnLayout.java trunk/src/app/net/sf/japi/swing/DisposeAction.java trunk/src/app/net/sf/japi/swing/DummyAction.java trunk/src/app/net/sf/japi/swing/FileField.java trunk/src/app/net/sf/japi/swing/IconManager.java trunk/src/app/net/sf/japi/swing/JFileChooserButton.java trunk/src/app/net/sf/japi/swing/JPropertyEditor.java trunk/src/app/net/sf/japi/swing/JSAXErrorHandler.java trunk/src/app/net/sf/japi/swing/LocaleComparator.java trunk/src/app/net/sf/japi/swing/LocaleListCellRenderer.java trunk/src/app/net/sf/japi/swing/LookAndFeelManager.java trunk/src/app/net/sf/japi/swing/NamedActionMap.java trunk/src/app/net/sf/japi/swing/Progress.java trunk/src/app/net/sf/japi/swing/ProgressDisplay.java trunk/src/app/net/sf/japi/swing/ReflectionAction.java trunk/src/app/net/sf/japi/swing/TipOfTheDayManager.java trunk/src/app/net/sf/japi/swing/ToggleAction.java trunk/src/app/net/sf/japi/swing/ToolBarLayout.java trunk/src/app/net/sf/japi/swing/WindowsLookAndFeel.java trunk/src/app/net/sf/japi/swing/action.properties trunk/src/app/net/sf/japi/swing/action_de.properties trunk/src/app/net/sf/japi/swing/bookmarks/ trunk/src/app/net/sf/japi/swing/bookmarks/BookmarkDropTargetAdapter.java trunk/src/app/net/sf/japi/swing/bookmarks/BookmarkManager.java trunk/src/app/net/sf/japi/swing/bookmarks/BookmarkTransferHandler.java trunk/src/app/net/sf/japi/swing/bookmarks/BookmarkTransferable.java trunk/src/app/net/sf/japi/swing/bookmarks/BookmarkTreeCellRenderer.java trunk/src/app/net/sf/japi/swing/bookmarks/Bookmarkable.java trunk/src/app/net/sf/japi/swing/bookmarks/action.properties trunk/src/app/net/sf/japi/swing/bookmarks/action_de.properties trunk/src/app/net/sf/japi/swing/bookmarks/package.html trunk/src/app/net/sf/japi/swing/font/ trunk/src/app/net/sf/japi/swing/font/FontChooser.java trunk/src/app/net/sf/japi/swing/font/FontFamilyComboBox.java trunk/src/app/net/sf/japi/swing/font/FontFamilyListCellRenderer.java trunk/src/app/net/sf/japi/swing/font/FontPreview.java trunk/src/app/net/sf/japi/swing/font/FontStyleListCellRenderer.java trunk/src/app/net/sf/japi/swing/font/action.properties trunk/src/app/net/sf/japi/swing/font/action_de.properties trunk/src/app/net/sf/japi/swing/font/package.html trunk/src/app/net/sf/japi/swing/io/ trunk/src/app/net/sf/japi/swing/io/CanLoad.java trunk/src/app/net/sf/japi/swing/package.html trunk/src/app/net/sf/japi/swing/prefs/ trunk/src/app/net/sf/japi/swing/prefs/AbstractPrefs.java trunk/src/app/net/sf/japi/swing/prefs/PreferencesGroup.java trunk/src/app/net/sf/japi/swing/prefs/PreferencesPane.java trunk/src/app/net/sf/japi/swing/prefs/Prefs.java trunk/src/app/net/sf/japi/swing/prefs/action.properties trunk/src/app/net/sf/japi/swing/prefs/action_de.properties trunk/src/app/net/sf/japi/swing/prefs/keys/ trunk/src/app/net/sf/japi/swing/prefs/keys/AbstractSimpleNode.java trunk/src/app/net/sf/japi/swing/prefs/keys/ActionKeyDisplay.java trunk/src/app/net/sf/japi/swing/prefs/keys/ActionMapNode.java trunk/src/app/net/sf/japi/swing/prefs/keys/ActionNode.java trunk/src/app/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java trunk/src/app/net/sf/japi/swing/prefs/keys/KeyStrokeRootNode.java trunk/src/app/net/sf/japi/swing/prefs/keys/KeyStrokeTreeTableModel.java trunk/src/app/net/sf/japi/swing/prefs/keys/SimpleNode.java trunk/src/app/net/sf/japi/swing/prefs/keys/action.properties trunk/src/app/net/sf/japi/swing/prefs/package.html trunk/src/app/net/sf/japi/swing/prefs/proxy/ trunk/src/app/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java trunk/src/app/net/sf/japi/swing/prefs/proxy/package.html trunk/src/app/net/sf/japi/swing/treetable/ trunk/src/app/net/sf/japi/swing/treetable/AbstractTreeTableModel.java trunk/src/app/net/sf/japi/swing/treetable/JTreeTable.java trunk/src/app/net/sf/japi/swing/treetable/TreeTableModel.java trunk/src/app/net/sf/japi/swing/treetable/TreeTableModelTableModelAdapter.java trunk/src/app/net/sf/japi/swing/treetable/TreeTableModelTreeModelAdapter.java trunk/src/app/net/sf/japi/util/ trunk/src/app/net/sf/japi/util/Arrays2.java trunk/src/app/net/sf/japi/util/Collections2.java trunk/src/app/net/sf/japi/util/EmptyEnumeration.java trunk/src/app/net/sf/japi/util/EmptyIterator.java trunk/src/app/net/sf/japi/util/EndianConverter.java trunk/src/app/net/sf/japi/util/EnumerationIterator.java trunk/src/app/net/sf/japi/util/IteratorEnumeration.java trunk/src/app/net/sf/japi/util/Pair.java trunk/src/app/net/sf/japi/util/PrintStreamThrowableHandler.java trunk/src/app/net/sf/japi/util/Table.java trunk/src/app/net/sf/japi/util/ThrowableHandler.java trunk/src/app/net/sf/japi/util/filter/ trunk/src/app/net/sf/japi/util/filter/AndFilterForArray.java trunk/src/app/net/sf/japi/util/filter/AndFilterForIterable.java trunk/src/app/net/sf/japi/util/filter/CollectionFilter.java trunk/src/app/net/sf/japi/util/filter/Filter.java trunk/src/app/net/sf/japi/util/filter/NotFilter.java trunk/src/app/net/sf/japi/util/filter/OrFilterForArray.java trunk/src/app/net/sf/japi/util/filter/OrFilterForIterable.java trunk/src/app/net/sf/japi/util/filter/file/ trunk/src/app/net/sf/japi/util/filter/file/AbstractFileFilter.java trunk/src/app/net/sf/japi/util/filter/file/EndingFileFilter.java trunk/src/app/net/sf/japi/util/filter/file/Factory.java trunk/src/app/net/sf/japi/util/filter/file/FileFilter.java trunk/src/app/net/sf/japi/util/filter/file/FilenameFileFilter.java trunk/src/app/net/sf/japi/util/filter/file/GlobFileFilter.java trunk/src/app/net/sf/japi/util/filter/file/RegexFileFilter.java trunk/src/app/net/sf/japi/util/package.html trunk/src/app/net/sf/japi/xml/ trunk/src/app/net/sf/japi/xml/FilteredNodeList.java trunk/src/app/net/sf/japi/xml/NodeListIterator.java trunk/src/app/net/sf/japi/xml/package.html trunk/src/app/overview.html trunk/src/buildInclude.xml trunk/src/doc/ trunk/src/doc/.htaccess trunk/src/doc/api/ trunk/src/doc/api/private/ trunk/src/doc/api/private/.htaccess trunk/src/doc/api/private/copyright.html trunk/src/doc/api/public/ trunk/src/doc/api/public/.htaccess trunk/src/doc/api/public/copyright.html trunk/src/doc/api/release.xslt trunk/src/doc/api/start.xhtml trunk/src/doc/changes.xhtml trunk/src/doc/cleanupXhtml11.xslt trunk/src/doc/copyright.xhtml trunk/src/doc/dtd/ trunk/src/doc/dtd/catalogForAnt.xml trunk/src/doc/dtd/xhtml-applet-1.mod trunk/src/doc/dtd/xhtml-arch-1.mod trunk/src/doc/dtd/xhtml-attribs-1.mod trunk/src/doc/dtd/xhtml-base-1.mod trunk/src/doc/dtd/xhtml-basic-form-1.mod trunk/src/doc/dtd/xhtml-basic-table-1.mod trunk/src/doc/dtd/xhtml-bdo-1.mod trunk/src/doc/dtd/xhtml-blkphras-1.mod trunk/src/doc/dtd/xhtml-blkpres-1.mod trunk/src/doc/dtd/xhtml-blkstruct-1.mod trunk/src/doc/dtd/xhtml-charent-1.mod trunk/src/doc/dtd/xhtml-csismap-1.mod trunk/src/doc/dtd/xhtml-datatypes-1.mod trunk/src/doc/dtd/xhtml-edit-1.mod trunk/src/doc/dtd/xhtml-events-1.mod trunk/src/doc/dtd/xhtml-form-1.mod trunk/src/doc/dtd/xhtml-frames-1.mod trunk/src/doc/dtd/xhtml-framework-1.mod trunk/src/doc/dtd/xhtml-hypertext-1.mod trunk/src/doc/dtd/xhtml-iframe-1.mod trunk/src/doc/dtd/xhtml-image-1.mod trunk/src/doc/dtd/xhtml-inlphras-1.mod trunk/src/doc/dtd/xhtml-inlpres-1.mod trunk/src/doc/dtd/xhtml-inlstruct-1.mod trunk/src/doc/dtd/xhtml-inlstyle-1.mod trunk/src/doc/dtd/xhtml-lat1.ent trunk/src/doc/dtd/xhtml-legacy-1.mod trunk/src/doc/dtd/xhtml-link-1.mod trunk/src/doc/dtd/xhtml-list-1.mod trunk/src/doc/dtd/xhtml-meta-1.mod trunk/src/doc/dtd/xhtml-nameident-1.mod trunk/src/doc/dtd/xhtml-notations-1.mod trunk/src/doc/dtd/xhtml-object-1.mod trunk/src/doc/dtd/xhtml-param-1.mod trunk/src/doc/dtd/xhtml-pres-1.mod trunk/src/doc/dtd/xhtml-qname-1.mod trunk/src/doc/dtd/xhtml-ruby-1.mod trunk/src/doc/dtd/xhtml-script-1.mod trunk/src/doc/dtd/xhtml-special.ent trunk/src/doc/dtd/xhtml-ssismap-1.mod trunk/src/doc/dtd/xhtml-struct-1.mod trunk/src/doc/dtd/xhtml-style-1.mod trunk/src/doc/dtd/xhtml-symbol.ent trunk/src/doc/dtd/xhtml-table-1.mod trunk/src/doc/dtd/xhtml-target-1.mod trunk/src/doc/dtd/xhtml-text-1.mod trunk/src/doc/dtd/xhtml-xinclude10-1.mod trunk/src/doc/dtd/xhtml11-flat.dtd trunk/src/doc/dtd/xhtml11-model-1.mod trunk/src/doc/dtd/xhtml11.dtd trunk/src/doc/dtd/xhtml11_xinclude10-model-1.mod trunk/src/doc/dtd/xhtml11_xinclude10.dtd trunk/src/doc/guide/ trunk/src/doc/guide/io/ trunk/src/doc/guide/io/src/ trunk/src/doc/guide/io/src/CatJAPI.java trunk/src/doc/guide/io/src/CatPlain.java trunk/src/doc/guide/io/src/SortJAPI.java trunk/src/doc/guide/io/src/SortPlain.java trunk/src/doc/guide/io/src/UniqJAPI.java trunk/src/doc/guide/io/src/UniqPlain.java trunk/src/doc/guide/io/start.xhtml trunk/src/doc/guide/start.xhtml trunk/src/doc/guide/swing/ trunk/src/doc/guide/swing/action/ trunk/src/doc/guide/swing/action/basic/ trunk/src/doc/guide/swing/action/basic/build.xml trunk/src/doc/guide/swing/action/basic/screenshot1.png trunk/src/doc/guide/swing/action/basic/screenshot2.png trunk/src/doc/guide/swing/action/basic/src/ trunk/src/doc/guide/swing/action/basic/src/ex/ trunk/src/doc/guide/swing/action/basic/src/ex/App.java trunk/src/doc/guide/swing/action/basic/src/ex/action.properties trunk/src/doc/guide/swing/action/basic/src/ex/action_de.properties trunk/src/doc/guide/swing/action/basic/start.xhtml trunk/src/doc/guide/swing/action/fromScratch/ trunk/src/doc/guide/swing/action/fromScratch/Editor.png trunk/src/doc/guide/swing/action/fromScratch/build.xml trunk/src/doc/guide/swing/action/fromScratch/src/ trunk/src/doc/guide/swing/action/fromScratch/src/icons/ trunk/src/doc/guide/swing/action/fromScratch/src/icons/general/ trunk/src/doc/guide/swing/action/fromScratch/src/net/ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/ trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/Editor.java trunk/src/doc/guide/swing/action/fromScratch/src/net/sf/japi/examples/editor/action.properties trunk/src/doc/guide/swing/action/fromScratch/start.xhtml trunk/src/doc/guide/swing/action/start.xhtml trunk/src/doc/guide/swing/prefs/ trunk/src/doc/guide/swing/prefs/keys/ trunk/src/doc/guide/swing/prefs/keys/build.xml trunk/src/doc/guide/swing/prefs/keys/src/ trunk/src/doc/guide/swing/prefs/keys/src/ex/ trunk/src/doc/guide/swing/prefs/keys/src/ex/App.java trunk/src/doc/guide/swing/prefs/keys/src/ex/action.properties trunk/src/doc/guide/swing/tod/ trunk/src/doc/guide/swing/tod/build.xml trunk/src/doc/guide/swing/tod/src/ trunk/src/doc/guide/swing/tod/src/META-INF/ trunk/src/doc/guide/swing/tod/src/META-INF/services/ trunk/src/doc/guide/swing/tod/src/META-INF/services/net.sf.japi.swing.tod trunk/src/doc/guide/swing/tod/src/ex/ trunk/src/doc/guide/swing/tod/src/ex/App.java trunk/src/doc/guide/swing/tod/src/ex/action.properties trunk/src/doc/guide/swing/tod/src/ex/tod.properties trunk/src/doc/guide/swing/tod/src/ex/tod_de.properties trunk/src/doc/guide/swing/tod/start.xhtml trunk/src/doc/guide/swing/tod/tod.de.png trunk/src/doc/guide/swing/tod/tod.en.png trunk/src/doc/guide/xml/ trunk/src/doc/guide/xml/start.xhtml trunk/src/doc/releasePlan.xhtml trunk/src/doc/sitestyle.css trunk/src/doc/start.xhtml trunk/src/doc/transform.xslt trunk/src/doc/wontFixes.xhtml trunk/src/doc/xhtml2html.xslt trunk/src/project.dtd trunk/src/test/ trunk/src/test/net/ trunk/src/test/net/sf/ trunk/src/test/net/sf/japi/ trunk/src/test/net/sf/japi/lang/ trunk/src/test/net/sf/japi/lang/test/ trunk/src/test/net/sf/japi/lang/test/SuperClassIteratorTest.java trunk/tools/ trunk/tools/fonts/ trunk/tools/fonts/build.xml trunk/tools/fonts/src/ trunk/tools/fonts/src/net/ trunk/tools/fonts/src/net/sf/ trunk/tools/fonts/src/net/sf/japi/ trunk/tools/fonts/src/net/sf/japi/tools/ trunk/tools/fonts/src/net/sf/japi/tools/fontbrowser/ trunk/tools/fonts/src/net/sf/japi/tools/fontbrowser/FontBrowser.java trunk/tools/fonts/src/net/sf/japi/tools/fontbrowser/action.properties trunk/tools/keystrokes/ trunk/tools/keystrokes/build.xml trunk/tools/keystrokes/src/ trunk/tools/keystrokes/src/net/ trunk/tools/keystrokes/src/net/sf/ trunk/tools/keystrokes/src/net/sf/japi/ trunk/tools/keystrokes/src/net/sf/japi/tools/ trunk/tools/keystrokes/src/net/sf/japi/tools/keystrokes/ trunk/tools/keystrokes/src/net/sf/japi/tools/keystrokes/KeyStrokes.java trunk/tools/keystrokes/src/net/sf/japi/tools/keystrokes/action.properties trunk/tools/prefs/ trunk/tools/prefs/build.xml trunk/tools/prefs/src/ trunk/tools/prefs/src/net/ trunk/tools/prefs/src/net/sf/ trunk/tools/prefs/src/net/sf/japi/ trunk/tools/prefs/src/net/sf/japi/tools/ trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/ trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsBranchNode.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsBrowser.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsLeafNode.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsRootNode.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsTreeNode.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/PrefsTreeTableModel.java trunk/tools/prefs/src/net/sf/japi/tools/prefsbrowser/action.properties Added: trunk/COPYING =================================================================== --- trunk/COPYING (rev 0) +++ trunk/COPYING 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. Property changes on: trunk/COPYING ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/CREDITS =================================================================== --- trunk/CREDITS (rev 0) +++ trunk/CREDITS 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,8 @@ +The following people have contributed to JAPI: + +* Christian Hujer <ch...@it...> + Inventor, creator, maintainer + +* Daniel Viegas <der...@so...> + Several contributions, suggestions for enhancements and feedback + Property changes on: trunk/CREDITS ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/FAQ =================================================================== --- trunk/FAQ (rev 0) +++ trunk/FAQ 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,4 @@ +FAQ +--- + +No faq yet. Property changes on: trunk/FAQ ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/INSTALL =================================================================== --- trunk/INSTALL (rev 0) +++ trunk/INSTALL 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,24 @@ +BUILDING / INSTALLING JAPI +-------------------------- + + +JAPI is a library for Java developers. Because of that, installation is not +applicable. The rest of the file is concerned with building JAPI only. + +To build JAPI, you need Java 5.0 and Ant 1.6.5. The applications you build +using JAPI will need Java 5.0 or newer. + + +To build JAPI, just run ant in the project's root directory or specifying the +build.xml in the project's root directory. To find out, what other options +you have for building JAPI, try "ant -projecthelp". + + +Usually, you'd just want to use JAPI in your favorite IDE and include all +those JAPI classes that you used directly or indirectly in your build. To do +so, the easiest way usually is this: +1. Create a .jar file with the JAPI classes by running "ant distLib". +2. Include that .jar file in the classpath of your IDE. +3. When building your application distribution archive with Ant, add JAPI's + src/app directory to the sourcepath (not srcdir) of your javac task. + Plain javac usage is analogous. Property changes on: trunk/INSTALL ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/LICENSE =================================================================== --- trunk/LICENSE (rev 0) +++ trunk/LICENSE 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,9 @@ +JAPI LICENSE INFORMATION +------------------------ + +JAPI is licensed under GPL. See file COPYING. + +JAPI uses some third part libraries, especially for building. These libraries +are contained in the lib/ directory and have their own licenses. See the +corresponding LICENSE-*-files in the lib/ directory for the licenses of third +party libraries. Property changes on: trunk/LICENSE ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/NEWS =================================================================== --- trunk/NEWS (rev 0) +++ trunk/NEWS 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,4 @@ +NEWS +---- + +Currently no news. Property changes on: trunk/NEWS ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/README =================================================================== --- trunk/README (rev 0) +++ trunk/README 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,134 @@ +JAPI README +----------- + +This file contains some important information about JAPI. You should read it +first. + + +TABLE OF CONTENTS +* project description +* project website +* system requirements +* file structure +* build / installation (see file INSTALL) +* maintainers / credits (see file CREDITS) +* project news (see file NEWS) +* mailing lists +* license information (see file LICENSE) + + +PROJECT DESCRIPTION + +JAPI is a library for Java developers. Its intention is to make the creation +of internationalized swing applications easier. Additionally it contains +several classes that its inventors think could be useful for other developers. + + +PROJECT WEBSITE + +Project homepage: http://japi.sourceforge.net/ +Project website: http://sourceforge.net/projects/japi/ + + +SYSTEM REQUIREMENTS + +Java 5.0 + Previous versions of Java will not work. JAPI uses Generics, autoboxing, + static imports, foreach loops, assertions and varargs quite a lot. + +Ant 1.6.5 + Previous versions of Ant might work but are not tested. + + +FILE STRUCTURE + +.cvsignore + Hidden file to keep generated files that reside outside dest/ and are not + part of the cvs repository out of cvs screen messages. + +build.xml + The build file to build the project with Ant. + +COPYING + JAPI license conditions. Note: applies to JAPI only, not third party + libraries. + +CREDITS + List of project contributors. + +dest/ + The directory containing generated files. + +developer.proprties + Optional file for changing default settings of the Ant build. You won't + need to tweak this file for normal building. But if you want to set or + override properties for build.xml, this is the place to put them. + +dist/ + Generated directory containing distribution archives. + +lib/ + Directory containing third part libraries used to build JAPI. Please note + that these third party libraries have their own license conditions. The + licenses of the third party libraries are included in the lib/ directory. + +LICENSE + File with license information. + +progs/ + Small JAPI-based programs that are yet too small to be worth a project of + their own. + +project.properties + File with automatically changed settings for Ant. + +src/ + Source files. + +src/app/ + Core JAPI library sources. + +src/doc/ + Documentation source files (website). + +src/doc/guide/ + Guide part of the documentation. Also Contains useful JAPI usage examples. + +src/test/ + Unit test suite for automated unit testing of JAPI. + +tools/ + Small sometimes JAPI-based programs for use by JAPI developers. + + +BUILD / INSTALLATION + +See the file INSTALL. + + +MAINTAINERS / CREDITS + +See the file CREDITS + + +PROJECT NEWS + +See the file NEWS + + +MAILING LISTS + +JAPI mailing lists are the usual sourceforge hosted sourceforge project +mailing lists. The current mailing lists are: +* jap...@li... + News for JAPI users and developers (Low traffic, read only) +* japi-devel + JAPI developer talk list +* japi-cvs + cvs commit digest list (currently unused, and probably being replaced + by a corresponding svn commit digest list soon) + + +LICENSE INFORMATION + +See the file LICENSE Property changes on: trunk/README ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + LF Added: trunk/build.xml =================================================================== --- trunk/build.xml (rev 0) +++ trunk/build.xml 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,433 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- $Id: build.xml,v 1.35 2006/03/26 15:22:48 christianhujer Exp $ --> +<!DOCTYPE project [ + <!ENTITY catalogForAnt SYSTEM "src/doc/dtd/catalogForAnt.xml"> +]> +<project default="compile"> + + <description> + Build file for JAPI - (Yet another (hopefully) useful) Java API. + </description> + + <property file="developer.properties" /> + <property file="project.properties" /> + <property name="build.source.encoding" value="utf-8" /> + <property name="build.source.version" value="1.5" /> + <property name="build.target.version" value="${build.source.version}" /> + <property name="debug" value="false" /> + <property name="javac.args" value="-Xlint:all,-path,-unchecked,-fallthrough,-serial" /> + <property name="user.javadoc.link" value="http://java.sun.com/j2se/1.5.0/docs/api/" /> + <property name="user.javadoc.javasrc" value="${user.javadoc.javahome}/src" /> + + <taskdef name="megaxslt" classpath="lib/megaxslt.jar" classname="com.hujer.ant.tasks.megaxslt.MegaXsltTask" /> + <taskdef name="rgzip" classpath="lib/megaxslt.jar" classname="com.hujer.ant.tasks.rgzip.RGZipTask" /> + <taskdef name="pack200" classpath="lib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> + <taskdef name="freshmeat" classpath="lib/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement"> + <classpath> + <pathelement path="lib/xmlrpc-2.0.1.jar" /> + <pathelement path="lib/commons-codec-1.3.jar" /> + </classpath> + </taskdef> + + &catalogForAnt; + + <target + name = "update" + if = "dev.autoupdate" + > + <cvs command = "update" /> + </target> + + <target + name = "init" + depends = "update" + > + </target> + + <target + name = "clean" + description = "Removes all generated files." + > + <delete dir="dest" /> + <delete dir="dist" /> + <subant target="clean"> + <fileset dir="src/doc/guide" includes="**/build.xml" /> + </subant> + </target> + + <target + name = "guideProjects" + description = "builds all guide projects." + > + <subant> + <fileset dir="src/doc/guide" includes="**/build.xml" /> + </subant> + </target> + + <target + name = "compile" + depends = "init" + description = "Compiles the JAPI sources." + > + <mkdir dir="dest/app" /> + <javac + srcdir = "src/app" + destdir = "dest/app" + encoding = "${build.source.encoding}" + source = "${build.source.version}" + target = "${build.target.version}" + debug = "${debug}" + excludes = "test/**/*.java" + > + <classpath> + <fileset dir="lib" includes="annotations.jar" /> + </classpath> + <compilerarg line="${javac.args}" /> + </javac> + <copy todir="dest/app"> + <fileset dir="src/app" includes="**/*.properties" /> + </copy> + </target> + + <target + name = "doc" + depends = "editorialDoc, apiDoc" + description = "Creates project documentation." + /> + + <target + name = "java2html" + description = "Converts documentation java sources to XHTML." + > + <taskdef name="java2html" classpath="lib/java2html.jar" classname="de.java2html.anttasks.Java2HtmlTask" /> + <java2html + srcdir = "src/doc" + destdir = "src/doc" + includes = "**/*.java" + outputformat = "xhtml11" + tabs = "4" + style = "eclipse" + addlineanchors = "true" + includedocumentfooter = "true" + includedocumentheader = "true" + lineanchorprefix = "line" + showdefaulttitle = "true" + showfilename = "true" + showlinenumbers = "true" + showtableborder = "true" + /> + </target> + + <target + name = "editorialDoc" + description = "Creates the editorial part of the project documentation." + depends = "java2html" + > + <mkdir dir="dest/doc" /> + <megaxslt + srcdir="src/doc" + destdir="dest/doc" + includes="**/*.xhtml" + validatesource="true" + validatedest="true" + ending="xhtml" + > + <xmlcatalog refid="commonDTDs" /> + <transformation stylesheet="src/doc/transform.xslt" /> + <transformation stylesheet="src/doc/cleanupXhtml11.xslt" /> + </megaxslt> + <megaxslt + srcdir="dest/doc" + destdir="dest/doc" + includes="**/*.xhtml" + validatesource="true" + validatedest="false" + ending="html" + converttocanonical="true" + > + <xmlcatalog refid="commonDTDs" /> + <transformation stylesheet="src/doc/xhtml2html.xslt" /> + </megaxslt> + <copy + todir="dest/doc" + > + <fileset dir="src/doc"> + <include name="**/.htaccess" /> + <include name="**/*.html" /> + <include name="**/*.css" /> + <include name="**/*.png" /> + <exclude name="**/.xvpics/*.png" /> + </fileset> + </copy> + </target> + + <target + name = "apiDoc" + depends = "init" + description = "Creates public javadoc documentation." + > + <mkdir dir="dest/doc/api/${project.version}" /> + <copy todir="dest/doc/api/${project.version}" file="src/doc/api/public/copyright.html" /> + <copy todir="dest/doc/api/${project.version}" file="src/doc/api/public/.htaccess" /> + <javadoc + destdir = "dest/doc/api/${project.version}" + access = "protected" + author = "yes" + version = "yes" + locale = "en_US" + use = "yes" + splitindex = "yes" + windowtitle = "JAPI API documentation" + doctitle = "JAPI<br />Yet another Java API<br />API Documentation" + header = "JAPI ${project.version}<br />Yet another Java API<br />API Documentation" + footer = "JAPI<br />Yet another Java API<br />API Documentation" + bottom = "<div style="text-align:center;">© 2005-2006 Christian Hujer. All rights reserved. See <a href="{@docRoot}/copyright.html">copyright</a></div>" + serialwarn = "yes" + charset = "${build.source.encoding}" + docencoding = "${build.source.encoding}" + source = "${build.source.version}" + encoding = "${build.source.encoding}" + linksource = "yes" + overview = "src/app/overview.html" + link = "${user.javadoc.link}" + > + <classpath> + <fileset dir="lib" includes="annotations.jar" /> + </classpath> + <sourcepath> + <pathelement path="${user.javadoc.javasrc}" /> + <pathelement path="src/app" /> + </sourcepath> + <packageset + dir="src/app" + defaultexcludes="yes" + > + <include name="**" /> + </packageset> + <tag enabled="true" name="retval" description="Return Values:" scope="methods" /> + <tag enabled="true" name="pre" description="Preconditions:" scope="methods,constructors" /> + <tag enabled="true" name="post" description="Postconditions:" scope="methods" /> + <tag enabled="true" name="note" description="Notes:" /> + <tag enabled="true" name="warning" description="Warnings:" /> + <tag enabled="true" name="todo" description="Todo:" /> + <tag enabled="true" name="fixme" description="Fixme:" /> + <tag enabled="true" name="xxx" description="XXX:" /> + <tag enabled="false" name="used" description="Manually marked as used." /> + </javadoc> + </target> + + <target + name = "dist" + description = "Packs distribution archives." + depends = "distSrc, distLib, distDoc" + /> + + <target + name = "distSrc" + description = "Packs source distribution archives." + > + <mkdir dir="dist" /> + <property name="distSrc" value="dist/japi-${project.version}.src" /> + <parallel> + <tar tarfile="${distSrc}.tar"> + <tarfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </tarfileset> + </tar> + <zip destfile="${distSrc}.zip"> + <zipfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </zipfileset> + </zip> + <jar destfile="${distSrc}.jar"> + <zipfileset dir="." prefix="japi-${project.version}"> + <include name="src/**" /> + <include name="build.xml" /> + </zipfileset> + </jar> + </parallel> + <parallel> + <gzip src="${distSrc}.tar" destfile="${distSrc}.tar.gz" /> + <bzip2 src="${distSrc}.tar" destfile="${distSrc}.tar.bz2" /> + </parallel> + <delete file="${distSrc}.tar" /> + </target> + + <target + name = "distLib" + description = "Packs library distribution archives." + depends = "compile" + > + <mkdir dir="dist" /> + <property name="distLib" value="dist/japi-${project.version}.lib" /> + <jar destfile="${distLib}.jar"> + <zipfileset dir="dest/app"/> + <zipfileset src="lib/annotations.jar"/> + <manifest> + <attribute name="Implementation-Title" value="JAPI" /> + <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" /> + <attribute name="Implementation-Version" value="${project.version}" /> + <attribute name="Implementation-URL" value="http://sourceforge.net/projets/japi/" /> + </manifest> + </jar> + <pack200 + src="${distLib}.jar" + destfile="${distLib}.pack.gz" + gzipoutput="true" + stripdebug="true" + effort="9" + keepfileorder="false" + modificationtime="latest" + deflatehint="false" + /> + </target> + + <target + name = "distDoc" + description = "Packs documentation archives." + depends = "apiDoc" + > + <mkdir dir="dist" /> + <property name="distDoc" value="dist/japi-${project.version}.doc" /> + <parallel> + <tar tarfile="${distDoc}.tar"> + <tarfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </tarfileset> + </tar> + <zip destfile="${distDoc}.zip"> + <zipfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </zipfileset> + </zip> + <jar destfile="${distDoc}.jar"> + <zipfileset dir="dest/doc" prefix="japi-${project.version}"> + <include name="api/${project.version}/**" /> + </zipfileset> + </jar> + </parallel> + <parallel> + <gzip src="${distDoc}.tar" destfile="${distDoc}.tar.gz" /> + <bzip2 src="${distDoc}.tar" destfile="${distDoc}.tar.bz2" /> + </parallel> + <delete file="${distDoc}.tar" /> + </target> + + <target + name = "checkDevMail" + description = "checks whether the developer defined his / her email address" + unless = "developer.email" + > + <fail message="You must define the property developer.email with your email address in the file developer.properties." /> + </target> + + <target + name = "releaseDist" + description = "uploads distribution archives to sourceforge." + if = "developer.email" + depends = "checkDevMail, dist" + > + <touch file="src/doc/api/start.xhtml" millis="0" /> + <megaxslt + srcdir="src/doc/api" + destdir="src/doc/api" + includes="start.xhtml" + validatesource="true" + validatedest="true" + ending="xhtml" + converttocanonical="true" + checktimestamps="true" + > + <xmlcatalog refid="commonDTDs" /> + <parameter name="project.version" value="${project.version}" /> + <transformation stylesheet="src/doc/api/release.xslt" /> + </megaxslt> + <cvs command="commit -m '' src/doc/api/start.xhtml" /> + <exec executable="rsync"> + <arg line="-auzv -e ssh dest/doc/api/ ${user.rsync.username}@${user.rsync.host}:${user.rsync.dir}/htdocs/api/" /> + </exec> + <sshexec + host="${user.rsync.host}" + username="${user.rsync.username}" + keyfile="${user.ssh.keyfile}" + command="rm ${user.rsync.dir}/htdocs/api/latest ; ln -s ${project.version} ${user.rsync.dir}/htdocs/api/latest" + /> + <ftp + server = "upload.sourceforge.net" + userid = "anonymous" + password = "${developer.email}" + remotedir = "incoming" + action = "put" + > + <fileset dir="dist" /> + </ftp> + <cvs command="tag -c japi_${project.tag}" failonerror="true"/> + <antcall target="uploadDoc" /> + </target> + + <target + name = "uploadDoc" + description = "uploads the latest editorial documentation." + depends = "editorialDoc" + > + <exec executable="rsync"> + <arg line="-auzv --exclude=api/*/ -e ssh dest/doc/ ${user.rsync.username}@${user.rsync.host}:${user.rsync.dir}/htdocs/" /> + </exec> + </target> + + <target + name = "announce" + description = "announce new version on freshmeat.net" + > + <echo>Announcing. Press return to start announcing this release at FreshMeat.</echo> + <input/> + <freshmeat + username = "${user.freshmeat.username}" + password = "${user.freshmeat.password}" + > + <printlicenses/> + <printreleasefoci/> + <publish + projectname = "japi" + branchname = "Default" + version = "${project.version}" + focus = "${project.focus}" + > + <changes file="LatestNews" /> + <urlblock + homepage = "http://japi.sourceforge.net/" + cvs = "http://cvs.sourceforge.net/viewcvs.py/japi/" + mailinglist = "http://sourceforge.net/mailarchive/forum.php?forum=japi-users" + tgz = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.tar.gz?download" + bz2 = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.tar.bz2?download" + zip = "http://prdownloads.sourceforge.net/japi/japi-${project.version}.src.zip?download" + /> + </publish> + </freshmeat> + </target> + + <target + name = "release" + description = "Releases a new version of JAPI." + > + <antcall target="clean" /> + <antcall target="releaseDist" /> + <echo>I've uploaded the distribution archives to sourceforge. +Press return when you're done configuring the new file releases on sourceforge. +I will then announce the release at FreshMeat.</echo> + <input/> + <antcall target="announce" /> + </target> + + <target + name = "changelogTest" + description = "Test task to try out CvsChangeLog" + > + <cvschangelog destfile="changelog.xml" tag="japi_${project.version}"> + <user displayname="Christian Hujer" userid="christianhujer" /> + </cvschangelog> + </target> + +</project> Property changes on: trunk/build.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + LF Added: trunk/lib/LICENSE-Pack200Task.jar =================================================================== --- trunk/lib/LICENSE-Pack200Task.jar (rev 0) +++ trunk/lib/LICENSE-Pack200Task.jar 2006-04-03 00:38:05 UTC (rev 2) @@ -0,0 +1,471 @@ +SUN PUBLIC LICENSE Version 1.0 + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contr... [truncated message content] |
From: <chr...@us...> - 2006-04-02 22:30:37
|
Revision: 1 Author: christianhujer Date: 2006-04-02 15:30:27 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/japi/?rev=1&view=rev Log Message: ----------- Creating initial repository structure. Added Paths: ----------- branches/ tags/ trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |