From 3945300799f49c7c1f615947050c8265c3bd5b3b Mon Sep 17 00:00:00 2001 From: kcr Date: Tue, 19 Jun 2007 20:00:29 +0000 Subject: Infrastructure for building the project --- COPYRIGHT.txt | 77 +++++++++++++++++++++++++++++ LICENSE.txt | 35 +++++++++++++ README-FIRST.txt | 9 ++++ README-build.html | 134 ++++++++++++++++++++++++++++++++++++++++++++++++++ build.xml | 97 ++++++++++++++++++++++++++++++++++++ manifest.mf | 6 +++ nbproject/.cvsignore | 1 + nbproject/project.xml | 57 +++++++++++++++++++++ 8 files changed, 416 insertions(+) create mode 100644 COPYRIGHT.txt create mode 100644 LICENSE.txt create mode 100644 README-FIRST.txt create mode 100644 README-build.html create mode 100644 build.xml create mode 100644 manifest.mf create mode 100644 nbproject/.cvsignore create mode 100644 nbproject/project.xml diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt new file mode 100644 index 0000000..b02644e --- /dev/null +++ b/COPYRIGHT.txt @@ -0,0 +1,77 @@ +Copyright (c) 2007 Sun Microsystems, Inc., 4150 Network Circle, Santa +Clara, California 95054, U.S.A. All rights reserved. + +Sun Microsystems, Inc. has intellectual property rights relating to +technology embodied in the product that is described in this +document. In particular, and without limitation, these intellectual +property rights may include one or more of the U.S. patents listed at +http://www.sun.com/patents and one or more additional patents or +pending patent applications in the U.S. and in other countries. + +U.S. Government Rights - Commercial software. Government users are +subject to the Sun Microsystems, Inc. standard license agreement and +applicable provisions of the FAR and its supplements. + +Use is subject to license terms. + +This distribution may include materials developed by third parties. + +Parts of the product may be derived from Berkeley BSD systems, +licensed from the University of California. UNIX is a registered +trademark in the U.S. and in other countries, exclusively licensed +through X/Open Company, Ltd. + +Sun, Sun Microsystems, the Sun logo, Java, Solaris, Java 3D, the 100% +Pure Java logo, the Duke logo and the Java Coffee Cup logo are +trademarks or registered trademarks of Sun Microsystems, Inc. in the +U.S. and other countries. + +This product is covered and controlled by U.S. Export Control laws and +may be subject to the export or import laws in other countries. +Nuclear, missile, chemical biological weapons or nuclear maritime end +uses or end users, whether direct or indirect, are strictly +prohibited. Export or reexport to countries subject to U.S. embargo or +to entities identified on U.S. export exclusion lists, including, but +not limited to, the denied persons and specially designated nationals +lists is strictly prohibited. + +Copyright (c) 2007 Sun Microsystems, Inc., 4150 Network Circle, Santa +Clara, California 95054, Etats-Unis. Tous droits réservés. + +Sun Microsystems, Inc. détient les droits de propriété intellectuels +relatifs à la technologie incorporée dans le produit qui est décrit +dans ce document. En particulier, et ce sans limitation, ces droits de +propriété intellectuelle peuvent inclure un ou plus des brevets +américains listés à l'adresse http://www.sun.com/patents et un ou les +brevets supplémentaires ou les applications de brevet en attente aux +Etats - Unis et dans les autres pays. + +L'utilisation est soumise aux termes de la Licence. + +Cette distribution peut comprendre des composants développés par des +tierces parties. + +Des parties de ce produit pourront être dérivées des systèmes Berkeley +BSD licenciés par l'Université de Californie. UNIX est une marque +déposée aux Etats-Unis et dans d'autres pays et licenciée +exclusivement par X/Open Company, Ltd. + +Sun, Sun Microsystems, le logo Sun, Java, Solaris, Java 3D, le logo +100% Pure Java, le logo Duke et le logo Java Coffee Cup sont des +marques de fabrique ou des marques déposées de Sun Microsystems, +Inc. aux Etats-Unis et dans d'autres pays. + +Ce produit est soumis à la législation américaine en matière de +contrôle des exportations et peut être soumis à la règlementation en +vigueur dans d'autres pays dans le domaine des exportations et +importations. Les utilisations, ou utilisateurs finaux, pour des armes +nucléaires,des missiles, des armes biologiques et chimiques ou du +nucléaire maritime, directement ou indirectement, sont strictement +interdites. Les exportations ou réexportations vers les pays sous +embargo américain, ou vers des entités figurant sur les listes +d'exclusion d'exportation américaines, y compris, mais de manière non +exhaustive, la liste de personnes qui font objet d'un ordre de ne pas +participer, d'une façon directe ou indirecte, aux exportations des +produits ou des services qui sont régis par la législation américaine +en matière de contrôle des exportations et la liste de ressortissants +spécifiquement désignés, sont rigoureusement interdites. diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..7e18c3c --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright 2007 Sun Microsystems, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +- Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +Neither the name of Sun Microsystems, Inc. or the names of +contributors may be used to endorse or promote products derived +from this software without specific prior written permission. + +This software is provided "AS IS," without a warranty of any +kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND +WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY +EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL +NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF +USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS +DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR +ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, +CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND +REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR +INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + +You acknowledge that this software is not designed, licensed or +intended for use in the design, construction, operation or +maintenance of any nuclear facility. diff --git a/README-FIRST.txt b/README-FIRST.txt new file mode 100644 index 0000000..80dcc84 --- /dev/null +++ b/README-FIRST.txt @@ -0,0 +1,9 @@ +The source code for the applet-launcher project is copyrighted code +that is licensed to individuals or companies who download or otherwise +access the code. + +The copyright notice for this project is in COPYRIGHT.txt + +The source code license information for this project is in LICENSE.txt + +Instructions for building this project are in README-build.html diff --git a/README-build.html b/README-build.html new file mode 100644 index 0000000..9919a4f --- /dev/null +++ b/README-build.html @@ -0,0 +1,134 @@ + + + + + + + + + + + README-build: build instructions for the j3d-examples project + + + + + +

Building the Applet-Launcher Project
+ +

+ +

To build the +applet-launcher jar file, you must first checkout the applet-launcher +CVS repository on java.net. For example, run the cvs checkout command +as follows:

+ + + +

System Requirements
+ +

+ +

The following software must be installed:

+ + + +

Building applet-launcher
+ +

+ + +

Before you start building, please check that your PATH includes the following directories:
+ +

+ + + +

To build the applet-launcher jar file:
+ +

+ + + +

This will build the applet-launcher.jar, placed in the dist directory.

+ +


+ + +

+ + + + diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..9f8fd81 --- /dev/null +++ b/build.xml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/manifest.mf b/manifest.mf new file mode 100644 index 0000000..3e1374b --- /dev/null +++ b/manifest.mf @@ -0,0 +1,6 @@ +Manifest-Version: 1.0 +Implementation-Title: Applet Launcher Utility +Implementation-Version: 0.9 +Implementation-Vendor: Sun Microsystems, Inc. +Implementation-Vendor-Id: com.sun +Extension-Name: org.jdesktop.applet.util diff --git a/nbproject/.cvsignore b/nbproject/.cvsignore new file mode 100644 index 0000000..3e18ebf --- /dev/null +++ b/nbproject/.cvsignore @@ -0,0 +1 @@ +private diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100644 index 0000000..761bf05 --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,57 @@ + + + org.netbeans.modules.ant.freeform + + + applet-launcher + + + + applet-launcher + + + + + java + src + UTF-8 + + + + + jar + + + clean + + + clean + jar + + + + + + + src + + + build.xml + + + + + + + + + + + + + src + 1.5 + + + + -- cgit v1.2.3