- change branding name back due to dependency problems - remove harness folder git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8050 75d07b2b-3a1a-0410-a2c5-0572b91ccdca3.0
parent
ade83e8454
commit
7acd4e7faf
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -1,303 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
|
||||
The contents of this file are subject to the terms of either the GNU |
||||
General Public License Version 2 only ("GPL") or the Common |
||||
Development and Distribution License("CDDL") (collectively, the |
||||
"License"). You may not use this file except in compliance with the |
||||
License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html |
||||
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the |
||||
specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header |
||||
Notice in each file and include the License file at |
||||
nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this |
||||
particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that |
||||
accompanied this code. If applicable, add the following below the |
||||
License Header, with the fields enclosed by brackets [] replaced by |
||||
your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original |
||||
Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun |
||||
Microsystems, Inc. All Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL |
||||
or only the GPL Version 2, indicate your decision by adding |
||||
"[Contributor] elects to include this software in this distribution |
||||
under the [CDDL or GPL Version 2] license." If you do not indicate a |
||||
single choice of license, a recipient has the option to distribute |
||||
your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. |
||||
However, if you add GPL Version 2 code and therefore, elected the GPL |
||||
Version 2 license, then the option applies only if the new code is |
||||
made subject to such option by the copyright holder. |
||||
--> |
||||
<project name="harness" basedir="." default="netbeans"> |
||||
|
||||
<import file="common.xml"/> |
||||
<import file="jdk.xml"/> |
||||
|
||||
<target name="taskdefs" unless="harness.taskdefs.done"> |
||||
<dirname property="harness.dir" file="${harness.file}"/> |
||||
<taskdef classpath="${harness.dir}/tasks.jar" resource="org/netbeans/nbbuild/taskdefs.properties"/> |
||||
<typedef name="pathfileset" classname="org.netbeans.nbbuild.PathFileSet" |
||||
classpath="${harness.dir}/tasks.jar"/> |
||||
<property name="harness.taskdefs.done" value="true"/> |
||||
<fail message="When using cluster.path property, remove netbeans.dest.dir, enabled.clusters and disabled.clusters properties from platform config, they would be ignored."> |
||||
<condition> |
||||
<and> |
||||
<isset property="cluster.path.evaluated"/> |
||||
<or> |
||||
<isset property="netbeans.dest.dir"/> |
||||
<isset property="enabled.clusters"/> |
||||
<isset property="disabled.clusters"/> |
||||
</or> |
||||
<not> |
||||
<isset property="suite.dir"/> |
||||
</not> |
||||
</and> |
||||
</condition> |
||||
</fail> |
||||
</target> |
||||
|
||||
<target name="-convert-old-project" unless="cluster.path.evaluated"> |
||||
<fail unless="netbeans.dest.dir" message="Either cluster.path/cluster.path.evaluated properties or netbeans.dest.dir must be set."/> |
||||
|
||||
<pathconvert property="old.project.update.tracking"> |
||||
<fileset dir="${netbeans.dest.dir}" includes="**/update_tracking/*.xml"/> |
||||
</pathconvert> |
||||
|
||||
<!-- standalone modules don't specify enabled/disabled clusters --> |
||||
<property name="enabled.clusters" value=""/> |
||||
<property name="disabled.clusters" value=""/> |
||||
<property name="disabled.modules" value=""/> |
||||
|
||||
<selector id="old.project.included.files"> |
||||
<custom classpath="${harness.dir}/tasks.jar" classname="org.netbeans.nbbuild.ModuleSelector"> |
||||
<param name="excludeModules" value="${disabled.modules}"/> |
||||
<!-- XXX inc/exc clusters --> |
||||
<param name="includeClusters" value="${enabled.clusters}"/> |
||||
<param name="excludeClusters" value="${disabled.clusters}"/> |
||||
<param name="updateTrackingFiles" value="${old.project.update.tracking}"/> |
||||
</custom> |
||||
</selector> |
||||
|
||||
<pathconvert property="old.project.clusters.duplicates" pathsep=" "> |
||||
<fileset dir="${netbeans.dest.dir}"> |
||||
<selector refid="old.project.included.files"/> |
||||
</fileset> |
||||
<chainedmapper> |
||||
<mapper type="regexp" from="(^.+)[/\\]config[/\\]Modules[/\\]" to="\1"/> <!-- #71849 --> |
||||
<filtermapper> |
||||
<linecontainsregexp negate="true"> |
||||
<regexp pattern="update[/\\]backup[/\\]netbeans[/\\]?$"/> |
||||
</linecontainsregexp> |
||||
</filtermapper> |
||||
</chainedmapper> |
||||
</pathconvert> |
||||
<tempfile property="old.project.clusters.duplicates.file" destdir="${basedir}/build" deleteonexit="true" prefix="duplicates"/> |
||||
<mkdir dir="${basedir}/build"/> |
||||
<echo file="${old.project.clusters.duplicates.file}" message="${old.project.clusters.duplicates}"/> |
||||
|
||||
<pathconvert property="cluster.path.evaluated"> |
||||
<union id="old.project.clusters"> <!-- union removes duplicates --> |
||||
<files includesfile="${old.project.clusters.duplicates.file}"/> |
||||
</union> |
||||
</pathconvert> |
||||
</target> |
||||
|
||||
<target name="common-init" depends="taskdefs,-convert-old-project"> |
||||
<property name="netbeans.javadoc.dir" location="build/javadoc"/> |
||||
<condition property="cluster.path.basedir" value="${suite.dir}" else="${basedir}"> |
||||
<isset property="suite.dir"/> |
||||
</condition> |
||||
<convertclusterpath from="${cluster.path.evaluated}" to="cluster.path.final" id="cluster.path.id" basedir="${cluster.path.basedir}"/> |
||||
</target> |
||||
|
||||
<target name="basic-init" depends="projectized-common.basic-init"> |
||||
<!-- Must be done even without build-init, or clean will not work. --> |
||||
<condition property="cluster" value="${suite.dir}/build/cluster"> <!-- #59872 --> |
||||
<isset property="suite.dir"/> |
||||
</condition> |
||||
<property name="cluster" location="build/cluster"/> |
||||
|
||||
<condition property="test.dist.dir" value="${suite.dir}/build/testdist"> |
||||
<isset property="suite.dir"/> |
||||
</condition> |
||||
<property name="test.dist.dir" location="build/testdist"/> |
||||
<property name="build.classes.dir" location="build/classes"/> |
||||
|
||||
</target> |
||||
|
||||
<target name="init" depends="basic-init,files-init,build-init,-javac-init"/> |
||||
|
||||
<target name="nbm-license-init" unless="license.file"> |
||||
<mkdir dir="build"/> |
||||
<property name="license.file" location="build/no-license.txt"/> |
||||
<echo file="${license.file}">[NO LICENSE SPECIFIED]</echo> |
||||
</target> |
||||
|
||||
<target name="build-init" depends="basic-init,nbm-license-init"> |
||||
<condition property="public.package.jar.dir" value="${suite.dir}/build/public-package-jars"> |
||||
<isset property="suite.dir"/> |
||||
</condition> |
||||
<property name="public.package.jar.dir" location="build/public-package-jars"/> |
||||
<mkdir dir="${public.package.jar.dir}"/> |
||||
<!-- Similar to projectized.xml but does not try to set NBM homepage/distribution, nor is javahelp.excludes predefined. --> |
||||
<parseprojectxml |
||||
project="." |
||||
publicpackagesproperty="public.packages" |
||||
friendsproperty="friends" |
||||
javadocpackagesproperty="module.javadoc.packages" |
||||
moduledependenciesproperty="module.dependencies" |
||||
moduleclasspathproperty="module.classpath" |
||||
publicpackagejardir="${public.package.jar.dir}" |
||||
modulerunclasspathproperty="module.run.classpath" |
||||
classpathextensionsproperty="class.path.extensions" |
||||
> |
||||
<testtype name="unit" |
||||
folder="test.unit.folder" |
||||
runtimecp="test.unit.runtime.cp" |
||||
compilecp="test.unit.compile.cp" |
||||
compiledep="test.unit.testdep"/> |
||||
<testtype name="qa-functional" |
||||
folder="test.qa-functional.folder" |
||||
runtimecp="test.qa-functional.runtime.cp" |
||||
compilecp="test.qa-functional.compile.cp" |
||||
compiledep="test.qa-functional.testdep"/> |
||||
</parseprojectxml> |
||||
<condition property="is.regular"> |
||||
<not> |
||||
<or> |
||||
<isset property="is.autoload"/> |
||||
<isset property="is.eager"/> |
||||
<equals arg1="${module.jar.dir}" arg2="core"/> |
||||
<equals arg1="${module.jar.dir}" arg2="lib"/> |
||||
</or> |
||||
</not> |
||||
</condition> |
||||
<property name="build.compiler.debug" value="true"/> |
||||
<property name="build.compiler.debuglevel" value="source,lines,vars"/> |
||||
<property name="build.compiler.deprecation" value="true"/> |
||||
<property name="build.sysclasspath" value="ignore"/> |
||||
<property name="build.compiler.optimize" value="off"/> |
||||
<property name="build.package.compress" value="false"/> |
||||
<property name="build.package.index" value="false"/> |
||||
<property name="manifest.mf" location="manifest.mf"/> |
||||
<property name="src.dir" location="src"/> |
||||
<property name="nbm" value="${code.name.base.dashes}.nbm"/> |
||||
<property name="nbm.module.author" value=""/> |
||||
<property name="nbm.release.date" value=""/> |
||||
<property name="nbm.needs.restart" value="false"/> |
||||
<property name="nbm.is.global" value=""/> |
||||
<!-- Override if you want to use these: --> |
||||
<property name="nbm.distribution" value=""/> |
||||
<property name="nbm.homepage" value=""/> |
||||
<property name="build.javahelp.dir" location="build/javahelp"/> |
||||
<property name="javahelp.base" value="${code.name.base.slashes}/docs"/> |
||||
<property name="javahelp.search" value="JavaHelpSearch"/> |
||||
</target> |
||||
|
||||
<target name="test-lib-init" depends="init"> |
||||
<!-- NbModuleSuite must be made to ignore disabled.modules during a test; see discussion in #136621: --> |
||||
<delete failonerror="false"> |
||||
<fileset dir="${suite.dir}"> |
||||
<include name="build/cluster/config/Modules/*.xml_hidden"/> |
||||
</fileset> |
||||
</delete> |
||||
<path id="test.unit.lib.cp"> |
||||
<pathelement path="${test.unit.lib.cp}"/> <!-- for manual override --> |
||||
<!-- As a fallback for old platforms which do not include the right modules: --> |
||||
<pathfileset include="modules/ext/junit-*.jar"> |
||||
<path refid="cluster.path.id"/> |
||||
</pathfileset> |
||||
<fileset dir="${netbeans.home}/.."> |
||||
<include name="*/modules/ext/junit-*.jar"/> |
||||
</fileset> |
||||
</path> |
||||
</target> |
||||
|
||||
<target name="javahelp" depends="init" if="has.javahelp"> |
||||
<!-- Similar to projectized.xml but does not fiddle with usersguide/.../ide.css, and finds jhall.jar differently: --> |
||||
<property name="jhall.jar" location="${harness.dir}/antlib/jsearch-2.0_05.jar"/> |
||||
<available property="jhall.jar.exists" file="${jhall.jar}"/> |
||||
<fail unless="jhall.jar.exists">You must set 'jhall.jar' (e.g. in private.properties) to the location of jsearch.jar from a JavaHelp distribution</fail> |
||||
<mkdir dir="${build.javahelp.dir}/${javahelp.base}/${javahelp.search}"/> |
||||
<copy todir="${build.javahelp.dir}"> |
||||
<fileset dir="javahelp"/> |
||||
</copy> |
||||
<jhindexer basedir="${build.javahelp.dir}/${javahelp.base}" |
||||
db="${build.javahelp.dir}/${javahelp.base}/${javahelp.search}"> |
||||
<classpath> |
||||
<pathelement location="${jhall.jar}"/> |
||||
<pathelement location="${harness.dir}/tasks.jar"/> |
||||
</classpath> |
||||
<include name="**/*.html"/> |
||||
<include name="**/*.htm"/> <!-- Fix for Issue #160276 --> |
||||
<exclude name="${javahelp.search}/"/> |
||||
<exclude name="${javahelp.excludes}"/> |
||||
</jhindexer> |
||||
<mkdir dir="${cluster}/${javahelp.jar.dir}"/> |
||||
<jar jarfile="${cluster}/${javahelp.jar}" compress="true"> |
||||
<fileset dir="${build.javahelp.dir}"/> |
||||
</jar> |
||||
</target> |
||||
|
||||
<target name="javadoc" depends="build-init,-javadoc-init"> |
||||
<mkdir dir="${netbeans.javadoc.dir}/${code.name.base.dashes}"/> |
||||
<javadoc destdir="${netbeans.javadoc.dir}/${code.name.base.dashes}" packagenames="${module.javadoc.packages}" source="${javac.source}" windowtitle="${javadoc.title}" encoding="UTF-8"> |
||||
<classpath refid="cp"/> |
||||
<classpath path="${module.run.classpath}"/><!-- XXX #157320 --> |
||||
<sourcepath location="${src.dir}"/> |
||||
<doctitle>${javadoc.title}</doctitle> |
||||
<header>${javadoc.header}</header> |
||||
</javadoc> |
||||
</target> |
||||
|
||||
<target name="javadoc-nb" depends="init,javadoc" if="netbeans.home"> |
||||
<nbbrowse file="${netbeans.javadoc.dir}/${code.name.base.dashes}/index.html"/> |
||||
</target> |
||||
|
||||
<target name="run" depends="netbeans"> |
||||
<ant antfile="${harness.dir}/run.xml" target="run"> |
||||
<reference refid="cluster.path.id"/> |
||||
</ant> |
||||
</target> |
||||
|
||||
<target name="profile" depends="netbeans,-jdk-presetdef-nbprofiledirect"> |
||||
<ant antfile="${harness.dir}/run.xml" target="profile"> |
||||
<reference refid="cluster.path.id"/> |
||||
</ant> |
||||
</target> |
||||
|
||||
<target name="debug" depends="netbeans,-jdk-presetdef-nbjpdastart"> |
||||
<ant antfile="${harness.dir}/run.xml" target="debug"> |
||||
<reference refid="cluster.path.id"/> |
||||
</ant> |
||||
</target> |
||||
|
||||
<target name="reload" depends="netbeans"> |
||||
<ant antfile="${harness.dir}/run.xml" target="run"> |
||||
<property name="run.args" value='--reload "${cluster}/${module.jar}"'/> |
||||
<property name="run.args.extra" value=""/> |
||||
<reference refid="cluster.path.id"/> |
||||
</ant> |
||||
</target> |
||||
|
||||
<target name="reload-in-ide" depends="netbeans"> |
||||
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail> |
||||
<nbinstaller module="${cluster}/${module.jar}" action="reinstall"/> |
||||
</target> |
||||
|
||||
</project> |
File diff suppressed because it is too large
Load Diff
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.insane"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-insane.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.libs.nbi.ant"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-libs-nbi-ant.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.libs.nbi.engine"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-libs-nbi-engine.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.modules.apisupport.harness"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-modules-apisupport-harness.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.modules.apisupport.tc.cobertura"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-modules-apisupport-tc-cobertura.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.modules.jellytools.platform"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-modules-jellytools-platform.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.modules.jemmy"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-modules-jemmy.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,9 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN" |
||||
"http://www.netbeans.org/dtds/module-status-1_0.dtd"> |
||||
<module name="org.netbeans.modules.nbjunit"> |
||||
<param name="autoload">true</param> |
||||
<param name="eager">false</param> |
||||
<param name="jar">modules/org-netbeans-modules-nbjunit.jar</param> |
||||
<param name="reloadable">false</param> |
||||
</module> |
@ -1,30 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> |
||||
<plist version="0.9"> |
||||
<dict> |
||||
|
||||
<key>CFBundleName</key> |
||||
<string>${app.name}</string> |
||||
|
||||
<key>CFBundleVersion</key> |
||||
<string>${app.version}</string> |
||||
|
||||
<key>CFBundleExecutable</key> |
||||
<string>${app.name}</string> |
||||
|
||||
<key>CFBundlePackageType</key> |
||||
<string>APPL</string> |
||||
|
||||
<key>CFBundleShortVersionString</key> |
||||
<string>${app.version}</string> |
||||
|
||||
<key>CFBundleSignature</key> |
||||
<string>????</string> |
||||
|
||||
<key>CFBundleInfoDictionaryVersion</key> |
||||
<string>6.0</string> |
||||
|
||||
<key>CFBundleIconFile</key> |
||||
<string>${app.name}.icns</string> |
||||
</dict> |
||||
</plist> |
@ -1,14 +0,0 @@ |
||||
# ${HOME} will be replaced by user home directory according to platform |
||||
default_userdir="${HOME}/.${APPNAME}/dev" |
||||
default_mac_userdir="${HOME}/Library/Application Support/${APPNAME}/dev" |
||||
|
||||
# options used by the launcher by default, can be overridden by explicit |
||||
# command line switches |
||||
default_options="--branding ${branding.token} -J-Xms24m -J-Xmx64m" |
||||
# for development purposes you may wish to append: -J-Dnetbeans.logger.console=true -J-ea |
||||
|
||||
# default location of JDK/JRE, can be overridden by using --jdkhome <dir> switch |
||||
#jdkhome="/path/to/jdk" |
||||
|
||||
# clusters' paths separated by path.separator (semicolon on Windows, colon on Unices) |
||||
#extra_clusters= |
Binary file not shown.
@ -1,242 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
|
||||
The contents of this file are subject to the terms of either the GNU |
||||
General Public License Version 2 only ("GPL") or the Common |
||||
Development and Distribution License("CDDL") (collectively, the |
||||
"License"). You may not use this file except in compliance with the |
||||
License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html |
||||
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the |
||||
specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header |
||||
Notice in each file and include the License file at |
||||
nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this |
||||
particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that |
||||
accompanied this code. If applicable, add the following below the |
||||
License Header, with the fields enclosed by brackets [] replaced by |
||||
your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original |
||||
Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun |
||||
Microsystems, Inc. All Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL |
||||
or only the GPL Version 2, indicate your decision by adding |
||||
"[Contributor] elects to include this software in this distribution |
||||
under the [CDDL or GPL Version 2] license." If you do not indicate a |
||||
single choice of license, a recipient has the option to distribute |
||||
your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. |
||||
However, if you add GPL Version 2 code and therefore, elected the GPL |
||||
Version 2 license, then the option applies only if the new code is |
||||
made subject to such option by the copyright holder. |
||||
--> |
||||
<project name="jdk" basedir="."> |
||||
|
||||
<description> |
||||
Permits selection of a JDK to use when building and running NetBeans. |
||||
For details on usage, see apisupport/harness/release/README (in sources) |
||||
or harness/README (in binaries). Cf. issue #63541. |
||||
</description> |
||||
|
||||
<target name="-jdk-pre-preinit"> |
||||
<condition property="nbjdk.active-or-nbjdk.home"> |
||||
<or> |
||||
<and> |
||||
<isset property="nbjdk.active"/> |
||||
<not> |
||||
<equals arg1="${nbjdk.active}" arg2="default"/> |
||||
</not> |
||||
</and> |
||||
<and> |
||||
<isset property="nbjdk.home"/> |
||||
<not> |
||||
<isset property="nbjdk.home.defaulted"/> |
||||
</not> |
||||
</and> |
||||
</or> |
||||
</condition> |
||||
</target> |
||||
|
||||
<target name="-jdk-preinit" depends="-jdk-pre-preinit" if="nbjdk.active-or-nbjdk.home" xmlns:common="http://nbbuild.netbeans.org/jdk.xml"> |
||||
<macrodef name="property" uri="http://nbbuild.netbeans.org/jdk.xml"> |
||||
<attribute name="name"/> |
||||
<attribute name="value"/> |
||||
<sequential> |
||||
<property name="@{name}" value="${@{value}}"/> |
||||
</sequential> |
||||
</macrodef> |
||||
<common:property name="nbjdk.home" value="platforms.${nbjdk.active}.home"/> |
||||
<common:property name="nbjdk.javac.tmp" value="platforms.${nbjdk.active}.javac"/> |
||||
<condition property=".exe" value=".exe"> |
||||
<os family="windows"/> <!-- #72467 --> |
||||
</condition> |
||||
<property name=".exe" value=""/> |
||||
<condition property="nbjdk.javac" value="${nbjdk.home}/bin/javac${.exe}"> |
||||
<equals arg1="${nbjdk.javac.tmp}" arg2="$${platforms.${nbjdk.active}.javac}"/> |
||||
</condition> |
||||
<property name="nbjdk.javac" value="${nbjdk.javac.tmp}"/> |
||||
<common:property name="nbjdk.java.tmp" value="platforms.${nbjdk.active}.java"/> |
||||
<condition property="nbjdk.java" value="${nbjdk.home}/bin/java${.exe}"> |
||||
<equals arg1="${nbjdk.java.tmp}" arg2="$${platforms.${nbjdk.active}.java}"/> |
||||
</condition> |
||||
<property name="nbjdk.java" value="${nbjdk.java.tmp}"/> |
||||
<common:property name="nbjdk.javadoc.tmp" value="platforms.${nbjdk.active}.javadoc"/> |
||||
<condition property="nbjdk.javadoc" value="${nbjdk.home}/bin/javadoc${.exe}"> |
||||
<equals arg1="${nbjdk.javadoc.tmp}" arg2="$${platforms.${nbjdk.active}.javadoc}"/> |
||||
</condition> |
||||
<property name="nbjdk.javadoc" value="${nbjdk.javadoc.tmp}"/> |
||||
<common:property name="nbjdk.bootclasspath.tmp" value="platforms.${nbjdk.active}.bootclasspath"/> |
||||
<condition property="nbjdk.bootclasspath" value="${nbjdk.home}/../Classes/classes.jar:${nbjdk.home}/../Classes/jsse.jar:${nbjdk.home}/../Classes/jce.jar:${nbjdk.home}/../Classes/ui.jar:${nbjdk.home}/../Classes/laf.jar:${nbjdk.home}/../Classes/sunrsasign.jar:${nbjdk.home}/../Classes/charsets.jar"> |
||||
<and> |
||||
<equals arg1="${nbjdk.bootclasspath.tmp}" arg2="$${platforms.${nbjdk.active}.bootclasspath}"/> |
||||
<os family="mac"/> |
||||
</and> |
||||
</condition> |
||||
<pathconvert property="nbjdk.bootclasspath.standard"> |
||||
<path> |
||||
<fileset dir="${nbjdk.home}/jre/lib" erroronmissingdir="false" includes="*.jar"/> |
||||
</path> |
||||
</pathconvert> |
||||
<condition property="nbjdk.bootclasspath" value="${nbjdk.bootclasspath.standard}"> |
||||
<equals arg1="${nbjdk.bootclasspath.tmp}" arg2="$${platforms.${nbjdk.active}.bootclasspath}"/> |
||||
</condition> |
||||
<property name="nbjdk.bootclasspath" value="${nbjdk.bootclasspath.tmp}"/> |
||||
<condition property="nbjdk.valid"> |
||||
<and> |
||||
<available file="${nbjdk.home}" type="dir"/> |
||||
<available file="${nbjdk.javac}" type="file"/> |
||||
<available file="${nbjdk.java}" type="file"/> |
||||
<available file="${nbjdk.javadoc}" type="file"/> |
||||
<available classname="java.lang.Object" classpath="${nbjdk.bootclasspath}" ignoresystemclasses="true"/> |
||||
</and> |
||||
</condition> |
||||
<available property="have-jdk-1.4" classname="java.lang.CharSequence" classpath="${nbjdk.bootclasspath}" ignoresystemclasses="true"/> |
||||
<available property="have-jdk-1.5" classname="java.lang.StringBuilder" classpath="${nbjdk.bootclasspath}" ignoresystemclasses="true"/> |
||||
<available property="have-jdk-1.6" classname="java.util.ServiceLoader" classpath="${nbjdk.bootclasspath}" ignoresystemclasses="true"/> |
||||
<available property="have-jdk-1.7" classname="java.lang.ReflectiveOperationException" classpath="${nbjdk.bootclasspath}" ignoresystemclasses="true"/> |
||||
<echo level="verbose">nbjdk.active=${nbjdk.active} nbjdk.home=${nbjdk.home} nbjdk.java=${nbjdk.java} nbjdk.javac=${nbjdk.javac} nbjdk.javadoc=${nbjdk.javadoc} nbjdk.bootclasspath=${nbjdk.bootclasspath} nbjdk.valid=${nbjdk.valid} have-jdk-1.4=${have-jdk-1.4} have-jdk-1.5=${have-jdk-1.5} have-jdk-1.6=${have-jdk-1.6} have-jdk-1.7=${have-jdk-1.7}</echo> |
||||
</target> |
||||
|
||||
<target name="-jdk-warn" depends="-jdk-preinit" if="nbjdk.active-or-nbjdk.home" unless="nbjdk.valid"> |
||||
<property name="jdkhome.presumed" location="${java.home}/.."/> |
||||
<echo level="warning">Warning: nbjdk.active=${nbjdk.active} or nbjdk.home=${nbjdk.home} is an invalid Java platform; ignoring and using ${jdkhome.presumed}</echo> |
||||
</target> |
||||
|
||||
<target name="-jdk-presetdef-basic" depends="-jdk-preinit" if="nbjdk.valid" unless="jdk.presetdef.basic.done"> |
||||
<!-- Have to eval these props now, not when used, because of usages of <ant ... inheritall="false"> --> |
||||
<!-- (cf. http://issues.apache.org/bugzilla/show_bug.cgi?id=38040) --> |
||||
<macrodef name="javac-presetdef"> |
||||
<attribute name="javacval"/> |
||||
<sequential> |
||||
<presetdef name="javac"> |
||||
<javac fork="yes" executable="@{javacval}"/> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<javac-presetdef javacval="${nbjdk.javac}"/> |
||||
<macrodef name="java-presetdef"> |
||||
<attribute name="javaval"/> |
||||
<sequential> |
||||
<presetdef name="java"> |
||||
<java fork="yes" jvm="@{javaval}"/> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<java-presetdef javaval="${nbjdk.java}"/> |
||||
<macrodef name="javadoc-presetdef"> |
||||
<attribute name="javadocval"/> |
||||
<sequential> |
||||
<presetdef name="javadoc"> |
||||
<javadoc executable="@{javadocval}"/> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<javadoc-presetdef javadocval="${nbjdk.javadoc}"/> |
||||
<macrodef name="junit-presetdef"> |
||||
<attribute name="javaval"/> |
||||
<sequential> |
||||
<presetdef name="junit"> |
||||
<junit fork="yes" jvm="@{javaval}"/> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<junit-presetdef javaval="${nbjdk.java}"/> |
||||
<property name="jdk.presetdef.basic.done" value="true"/> |
||||
</target> |
||||
|
||||
<target name="-jdk-presetdef-nbjpdastart" depends="-jdk-preinit" if="nbjdk.valid" unless="jdk.presetdef.nbjpdastart.done"> |
||||
<macrodef name="nbjpdastart-presetdef"> |
||||
<attribute name="bootcpval"/> |
||||
<sequential> |
||||
<presetdef name="nbjpdastart"> |
||||
<nbjpdastart> |
||||
<bootclasspath> |
||||
<path path="@{bootcpval}"/> |
||||
</bootclasspath> |
||||
</nbjpdastart> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<nbjpdastart-presetdef bootcpval="${nbjdk.bootclasspath}"/> |
||||
<property name="jdk.presetdef.nbjpdastart.done" value="true"/> |
||||
</target> |
||||
|
||||
<target name="-jdk-presetdef-nbprofiledirect" depends="-jdk-preinit" if="nbjdk.valid" unless="jdk.presetdef.nbprofiledirect.done"> |
||||
<!-- XXX disable for now, but could be considered: |
||||
<macrodef name="nbprofiledirect-presetdef"> |
||||
<attribute name="javaval"/> |
||||
<sequential> |
||||
<presetdef name="nbprofiledirect"> |
||||
<nbprofiledirect jvmproperty="@{javaval}"/> |
||||
</presetdef> |
||||
</sequential> |
||||
</macrodef> |
||||
<nbprofiledirect-presetdef javaval="${nbjdk.java}"/> |
||||
--> |
||||
<property name="jdk.presetdef.nbprofiledirect.done" value="true"/> |
||||
</target> |
||||
|
||||
<target name="-jdk-default" unless="nbjdk.active-or-nbjdk.home"> |
||||
<!-- Define fallback values of some things. --> |
||||
<property name="java.home.parent" location="${java.home}/.."/> |
||||
<condition property="nbjdk.home" value="${java.home.parent}"> |
||||
<available file="${java.home.parent}/lib/tools.jar" type="file"/> |
||||
</condition> |
||||
<condition property="nbjdk.home" value="${java.home}"> |
||||
<available file="${java.home}/lib/tools.jar" type="file"/> |
||||
</condition> |
||||
|
||||
<!-- Mac OS X --> |
||||
<condition property="nbjdk.home" value="${java.home}"> |
||||
<available file="${java.home}/../Classes/classes.jar" type="file"/> |
||||
</condition> |
||||
|
||||
<!-- Fallback? --> |
||||
<property name="nbjdk.home" location="${java.home.parent}"/> |
||||
<available property="have-jdk-1.4" classname="java.lang.CharSequence"/> |
||||
<available property="have-jdk-1.5" classname="java.lang.StringBuilder"/> |
||||
<available property="have-jdk-1.6" classname="java.util.ServiceLoader"/> |
||||
<available property="have-jdk-1.7" classname="java.lang.ReflectiveOperationException"/> |
||||
<property name="nbjdk.home.defaulted" value="true"/> |
||||
</target> |
||||
|
||||
<target name="-jdk-init" depends="-jdk-preinit,-jdk-warn,-jdk-presetdef-basic,-jdk-default"> |
||||
<!-- Will be bogus on Mac OS X, but doesn't matter - Classes/classes.jar should have this anyway --> |
||||
<property name="tools.jar" location="${nbjdk.home}/lib/tools.jar"/> |
||||
<!--<echo level="info">Using JDK: ${nbjdk.home}</echo>--> |
||||
</target> |
||||
|
||||
</project> |
@ -1,454 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
|
||||
The contents of this file are subject to the terms of either the GNU |
||||
General Public License Version 2 only ("GPL") or the Common |
||||
Development and Distribution License("CDDL") (collectively, the |
||||
"License"). You may not use this file except in compliance with the |
||||
License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html |
||||
or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the |
||||
specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header |
||||
Notice in each file and include the License file at |
||||
nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this |
||||
particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that |
||||
accompanied this code. If applicable, add the following below the |
||||
License Header, with the fields enclosed by brackets [] replaced by |
||||
your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original |
||||
Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun |
||||
Microsystems, Inc. All Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL |
||||
or only the GPL Version 2, indicate your decision by adding |
||||
"[Contributor] elects to include this software in this distribution |
||||
under the [CDDL or GPL Version 2] license." If you do not indicate a |
||||
single choice of license, a recipient has the option to distribute |
||||
your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. |
||||
However, if you add GPL Version 2 code and therefore, elected the GPL |
||||
Version 2 license, then the option applies only if the new code is |
||||
made subject to such option by the copyright holder. |
||||
--> |
||||
<project name="suite-jnlp" basedir="."> |
||||
|
||||
<!-- if jnlp.codebase is provided make both the app and the platform relative to it --> |
||||
<condition property="jnlp.codebase.app" value="${jnlp.codebase}app/" > |
||||
<isset property="jnlp.codebase" /> |
||||
</condition> |
||||
<!-- if not specified, assign all codebases to value suitable for jnlp-servlet.jar --> |
||||
<property name="jnlp.codebase" value="$$$$codebase" /> |
||||
<property name="jnlp.codebase.app" value="$$$$codebase" /> |
||||
|
||||
<target name="-check-for-master.jnlp"> |
||||
<available file="master.jnlp" property="master.jnlp.exists"/> |
||||
</target> |
||||
<target name="jnlp-init-generate-master" depends="-check-for-master.jnlp" unless="master.jnlp.exists"> |
||||
<echo file="master.jnlp"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd"> |
||||
<jnlp spec="1.0+" codebase="${jnlp.codebase}"> |
||||
<information> |
||||
<title>$${app.title}</title> |
||||
<vendor>$${app.title} vendor</vendor> |
||||
<description>$${app.name} application</description> |
||||
<icon href="$${app.icon}"/> |
||||
</information> |
||||
<security><all-permissions/></security> |
||||
<resources> |
||||
<!-- The following property is needed when running with unsigned jars: --> |
||||
<property name="netbeans.jnlp.fixPolicy" value="$${netbeans.jnlp.fixPolicy}"/> |
||||
<extension name='branding' href='branding.jnlp' /> |
||||
<!-- The following line will be replaced with an automatically generated list of resources: --> |
||||
<!--$${jnlp.resources}--> |
||||
</resources> |
||||
<resources os="Mac OS X"> |
||||
<property name="netbeans.user" value="$${user.home}/Library/Application Support/$${app.name}"/> |
||||
</resources> |
||||
<application-desc> |
||||
<argument>--branding</argument> |
||||
<argument>$${branding.token}</argument> |
||||
</application-desc> |
||||
</jnlp> |
||||
]]></echo> |
||||
<echo file="branding.jnlp"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd"> |
||||
<jnlp spec="1.0+" codebase="${jnlp.codebase}"> |
||||
<information> |
||||
<title>$${app.title}</title> |
||||
<vendor>$${app.title} vendor</vendor> |
||||
<description>$${app.name} application</description> |
||||
<icon href="$${app.icon}"/> |
||||
</information> |
||||
$${jnlp.permissions} |
||||
<resources> |
||||
$${jnlp.branding.jars} |
||||
</resources> |
||||
<component-desc/> |
||||
</jnlp> |
||||
]]></echo> |
||||
</target> |
||||
|
||||
<target name="jnlp-init" depends="jnlp-init-generate-master"> |
||||
<fail unless="app.name">Must have set at least an application name ('app.name')</fail> |
||||
|
||||
<property name="jnlp.dest.dir" location="build/jnlp"/> |
||||
<property name="jnlp.master.dir" location="build/tmp/master-jnlp"/> |
||||
<mkdir dir="${jnlp.master.dir}"/> |
||||
|
||||
<property name="dist.dir" location="dist"/> |
||||
<property name="disabled.modules" value=""/> |
||||
<property name="enabled.clusters" value=""/> |
||||
<property name="disabled.clusters" value=""/> |
||||
|
||||
<pathfileset id="jnlp.included.modules" > |
||||
<path refid="cluster.path.id"/> |
||||
<and> |
||||
<or> |
||||
<filename name="modules/**/*.jar"/> |
||||
<filename name="lib/**/*.jar"/> |
||||
<filename name="core/**/*.jar"/> |
||||
</or> |
||||
<not> |
||||
<filename name="**/update/**/*.jar"/> |
||||
</not> |
||||
<custom classpath="${harness.dir}/tasks.jar" classname="org.netbeans.nbbuild.ModuleSelector"> |
||||
<param name="excludeModules" value="${disabled.modules}"/> |
||||
<param name="includeClusters" value="${enabled.clusters}"/> |
||||
<param name="excludeClusters" value="${disabled.clusters}"/> |
||||
</custom> |
||||
</and> |
||||
</pathfileset> |
||||
<property name="jnlp.sign.jars" value="true"/> |
||||
<property name="jnlp.signjar.keystore" location="build/default.keystore"/> |
||||
<property name="jnlp.signjar.alias" value="jnlp"/> |
||||
<property name="jnlp.signjar.password" value="netbeans"/> |
||||
<available property="jnlp.signjar.keystore.exists" file="${jnlp.signjar.keystore}"/> |
||||
</target> |
||||
|
||||
<target name="jnlp-generate-keystore" depends="jnlp-init" unless="jnlp.signjar.keystore.exists"> |
||||
<property name="jnlp.signjar.vendor" value="CN=${user.name}"/> |
||||
|
||||
<mkdir dir="${jnlp.signjar.keystore}/../"/> |
||||
<echo message="Going to create default keystore in ${jnlp.signjar.keystore}"/> |
||||
<genkey |
||||
alias="${jnlp.signjar.alias}" |
||||
keystore="${jnlp.signjar.keystore}" |
||||
storepass="${jnlp.signjar.password}" |
||||
dname="${jnlp.signjar.vendor}" |
||||
/> |
||||
</target> |
||||
|
||||
<target name="jnlp-generate-platform" depends="jnlp-generate-platform-repository,jnlp-generate-platform-master"/> |
||||
|
||||
<target name="jnlp-generate-platform-repository" depends="jnlp-generate-keystore,jnlp-init,set-all-permissions,set-empty-permissions" unless="jnlp.platform.codebase"> |
||||
<condition property="jnlp.platform.codebase.own" value="${jnlp.codebase}netbeans/" > |
||||
<not> |
||||
<equals arg1="${jnlp.codebase}" arg2="$$$$codebase" /> |
||||
</not> |
||||
</condition> |
||||
<property name="jnlp.platform.codebase.own" value="$$$$codebase"/> |
||||
<property name="jnlp.platform.codebase" value="netbeans/"/> |
||||
|
||||
<mkdir dir="${jnlp.dest.dir}/netbeans"/> |
||||
|
||||
<makejnlp |
||||
alias="${jnlp.signjar.alias}" |
||||
keystore="${jnlp.signjar.keystore}" |
||||
storepass="${jnlp.signjar.password}" |
||||
dir="${jnlp.dest.dir}/netbeans/" |
||||
codebase="${jnlp.platform.codebase.own}" |
||||
verify="true" |
||||
verifyexcludes="lib/nbexec.cmd,lib/nbexec,lib/nbexec.exe,lib/nbexec.dll,core/ide.ks,LICENSE.txt,DISTRIBUTION.txt,THIRDPARTYLICENSEREADME.txt,docs/swing-layout-1.0-doc.zip,docs/swing-layout-1.0.1-doc.zip,docs/html40.zip,core/org-netbeans-modules-utilities-cli.jar,docs/org/netbeans/modules/usersguide/ide.css,docs/swing-layout-1.0.2-doc.zip,docs/swing-layout-1.0.2-src.zip,docs/swing-layout-1.0.3-doc.zip,docs/swing-layout-1.0.3-src.zip,docs/swing-layout-1.0.4-doc.zip,docs/swing-layout-1.0.4-src.zip,modules/ext/felix-main-2.0.2.jar,modules/ext/toplink/README,modules/ext/toplink/3RD-PARTY-LICENSE.txt,modules/ext/toplink/LICENSE.txt" |
||||
permissions="${jnlp.permissions}" |
||||
signjars="${jnlp.sign.jars}" |
||||
processjarversions="${jnlp.generate.versions}" |
||||
> |
||||
<resources refid="jnlp.included.modules"/> |
||||
</makejnlp> |
||||
</target> |
||||
|
||||
<target name="set-all-permissions" depends="check-signjars" if="unsign-the-jars"> |
||||
<property name="jnlp.permissions" value="<security/>"/> |
||||
</target> |
||||
<target name="set-empty-permissions" depends="check-signjars" unless="unsign-the-jars"> |
||||
<property name="jnlp.permissions" value="<security><all-permissions/></security>"/> |
||||
</target> |
||||
|
||||
<target name="check-signjars"> |
||||
<condition property="unsign-the-jars"> |
||||
<isfalse value="${jnlp.sign.jars}"/> |
||||
</condition> |
||||
</target> |
||||
|
||||
<target name="jnlp-generate-platform-master" depends="jnlp-generate-platform-repository"> |
||||
<makemasterjnlp |
||||
dir="${jnlp.master.dir}" |
||||
codebase="${jnlp.platform.codebase}" |
||||
> |
||||
<resources refid="jnlp.included.modules"/> |
||||
</makemasterjnlp> |
||||
</target> |
||||
|
||||
<target name="build" |
||||
depends="build-jnlp-nowar" |
||||
description="Build JNLP files and signed JARs for all modules in the suite." |
||||
> |
||||
<property name="jnlp.servlet.jar" location="${nbjdk.home}/sample/jnlp/servlet/jnlp-servlet.jar"/> |
||||
<fail message="Point -Djnlp.servlet.jar to your jnlp-servlet.jar, usually in $$JDKHOME/sample/jnlp/servlet/jnlp-servlet.jar"> |
||||
<condition> |
||||
<not> |
||||
<available file="${jnlp.servlet.jar}"/> |
||||
</not> |
||||
</condition> |
||||
</fail> |
||||
|
||||
<echo file="build/tmp/web.xml"><![CDATA[ |
||||
<web-app> |
||||
<servlet> |
||||
<servlet-name>JnlpDownloadServlet</servlet-name> |
||||
<servlet-class>jnlp.sample.servlet.JnlpDownloadServlet</servlet-class> |
||||
</servlet> |
||||
<servlet-mapping> |
||||
<servlet-name>JnlpDownloadServlet</servlet-name> |
||||
<url-pattern>*.jnlp</url-pattern> |
||||
</servlet-mapping> |
||||
</web-app> |
||||
]]></echo> |
||||
<mkdir dir="${dist.dir}"/> |
||||
<war basedir="${jnlp.dest.dir}" destfile="${dist.dir}/${app.name}.war" webxml="build/tmp/web.xml"> |
||||
<zipfileset dir="${jnlp.servlet.jar}/.." file="${jnlp.servlet.jar}" prefix="WEB-INF/lib"/> |
||||
</war> |
||||
</target> |
||||
|
||||
<target name="build-jnlp-local" depends="build-jnlp-nowar"> |
||||
<property name="build.jnlp.local.dir" location="${dist.dir}/jnlp/local"/> |
||||
<mkdir dir="${build.jnlp.local.dir}"/> |
||||
<mkdir dir="${build.jnlp.local.dir}/netbeans/"/> |
||||
<mkdir dir="${build.jnlp.local.dir}/app/"/> |
||||
|
||||
<makeurl property="build.jnlp.local.url" file="${build.jnlp.local.dir}"/> |
||||
<copy todir="${build.jnlp.local.dir}"> |
||||
<fileset dir="build/jnlp"> |
||||
<include name="*.jnlp"/> |
||||
</fileset> |
||||
<filterchain> |
||||
<replacestring from="$$$$codebase" to="${build.jnlp.local.url}"/> |
||||
</filterchain> |
||||
</copy> |
||||
<mkdir dir="build/jnlp/netbeans"/> <!-- else fileset will croak --> |
||||
<copy todir="${build.jnlp.local.dir}/netbeans/"> |
||||
<fileset dir="build/jnlp/netbeans"> |
||||
<include name="**/*.jnlp"/> |
||||
</fileset> |
||||
<filterchain> |
||||
<replacestring from="$$$$codebase" to="${build.jnlp.local.url}netbeans/"/> |
||||
</filterchain> |
||||
</copy> |
||||
<copy todir="${build.jnlp.local.dir}/app/"> |
||||
<fileset dir="build/jnlp/app"> |
||||
<include name="**/*.jnlp"/> |
||||
</fileset> |
||||
<filterchain> |
||||
<replacestring from="$$$$codebase" to="${build.jnlp.local.url}app/"/> |
||||
</filterchain> |
||||
</copy> |
||||
<copy todir="${build.jnlp.local.dir}"> |
||||
<fileset dir="build/jnlp"> |
||||
<exclude name="**/*.jnlp"/> |
||||
</fileset> |
||||
</copy> |
||||
<verifyjnlp> |
||||
<fileset file="${build.jnlp.local.dir}/master.jnlp"/> |
||||
</verifyjnlp> |
||||
</target> |
||||
|
||||
<target name="build-jnlp-nowar" depends="jnlp-init,jnlp-generate-keystore,jnlp-generate-platform"> |
||||
<mkdir dir="${jnlp.dest.dir}/app"/> |
||||
<subant target="jnlp" buildpath="${modules.sorted}" inheritrefs="false" inheritall="false"> |
||||
<property name="jnlp.dest.dir" value="${jnlp.dest.dir}/app"/> |
||||
<property name="jnlp.master.dir" value="${jnlp.master.dir}"/> |
||||
<property name="jnlp.master.codebase" value="app/"/> |
||||
<property name="jnlp.codebase" value="${jnlp.codebase.app}"/> |
||||
<property name="jnlp.signjar.alias" value="${jnlp.signjar.alias}"/> |
||||
<property name="jnlp.signjar.keystore" location="${jnlp.signjar.keystore}"/> |
||||
<property name="jnlp.signjar.password" value="${jnlp.signjar.password}"/> |
||||
<property name="jnlp.sign.jars" value="${jnlp.sign.jars}"/> |
||||
<property name="jnlp.permissions" value="${jnlp.permissions}"/> |
||||
</subant> |
||||
|
||||
<antcall target="copy-branding"/> |
||||
|
||||
<signjar |
||||
alias="${jnlp.signjar.alias}" |
||||
keystore="${jnlp.signjar.keystore}" |
||||
storepass="${jnlp.signjar.password}" |
||||
jar="${harness.dir}/jnlp/jnlp-launcher.jar" |
||||
signedjar="${jnlp.dest.dir}/startup.jar" |
||||
/> |
||||
|
||||
<pathconvert pathsep="${line.separator}" property="jnlp.branding.jars"> |
||||
<path> |
||||
<fileset dir="${jnlp.dest.dir}/branding"> |
||||
<include name="*_${branding.token}.jar"/> |
||||
</fileset> |
||||
</path> |
||||
<mapper type="regexp" from="^.*[/\\]([^/\\]+\.jar)" to=' <jar href="branding/\1"/>'/> |
||||
</pathconvert> |
||||
|
||||
<echo file="${jnlp.master.dir}/resources.xml"><![CDATA[ |
||||
<java version="1.6+"/> |
||||
<jar href="startup.jar"/> |
||||
<property name="netbeans.user" value="$${user.home}/.nbapp-${app.name}"/> |
||||
]]></echo> |
||||
<concat append="true" destfile="${jnlp.master.dir}/resources.xml"> |
||||
<fileset dir="${jnlp.master.dir}"> |
||||
<include name="*.ref"/> |
||||
</fileset> |
||||
</concat> |
||||
|
||||
<loadfile property="jnlp.resources" srcfile="${jnlp.master.dir}/resources.xml"/> |
||||
|
||||
<condition property="netbeans.jnlp.fixPolicy"> |
||||
<isfalse value="${jnlp.sign.jars}"/> |
||||
</condition> |
||||
<!-- Anyone knows a better way to negate a property value? --> |
||||
<condition property="netbeans.jnlp.fixPolicy" value="false"> |
||||
<istrue value="${jnlp.sign.jars}"/> |
||||
</condition> |
||||
|
||||
<condition property="app.icon.safe" value="${app.icon}" else=".png"> |
||||
<isset property="app.icon" /> |
||||
</condition> |
||||
<pathconvert property="app.icon.ext"> |
||||
<path path="${app.icon.safe}"/> |
||||
<mapper type="regexp" from="^(.*)\.(.*)$$" to="\2"/> |
||||
</pathconvert> |
||||
|
||||
<copy file="${app.icon}" tofile="${jnlp.dest.dir}/master.${app.icon.ext}" failonerror="false"/> |
||||
<copy file="master.jnlp" tofile="${jnlp.dest.dir}/master.jnlp"> |
||||
<filterchain> |
||||
<replacestring from="<!--$${jnlp.resources}-->" to="${jnlp.resources}"/> |
||||
<replacestring from="$${jnlp.resources}" to="${jnlp.resources}"/> |
||||
<replacestring from="$${app.name}" to="${app.name}"/> |
||||
<replacestring from="$${app.title}" to="${app.title}"/> |
||||
<replacestring from="$${app.icon}" to="master.${app.icon.ext}"/> |
||||
<replacestring from="$${branding.token}" to="${branding.token}"/> |
||||
<replacestring from="$${netbeans.jnlp.fixPolicy}" to="${netbeans.jnlp.fixPolicy}"/> |
||||
</filterchain> |
||||
</copy> |
||||
<echo>Your JNLP file is generated at ${jnlp.dest.dir}/master.jnlp</echo> |
||||
<!-- The following line will not fail if the branding.jnlp |
||||
is not present, e.g. when the main file was generated using |
||||
harness from 5.x days. --> |
||||
<copy file="branding.jnlp" tofile="${jnlp.dest.dir}/branding.jnlp" failonerror="false"> |
||||
<filterchain> |
||||
<replacestring from="$${jnlp.branding.jars}" to="${jnlp.branding.jars}"/> |
||||
<replacestring from="$${app.name}" to="${app.name}"/> |
||||
<replacestring from="$${app.title}" to="${app.title}"/> |
||||
<replacestring from="$${app.icon}" to="master.${app.icon.ext}"/> |
||||
<replacestring from="$${jnlp.permissions}" to="${jnlp.permissions}"/> |
||||
</filterchain> |
||||
</copy> |
||||
|
||||
<taskdef name="verifyjnlp" classname="org.netbeans.nbbuild.VerifyJNLP" classpath="${harness.dir}/tasks.jar"/> |
||||
<verifyjnlp> |
||||
<fileset file="${jnlp.dest.dir}/master.jnlp"/> |
||||
</verifyjnlp> |
||||
</target> |
||||
|
||||
<target name="sign-branding-jars" unless="unsign-the-jars" depends="copy-branding-jars"> |
||||
<signjar |
||||
alias="${jnlp.signjar.alias}" |
||||
keystore="${jnlp.signjar.keystore}" |
||||
storepass="${jnlp.signjar.password}" |
||||
> |
||||
<fileset dir="${jnlp.dest.dir}/branding"> |
||||
<include name="*_${branding.token}.jar"/> |
||||
</fileset> |
||||
</signjar> |
||||
</target> |
||||
|
||||
<target name="copy-branding" depends="copy-branding-jars, sign-branding-jars"/> |
||||
|
||||
<target name="copy-branding-jars"> |
||||
<mkdir dir="${jnlp.dest.dir}/branding"/> |
||||
<copy todir="${jnlp.dest.dir}/branding" flatten="true"> |
||||
<fileset dir="${cluster}"> |
||||
<include name="**/locale/*.jar"/> |
||||
</fileset> |
||||
</copy> |
||||
</target> |
||||
|
||||
<target name="run" depends="build-jnlp-local" description="Executes this suite as JNLP application"> |
||||
<condition property="run.javaws" value="${nbjdk.home}/jre/javaws/javaws"> |
||||
<available file="${nbjdk.home}/jre/javaws/javaws"/> |
||||
</condition> |
||||
<condition property="run.javaws" value="${nbjdk.home}/javaws/javaws"> |
||||
<available file="${nbjdk.home}/javaws/javaws"/> |
||||
</condition> |
||||
<condition property="run.javaws" value="${nbjdk.home}\jre\bin\javaws.exe"> |
||||
<available file="${nbjdk.home}\jre\bin\javaws.exe"/> |
||||
</condition> |
||||
<condition property="run.javaws" value="${nbjdk.home}\bin\javaws.exe"> |
||||
<available file="${nbjdk.home}\bin\javaws.exe"/> |
||||
</condition> |
||||
<property name="run.javaws" value="javaws"/> |
||||
<property name="run.args" value=""/> |
||||
<exec executable="${run.javaws}"> |
||||
<arg value="-wait"/> |
||||
<arg file="${build.jnlp.local.dir}/master.jnlp"/> |
||||
<env key="JAVAWS_VM_ARGS" value="${run.args}"/> |
||||
</exec> |
||||
</target> |
||||
|
||||
<target name="debug" depends="build-jnlp-local" description="Executes this suite as JNLP application under debugger"> |
||||
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail> |
||||
<nbjpdastart name="NetBeans" addressproperty="debug.port" transport="dt_socket"> |
||||
<classpath> |
||||
<pathfileset> |
||||
<path refid="cluster.path.id"/> |
||||
<filename name="**/*.jar"/> |
||||
</pathfileset> |
||||
<fileset dir="${cluster}"> |
||||
<include name="**/*.jar"/> |
||||
</fileset> |
||||
</classpath> |
||||
</nbjpdastart> |
||||
<property name="debug.pause" value="y"/> |
||||
<property name="debug.args" value="-Xdebug -Xrunjdwp:transport=dt_socket,suspend=${debug.pause},server=n,address=${debug.port}"/> |
||||
<antcall target="run"> |
||||
<param name="run.args" value="${debug.args}"/> |
||||
<reference refid="cluster.path.id"/> |
||||
</antcall> |
||||
</target> |
||||
|
||||
<target name="-check-for-jnlp-userdir"> |
||||
<property name="jnlp.userdir" location="${user.home}/.nbapp-${app.name}"/> |
||||
<condition property="have.jnlp.userdir"> |
||||
<and> |
||||
<isset property="app.name"/> |
||||
<available file="${jnlp.userdir}" type="dir"/> |
||||
</and> |
||||
</condition> |
||||
</target> |
||||
<target name="-clean-jnlp-userdir" depends="-check-for-jnlp-userdir" if="have.jnlp.userdir"> |
||||
<property name="jnlp.userdir.bak" location="${jnlp.userdir}.bak"/> |
||||
<delete dir="${jnlp.userdir.bak}" failonerror="false"/> |
||||
<move file="${jnlp.userdir}" tofile="${jnlp.userdir.bak}" failonerror="false"/> |
||||
</target> |
||||
<target name="clean" depends="-clean-jnlp-userdir" description="Make sure default JNLP user directory is removed so run-jnlp will not get old test settings."/> <!-- #64249 --> |
||||
|
||||
</project> |
Binary file not shown.
Binary file not shown.
@ -1,104 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
# |
||||
# resolve symlinks |
||||
# |
||||
|
||||
PRG=$0 |
||||
|
||||
while [ -h "$PRG" ]; do |
||||
ls=`ls -ld "$PRG"` |
||||
link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null` |
||||
if expr "$link" : '^/' 2> /dev/null >/dev/null; then |
||||
PRG="$link" |
||||
else |
||||
PRG="`dirname "$PRG"`/$link" |
||||
fi |
||||
done |
||||
|
||||
progdir=`dirname "$PRG"` |
||||
APPNAME=`basename "$0"` |
||||
|
||||
if [ -f "$progdir/../etc/$APPNAME".conf ] ; then |
||||
. "$progdir/../etc/$APPNAME".conf |
||||
fi |
||||
|
||||
# XXX does not correctly deal with spaces in non-userdir params |
||||
args="" |
||||
|
||||
case "`uname`" in |
||||
Darwin*) |
||||
userdir="${default_mac_userdir}" |
||||
;; |
||||
*) |
||||
userdir="${default_userdir}" |
||||
;; |
||||
esac |
||||
while [ $# -gt 0 ] ; do |
||||
case "$1" in |
||||
--userdir) shift; if [ $# -gt 0 ] ; then userdir="$1"; fi |
||||
;; |
||||
*) args="$args \"$1\"" |
||||
;; |
||||
esac |
||||
shift |
||||
done |
||||
|
||||
if [ -f "${userdir}/etc/$APPNAME".conf ] ; then |
||||
. "${userdir}/etc/$APPNAME".conf |
||||
fi |
||||
|
||||
if [ -n "$jdkhome" -a \! -d "$jdkhome" -a -d "$progdir/../$jdkhome" ]; then |
||||
# #74333: permit jdkhome to be defined as relative to app dir |
||||
jdkhome="$progdir/../$jdkhome" |
||||
fi |
||||
|
||||
readClusters() { |
||||
if [ -x /usr/ucb/echo ]; then |
||||
echo=/usr/ucb/echo |
||||
else |
||||
echo=echo |
||||
fi |
||||
while read X; do |
||||
if [ "$X" \!= "" ]; then |
||||
$echo "$progdir/../$X" |
||||
fi |
||||
done |
||||
} |
||||
|
||||
clusters=`(cat "$progdir/../etc/$APPNAME".clusters; echo) | readClusters | tr '\012' ':'` |
||||
|
||||
if [ ! -z "$extra_clusters" ] ; then |
||||
clusters="$clusters:$extra_clusters" |
||||
fi |
||||
|
||||
nbexec=`echo "$progdir"/../platform*/lib/nbexec` |
||||
|
||||
case "`uname`" in |
||||
Darwin*) |
||||
eval exec sh '"$nbexec"' \ |
||||
--jdkhome '"$jdkhome"' \ |
||||
-J-Dcom.apple.mrj.application.apple.menu.about.name='"$APPNAME"' \ |
||||
-J-Xdock:name='"$APPNAME"' \ |
||||
'"-J-Xdock:icon=$progdir/../../$APPNAME.icns"' \ |
||||
--clusters '"$clusters"' \ |
||||
--userdir '"${userdir}"' \ |
||||
${default_options} \ |
||||
"$args" |
||||
;; |
||||
*) |
||||
sh=sh |
||||
# #73162: Ubuntu uses the ancient Bourne shell, which does not implement trap well. |
||||
if [ -x /bin/bash ] |
||||
then |
||||
sh=/bin/bash |
||||
fi |
||||
eval exec $sh '"$nbexec"' \ |
||||
--jdkhome '"$jdkhome"' \ |
||||
--clusters '"$clusters"' \ |
||||
--userdir '"${userdir}"' \ |
||||
${default_options} \ |
||||
"$args" |
||||
exit 1 |
||||
;; |
||||
esac |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,48 +0,0 @@ |
||||
# |
||||
# The contents of this file are subject to the terms of the Common Development and |
||||
# Distribution License (the License). You may not use this file except in compliance |
||||
# with the License. |
||||
# |
||||
# You can obtain a copy of the License at http://www.netbeans.org/cddl.html or |
||||
# http://www.netbeans.org/cddl.txt. |
||||
# |
||||
# When distributing Covered Code, include this CDDL Header Notice in each file and |
||||
# include the License file at http://www.netbeans.org/cddl.txt. If applicable, add |
||||
# the following below the CDDL Header, with the fields enclosed by brackets [] |
||||
# replaced by your own identifying information: |
||||
# |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
|
||||
output.dir=${basedir}/build |
||||
jarsigner.enabled=false |
||||
pack200.enabled={pack200.enabled} |
||||
core.module.name=nbi |
||||
ext.module.name=ext |
||||
|
||||
nbi.all.dir=${basedir}/nbi_all |
||||
nbi.core.dir=${nbi.all.dir}/${core.module.name} |
||||
nbi.ext.dir=${nbi.all.dir}/${ext.module.name} |
||||
|
||||
temp.file=${nbi.all.dir}/temp.ant.tmp |
||||
environment.properties=${nbi.all.dir}/environment.properties |
||||
|
||||
context.path.token=/nbi/dev |
||||
context.path.replacement=${context.path} |
||||
|
||||
context.dir.token=ROOT = new File\\(".*?"\\); |
||||
context.dir.replacement=ROOT = new File\\("${context.dir}"\); |
||||
|
||||
custom.tasks.cls={nbi.ant.tasks.jar}${path.separator}{nbi.registries.management.jar}${path.separator}{nbi.engine.jar} |
||||
nbi.engine.jar={nbi.engine.jar} |
||||
|
||||
jdk.home={generator-jdk-location-forward-slashes} |
||||
bundles.release.dir={generated-installers-location-forward-slashes} |
||||
bundle.files.prefix={generated-installers-prefix} |
||||
|
||||
target.platforms={product-platforms} |
||||
main.product.uid={product-uid} |
@ -1,202 +0,0 @@ |
||||
<project name="build installers" default="build" basedir="."> |
||||
<property file="${basedir}/build.properties"/> |
||||
<property file="${basedir}/custom.properties"/> |
||||
|
||||
<target name="build" depends="init,-build,-generate-bundles,post-build"/> |
||||
|
||||
<target name="init" depends="-clean,-checkout,-init,-init-properties,-post-init-clean"/> |
||||
|
||||
<target name="-clean-cvs" unless="no.checkout"> |
||||
<delete dir="${nbi.all.dir}"/> |
||||
</target> |
||||
|
||||
<target name="-clean" depends="-clean-cvs" unless="no.clean"> |
||||
<delete dir="${output.dir}"/> |
||||
<delete dir="${nbi.ext.dir}/products/helloworld/build"/> |
||||
<delete dir="${nbi.ext.dir}/products/helloworld/dist"/> |
||||
<delete dir="${nbi.ext.dir}/engine/build"/> |
||||
<delete dir="${nbi.ext.dir}/engine/dist"/> |
||||
|
||||
<!--<delete dir="${basedir}/cache"/>--> |
||||
</target> |
||||
|
||||
<target name="post-build"> |
||||
<delete dir="${output.dir}/registry-temp"/> |
||||
</target> |
||||
|
||||
<target name="-checkout"> |
||||
|
||||
<copy todir="${nbi.all.dir}/.common"> |
||||
<fileset dir="${basedir}/.common"/> |
||||
</copy> |
||||
|
||||
<copy todir="${nbi.ext.dir}"> |
||||
<fileset dir="${basedir}/ext"> |
||||
</fileset> |
||||
</copy> |
||||
</target> |
||||
|
||||
<target name="-init"> |
||||
<taskdef |
||||
name="if" |
||||
classpath="${custom.tasks.cls}" |
||||
classname="org.netbeans.installer.infra.build.ant.If"/> |
||||
<taskdef |
||||
name="for-each" |
||||
classpath="${custom.tasks.cls}" |
||||
classname="org.netbeans.installer.infra.build.ant.ForEach"/> |
||||
<taskdef |
||||
name="set" |
||||
classpath="${custom.tasks.cls}" |
||||
classname="org.netbeans.installer.infra.build.ant.SetProperty"/> |
||||
|
||||
<taskdef |
||||
name="create-bundle" |
||||
classpath="${custom.tasks.cls}" |
||||
classname="org.netbeans.installer.infra.build.ant.registries.CreateBundle"/> |
||||
|
||||
<delete file="${temp.file}"/> |
||||
</target> |
||||
|
||||
<target name="-init-properties"> |
||||
<echo file="${nbi.all.dir}/environment.tmp" encoding="utf-8"> |
||||
checkout.sources=false |
||||
sources.dir=${nbi.all.dir} |
||||
cvs.module=ext |
||||
|
||||
release.to.server=false |
||||
release.registry.dir=${output.dir}/registry-temp |
||||
|
||||
dont.build.custom.tasks=true |
||||
custom.tasks.cls=${custom.tasks.cls} |
||||
|
||||
build.engine=false |
||||
|
||||
engine.dist.file.name=nbi-engine.jar |
||||
engine.dist.file=${nbi.core.dir}/infra/build/engine/dist/nbi-engine.jar |
||||
|
||||
packaged.data.dir=${basedir}/cache/packaged |
||||
downloads.cache.dir=${basedir}/cache/raw |
||||
|
||||
jarsigner.enabled=${jarsigner.enabled} |
||||
</echo> |
||||
<replace file="${nbi.all.dir}/environment.tmp" token="\" value="/" encoding="utf-8"/> |
||||
<native2ascii src="${nbi.all.dir}" dest="${nbi.all.dir}" encoding="utf-8" includes="environment.tmp" ext=".properties"/> |
||||
</target> |
||||
|
||||
<target name="-post-init-clean"> |
||||
<delete dir="${basedir}/cache/raw"/> |
||||
</target> |
||||
|
||||
<target name="-build"> |
||||
<delete dir="${output.dir}"/> |
||||
|
||||
<mkdir dir="${output.dir}"/> |
||||
<mkdir dir="${bundles.release.dir}"/> |
||||
<mkdir dir="${output.dir}/components"/> |
||||
|
||||
<property name="engine.dist.file.name" value="nbi-engine.jar"/> |
||||
|
||||
<echo message="BUILDING HELLOWORLD EXT ENGINE =================================="/> |
||||
<ant dir="${nbi.ext.dir}/infra/build/engine" target="release-all"> |
||||
<property |
||||
name="basedir" |
||||
value="${nbi.ext.dir}/infra/build/engine"/> |
||||
<property |
||||
name="environment.properties" |
||||
value="${environment.properties}"/> |
||||
|
||||
<property |
||||
name="core.engine.dist.file" |
||||
value="${nbi.engine.jar}"/> |
||||
</ant> |
||||
|
||||
|
||||
<echo message="BUILDING HELLOWORLD PRODUCT =================================="/> |
||||
<ant dir="${nbi.ext.dir}/infra/build/products/helloworld" target="release-all"> |
||||
<property |
||||
name="basedir" |
||||
value="${nbi.ext.dir}/infra/build/products/helloworld"/> |
||||
<property |
||||
name="environment.properties" |
||||
value="${environment.properties}"/> |
||||
<property |
||||
name="dist.dir" |
||||
value="${output.dir}/components"/> |
||||
|
||||
<property |
||||
name="release.parent.uid" |
||||
value=""/> |
||||
<property |
||||
name="release.parent.version" |
||||
value=""/> |
||||
<property |
||||
name="release.parent.platforms" |
||||
value=""/> |
||||
|
||||
<property |
||||
name="engine.dist.file" |
||||
value="${output.dir}/registry-temp/engine.jar"/> |
||||
|
||||
|
||||
</ant> |
||||
</target> |
||||
|
||||
<target name="-generate-bundles"> |
||||
<for-each property="platform" list="${target.platforms}" separator=" "> |
||||
|
||||
<condition property="bundle.extention.${platform}" value="exe"> |
||||
<contains string="${platform}" substring="windows"/> |
||||
</condition> |
||||
<condition property="bundle.extention.${platform}" value="sh"> |
||||
<or> |
||||
<contains string="${platform}" substring="linux"/> |
||||
<contains string="${platform}" substring="solaris"/> |
||||
</or> |
||||
</condition> |
||||
<condition property="bundle.extention.${platform}" value="zip"> |
||||
<contains string="${platform}" substring="macosx"/> |
||||
</condition> |
||||
|
||||
<set property="bundle.extention" source="bundle.extention.${platform}"/> |
||||
|
||||
<create-bundle root="${output.dir}/registry-temp" |
||||
platform="${platform}" |
||||
target="${bundles.release.dir}/${bundle.files.prefix}-${platform}.${bundle.extention}"> |
||||
<component uid="${main.product.uid}" version="0.6.1.0.0"/> |
||||
</create-bundle> |
||||
<if property="bundle.extention" value="zip"> |
||||
<antcall target="zip-to-tgz"> |
||||
<param name="input.file" value="${bundles.release.dir}/${bundle.files.prefix}-${platform}.zip"/> |
||||
<param name="output.file" value="${bundles.release.dir}/${bundle.files.prefix}-${platform}.tgz"/> |
||||
</antcall> |
||||
<delete file="${bundles.release.dir}/${bundle.files.prefix}-${platform}.zip"/> |
||||
</if> |
||||
</for-each> |
||||
<echo>Installer(s) for [${target.platforms}] are available at ${bundles.release.dir}</echo> |
||||
</target> |
||||
|
||||
<target name="zip-to-tgz"> |
||||
<set property="tar.tmpdir" |
||||
value="${bundles.release.dir}/tempdir"/> |
||||
|
||||
<mkdir dir="${tar.tmpdir}"/> |
||||
|
||||
<unzip |
||||
src="${input.file}" |
||||
dest="${tar.tmpdir}"/> |
||||
|
||||
<tar tarfile="${output.file}" |
||||
compression="gzip"> |
||||
<tarfileset dir="${tar.tmpdir}" mode="644"> |
||||
<include name="**/*.*"/> |
||||
<exclude name="**/executable"/> |
||||
</tarfileset> |
||||
<tarfileset dir="${tar.tmpdir}" mode="755"> |
||||
<include name="**/executable"/> |
||||
</tarfileset> |
||||
</tar> |
||||
<delete dir="${tar.tmpdir}"/> |
||||
</target> |
||||
|
||||
</project> |
@ -1,74 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- You may freely edit this file. See commented blocks below for --> |
||||
<!-- some examples of how to customize the build. --> |
||||
<!-- (If you delete it and reopen the project it will be recreated.) --> |
||||
<!-- By default, only the Clean and Build commands use this build script. --> |
||||
<!-- Commands such as Run, Debug, and Test only use this build script if --> |
||||
<!-- the Compile on Save feature is turned off for the project. --> |
||||
<!-- You can turn off the Compile on Save (or Deploy on Save) setting --> |
||||
<!-- in the project's Project Properties dialog box.--> |
||||
<project name="helloworld" default="default" basedir="."> |
||||
<description>Builds, tests, and runs the project helloworld.</description> |
||||
<import file="nbproject/build-impl.xml"/> |
||||
<!-- |
||||
|
||||
There exist several targets which are by default empty and which can be |
||||
used for execution of your tasks. These targets are usually executed |
||||
before and after some main targets. They are: |
||||
|
||||
-pre-init: called before initialization of project properties |
||||
-post-init: called after initialization of project properties |
||||
-pre-compile: called before javac compilation |
||||
-post-compile: called after javac compilation |
||||
-pre-compile-single: called before javac compilation of single file |
||||
-post-compile-single: called after javac compilation of single file |
||||
-pre-compile-test: called before javac compilation of JUnit tests |
||||
-post-compile-test: called after javac compilation of JUnit tests |
||||
-pre-compile-test-single: called before javac compilation of single JUnit test |
||||
-post-compile-test-single: called after javac compilation of single JUunit test |
||||
-pre-jar: called before JAR building |
||||
-post-jar: called after JAR building |
||||
-post-clean: called after cleaning build products |
||||
|
||||
(Targets beginning with '-' are not intended to be called on their own.) |
||||
|
||||
Example of inserting an obfuscator after compilation could look like this: |
||||
|
||||
<target name="-post-compile"> |
||||
<obfuscate> |
||||
<fileset dir="${build.classes.dir}"/> |
||||
</obfuscate> |
||||
</target> |
||||
|
||||
For list of available properties check the imported |
||||
nbproject/build-impl.xml file. |
||||
|
||||
|
||||
Another way to customize the build is by overriding existing main targets. |
||||
The targets of interest are: |
||||
|
||||
-init-macrodef-javac: defines macro for javac compilation |
||||
-init-macrodef-junit: defines macro for junit execution |
||||
-init-macrodef-debug: defines macro for class debugging |
||||
-init-macrodef-java: defines macro for class execution |
||||
-do-jar-with-manifest: JAR building (if you are using a manifest) |
||||
-do-jar-without-manifest: JAR building (if you are not using a manifest) |
||||
run: execution of project |
||||
-javadoc-build: Javadoc generation |
||||
test-report: JUnit report generation |
||||
|
||||
An example of overriding the target for project execution could look like this: |
||||
|
||||
<target name="run" depends="helloworld-impl.jar"> |
||||
<exec dir="bin" executable="launcher.exe"> |
||||
<arg file="${dist.jar}"/> |
||||
</exec> |
||||
</target> |
||||
|
||||
Notice that the overridden target depends on the jar target and not only on |
||||
the compile target as the regular run target does. Again, for a list of available |
||||
properties which you can use, check the target you are overriding in the |
||||
nbproject/build-impl.xml file. |
||||
|
||||
--> |
||||
</project> |
@ -1,41 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
product.display.name={product-name} |
||||
product.description={product-description} |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 6.6 KiB |
@ -1 +0,0 @@ |
||||
Configuration-Logic-Class: org.mycompany.ConfigurationLogic |
@ -1,631 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
*** GENERATED FROM project.xml - DO NOT EDIT *** |
||||
*** EDIT ../build.xml INSTEAD *** |
||||
|
||||
For the purpose of easier reading the script |
||||
is divided into following sections: |
||||
|
||||
- initialization |
||||
- compilation |
||||
- jar |
||||
- execution |
||||
- debugging |
||||
- javadoc |
||||
- junit compilation |
||||
- junit execution |
||||
- junit debugging |
||||
- applet |
||||
- cleanup |
||||
|
||||
--> |
||||
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject2="http://www.netbeans.org/ns/j2se-project/2" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="helloworld-impl"> |
||||
<target depends="test,jar,javadoc" description="Build and test whole project." name="default"/> |
||||
<!-- |
||||
====================== |
||||
INITIALIZATION SECTION |
||||
====================== |
||||
--> |
||||
<target name="-pre-init"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="-pre-init" name="-init-private"> |
||||
<property file="nbproject/private/config.properties"/> |
||||
<property file="nbproject/private/configs/${config}.properties"/> |
||||
<property file="nbproject/private/private.properties"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private" name="-init-user"> |
||||
<property file="${user.properties.file}"/> |
||||
<!-- The two properties below are usually overridden --> |
||||
<!-- by the active platform. Just a fallback. --> |
||||
<property name="default.javac.source" value="1.4"/> |
||||
<property name="default.javac.target" value="1.4"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user" name="-init-project"> |
||||
<property file="nbproject/configs/${config}.properties"/> |
||||
<property file="nbproject/project.properties"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init"> |
||||
<available file="${manifest.file}" property="manifest.available"/> |
||||
<condition property="manifest.available+main.class"> |
||||
<and> |
||||
<isset property="manifest.available"/> |
||||
<isset property="main.class"/> |
||||
<not> |
||||
<equals arg1="${main.class}" arg2="" trim="true"/> |
||||
</not> |
||||
</and> |
||||
</condition> |
||||
<condition property="manifest.available+main.class+mkdist.available"> |
||||
<and> |
||||
<istrue value="${manifest.available+main.class}"/> |
||||
<isset property="libs.CopyLibs.classpath"/> |
||||
</and> |
||||
</condition> |
||||
<condition property="have.tests"> |
||||
<or> |
||||
<available file="${test.src.dir}"/> |
||||
</or> |
||||
</condition> |
||||
<condition property="have.sources"> |
||||
<or> |
||||
<available file="${src.dir}"/> |
||||
</or> |
||||
</condition> |
||||
<condition property="netbeans.home+have.tests"> |
||||
<and> |
||||
<isset property="netbeans.home"/> |
||||
<isset property="have.tests"/> |
||||
</and> |
||||
</condition> |
||||
<condition property="no.javadoc.preview"> |
||||
<and> |
||||
<isset property="javadoc.preview"/> |
||||
<isfalse value="${javadoc.preview}"/> |
||||
</and> |
||||
</condition> |
||||
<property name="run.jvmargs" value=""/> |
||||
<property name="javac.compilerargs" value=""/> |
||||
<property name="work.dir" value="${basedir}"/> |
||||
<condition property="no.deps"> |
||||
<and> |
||||
<istrue value="${no.dependencies}"/> |
||||
</and> |
||||
</condition> |
||||
<property name="javac.debug" value="true"/> |
||||
<property name="javadoc.preview" value="true"/> |
||||
<property name="application.args" value=""/> |
||||
<property name="source.encoding" value="${file.encoding}"/> |
||||
<condition property="javadoc.encoding.used" value="${javadoc.encoding}"> |
||||
<and> |
||||
<isset property="javadoc.encoding"/> |
||||
<not> |
||||
<equals arg1="${javadoc.encoding}" arg2=""/> |
||||
</not> |
||||
</and> |
||||
</condition> |
||||
<property name="javadoc.encoding.used" value="${source.encoding}"/> |
||||
<property name="includes" value="**"/> |
||||
<property name="excludes" value=""/> |
||||
<property name="do.depend" value="false"/> |
||||
<condition property="do.depend.true"> |
||||
<istrue value="${do.depend}"/> |
||||
</condition> |
||||
<condition else="" property="javac.compilerargs.jaxws" value="-Djava.endorsed.dirs='${jaxws.endorsed.dir}'"> |
||||
<and> |
||||
<isset property="jaxws.endorsed.dir"/> |
||||
<available file="nbproject/jaxws-build.xml"/> |
||||
</and> |
||||
</condition> |
||||
</target> |
||||
<target name="-post-init"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check"> |
||||
<fail unless="src.dir">Must set src.dir</fail> |
||||
<fail unless="test.src.dir">Must set test.src.dir</fail> |
||||
<fail unless="build.dir">Must set build.dir</fail> |
||||
<fail unless="dist.dir">Must set dist.dir</fail> |
||||
<fail unless="build.classes.dir">Must set build.classes.dir</fail> |
||||
<fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail> |
||||
<fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail> |
||||
<fail unless="build.test.results.dir">Must set build.test.results.dir</fail> |
||||
<fail unless="build.classes.excludes">Must set build.classes.excludes</fail> |
||||
<fail unless="dist.jar">Must set dist.jar</fail> |
||||
</target> |
||||
<target name="-init-macrodef-property"> |
||||
<macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute name="name"/> |
||||
<attribute name="value"/> |
||||
<sequential> |
||||
<property name="@{name}" value="${@{value}}"/> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-javac"> |
||||
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${src.dir}" name="srcdir"/> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<attribute default="${javac.classpath}" name="classpath"/> |
||||
<attribute default="${includes}" name="includes"/> |
||||
<attribute default="${excludes}" name="excludes"/> |
||||
<attribute default="${javac.debug}" name="debug"/> |
||||
<attribute default="" name="sourcepath"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
<compilerarg line="${javac.compilerargs} ${javac.compilerargs.jaxws}"/> |
||||
<customize/> |
||||
</javac> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${src.dir}" name="srcdir"/> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<attribute default="${javac.classpath}" name="classpath"/> |
||||
<sequential> |
||||
<depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
</depend> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<sequential> |
||||
<fail unless="javac.includes">Must set javac.includes</fail> |
||||
<pathconvert pathsep="," property="javac.includes.binary"> |
||||
<path> |
||||
<filelist dir="@{destdir}" files="${javac.includes}"/> |
||||
</path> |
||||
<globmapper from="*.java" to="*.class"/> |
||||
</pathconvert> |
||||
<delete> |
||||
<files includes="${javac.includes.binary}"/> |
||||
</delete> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-junit"> |
||||
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${includes}" name="includes"/> |
||||
<attribute default="${excludes}" name="excludes"/> |
||||
<attribute default="**" name="testincludes"/> |
||||
<sequential> |
||||
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true"> |
||||
<batchtest todir="${build.test.results.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}"> |
||||
<filename name="@{testincludes}"/> |
||||
</fileset> |
||||
</batchtest> |
||||
<classpath> |
||||
<path path="${run.test.classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="test-sys-prop."/> |
||||
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<formatter type="brief" usefile="false"/> |
||||
<formatter type="xml"/> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
</junit> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-nbjpda"> |
||||
<macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${main.class}" name="name"/> |
||||
<attribute default="${debug.classpath}" name="classpath"/> |
||||
<attribute default="" name="stopclassname"/> |
||||
<sequential> |
||||
<nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="dt_socket"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
</nbjpdastart> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${build.classes.dir}" name="dir"/> |
||||
<sequential> |
||||
<nbjpdareload> |
||||
<fileset dir="@{dir}" includes="${fix.includes}*.class"/> |
||||
</nbjpdareload> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-debug-args"> |
||||
<property name="version-output" value="java version "${ant.java.version}"/> |
||||
<condition property="have-jdk-older-than-1.4"> |
||||
<or> |
||||
<contains string="${version-output}" substring="java version "1.0"/> |
||||
<contains string="${version-output}" substring="java version "1.1"/> |
||||
<contains string="${version-output}" substring="java version "1.2"/> |
||||
<contains string="${version-output}" substring="java version "1.3"/> |
||||
</or> |
||||
</condition> |
||||
<condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none"> |
||||
<istrue value="${have-jdk-older-than-1.4}"/> |
||||
</condition> |
||||
</target> |
||||
<target depends="-init-debug-args" name="-init-macrodef-debug"> |
||||
<macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${main.class}" name="classname"/> |
||||
<attribute default="${debug.classpath}" name="classpath"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<java classname="@{classname}" dir="${work.dir}" fork="true"> |
||||
<jvmarg line="${debug-args-line}"/> |
||||
<jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="run-sys-prop."/> |
||||
<mapper from="run-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<customize/> |
||||
</java> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-java"> |
||||
<macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${main.class}" name="classname"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<java classname="@{classname}" dir="${work.dir}" fork="true"> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
<classpath> |
||||
<path path="${run.classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="run-sys-prop."/> |
||||
<mapper from="run-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<customize/> |
||||
</java> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-presetdef-jar"> |
||||
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<jar compress="${jar.compress}" jarfile="${dist.jar}"> |
||||
<j2seproject1:fileset dir="${build.classes.dir}"/> |
||||
</jar> |
||||
</presetdef> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar" name="init"/> |
||||
<!-- |
||||
=================== |
||||
COMPILATION SECTION |
||||
=================== |
||||
--> |
||||
<target depends="init" name="deps-jar" unless="no.deps"> |
||||
<ant antfile="${project.Core_NBI_Engine}/build.xml" inheritall="false" target="jar"/> |
||||
</target> |
||||
<target depends="init,deps-jar" name="-pre-pre-compile"> |
||||
<mkdir dir="${build.classes.dir}"/> |
||||
</target> |
||||
<target name="-pre-compile"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target if="do.depend.true" name="-compile-depend"> |
||||
<j2seproject3:depend/> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-compile-depend" if="have.sources" name="-do-compile"> |
||||
<j2seproject3:javac/> |
||||
<copy todir="${build.classes.dir}"> |
||||
<fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/> |
||||
<target name="-pre-compile-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single"> |
||||
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
||||
<j2seproject3:force-recompile/> |
||||
<j2seproject3:javac excludes="" includes="${javac.includes}" sourcepath="${src.dir}"/> |
||||
</target> |
||||
<target name="-post-compile-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/> |
||||
<!-- |
||||
==================== |
||||
JAR BUILDING SECTION |
||||
==================== |
||||
--> |
||||
<target depends="init" name="-pre-pre-jar"> |
||||
<dirname file="${dist.jar}" property="dist.jar.dir"/> |
||||
<mkdir dir="${dist.jar.dir}"/> |
||||
</target> |
||||
<target name="-pre-jar"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available"> |
||||
<j2seproject1:jar/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class"> |
||||
<j2seproject1:jar manifest="${manifest.file}"/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available"> |
||||
<j2seproject1:jar manifest="${manifest.file}"> |
||||
<j2seproject1:manifest> |
||||
<j2seproject1:attribute name="Main-Class" value="${main.class}"/> |
||||
</j2seproject1:manifest> |
||||
</j2seproject1:jar> |
||||
<echo>To run this application from the command line without Ant, try:</echo> |
||||
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/> |
||||
<property location="${dist.jar}" name="dist.jar.resolved"/> |
||||
<pathconvert property="run.classpath.with.dist.jar"> |
||||
<path path="${run.classpath}"/> |
||||
<map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/> |
||||
</pathconvert> |
||||
<echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries"> |
||||
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/> |
||||
<pathconvert property="run.classpath.without.build.classes.dir"> |
||||
<path path="${run.classpath}"/> |
||||
<map from="${build.classes.dir.resolved}" to=""/> |
||||
</pathconvert> |
||||
<pathconvert pathsep=" " property="jar.classpath"> |
||||
<path path="${run.classpath.without.build.classes.dir}"/> |
||||
<chainedmapper> |
||||
<flattenmapper/> |
||||
<globmapper from="*" to="lib/*"/> |
||||
</chainedmapper> |
||||
</pathconvert> |
||||
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> |
||||
<copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> |
||||
<fileset dir="${build.classes.dir}"/> |
||||
<manifest> |
||||
<attribute name="Main-Class" value="${main.class}"/> |
||||
<attribute name="Class-Path" value="${jar.classpath}"/> |
||||
</manifest> |
||||
</copylibs> |
||||
<echo>To run this application from the command line without Ant, try:</echo> |
||||
<property location="${dist.jar}" name="dist.jar.resolved"/> |
||||
<echo>java -jar "${dist.jar.resolved}"</echo> |
||||
</target> |
||||
<target name="-post-jar"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/> |
||||
<!-- |
||||
================= |
||||
EXECUTION SECTION |
||||
================= |
||||
--> |
||||
<target depends="init,compile" description="Run a main class." name="run"> |
||||
<j2seproject1:java> |
||||
<customize> |
||||
<arg line="${application.args}"/> |
||||
</customize> |
||||
</j2seproject1:java> |
||||
</target> |
||||
<target name="-do-not-recompile"> |
||||
<property name="javac.includes.binary" value=""/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-single" name="run-single"> |
||||
<fail unless="run.class">Must select one file in the IDE or set run.class</fail> |
||||
<j2seproject1:java classname="${run.class}"/> |
||||
</target> |
||||
<!-- |
||||
================= |
||||
DEBUGGING SECTION |
||||
================= |
||||
--> |
||||
<target depends="init" if="netbeans.home" name="-debug-start-debugger"> |
||||
<j2seproject1:nbjpdastart name="${debug.class}"/> |
||||
</target> |
||||
<target depends="init,compile" name="-debug-start-debuggee"> |
||||
<j2seproject3:debug> |
||||
<customize> |
||||
<arg line="${application.args}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/> |
||||
<target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto"> |
||||
<j2seproject1:nbjpdastart stopclassname="${main.class}"/> |
||||
</target> |
||||
<target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/> |
||||
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single"> |
||||
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail> |
||||
<j2seproject3:debug classname="${debug.class}"/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/> |
||||
<target depends="init" name="-pre-debug-fix"> |
||||
<fail unless="fix.includes">Must set fix.includes</fail> |
||||
<property name="javac.includes" value="${fix.includes}.java"/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix"> |
||||
<j2seproject1:nbjpdareload/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/> |
||||
<!-- |
||||
=============== |
||||
JAVADOC SECTION |
||||
=============== |
||||
--> |
||||
<target depends="init" name="-javadoc-build"> |
||||
<mkdir dir="${dist.javadoc.dir}"/> |
||||
<javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> |
||||
<classpath> |
||||
<path path="${javac.classpath}"/> |
||||
</classpath> |
||||
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}"> |
||||
<filename name="**/*.java"/> |
||||
</fileset> |
||||
</javadoc> |
||||
</target> |
||||
<target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview"> |
||||
<nbbrowse file="${dist.javadoc.dir}/index.html"/> |
||||
</target> |
||||
<target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/> |
||||
<!-- |
||||
========================= |
||||
JUNIT COMPILATION SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test"> |
||||
<mkdir dir="${build.test.classes.dir}"/> |
||||
</target> |
||||
<target name="-pre-compile-test"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target if="do.depend.true" name="-compile-test-depend"> |
||||
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test"> |
||||
<j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/> |
||||
<copy todir="${build.test.classes.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile-test"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/> |
||||
<target name="-pre-compile-test-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single"> |
||||
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
||||
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/> |
||||
<j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/> |
||||
<copy todir="${build.test.classes.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile-test-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/> |
||||
<!-- |
||||
======================= |
||||
JUNIT EXECUTION SECTION |
||||
======================= |
||||
--> |
||||
<target depends="init" if="have.tests" name="-pre-test-run"> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
</target> |
||||
<target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run"> |
||||
<j2seproject3:junit testincludes="**/*Test.java"/> |
||||
</target> |
||||
<target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run"> |
||||
<fail if="tests.failed">Some tests failed; see details above.</fail> |
||||
</target> |
||||
<target depends="init" if="have.tests" name="test-report"/> |
||||
<target depends="init" if="netbeans.home+have.tests" name="-test-browse"/> |
||||
<target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/> |
||||
<target depends="init" if="have.tests" name="-pre-test-run-single"> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
</target> |
||||
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single"> |
||||
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail> |
||||
<j2seproject3:junit excludes="" includes="${test.includes}"/> |
||||
</target> |
||||
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single"> |
||||
<fail if="tests.failed">Some tests failed; see details above.</fail> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/> |
||||
<!-- |
||||
======================= |
||||
JUNIT DEBUGGING SECTION |
||||
======================= |
||||
--> |
||||
<target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test"> |
||||
<fail unless="test.class">Must select one file in the IDE or set test.class</fail> |
||||
<property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/> |
||||
<delete file="${test.report.file}"/> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
<j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}"> |
||||
<customize> |
||||
<syspropertyset> |
||||
<propertyref prefix="test-sys-prop."/> |
||||
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<arg value="${test.class}"/> |
||||
<arg value="showoutput=true"/> |
||||
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/> |
||||
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test"> |
||||
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/> |
||||
<target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test"> |
||||
<j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/> |
||||
<!-- |
||||
========================= |
||||
APPLET EXECUTION SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile-single" name="run-applet"> |
||||
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail> |
||||
<j2seproject1:java classname="sun.applet.AppletViewer"> |
||||
<customize> |
||||
<arg value="${applet.url}"/> |
||||
</customize> |
||||
</j2seproject1:java> |
||||
</target> |
||||
<!-- |
||||
========================= |
||||
APPLET DEBUGGING SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet"> |
||||
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail> |
||||
<j2seproject3:debug classname="sun.applet.AppletViewer"> |
||||
<customize> |
||||
<arg value="${applet.url}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/> |
||||
<!-- |
||||
=============== |
||||
CLEANUP SECTION |
||||
=============== |
||||
--> |
||||
<target depends="init" name="deps-clean" unless="no.deps"> |
||||
<ant antfile="${project.Core_NBI_Engine}/build.xml" inheritall="false" target="clean"/> |
||||
</target> |
||||
<target depends="init" name="-do-clean"> |
||||
<delete dir="${build.dir}"/> |
||||
<delete dir="${dist.dir}"/> |
||||
</target> |
||||
<target name="-post-clean"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/> |
||||
</project> |
@ -1,8 +0,0 @@ |
||||
build.xml.data.CRC32=b5c7f54a |
||||
build.xml.script.CRC32=16bbb630 |
||||
build.xml.stylesheet.CRC32=be360661 |
||||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. |
||||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. |
||||
nbproject/build-impl.xml.data.CRC32=b5c7f54a |
||||
nbproject/build-impl.xml.script.CRC32=815f74ea |
||||
nbproject/build-impl.xml.stylesheet.CRC32=f1d9da08 |
@ -1,62 +0,0 @@ |
||||
application.title=helloworld |
||||
application.vendor=dlm198383 |
||||
build.classes.dir=${build.dir}/classes |
||||
build.classes.excludes=**/*.java,**/*.form |
||||
# This directory is removed when the project is cleaned: |
||||
build.dir=build |
||||
build.generated.dir=${build.dir}/generated |
||||
# Only compile against the classpath explicitly listed here: |
||||
build.sysclasspath=ignore |
||||
build.test.classes.dir=${build.dir}/test/classes |
||||
build.test.results.dir=${build.dir}/test/results |
||||
debug.classpath=\ |
||||
${run.classpath} |
||||
debug.test.classpath=\ |
||||
${run.test.classpath} |
||||
# This directory is removed when the project is cleaned: |
||||
dist.dir=dist |
||||
dist.jar=${dist.dir}/helloworld.jar |
||||
dist.javadoc.dir=${dist.dir}/javadoc |
||||
excludes= |
||||
includes=** |
||||
jar.compress=false |
||||
javac.classpath=\ |
||||
${reference.Core_NBI_Engine.jar} |
||||
# Space-separated list of extra javac options |
||||
javac.compilerargs= |
||||
javac.deprecation=false |
||||
javac.source=1.5 |
||||
javac.target=1.5 |
||||
javac.test.classpath=\ |
||||
${javac.classpath}:\ |
||||
${build.classes.dir}:\ |
||||
${libs.junit.classpath}:\ |
||||
${libs.junit_4.classpath} |
||||
javadoc.additionalparam= |
||||
javadoc.author=false |
||||
javadoc.encoding=${source.encoding} |
||||
javadoc.noindex=false |
||||
javadoc.nonavbar=false |
||||
javadoc.notree=false |
||||
javadoc.private=false |
||||
javadoc.splitindex=true |
||||
javadoc.use=true |
||||
javadoc.version=false |
||||
javadoc.windowtitle= |
||||
meta.inf.dir=${src.dir}/META-INF |
||||
platform.active=default_platform |
||||
project.Core_NBI_Engine=../../../../nbi/engine |
||||
reference.Core_NBI_Engine.jar=${project.Core_NBI_Engine}/dist/nbi-engine.jar |
||||
run.classpath=\ |
||||
${javac.classpath}:\ |
||||
${build.classes.dir} |
||||
# Space-separated list of JVM arguments used when running the project |
||||
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value |
||||
# or test-sys-prop.name=value to set system properties for unit tests): |
||||
run.jvmargs= |
||||
run.test.classpath=\ |
||||
${javac.test.classpath}:\ |
||||
${build.test.classes.dir} |
||||
source.encoding=UTF-8 |
||||
src.dir=src |
||||
test.src.dir=test |
@ -1,26 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://www.netbeans.org/ns/project/1"> |
||||
<type>org.netbeans.modules.java.j2seproject</type> |
||||
<configuration> |
||||
<data xmlns="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<name>helloworld</name> |
||||
<minimum-ant-version>1.6.5</minimum-ant-version> |
||||
<source-roots> |
||||
<root id="src.dir"/> |
||||
</source-roots> |
||||
<test-roots> |
||||
<root id="test.src.dir"/> |
||||
</test-roots> |
||||
</data> |
||||
<references xmlns="http://www.netbeans.org/ns/ant-project-references/1"> |
||||
<reference> |
||||
<foreign-project>Core_NBI_Engine</foreign-project> |
||||
<artifact-type>jar</artifact-type> |
||||
<script>build.xml</script> |
||||
<target>jar</target> |
||||
<clean-target>clean</clean-target> |
||||
<id>jar</id> |
||||
</reference> |
||||
</references> |
||||
</configuration> |
||||
</project> |
@ -1,22 +0,0 @@ |
||||
CL.app.name={product-simple-name} |
||||
CL.desktop.shortcut.name={product-name} |
||||
CL.desktop.shortcut.description= |
||||
CL.desktop.shortcut.path= |
||||
CL.unix.icon.name={product-icon-name} |
||||
CL.unix.icon.resource=org/mycompany/{product-icon-name} |
||||
|
||||
|
||||
CL.start.menu.shortcut.name={product-name} |
||||
CL.start.menu.shortcut.name.macosx={product-name} |
||||
CL.start.menu.shortcut.description= |
||||
CL.start.menu.shortcut.path= |
||||
|
||||
CL.install.desktop=Creating shortcut on desktop |
||||
CL.install.start.menu=Creating shortcut in start menu |
||||
CL.uninstall.start.menu=Removing Start Menu entries |
||||
CL.uninstall.desktop=Removing desktop shortcut |
||||
CL.uninstall.remove.userdir=Removing {product-name} userdir |
||||
|
||||
CL.uninstall.error.start.menu=Cannot remove desktop shortcut |
||||
CL.uninstall.error.desktop=Cannot remove Start Menu entries |
||||
|
@ -1,453 +0,0 @@ |
||||
package org.mycompany; |
||||
|
||||
import java.util.List; |
||||
import java.io.File; |
||||
import java.io.FileOutputStream; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.util.Locale; |
||||
import java.util.Map; |
||||
import org.mycompany.wizard.panels.HelloWorldPanel; |
||||
import org.mycompany.installer.utils.applications.NetBeansRCPUtils; |
||||
import org.netbeans.installer.product.components.ProductConfigurationLogic; |
||||
import org.netbeans.installer.product.components.Product; |
||||
import org.netbeans.installer.utils.FileUtils; |
||||
import org.netbeans.installer.utils.helper.RemovalMode; |
||||
import org.netbeans.installer.utils.exceptions.InitializationException; |
||||
import org.netbeans.installer.utils.exceptions.InstallationException; |
||||
import org.netbeans.installer.utils.exceptions.UninstallationException; |
||||
import org.netbeans.installer.utils.progress.Progress; |
||||
import org.netbeans.installer.utils.system.shortcut.FileShortcut; |
||||
import org.netbeans.installer.utils.system.shortcut.LocationType; |
||||
import org.netbeans.installer.utils.system.shortcut.Shortcut; |
||||
import org.netbeans.installer.utils.SystemUtils; |
||||
import org.netbeans.installer.utils.LogManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StreamUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.exceptions.NativeException; |
||||
import org.netbeans.installer.wizard.Wizard; |
||||
import org.netbeans.installer.wizard.components.WizardComponent; |
||||
|
||||
public class ConfigurationLogic extends ProductConfigurationLogic { |
||||
|
||||
private List<WizardComponent> wizardComponents; |
||||
|
||||
// constructor //////////////////////////////////////////////////////////////////
|
||||
public ConfigurationLogic() throws InitializationException { |
||||
wizardComponents = Wizard.loadWizardComponents( |
||||
WIZARD_COMPONENTS_URI, |
||||
getClass().getClassLoader()); |
||||
} |
||||
|
||||
public List<WizardComponent> getWizardComponents() { |
||||
return wizardComponents; |
||||
} |
||||
|
||||
@Override |
||||
public boolean allowModifyMode() { |
||||
return false; |
||||
} |
||||
|
||||
@Override |
||||
public void install(Progress progress) throws InstallationException { |
||||
final Product product = getProduct(); |
||||
final File installLocation = product.getInstallationLocation(); |
||||
//final FilesList filesList = product.getInstalledFiles();
|
||||
String appName=ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name"); |
||||
|
||||
if (SystemUtils.isMacOS()) { |
||||
//normen: use parent folder of install dir for icon
|
||||
File f = new File(installLocation.getParentFile(), ICON_MACOSX); |
||||
if(!f.exists()) { |
||||
try { |
||||
FileUtils.writeFile(f, |
||||
ResourceUtils.getResource(ICON_MACOSX_RESOURCE, |
||||
getClass().getClassLoader())); |
||||
getProduct().getInstalledFiles().add(f); |
||||
} catch (IOException e) { |
||||
LogManager.log( |
||||
"... cannot handle icns icon " + f, e); // NOI18N
|
||||
} |
||||
} |
||||
|
||||
//normen: rename executable
|
||||
File shortcut=new File(installLocation.getParentFile().getParent()+"/MacOS/executable"); |
||||
if(shortcut.exists()){ |
||||
shortcut.renameTo(new File(installLocation.getParentFile().getParent()+"/MacOS/"+appName)); |
||||
} |
||||
|
||||
//normen: replace icon + app in Info.plist
|
||||
try { |
||||
File plist=new File(installLocation.getParentFile().getParentFile(),"Info.plist"); |
||||
FileUtils.modifyFile(plist, "icon.icns", appName+".icns"); |
||||
FileUtils.modifyFile(plist, "executable", appName); |
||||
} catch (Exception e) { |
||||
e.printStackTrace(); |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
if (Boolean.parseBoolean(getProperty(HelloWorldPanel.CREATE_DESKTOP_SHORTCUT_PROPERTY))) { |
||||
LogManager.logIndent( |
||||
"creating the desktop shortcut for the application"); // NOI18N
|
||||
if (!SystemUtils.isMacOS()) { |
||||
try { |
||||
progress.setDetail(getString("CL.install.desktop")); // NOI18N
|
||||
|
||||
if (SystemUtils.isCurrentUserAdmin()) { |
||||
LogManager.log( |
||||
"... current user is an administrator " + // NOI18N
|
||||
"-- creating the shortcut for all users"); // NOI18N
|
||||
|
||||
SystemUtils.createShortcut( |
||||
getDesktopShortcut(installLocation), |
||||
LocationType.ALL_USERS_DESKTOP); |
||||
|
||||
product.setProperty( |
||||
DESKTOP_SHORTCUT_LOCATION_PROPERTY, |
||||
ALL_USERS_PROPERTY_VALUE); |
||||
} else { |
||||
LogManager.log( |
||||
"... current user is an ordinary user " + // NOI18N
|
||||
"-- creating the shortcut for the current " + // NOI18N
|
||||
"user only"); // NOI18N
|
||||
|
||||
SystemUtils.createShortcut( |
||||
getDesktopShortcut(installLocation), |
||||
LocationType.CURRENT_USER_DESKTOP); |
||||
|
||||
getProduct().setProperty( |
||||
DESKTOP_SHORTCUT_LOCATION_PROPERTY, |
||||
CURRENT_USER_PROPERTY_VALUE); |
||||
} |
||||
} catch (NativeException e) { |
||||
LogManager.unindent(); |
||||
|
||||
LogManager.log( |
||||
getString("CL.install.error.desktop"), // NOI18N
|
||||
e); |
||||
} |
||||
} else { |
||||
LogManager.log( |
||||
"... skipping this step as we're on Mac OS"); // NOI18N
|
||||
} |
||||
} |
||||
LogManager.logUnindent( |
||||
"... done"); // NOI18N
|
||||
|
||||
/////////////////////////////////////////////
|
||||
// create start menu shortcut
|
||||
if (Boolean.parseBoolean(getProperty(HelloWorldPanel.CREATE_START_MENU_SHORTCUT_PROPERTY))) { |
||||
LogManager.logIndent( |
||||
"creating the start menu shortcut for the application"); // NOI18N
|
||||
try { |
||||
progress.setDetail(getString("CL.install.start.menu")); // NOI18N
|
||||
|
||||
if (SystemUtils.isCurrentUserAdmin()) { |
||||
LogManager.log( |
||||
"... current user is an administrator " + // NOI18N
|
||||
"-- creating the shortcut for all users"); // NOI18N
|
||||
|
||||
SystemUtils.createShortcut( |
||||
getStartMenuShortcut(installLocation), |
||||
LocationType.ALL_USERS_START_MENU); |
||||
|
||||
getProduct().setProperty( |
||||
START_MENU_SHORTCUT_LOCATION_PROPERTY, |
||||
ALL_USERS_PROPERTY_VALUE); |
||||
} else { |
||||
LogManager.log( |
||||
"... current user is an ordinary user " + // NOI18N
|
||||
"-- creating the shortcut for the current " + // NOI18N
|
||||
"user only"); // NOI18N
|
||||
|
||||
SystemUtils.createShortcut( |
||||
getStartMenuShortcut(installLocation), |
||||
LocationType.CURRENT_USER_START_MENU); |
||||
|
||||
getProduct().setProperty( |
||||
START_MENU_SHORTCUT_LOCATION_PROPERTY, |
||||
CURRENT_USER_PROPERTY_VALUE); |
||||
} |
||||
} catch (NativeException e) { |
||||
LogManager.log( |
||||
getString("CL.install.error.start.menu"), // NOI18N
|
||||
e); |
||||
} |
||||
LogManager.logUnindent( |
||||
"... done"); // NOI18N
|
||||
} |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void uninstall(Progress progress) throws UninstallationException { |
||||
final Product product = getProduct(); |
||||
final File installLocation = product.getInstallationLocation(); |
||||
|
||||
//NetBeansUtils.warnNetbeansRunning(installLocation);
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
if (Boolean.parseBoolean(getProperty(HelloWorldPanel.CREATE_START_MENU_SHORTCUT_PROPERTY))) { |
||||
try { |
||||
progress.setDetail(getString("CL.uninstall.start.menu")); // NOI18N
|
||||
|
||||
final String shortcutLocation = |
||||
getProduct().getProperty(START_MENU_SHORTCUT_LOCATION_PROPERTY); |
||||
|
||||
if ((shortcutLocation == null) |
||||
|| shortcutLocation.equals(CURRENT_USER_PROPERTY_VALUE)) { |
||||
SystemUtils.removeShortcut( |
||||
getStartMenuShortcut(installLocation), |
||||
LocationType.CURRENT_USER_START_MENU, |
||||
true); |
||||
} else { |
||||
SystemUtils.removeShortcut( |
||||
getStartMenuShortcut(installLocation), |
||||
LocationType.ALL_USERS_START_MENU, |
||||
true); |
||||
} |
||||
} catch (NativeException e) { |
||||
LogManager.log( |
||||
getString("CL.uninstall.error.start.menu"), // NOI18N
|
||||
e); |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
if (Boolean.parseBoolean(getProperty(HelloWorldPanel.CREATE_DESKTOP_SHORTCUT_PROPERTY))) { |
||||
if (!SystemUtils.isMacOS()) { |
||||
try { |
||||
progress.setDetail(getString("CL.uninstall.desktop")); // NOI18N
|
||||
|
||||
final String shortcutLocation = getProduct().getProperty( |
||||
DESKTOP_SHORTCUT_LOCATION_PROPERTY); |
||||
|
||||
if ((shortcutLocation == null) |
||||
|| shortcutLocation.equals(CURRENT_USER_PROPERTY_VALUE)) { |
||||
SystemUtils.removeShortcut( |
||||
getDesktopShortcut(installLocation), |
||||
LocationType.CURRENT_USER_DESKTOP, |
||||
false); |
||||
} else { |
||||
SystemUtils.removeShortcut( |
||||
getDesktopShortcut(installLocation), |
||||
LocationType.ALL_USERS_DESKTOP, |
||||
false); |
||||
} |
||||
} catch (NativeException e) { |
||||
LogManager.log( |
||||
getString("CL.uninstall.error.desktop"), // NOI18N
|
||||
e); |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
if (Boolean.getBoolean("remove.app.userdir")) { |
||||
try { |
||||
progress.setDetail(getString("CL.uninstall.remove.userdir")); // NOI18N
|
||||
LogManager.logIndent("Removing application`s userdir... "); |
||||
File userDir = NetBeansRCPUtils.getApplicationUserDirFile(installLocation); |
||||
LogManager.log("... application userdir location : " + userDir); |
||||
if (FileUtils.exists(userDir) && FileUtils.canWrite(userDir)) { |
||||
FileUtils.deleteFile(userDir, true); |
||||
FileUtils.deleteEmptyParents(userDir); |
||||
} |
||||
LogManager.log("... application userdir totally removed"); |
||||
} catch (IOException e) { |
||||
LogManager.log("Can`t remove application userdir", e); |
||||
} finally { |
||||
LogManager.unindent(); |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//remove cluster/update files
|
||||
/* |
||||
try { |
||||
progress.setDetail(getString("CL.uninstall.update.files")); // NOI18N
|
||||
for(String cluster : CLUSTERS) { |
||||
File updateDir = new File(installLocation, cluster + File.separator + "update"); |
||||
if ( updateDir.exists()) { |
||||
FileUtils.deleteFile(updateDir, true); |
||||
} |
||||
} |
||||
} catch (IOException e) { |
||||
LogManager.log( |
||||
getString("CL.uninstall.error.update.files"), // NOI18N
|
||||
e); |
||||
} |
||||
*/ |
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
progress.setPercentage(Progress.COMPLETE); |
||||
} |
||||
|
||||
@Override |
||||
public String getExecutable() { |
||||
if (SystemUtils.isWindows()) { |
||||
return EXECUTABLE_WINDOWS; |
||||
} else { |
||||
return EXECUTABLE_UNIX; |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public String getIcon() { |
||||
if (SystemUtils.isWindows()) { |
||||
return ICON_WINDOWS; |
||||
} else if (SystemUtils.isMacOS()) { |
||||
return ICON_MACOSX; |
||||
} else { |
||||
return ICON_UNIX; |
||||
} |
||||
} |
||||
|
||||
public RemovalMode getRemovalMode() { |
||||
return RemovalMode.LIST; |
||||
} |
||||
|
||||
@Override |
||||
public boolean registerInSystem() { |
||||
return true; |
||||
} |
||||
|
||||
@Override |
||||
public boolean requireLegalArtifactSaving() { |
||||
return false; |
||||
} |
||||
|
||||
@Override |
||||
public boolean requireDotAppForMacOs() { |
||||
return true; |
||||
} |
||||
|
||||
@Override |
||||
public boolean wrapForMacOs() { |
||||
return true; |
||||
} |
||||
|
||||
|
||||
|
||||
private Shortcut getDesktopShortcut(final File directory) { |
||||
return getShortcut( |
||||
getStrings("CL.desktop.shortcut.name"), // NOI18N
|
||||
getStrings("CL.desktop.shortcut.description"), // NOI18N
|
||||
getString("CL.desktop.shortcut.path"), // NOI18N
|
||||
directory); |
||||
} |
||||
|
||||
private Shortcut getStartMenuShortcut(final File directory) { |
||||
if (SystemUtils.isMacOS()) { |
||||
return getShortcut( |
||||
getStrings("CL.start.menu.shortcut.name.macosx"), // NOI18N
|
||||
getStrings("CL.start.menu.shortcut.description"), // NOI18N
|
||||
getString("CL.start.menu.shortcut.path"), // NOI18N
|
||||
directory); |
||||
} else { |
||||
return getShortcut( |
||||
getStrings("CL.start.menu.shortcut.name"), // NOI18N
|
||||
getStrings("CL.start.menu.shortcut.description"), // NOI18N
|
||||
getString("CL.start.menu.shortcut.path"), // NOI18N
|
||||
directory); |
||||
} |
||||
} |
||||
|
||||
private Shortcut getShortcut( |
||||
final Map<Locale, String> names, |
||||
final Map<Locale, String> descriptions, |
||||
final String relativePath, |
||||
final File location) { |
||||
final File icon; |
||||
final File executable; |
||||
|
||||
if (SystemUtils.isWindows()) { |
||||
icon = new File(location, ICON_WINDOWS); |
||||
} else if (SystemUtils.isMacOS()) { |
||||
icon = new File(location, ICON_MACOSX); |
||||
} else { |
||||
icon = new File(location, ICON_UNIX); |
||||
LogManager.log("... icon file: " + icon); |
||||
if(!FileUtils.exists(icon)) { |
||||
LogManager.log("... icon file does not exist: " + icon); |
||||
InputStream is = null; |
||||
is = ResourceUtils.getResource(ICON_UNIX_RESOURCE, this.getClass().getClassLoader()); |
||||
if(is!=null) { |
||||
FileOutputStream fos =null; |
||||
try { |
||||
fos = new FileOutputStream(icon); |
||||
StreamUtils.transferData(is, fos); |
||||
is.close(); |
||||
fos.close(); |
||||
getProduct().getInstalledFiles().add(icon); |
||||
} catch (IOException e) { |
||||
LogManager.log(e); |
||||
} finally { |
||||
if(fos!=null) { |
||||
try { |
||||
fos.close(); |
||||
} catch (IOException e) { |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
if (SystemUtils.isWindows()) { |
||||
executable = new File(location, EXECUTABLE_WINDOWS); |
||||
} else { |
||||
executable = new File(location, EXECUTABLE_UNIX); |
||||
} |
||||
final String name = names.get(new Locale(StringUtils.EMPTY_STRING)); |
||||
final FileShortcut shortcut = new FileShortcut(name, executable); |
||||
shortcut.setNames(names); |
||||
shortcut.setDescriptions(descriptions); |
||||
shortcut.setCategories(SHORTCUT_CATEGORIES); |
||||
shortcut.setFileName(SHORTCUT_FILENAME); |
||||
shortcut.setIcon(icon); |
||||
shortcut.setRelativePath(relativePath); |
||||
shortcut.setWorkingDirectory(location); |
||||
shortcut.setModifyPath(true); |
||||
|
||||
return shortcut; |
||||
} |
||||
public static final String SHORTCUT_FILENAME = |
||||
ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name") + ".desktop"; // NOI18N
|
||||
public static final String[] SHORTCUT_CATEGORIES = new String[]{ |
||||
"Application" |
||||
}; |
||||
public static final String BIN_SUBDIR = |
||||
"bin/"; |
||||
public static final String EXECUTABLE_WINDOWS = |
||||
BIN_SUBDIR |
||||
+ ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name") + ".exe"; // NOI18N
|
||||
public static final String EXECUTABLE_UNIX = |
||||
BIN_SUBDIR |
||||
+ ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name"); // NOI18N
|
||||
public static final String ICON_WINDOWS = |
||||
EXECUTABLE_WINDOWS; |
||||
public static final String ICON_UNIX = |
||||
ResourceUtils.getString(ConfigurationLogic.class, |
||||
"CL.unix.icon.name"); // NOI18N
|
||||
public static final String ICON_UNIX_RESOURCE = |
||||
ResourceUtils.getString(ConfigurationLogic.class, |
||||
"CL.unix.icon.resource"); // NOI18N
|
||||
public static final String ICON_MACOSX = |
||||
ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name") + ".icns"; // NOI18N
|
||||
public static final String ICON_MACOSX_RESOURCE = |
||||
"org/mycompany/" + ResourceUtils.getString(ConfigurationLogic.class, "CL.app.name") + ".icns"; // NOI18N
|
||||
public static final String WIZARD_COMPONENTS_URI = |
||||
"resource:" + // NOI18N
|
||||
"org/mycompany/wizard.xml"; // NOI18N
|
||||
private static final String DESKTOP_SHORTCUT_LOCATION_PROPERTY = |
||||
"desktop.shortcut.location"; // NOI18N
|
||||
private static final String START_MENU_SHORTCUT_LOCATION_PROPERTY = |
||||
"start.menu.shortcut.location"; // NOI18N
|
||||
private static final String ALL_USERS_PROPERTY_VALUE = |
||||
"all.users"; // NOI18N
|
||||
private static final String CURRENT_USER_PROPERTY_VALUE = |
||||
"current.user"; // NOI18N
|
||||
} |
@ -1,43 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
The contents of this file are subject to the terms of either the GNU General Public |
||||
License Version 2 only ("GPL") or the Common Development and Distribution |
||||
License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
compliance with the License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
License for the specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header Notice in |
||||
each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
designates this particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
If applicable, add the following below the License Header, with the fields enclosed |
||||
by brackets [] replaced by your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL or only the |
||||
GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
you do not indicate a single choice of license, a recipient has the option to |
||||
distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. However, if you |
||||
add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
option applies only if the new code is made subject to such option by the copyright |
||||
holder. |
||||
--> |
||||
|
||||
<wizard xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="wizard-components.xsd"> |
||||
<component class="org.mycompany.wizard.panels.HelloWorldPanel"/> |
||||
</wizard> |
@ -1,51 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
################################################################################ |
||||
# HelloWorldPanel.java |
||||
P.title={product-name} Installation |
||||
P.description=Choose destination folder. |
||||
P.destination.label.text=&Install {product-name} to: |
||||
P.destination.button.text=B&rowse..... |
||||
|
||||
P.create.desktop.shortcut=Create Desktop icon |
||||
P.create.start.menu.shortcut.windows=Create Start menu entry |
||||
P.create.start.menu.shortcut.unix=Create shortcut in Applications menu |
||||
P.create.start.menu.shortcut.macosx=Create icon in Dock |
||||
|
@ -1,184 +0,0 @@ |
||||
package org.mycompany.wizard.panels; |
||||
|
||||
import java.awt.GridBagConstraints; |
||||
import java.awt.Insets; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.SystemUtils; |
||||
import org.netbeans.installer.utils.helper.swing.NbiCheckBox; |
||||
import org.netbeans.installer.wizard.components.panels.DestinationPanel; |
||||
import org.netbeans.installer.wizard.containers.SwingContainer; |
||||
import org.netbeans.installer.wizard.ui.SwingUi; |
||||
import org.netbeans.installer.wizard.ui.WizardUi; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class HelloWorldPanel extends DestinationPanel { |
||||
|
||||
public HelloWorldPanel() { |
||||
setProperty(TITLE_PROPERTY, |
||||
DEFAULT_TITLE); |
||||
setProperty(DESCRIPTION_PROPERTY, |
||||
DEFAULT_DESCRIPTION); |
||||
|
||||
setProperty(DESTINATION_LABEL_TEXT_PROPERTY, |
||||
DEFAULT_DESTINATION_LABEL_TEXT); |
||||
setProperty(DESTINATION_BUTTON_TEXT_PROPERTY, |
||||
DEFAULT_DESTINATION_BUTTON_TEXT); |
||||
} |
||||
|
||||
@Override |
||||
public WizardUi getWizardUi() { |
||||
if (wizardUi == null) { |
||||
wizardUi = new HelloWorldPanelUi(this); |
||||
} |
||||
|
||||
return wizardUi; |
||||
} |
||||
|
||||
@Override |
||||
public void initialize() { |
||||
super.initialize(); |
||||
if(getWizard().getProperty(CREATE_DESKTOP_SHORTCUT_PROPERTY) == null) { |
||||
getWizard().setProperty(CREATE_DESKTOP_SHORTCUT_PROPERTY, "" + true); |
||||
} |
||||
if(getWizard().getProperty(CREATE_START_MENU_SHORTCUT_PROPERTY) == null) { |
||||
getWizard().setProperty(CREATE_START_MENU_SHORTCUT_PROPERTY, "" + true); |
||||
} |
||||
} |
||||
|
||||
|
||||
public static class HelloWorldPanelUi extends DestinationPanelUi { |
||||
|
||||
protected HelloWorldPanel panel; |
||||
|
||||
public HelloWorldPanelUi(HelloWorldPanel panel) { |
||||
super(panel); |
||||
|
||||
|
||||
this.panel = panel; |
||||
} |
||||
|
||||
public SwingUi getSwingUi(SwingContainer container) { |
||||
if (swingUi == null) { |
||||
swingUi = new HelloWorldPanelSwingUi(panel, container); |
||||
} |
||||
|
||||
return super.getSwingUi(container); |
||||
} |
||||
} |
||||
|
||||
public static class HelloWorldPanelSwingUi extends DestinationPanelSwingUi { |
||||
|
||||
protected HelloWorldPanel panel; |
||||
private NbiCheckBox desktopShortcutComboBox; |
||||
private NbiCheckBox startMenuShortcutComboBox; |
||||
|
||||
public HelloWorldPanelSwingUi( |
||||
final HelloWorldPanel panel, |
||||
final SwingContainer container) { |
||||
super(panel, container); |
||||
|
||||
this.panel = panel; |
||||
|
||||
initComponents(); |
||||
} |
||||
|
||||
// protected ////////////////////////////////////////////////////////////////
|
||||
@Override |
||||
protected void initialize() { |
||||
desktopShortcutComboBox.setText(CREATE_DESKTOP_SHORTCUT_NAME); |
||||
desktopShortcutComboBox.setSelected(false); |
||||
if(Boolean.parseBoolean(panel.getWizard().getProperty(CREATE_DESKTOP_SHORTCUT_PROPERTY))) { |
||||
desktopShortcutComboBox.doClick(); |
||||
} |
||||
|
||||
startMenuShortcutComboBox.setText( |
||||
SystemUtils.isWindows() ? CREATE_START_MENU_SHORTCUT_NAME_WINDOWS : |
||||
(SystemUtils.isMacOS() ? CREATE_START_MENU_SHORTCUT_NAME_MAC : |
||||
CREATE_START_MENU_SHORTCUT_NAME_UNIX)); |
||||
startMenuShortcutComboBox.setSelected(false); |
||||
if(Boolean.parseBoolean(panel.getWizard().getProperty(CREATE_START_MENU_SHORTCUT_PROPERTY))) { |
||||
startMenuShortcutComboBox.doClick(); |
||||
} |
||||
|
||||
super.initialize(); |
||||
} |
||||
|
||||
@Override |
||||
protected void saveInput() { |
||||
super.saveInput(); |
||||
panel.getWizard().setProperty( |
||||
CREATE_DESKTOP_SHORTCUT_PROPERTY, |
||||
StringUtils.EMPTY_STRING + desktopShortcutComboBox.isSelected()); |
||||
|
||||
panel.getWizard().setProperty( |
||||
CREATE_START_MENU_SHORTCUT_PROPERTY, |
||||
StringUtils.EMPTY_STRING + startMenuShortcutComboBox.isSelected()); |
||||
} |
||||
|
||||
@Override |
||||
protected String validateInput() { |
||||
String errorMessage = super.validateInput(); |
||||
return errorMessage; |
||||
} |
||||
|
||||
// private //////////////////////////////////////////////////////////////////
|
||||
private void initComponents() { |
||||
// selectedLocationField ////////////////////////////////////////////////
|
||||
desktopShortcutComboBox = new NbiCheckBox(); |
||||
startMenuShortcutComboBox = new NbiCheckBox(); |
||||
|
||||
// this /////////////////////////////////////////////////////////////////
|
||||
add(desktopShortcutComboBox, new GridBagConstraints( |
||||
0, 2, // x, y
|
||||
2, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(15, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(startMenuShortcutComboBox, new GridBagConstraints( |
||||
0, 3, // x, y
|
||||
2, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(7, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
} |
||||
} |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String DEFAULT_TITLE = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.title"); // NOI18N
|
||||
public static final String DEFAULT_DESCRIPTION = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.description"); // NOI18N
|
||||
public static final String DEFAULT_DESTINATION_LABEL_TEXT = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.destination.label.text"); // NOI18N
|
||||
public static final String DEFAULT_DESTINATION_BUTTON_TEXT = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.destination.button.text"); // NOI18N
|
||||
public static final String CREATE_DESKTOP_SHORTCUT_NAME = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.create.desktop.shortcut"); // NOI18N
|
||||
public static final String CREATE_START_MENU_SHORTCUT_NAME_WINDOWS = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.create.start.menu.shortcut.windows"); // NOI18N
|
||||
public static final String CREATE_START_MENU_SHORTCUT_NAME_UNIX = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.create.start.menu.shortcut.unix"); // NOI18N
|
||||
public static final String CREATE_START_MENU_SHORTCUT_NAME_MAC = |
||||
ResourceUtils.getString(HelloWorldPanel.class, |
||||
"P.create.start.menu.shortcut.macosx"); // NOI18N
|
||||
public static final String CREATE_DESKTOP_SHORTCUT_PROPERTY = |
||||
"create.desktop.shortcut"; |
||||
public static final String CREATE_START_MENU_SHORTCUT_PROPERTY = |
||||
"create.start.menu.shortcut"; |
||||
} |
@ -1,41 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
jar.contents.list=data/engine.list |
||||
jar.contents.includes=native/** org/** com/apple/** data/clioptions.list data/engine*.properties |
@ -1,73 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
The contents of this file are subject to the terms of either the GNU General Public |
||||
License Version 2 only ("GPL") or the Common Development and Distribution |
||||
License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
compliance with the License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
License for the specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header Notice in |
||||
each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
designates this particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
If applicable, add the following below the License Header, with the fields enclosed |
||||
by brackets [] replaced by your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL or only the |
||||
GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
you do not indicate a single choice of license, a recipient has the option to |
||||
distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. However, if you |
||||
add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
option applies only if the new code is made subject to such option by the copyright |
||||
holder. |
||||
--> |
||||
|
||||
<project name="Hello_World_Installer" default="default" basedir="."> |
||||
<import file="nbproject/build-impl.xml"/> |
||||
|
||||
<property file="build.properties"/> |
||||
|
||||
<target name="-post-compile" depends="-unjar-core-engine,create-jar-contents-list"/> |
||||
<target name="-unjar-core-engine"> |
||||
<!-- Add the contents of the core engine to the engine we're building --> |
||||
<unjar |
||||
src="${reference.NBI_Engine.jar}" |
||||
dest="${build.classes.dir}" |
||||
overwrite="false"/> |
||||
</target> |
||||
|
||||
<target name="create-jar-contents-list"> |
||||
<pathconvert property="build.classes.dir.normalized" dirsep="/"> |
||||
<path location="${build.classes.dir}"/> |
||||
</pathconvert> |
||||
<pathconvert pathsep="${line.separator}" property="engine.files" dirsep="/"> |
||||
<fileset dir="${build.classes.dir}" includes="${jar.contents.includes}"/> |
||||
<mapper> |
||||
<chainedmapper> |
||||
<globmapper handledirsep="true" from="${build.classes.dir.normalized}/*" to="*"/> |
||||
</chainedmapper> |
||||
</mapper> |
||||
</pathconvert> |
||||
<echo file="${build.classes.dir}/${jar.contents.list}">${engine.files}</echo> |
||||
</target> |
||||
|
||||
<target name="-post-jar"> |
||||
<delete dir="${dist.dir}/lib"/> |
||||
</target> |
||||
</project> |
@ -1,2 +0,0 @@ |
||||
Manifest-Version: 1.0 |
||||
Main-Class: org.netbeans.installer.Installer |
@ -1,646 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
*** GENERATED FROM project.xml - DO NOT EDIT *** |
||||
*** EDIT ../build.xml INSTEAD *** |
||||
|
||||
For the purpose of easier reading the script |
||||
is divided into following sections: |
||||
|
||||
- initialization |
||||
- compilation |
||||
- jar |
||||
- execution |
||||
- debugging |
||||
- javadoc |
||||
- junit compilation |
||||
- junit execution |
||||
- junit debugging |
||||
- applet |
||||
- cleanup |
||||
|
||||
--> |
||||
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="HelloWorld_Engine-impl"> |
||||
<target depends="test,jar,javadoc" description="Build and test whole project." name="default"/> |
||||
<!-- |
||||
====================== |
||||
INITIALIZATION SECTION |
||||
====================== |
||||
--> |
||||
<target name="-pre-init"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="-pre-init" name="-init-private"> |
||||
<property file="nbproject/private/config.properties"/> |
||||
<property file="nbproject/private/configs/${config}.properties"/> |
||||
<property file="nbproject/private/private.properties"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private" name="-init-user"> |
||||
<property file="${user.properties.file}"/> |
||||
<!-- The two properties below are usually overridden --> |
||||
<!-- by the active platform. Just a fallback. --> |
||||
<property name="default.javac.source" value="1.4"/> |
||||
<property name="default.javac.target" value="1.4"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user" name="-init-project"> |
||||
<property file="nbproject/configs/${config}.properties"/> |
||||
<property file="nbproject/project.properties"/> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init"> |
||||
<available file="${manifest.file}" property="manifest.available"/> |
||||
<condition property="manifest.available+main.class"> |
||||
<and> |
||||
<isset property="manifest.available"/> |
||||
<isset property="main.class"/> |
||||
<not> |
||||
<equals arg1="${main.class}" arg2="" trim="true"/> |
||||
</not> |
||||
</and> |
||||
</condition> |
||||
<condition property="manifest.available+main.class+mkdist.available"> |
||||
<and> |
||||
<istrue value="${manifest.available+main.class}"/> |
||||
<isset property="libs.CopyLibs.classpath"/> |
||||
</and> |
||||
</condition> |
||||
<condition property="have.tests"> |
||||
<or> |
||||
<available file="${test.src.dir}"/> |
||||
</or> |
||||
</condition> |
||||
<condition property="have.sources"> |
||||
<or> |
||||
<available file="${src.dir}"/> |
||||
</or> |
||||
</condition> |
||||
<condition property="netbeans.home+have.tests"> |
||||
<and> |
||||
<isset property="netbeans.home"/> |
||||
<isset property="have.tests"/> |
||||
</and> |
||||
</condition> |
||||
<condition property="no.javadoc.preview"> |
||||
<and> |
||||
<isset property="javadoc.preview"/> |
||||
<isfalse value="${javadoc.preview}"/> |
||||
</and> |
||||
</condition> |
||||
<property name="run.jvmargs" value=""/> |
||||
<property name="javac.compilerargs" value=""/> |
||||
<property name="work.dir" value="${basedir}"/> |
||||
<condition property="no.deps"> |
||||
<and> |
||||
<istrue value="${no.dependencies}"/> |
||||
</and> |
||||
</condition> |
||||
<property name="javac.debug" value="true"/> |
||||
<property name="javadoc.preview" value="true"/> |
||||
<property name="application.args" value=""/> |
||||
<property name="source.encoding" value="${file.encoding}"/> |
||||
<condition property="javadoc.encoding.used" value="${javadoc.encoding}"> |
||||
<and> |
||||
<isset property="javadoc.encoding"/> |
||||
<not> |
||||
<equals arg1="${javadoc.encoding}" arg2=""/> |
||||
</not> |
||||
</and> |
||||
</condition> |
||||
<property name="javadoc.encoding.used" value="${source.encoding}"/> |
||||
<property name="includes" value="**"/> |
||||
<property name="excludes" value=""/> |
||||
<property name="do.depend" value="false"/> |
||||
<condition property="do.depend.true"> |
||||
<istrue value="${do.depend}"/> |
||||
</condition> |
||||
<condition else="" property="javac.compilerargs.jaxws" value="-Djava.endorsed.dirs='${jaxws.endorsed.dir}'"> |
||||
<and> |
||||
<isset property="jaxws.endorsed.dir"/> |
||||
<available file="nbproject/jaxws-build.xml"/> |
||||
</and> |
||||
</condition> |
||||
</target> |
||||
<target name="-post-init"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check"> |
||||
<fail unless="src.dir">Must set src.dir</fail> |
||||
<fail unless="test.src.dir">Must set test.src.dir</fail> |
||||
<fail unless="build.dir">Must set build.dir</fail> |
||||
<fail unless="dist.dir">Must set dist.dir</fail> |
||||
<fail unless="build.classes.dir">Must set build.classes.dir</fail> |
||||
<fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail> |
||||
<fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail> |
||||
<fail unless="build.test.results.dir">Must set build.test.results.dir</fail> |
||||
<fail unless="build.classes.excludes">Must set build.classes.excludes</fail> |
||||
<fail unless="dist.jar">Must set dist.jar</fail> |
||||
</target> |
||||
<target name="-init-macrodef-property"> |
||||
<macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute name="name"/> |
||||
<attribute name="value"/> |
||||
<sequential> |
||||
<property name="@{name}" value="${@{value}}"/> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-javac"> |
||||
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${src.dir}" name="srcdir"/> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<attribute default="${javac.classpath}" name="classpath"/> |
||||
<attribute default="${includes}" name="includes"/> |
||||
<attribute default="${excludes}" name="excludes"/> |
||||
<attribute default="${javac.debug}" name="debug"/> |
||||
<attribute default="/does/not/exist" name="sourcepath"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
<compilerarg line="${javac.compilerargs} ${javac.compilerargs.jaxws}"/> |
||||
<customize/> |
||||
</javac> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${src.dir}" name="srcdir"/> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<attribute default="${javac.classpath}" name="classpath"/> |
||||
<sequential> |
||||
<depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
</depend> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${build.classes.dir}" name="destdir"/> |
||||
<sequential> |
||||
<fail unless="javac.includes">Must set javac.includes</fail> |
||||
<pathconvert pathsep="," property="javac.includes.binary"> |
||||
<path> |
||||
<filelist dir="@{destdir}" files="${javac.includes}"/> |
||||
</path> |
||||
<globmapper from="*.java" to="*.class"/> |
||||
</pathconvert> |
||||
<delete> |
||||
<files includes="${javac.includes.binary}"/> |
||||
</delete> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-junit"> |
||||
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${includes}" name="includes"/> |
||||
<attribute default="${excludes}" name="excludes"/> |
||||
<attribute default="**" name="testincludes"/> |
||||
<sequential> |
||||
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true"> |
||||
<batchtest todir="${build.test.results.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}"> |
||||
<filename name="@{testincludes}"/> |
||||
</fileset> |
||||
</batchtest> |
||||
<classpath> |
||||
<path path="${run.test.classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="test-sys-prop."/> |
||||
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<formatter type="brief" usefile="false"/> |
||||
<formatter type="xml"/> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
</junit> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target depends="-init-debug-args" name="-init-macrodef-nbjpda"> |
||||
<macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${main.class}" name="name"/> |
||||
<attribute default="${debug.classpath}" name="classpath"/> |
||||
<attribute default="" name="stopclassname"/> |
||||
<sequential> |
||||
<nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}"> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
</nbjpdastart> |
||||
</sequential> |
||||
</macrodef> |
||||
<macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${build.classes.dir}" name="dir"/> |
||||
<sequential> |
||||
<nbjpdareload> |
||||
<fileset dir="@{dir}" includes="${fix.classes}"> |
||||
<include name="${fix.includes}*.class"/> |
||||
</fileset> |
||||
</nbjpdareload> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-debug-args"> |
||||
<property name="version-output" value="java version "${ant.java.version}"/> |
||||
<condition property="have-jdk-older-than-1.4"> |
||||
<or> |
||||
<contains string="${version-output}" substring="java version "1.0"/> |
||||
<contains string="${version-output}" substring="java version "1.1"/> |
||||
<contains string="${version-output}" substring="java version "1.2"/> |
||||
<contains string="${version-output}" substring="java version "1.3"/> |
||||
</or> |
||||
</condition> |
||||
<condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none"> |
||||
<istrue value="${have-jdk-older-than-1.4}"/> |
||||
</condition> |
||||
<condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem"> |
||||
<os family="windows"/> |
||||
</condition> |
||||
<condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}"> |
||||
<isset property="debug.transport"/> |
||||
</condition> |
||||
</target> |
||||
<target depends="-init-debug-args" name="-init-macrodef-debug"> |
||||
<macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<attribute default="${main.class}" name="classname"/> |
||||
<attribute default="${debug.classpath}" name="classpath"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<java classname="@{classname}" dir="${work.dir}" fork="true"> |
||||
<jvmarg line="${debug-args-line}"/> |
||||
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
<classpath> |
||||
<path path="@{classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="run-sys-prop."/> |
||||
<mapper from="run-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<customize/> |
||||
</java> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-macrodef-java"> |
||||
<macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<attribute default="${main.class}" name="classname"/> |
||||
<element name="customize" optional="true"/> |
||||
<sequential> |
||||
<java classname="@{classname}" dir="${work.dir}" fork="true"> |
||||
<jvmarg line="${run.jvmargs}"/> |
||||
<classpath> |
||||
<path path="${run.classpath}"/> |
||||
</classpath> |
||||
<syspropertyset> |
||||
<propertyref prefix="run-sys-prop."/> |
||||
<mapper from="run-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<customize/> |
||||
</java> |
||||
</sequential> |
||||
</macrodef> |
||||
</target> |
||||
<target name="-init-presetdef-jar"> |
||||
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1"> |
||||
<jar compress="${jar.compress}" jarfile="${dist.jar}"> |
||||
<j2seproject1:fileset dir="${build.classes.dir}"/> |
||||
</jar> |
||||
</presetdef> |
||||
</target> |
||||
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar" name="init"/> |
||||
<!-- |
||||
=================== |
||||
COMPILATION SECTION |
||||
=================== |
||||
--> |
||||
<target depends="init" name="deps-jar" unless="no.deps"> |
||||
<ant antfile="${project.NBI_Engine}/build.xml" inheritall="false" target="jar"/> |
||||
</target> |
||||
<target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/> |
||||
<target depends="init" name="-check-automatic-build"> |
||||
<available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/> |
||||
</target> |
||||
<target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build"> |
||||
<antcall target="clean"/> |
||||
</target> |
||||
<target depends="init,deps-jar" name="-pre-pre-compile"> |
||||
<mkdir dir="${build.classes.dir}"/> |
||||
</target> |
||||
<target name="-pre-compile"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target if="do.depend.true" name="-compile-depend"> |
||||
<j2seproject3:depend/> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-compile-depend" if="have.sources" name="-do-compile"> |
||||
<j2seproject3:javac/> |
||||
<copy todir="${build.classes.dir}"> |
||||
<fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/> |
||||
<target name="-pre-compile-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single"> |
||||
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
||||
<j2seproject3:force-recompile/> |
||||
<j2seproject3:javac excludes="" includes="${javac.includes}" sourcepath="${src.dir}"/> |
||||
</target> |
||||
<target name="-post-compile-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/> |
||||
<!-- |
||||
==================== |
||||
JAR BUILDING SECTION |
||||
==================== |
||||
--> |
||||
<target depends="init" name="-pre-pre-jar"> |
||||
<dirname file="${dist.jar}" property="dist.jar.dir"/> |
||||
<mkdir dir="${dist.jar.dir}"/> |
||||
</target> |
||||
<target name="-pre-jar"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available"> |
||||
<j2seproject1:jar/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class"> |
||||
<j2seproject1:jar manifest="${manifest.file}"/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available"> |
||||
<j2seproject1:jar manifest="${manifest.file}"> |
||||
<j2seproject1:manifest> |
||||
<j2seproject1:attribute name="Main-Class" value="${main.class}"/> |
||||
</j2seproject1:manifest> |
||||
</j2seproject1:jar> |
||||
<echo>To run this application from the command line without Ant, try:</echo> |
||||
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/> |
||||
<property location="${dist.jar}" name="dist.jar.resolved"/> |
||||
<pathconvert property="run.classpath.with.dist.jar"> |
||||
<path path="${run.classpath}"/> |
||||
<map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/> |
||||
</pathconvert> |
||||
<echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries"> |
||||
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/> |
||||
<pathconvert property="run.classpath.without.build.classes.dir"> |
||||
<path path="${run.classpath}"/> |
||||
<map from="${build.classes.dir.resolved}" to=""/> |
||||
</pathconvert> |
||||
<pathconvert pathsep=" " property="jar.classpath"> |
||||
<path path="${run.classpath.without.build.classes.dir}"/> |
||||
<chainedmapper> |
||||
<flattenmapper/> |
||||
<globmapper from="*" to="lib/*"/> |
||||
</chainedmapper> |
||||
</pathconvert> |
||||
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> |
||||
<copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> |
||||
<fileset dir="${build.classes.dir}"/> |
||||
<manifest> |
||||
<attribute name="Main-Class" value="${main.class}"/> |
||||
<attribute name="Class-Path" value="${jar.classpath}"/> |
||||
</manifest> |
||||
</copylibs> |
||||
<echo>To run this application from the command line without Ant, try:</echo> |
||||
<property location="${dist.jar}" name="dist.jar.resolved"/> |
||||
<echo>java -jar "${dist.jar.resolved}"</echo> |
||||
</target> |
||||
<target name="-post-jar"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/> |
||||
<!-- |
||||
================= |
||||
EXECUTION SECTION |
||||
================= |
||||
--> |
||||
<target depends="init,compile" description="Run a main class." name="run"> |
||||
<j2seproject1:java> |
||||
<customize> |
||||
<arg line="${application.args}"/> |
||||
</customize> |
||||
</j2seproject1:java> |
||||
</target> |
||||
<target name="-do-not-recompile"> |
||||
<property name="javac.includes.binary" value=""/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-single" name="run-single"> |
||||
<fail unless="run.class">Must select one file in the IDE or set run.class</fail> |
||||
<j2seproject1:java classname="${run.class}"/> |
||||
</target> |
||||
<!-- |
||||
================= |
||||
DEBUGGING SECTION |
||||
================= |
||||
--> |
||||
<target depends="init" if="netbeans.home" name="-debug-start-debugger"> |
||||
<j2seproject1:nbjpdastart name="${debug.class}"/> |
||||
</target> |
||||
<target depends="init,compile" name="-debug-start-debuggee"> |
||||
<j2seproject3:debug> |
||||
<customize> |
||||
<arg line="${application.args}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/> |
||||
<target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto"> |
||||
<j2seproject1:nbjpdastart stopclassname="${main.class}"/> |
||||
</target> |
||||
<target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/> |
||||
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single"> |
||||
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail> |
||||
<j2seproject3:debug classname="${debug.class}"/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/> |
||||
<target depends="init" name="-pre-debug-fix"> |
||||
<fail unless="fix.includes">Must set fix.includes</fail> |
||||
<property name="javac.includes" value="${fix.includes}.java"/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix"> |
||||
<j2seproject1:nbjpdareload/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/> |
||||
<!-- |
||||
=============== |
||||
JAVADOC SECTION |
||||
=============== |
||||
--> |
||||
<target depends="init" name="-javadoc-build"> |
||||
<mkdir dir="${dist.javadoc.dir}"/> |
||||
<javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> |
||||
<classpath> |
||||
<path path="${javac.classpath}"/> |
||||
</classpath> |
||||
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}"> |
||||
<filename name="**/*.java"/> |
||||
</fileset> |
||||
</javadoc> |
||||
</target> |
||||
<target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview"> |
||||
<nbbrowse file="${dist.javadoc.dir}/index.html"/> |
||||
</target> |
||||
<target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/> |
||||
<!-- |
||||
========================= |
||||
JUNIT COMPILATION SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test"> |
||||
<mkdir dir="${build.test.classes.dir}"/> |
||||
</target> |
||||
<target name="-pre-compile-test"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target if="do.depend.true" name="-compile-test-depend"> |
||||
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test"> |
||||
<j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/> |
||||
<copy todir="${build.test.classes.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile-test"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/> |
||||
<target name="-pre-compile-test-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single"> |
||||
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
||||
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/> |
||||
<j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/> |
||||
<copy todir="${build.test.classes.dir}"> |
||||
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/> |
||||
</copy> |
||||
</target> |
||||
<target name="-post-compile-test-single"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/> |
||||
<!-- |
||||
======================= |
||||
JUNIT EXECUTION SECTION |
||||
======================= |
||||
--> |
||||
<target depends="init" if="have.tests" name="-pre-test-run"> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
</target> |
||||
<target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run"> |
||||
<j2seproject3:junit testincludes="**/*Test.java"/> |
||||
</target> |
||||
<target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run"> |
||||
<fail if="tests.failed">Some tests failed; see details above.</fail> |
||||
</target> |
||||
<target depends="init" if="have.tests" name="test-report"/> |
||||
<target depends="init" if="netbeans.home+have.tests" name="-test-browse"/> |
||||
<target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/> |
||||
<target depends="init" if="have.tests" name="-pre-test-run-single"> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
</target> |
||||
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single"> |
||||
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail> |
||||
<j2seproject3:junit excludes="" includes="${test.includes}"/> |
||||
</target> |
||||
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single"> |
||||
<fail if="tests.failed">Some tests failed; see details above.</fail> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/> |
||||
<!-- |
||||
======================= |
||||
JUNIT DEBUGGING SECTION |
||||
======================= |
||||
--> |
||||
<target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test"> |
||||
<fail unless="test.class">Must select one file in the IDE or set test.class</fail> |
||||
<property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/> |
||||
<delete file="${test.report.file}"/> |
||||
<mkdir dir="${build.test.results.dir}"/> |
||||
<j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}"> |
||||
<customize> |
||||
<syspropertyset> |
||||
<propertyref prefix="test-sys-prop."/> |
||||
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
||||
</syspropertyset> |
||||
<arg value="${test.class}"/> |
||||
<arg value="showoutput=true"/> |
||||
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/> |
||||
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test"> |
||||
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/> |
||||
</target> |
||||
<target depends="init,-do-not-recompile,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/> |
||||
<target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test"> |
||||
<j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/> |
||||
</target> |
||||
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/> |
||||
<!-- |
||||
========================= |
||||
APPLET EXECUTION SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile-single" name="run-applet"> |
||||
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail> |
||||
<j2seproject1:java classname="sun.applet.AppletViewer"> |
||||
<customize> |
||||
<arg value="${applet.url}"/> |
||||
</customize> |
||||
</j2seproject1:java> |
||||
</target> |
||||
<!-- |
||||
========================= |
||||
APPLET DEBUGGING SECTION |
||||
========================= |
||||
--> |
||||
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet"> |
||||
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail> |
||||
<j2seproject3:debug classname="sun.applet.AppletViewer"> |
||||
<customize> |
||||
<arg value="${applet.url}"/> |
||||
</customize> |
||||
</j2seproject3:debug> |
||||
</target> |
||||
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/> |
||||
<!-- |
||||
=============== |
||||
CLEANUP SECTION |
||||
=============== |
||||
--> |
||||
<target depends="init" name="deps-clean" unless="no.deps"> |
||||
<ant antfile="${project.NBI_Engine}/build.xml" inheritall="false" target="clean"/> |
||||
</target> |
||||
<target depends="init" name="-do-clean"> |
||||
<delete dir="${build.dir}"/> |
||||
<delete dir="${dist.dir}"/> |
||||
</target> |
||||
<target name="-post-clean"> |
||||
<!-- Empty placeholder for easier customization. --> |
||||
<!-- You can override this target in the ../build.xml file. --> |
||||
</target> |
||||
<target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/> |
||||
</project> |
@ -1,8 +0,0 @@ |
||||
build.xml.data.CRC32=8f661a73 |
||||
build.xml.script.CRC32=f2f0e306 |
||||
build.xml.stylesheet.CRC32=a12b3d02 |
||||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. |
||||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. |
||||
nbproject/build-impl.xml.data.CRC32=32036222 |
||||
nbproject/build-impl.xml.script.CRC32=ff4c3c7b |
||||
nbproject/build-impl.xml.stylesheet.CRC32=65b8de21 |
@ -1,102 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
application.title=NetBeans Installer Engine |
||||
application.vendor=ks152834 |
||||
build.classes.dir=${build.dir}/classes |
||||
build.classes.excludes=**/*.java,**/*.form |
||||
# This directory is removed when the project is cleaned: |
||||
build.dir=build |
||||
build.generated.dir=${build.dir}/generated |
||||
# Only compile against the classpath explicitly listed here: |
||||
build.sysclasspath=ignore |
||||
build.test.classes.dir=${build.dir}/test/classes |
||||
build.test.results.dir=${build.dir}/test/results |
||||
debug.classpath=\ |
||||
${run.classpath} |
||||
debug.test.classpath=\ |
||||
${run.test.classpath} |
||||
# This directory is removed when the project is cleaned: |
||||
dist.dir=dist |
||||
dist.jar=${dist.dir}/nbi-engine.jar |
||||
dist.javadoc.dir=${dist.dir}/javadoc |
||||
excludes= |
||||
file.reference.reglib-src=../../reglib/src |
||||
includes=** |
||||
jar.compress=false |
||||
javac.classpath=\ |
||||
${reference.NBI_Engine.jar} |
||||
# Space-separated list of extra javac options |
||||
javac.compilerargs= |
||||
javac.deprecation=false |
||||
javac.source=1.5 |
||||
javac.target=1.5 |
||||
javac.test.classpath=\ |
||||
${javac.classpath}:\ |
||||
${build.classes.dir}:\ |
||||
${libs.junit.classpath} |
||||
javadoc.additionalparam= |
||||
javadoc.author=false |
||||
javadoc.encoding= |
||||
javadoc.noindex=false |
||||
javadoc.nonavbar=false |
||||
javadoc.notree=false |
||||
javadoc.private=false |
||||
javadoc.splitindex=true |
||||
javadoc.use=true |
||||
javadoc.version=false |
||||
javadoc.windowtitle= |
||||
main.class=org.netbeans.installer.Installer |
||||
manifest.file=manifest.mf |
||||
meta.inf.dir=${src.dir}/META-INF |
||||
platform.active=default_platform |
||||
project.NBI_Engine=../../nbi/engine |
||||
reference.NBI_Engine.jar=${project.NBI_Engine}/dist/nbi-engine.jar |
||||
run.classpath=\ |
||||
${build.classes.dir} |
||||
# Space-separated list of JVM arguments used when running the project |
||||
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value |
||||
# or test-sys-prop.name=value to set system properties for unit tests): |
||||
run.jvmargs=-Dnbi.product.bundled.registry.uri=file:/D:/temp/nbi-build/dist/registry-temp/registry.xml |
||||
run.test.classpath=\ |
||||
${javac.test.classpath}:\ |
||||
${build.test.classes.dir} |
||||
source.encoding=UTF-8 |
||||
src.dir=src |
||||
test.src.dir=test |
@ -1,64 +0,0 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!-- |
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
|
||||
Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
Other names may be trademarks of their respective owners. |
||||
|
||||
The contents of this file are subject to the terms of either the GNU General Public |
||||
License Version 2 only ("GPL") or the Common Development and Distribution |
||||
License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
compliance with the License. You can obtain a copy of the License at |
||||
http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
License for the specific language governing permissions and limitations under the |
||||
License. When distributing the software, include this License Header Notice in |
||||
each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
designates this particular file as subject to the "Classpath" exception as provided |
||||
by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
If applicable, add the following below the License Header, with the fields enclosed |
||||
by brackets [] replaced by your own identifying information: |
||||
"Portions Copyrighted [year] [name of copyright owner]" |
||||
|
||||
Contributor(s): |
||||
|
||||
The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
Rights Reserved. |
||||
|
||||
If you wish your version of this file to be governed by only the CDDL or only the |
||||
GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
you do not indicate a single choice of license, a recipient has the option to |
||||
distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
to extend the choice of license to its licensees as provided above. However, if you |
||||
add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
option applies only if the new code is made subject to such option by the copyright |
||||
holder. |
||||
--> |
||||
<project xmlns="http://www.netbeans.org/ns/project/1"> |
||||
<type>org.netbeans.modules.java.j2seproject</type> |
||||
<configuration> |
||||
<data xmlns="http://www.netbeans.org/ns/j2se-project/3"> |
||||
<name>HelloWorld Engine</name> |
||||
<minimum-ant-version>1.6.5</minimum-ant-version> |
||||
<source-roots> |
||||
<root id="src.dir"/> |
||||
</source-roots> |
||||
<test-roots> |
||||
<root id="test.src.dir"/> |
||||
</test-roots> |
||||
</data> |
||||
<references xmlns="http://www.netbeans.org/ns/ant-project-references/1"> |
||||
<reference> |
||||
<foreign-project>NBI_Engine</foreign-project> |
||||
<artifact-type>jar</artifact-type> |
||||
<script>build.xml</script> |
||||
<target>jar</target> |
||||
<clean-target>clean</clean-target> |
||||
<id>jar</id> |
||||
</reference> |
||||
</references> |
||||
</configuration> |
||||
</project> |
@ -1,89 +0,0 @@ |
||||
|
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
nbi.wizard.components.instance.uri=resource:org/mycompany/installer/wizard/wizard-components.xml |
||||
nbi.wizard.ui.swing.frame.icon=resource:org/mycompany/installer/wizard/wizard-icon.png |
||||
nbi.wizard.ui.swing.frame.title.prefix= {product-name} Installer |
||||
nbi.wizard.ui.swing.frame.title.pattern={0} |
||||
nbi.macosx.application.directory.name={product-name} Installer |
||||
nbi.product.remove.corrupted.products.silently=true |
||||
|
||||
nbi.wizard.ui.swing.frame.head.right.image=resource:org/mycompany/installer/wizard/wizard-description-background-right.png |
||||
nbi.wizard.ui.swing.frame.head.left.image=resource:org/mycompany/installer/wizard/wizard-description-background-left.png |
||||
|
||||
nbi.wizard.ui.swing.welcome.left.top.image=resource:org/mycompany/installer/wizard/components/panels/resources/welcome-left-top.png |
||||
nbi.wizard.ui.swing.welcome.left.bottom.image=resource:org/mycompany/installer/wizard/components/panels/resources/welcome-left-bottom.png |
||||
|
||||
nbi.local.directory.path=$S{user.home}/.{product-uid}-installer |
||||
|
||||
nbi.wizard.ui.swing.frame.width.default=600 |
||||
nbi.wizard.ui.swing.frame.height.default=500 |
||||
nbi.wizard.ui.swing.frame.width.win.classic=588 |
||||
nbi.wizard.ui.swing.frame.height.win.classic=442 |
||||
nbi.wizard.ui.swing.frame.width.win.xp=600 |
||||
nbi.wizard.ui.swing.frame.height.win.xp=450 |
||||
nbi.wizard.ui.swing.frame.width.motif=624 |
||||
nbi.wizard.ui.swing.frame.height.motif=470 |
||||
nbi.wizard.ui.swing.frame.width.metal=624 |
||||
nbi.wizard.ui.swing.frame.height.metal=470 |
||||
nbi.wizard.ui.swing.frame.width.aqua=640 |
||||
nbi.wizard.ui.swing.frame.height.aqua=480 |
||||
nbi.wizard.ui.swing.frame.width.gtk=704 |
||||
nbi.wizard.ui.swing.frame.height.gtk=528 |
||||
nbi.wizard.ui.swing.frame.width.nimbus=624 |
||||
nbi.wizard.ui.swing.frame.height.nimbus=512 |
||||
|
||||
|
||||
nbi.wizard.ui.swing.frame.minimum.width.default=600 |
||||
nbi.wizard.ui.swing.frame.minimum.height.default=500 |
||||
nbi.wizard.ui.swing.frame.minimum.width.win.classic=588 |
||||
nbi.wizard.ui.swing.frame.minimum.height.win.classic=442 |
||||
nbi.wizard.ui.swing.frame.minimum.width.win.xp=600 |
||||
nbi.wizard.ui.swing.frame.minimum.height.win.xp=450 |
||||
nbi.wizard.ui.swing.frame.minimum.width.motif=624 |
||||
nbi.wizard.ui.swing.frame.minimum.height.motif=470 |
||||
nbi.wizard.ui.swing.frame.minimum.width.metal=624 |
||||
nbi.wizard.ui.swing.frame.minimum.height.metal=470 |
||||
nbi.wizard.ui.swing.frame.minimum.width.aqua=640 |
||||
nbi.wizard.ui.swing.frame.minimum.height.aqua=480 |
||||
nbi.wizard.ui.swing.frame.minimum.width.gtk=704 |
||||
nbi.wizard.ui.swing.frame.minimum.height.gtk=528 |
||||
nbi.wizard.ui.swing.frame.minimum.width.nimbus=624 |
||||
nbi.wizard.ui.swing.frame.minimum.height.nimbus=512 |
@ -1,71 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
nlu.jvm.notfoundmessage=Java SE Development Kit (JDK) was not found on this computer\nJDK 6 is required for installing {product-name}. Make sure that the JDK is properly installed and run installer again.\nYou can specify valid JDK location using {0} installer argument.\n\nTo download the JDK, visit http://java.sun.com/javase/downloads |
||||
nlu.jvm.usererror=Java Runtime Environment (JRE) was not found at the specified location {0} |
||||
nlu.jvm.uncompatible=Unsupported JVM version at {0}.\nTry to specify another JVM location using parameter {1} |
||||
nlu.freespace=There is not enough free disk space to extract installation data\n{0} MB of free disk space is required in a temporary folder.\nClean up the disk space and run installer again. You can specify a temporary folder with sufficient disk space using {1} installer argument |
||||
nlu.integrity=\nInstaller file {0} seems to be corrupted |
||||
nlu.missing.external.resource=Can`t run {product-name} Installer.\nAn external file with necessary data is required but missing:\n{0} |
||||
nlu.cannot.create.tmpdir=Cannot create temporary directory {0} |
||||
nlu.cannot.extract.bundled.jvm=Cannot extract bundled JVM |
||||
nlu.cannot.unpack.jvm.file=Cannot unpack file {0} |
||||
nlu.error.verify.bundled.jvm=Cannot verify bundled JVM, try to search JVM on the system |
||||
|
||||
nlu.running=Running the installer wizard... |
||||
nlu.starting=Configuring the installer... |
||||
nlu.extracting=Extracting installation data... |
||||
nlu.prepare.jvm=Preparing bundled JVM ... |
||||
nlu.jvm.search=Searching for JVM on the system... |
||||
|
||||
nlu.msg.usage=\nUsage: |
||||
nlu.arg.javahome=\t{0}\t<dir>\tUsing java from <dir> for running application |
||||
nlu.arg.verbose=\t{0}\t\tUse verbose output |
||||
nlu.arg.output=\t{0}\t<out>\tRedirect all output to file <out> |
||||
nlu.arg.disable.space.check=\t{0}\t\tDisable free space check |
||||
nlu.arg.extract=\t{0}\t[dir]\tExtract all bundled data to <dir>.\n\t\t\t\tIf <dir> is not specified then extract to the current directory |
||||
nlu.arg.tempdir=\t{0}\t<dir>\tUse <dir> for extracting temporary data |
||||
nlu.arg.cpa=\t{0} <cp>\tAppend classpath with <cp> |
||||
nlu.arg.cpp=\t{0} <cp>\tPrepend classpath with <cp> |
||||
nlu.arg.locale=\t{0}\t<locale>\tOverride default locale with specified <locale> |
||||
nlu.arg.silent=\t{0}\t\tRun installer silently |
||||
nlu.arg.help=\t{0}\t\tShow this help |
||||
|
||||
|
||||
nlu.java.application.name.macosx={product-name} Installer |
@ -1,74 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
nlw.jvm.notfoundmessage=Java SE Development Kit (JDK) was not found on this computer\nJDK 6 is required for installing {product-name}. Make sure that the JDK is properly installed and run installer again. You can specify valid JDK location using {0} installer argument.\n\nTo download the JDK, visit http://java.sun.com/javase/downloads |
||||
nlw.jvm.usererror=Java Runtime Environment (JRE) was not found\nThere is no JRE at the specified location {0} |
||||
nlw.jvm.unsupportedversion=Unsupported Java VM version\nThe Java VM at {0} has the unsupported version |
||||
nlw.freespace=There is not enough free disk space to extract installation data\n{0} MB of free disk space is required in a temporary folder. Clean up the disk space and run installer again. You can specify a temporary folder with sufficient disk space using {1} installer argument |
||||
nlw.tmpdir=Can't create temporary directory\nThe temporary directory for extracting data {0} was not created |
||||
nlw.integrity=Installer file is corrupted\nInstaller file {0} seems to be corrupted |
||||
nlw.output.error=Data extraction error\nCan't create file {0}!\nThe following error occured :\n{1} |
||||
nlw.java.process.error=An error occured while running java process\n{0} |
||||
nlw.missing.external.resource=Can`t run {product-name} Installer.\nAn external file with necessary data is required but missing:\n{0} |
||||
nlw.bundled.jvm.extract.error=Cannot prepare bundled JVM to run the installer.\nMost probably the bundled JVM is not compatible with the current platform. |
||||
nlw.bundled.jvm.verify.error=An error occured while verifying bundled JVM.\nMost probably the bundled JVM is not compatible with the current platform. |
||||
|
||||
nlw.arg.output={0} <output-file>\n\tRedirect output to file <output-file> |
||||
nlw.arg.javahome={0} <javahomedir>\n\tRun jar file using JVM from <javahomedir> |
||||
nlw.arg.verbose={0}\n\tUse verbose output |
||||
nlw.arg.tempdir={0} <temp-dir>\n\tUse <temp-dir> for extracting data |
||||
nlw.arg.extract={0} [directory]\n\tExtract all bundled data to the specific directory.\n\tIf directory is not specified then extract to the current directory |
||||
nlw.arg.classpatha={0} <classpath>\n\tAppend classpath with <classpath> |
||||
nlw.arg.classpathp={0} <classpath>\n\tPrepend classpath with <classpath> |
||||
nlw.arg.disable.space.check={0}\n\tDisable free space check |
||||
nlw.arg.locale={0} <locale>\n\tOverride system default locale with <locale> |
||||
nlw.arg.silent={0} \n\tRun installer silently |
||||
nlw.arg.help={0}\n\tShow help message |
||||
|
||||
|
||||
nlw.msg.create.tmpdir=Creating temporary directory ... |
||||
nlw.msg.extract=Extracting data ... |
||||
nlw.msg.jvmsearch=Finding JVM on your system ... |
||||
nlw.msg.setoptions=Setting command options ... |
||||
nlw.msg.running=Running JVM ... |
||||
nlw.msg.title=Please wait while the launcher prepares data to run the installer ... |
||||
nlw.msg.messagebox.title={product-name} Installer |
||||
nlw.msg.progress.title=Configuring the installer ... |
||||
nlw.msg.button.error=Exit Installer |
||||
nlw.msg.main.title={product-name} Installer |
@ -1,43 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
############################################################################ |
||||
# NetBeansRCPUtils.java |
||||
|
||||
NU.error.cannot.get.userdir=Can`t get application userdir from {0} |
@ -1,191 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
|
||||
package org.mycompany.installer.utils.applications; |
||||
|
||||
import java.io.File; |
||||
import java.io.FilenameFilter; |
||||
import java.io.IOException; |
||||
import java.util.regex.Matcher; |
||||
import java.util.regex.Pattern; |
||||
import org.netbeans.installer.utils.FileUtils; |
||||
import org.netbeans.installer.utils.LogManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.SystemUtils; |
||||
import org.netbeans.installer.utils.exceptions.NativeException; |
||||
import org.netbeans.installer.utils.system.WindowsNativeUtils; |
||||
import org.netbeans.installer.utils.system.WindowsNativeUtils; |
||||
import org.netbeans.installer.utils.system.windows.WindowsRegistry; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class NetBeansRCPUtils { |
||||
|
||||
|
||||
/** |
||||
* Get resolved application user directory |
||||
* @param appLocation Application home directory |
||||
* @throws IOException if can`t get application default userdir |
||||
*/ |
||||
public static File getApplicationUserDirFile(File appLocation) throws IOException { |
||||
String dir = getApplicationUserDir(appLocation); |
||||
String userHome = System.getProperty("user.home"); |
||||
if(SystemUtils.isWindows()) { |
||||
WindowsNativeUtils wnu = (WindowsNativeUtils) SystemUtils.getNativeUtils(); |
||||
WindowsRegistry reg = wnu.getWindowsRegistry(); |
||||
String key = "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; |
||||
try { |
||||
if(reg.keyExists(reg.HKCU, key) && |
||||
reg.valueExists(reg.HKCU, key, "AppData")) { |
||||
userHome = reg.getStringValue(reg.HKCU, key, "AppData", false); |
||||
|
||||
} |
||||
} catch (NativeException e) { |
||||
LogManager.log(e); |
||||
} |
||||
} |
||||
dir = dir.replace(USER_HOME_TOKEN, userHome); |
||||
dir = dir.replace(APPNAME_TOKEN, getApplicationName(appLocation)); |
||||
return new File(dir); |
||||
} |
||||
|
||||
/** |
||||
* Get application user directory as it is written in application`s configuration file |
||||
* @param appLocation Application home directory |
||||
* @throws IOException if can`t get default userdir |
||||
*/ |
||||
public static String getApplicationUserDir(File appLocation) throws IOException { |
||||
File []confFiles = new File(appLocation, "etc").listFiles(new FilenameFilter() { |
||||
|
||||
public boolean accept(File dir, String name) { |
||||
return name.endsWith(".conf"); |
||||
} |
||||
}); |
||||
File conf = null; |
||||
if(confFiles.length == 1) { |
||||
conf = confFiles[0]; |
||||
} else if(confFiles.length >2) { |
||||
for(File f : confFiles) { |
||||
String prefix = f.getName().substring(0, f.getName().indexOf(".conf")); |
||||
if((SystemUtils.isUnix() && new File(appLocation, "bin/" + prefix).exists()) || |
||||
(SystemUtils.isWindows() && new File(appLocation, "bin/" + prefix + ".exe").exists())) { |
||||
conf = f; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
if(conf == null) { |
||||
return null; |
||||
} |
||||
|
||||
String contents = FileUtils.readFile(conf); |
||||
Matcher matcher = Pattern.compile( |
||||
NEW_LINE_PATTERN + SPACES_PATTERN + |
||||
(SystemUtils.isMacOS() ? DEFAULT_USERDIR_MAC : DEFAULT_USERDIR) + |
||||
"\"(.*?)\"").matcher(contents); |
||||
if(matcher.find() && matcher.groupCount() == 1) { |
||||
return matcher.group(1); |
||||
} else { |
||||
throw new IOException(StringUtils.format( |
||||
ERROR_CANNOT_GET_USERDIR_STRING,conf)); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Get application name - i.e. <name> in bin/<name>.exe and etc/<name>.conf |
||||
* @param appLocation Application home directory |
||||
*/ |
||||
public static String getApplicationName(File appLocation) { |
||||
File []confFiles = new File(appLocation, "etc").listFiles(new FilenameFilter() { |
||||
|
||||
public boolean accept(File dir, String name) { |
||||
return name.endsWith(".conf"); |
||||
} |
||||
}); |
||||
|
||||
if(confFiles.length == 1) { |
||||
String name = confFiles[0].getName(); |
||||
return name.substring(0, name.indexOf(".conf")); |
||||
} else if(confFiles.length >2) { |
||||
for(File f : confFiles) { |
||||
String name = f.getName(); |
||||
String prefix = name.substring(0, name.indexOf(".conf")); |
||||
if((SystemUtils.isUnix() && new File(appLocation, "bin/" + prefix).exists()) || |
||||
(SystemUtils.isWindows() && new File(appLocation, "bin/" + prefix + ".exe").exists())) { |
||||
return prefix; |
||||
} |
||||
} |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Instance
|
||||
private NetBeansRCPUtils() { |
||||
// does nothing
|
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
|
||||
public static final String NEW_LINE_PATTERN = |
||||
"[\r\n|\n|\r]"; // NOI18N
|
||||
public static final String SPACES_PATTERN = |
||||
"\\ *"; // NOI18N
|
||||
|
||||
public static final String DEFAULT_USERDIR = |
||||
"default_userdir="; // NOI18N
|
||||
public static final String DEFAULT_USERDIR_MAC = |
||||
"default_mac_userdir="; // NOI18N
|
||||
|
||||
public static final String USER_HOME_TOKEN = |
||||
"${HOME}"; // NOI18N
|
||||
public static final String APPNAME_TOKEN = |
||||
"${APPNAME}"; // NOI18N
|
||||
|
||||
public static final String ERROR_CANNOT_GET_USERDIR_STRING = |
||||
ResourceUtils.getString(NetBeansRCPUtils.class, |
||||
"NU.error.cannot.get.userdir");//NOI18N
|
||||
|
||||
|
||||
} |
@ -1,3 +0,0 @@ |
||||
IA.title=Installer Initialization |
||||
IA.progress.title=Initialization in progress... |
||||
IA.description=Please wait while initialization is completed. |
@ -1,112 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
|
||||
package org.mycompany.installer.wizard.components.actions; |
||||
|
||||
import org.netbeans.installer.product.Registry; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.helper.ErrorLevel; |
||||
import org.netbeans.installer.utils.ErrorManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.progress.Progress; |
||||
import org.netbeans.installer.wizard.components.WizardAction; |
||||
import org.netbeans.installer.wizard.components.actions.*; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class InitializeAction extends WizardAction { |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Instance
|
||||
public InitializeAction() { |
||||
setProperty(TITLE_PROPERTY, |
||||
DEFAULT_TITLE); |
||||
setProperty(DESCRIPTION_PROPERTY, |
||||
DEFAULT_DESCRIPTION); |
||||
|
||||
downloadLogic = new DownloadConfigurationLogicAction(); |
||||
initReg = new InitializeRegistryAction(); |
||||
} |
||||
private DownloadConfigurationLogicAction downloadLogic; |
||||
private InitializeRegistryAction initReg; |
||||
|
||||
public void execute() { |
||||
final Progress progress = new Progress(); |
||||
|
||||
//getWizardUi().setProgress(progress);
|
||||
|
||||
|
||||
progress.setTitle(getProperty(PROGRESS_TITLE_PROPERTY)); |
||||
|
||||
//progress.synchronizeDetails(false);
|
||||
|
||||
if (initReg.canExecuteForward()) { |
||||
initReg.setWizard(getWizard()); |
||||
initReg.execute(); |
||||
} |
||||
|
||||
if (downloadLogic.canExecuteForward()) { |
||||
downloadLogic.setWizard(getWizard()); |
||||
downloadLogic.execute(); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public boolean isCancelable() { |
||||
return false; |
||||
} |
||||
|
||||
public WizardActionUi getWizardUi() { |
||||
return null; // this action does not have a ui
|
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String DEFAULT_TITLE = ResourceUtils.getString( |
||||
InitializeAction.class, |
||||
"IA.title"); // NOI18N
|
||||
public static final String PROGRESS_TITLE_PROPERTY = ResourceUtils.getString( |
||||
InitializeAction.class, |
||||
"IA.progress.title"); // NOI18N
|
||||
public static final String DEFAULT_DESCRIPTION = ResourceUtils.getString( |
||||
InitializeAction.class, |
||||
"IA.description"); // NOI18N
|
||||
|
||||
} |
@ -1,94 +0,0 @@ |
||||
WP.title={product-name} Introduction |
||||
WP.description={product-name} is a game development environment for jMonkeyEngine 3 |
||||
WP.welcome.text=<html>\ |
||||
<h1>Welcome to the {product-name} Installer Wizard</h1><br>\ |
||||
This program will install {product-name} application on your computer.<br><br>\ |
||||
Click Next to continue. |
||||
WP.already.installed.text=<html>\ |
||||
<h1>Welcome to the {product-name} Installer Wizard</h1><br>\ |
||||
{0} is already installed at {1}.<br>It is not possible to install it again.<br><br>\ |
||||
Click Exit to close this wizard. |
||||
WP.already.installed.next.button.text=&Exit |
||||
WP.incompatible.platform.text=<html>\ |
||||
<h1>Welcome to the {product-name} Installer Wizard</h1><br>\ |
||||
The {0} installer was not designed to run on this operating system so it is not possible to install it. \ |
||||
Please run the installer for the appropriate platform.<br><br>\ |
||||
Click Exit to close this wizard. |
||||
|
||||
PoISP.title=Setup Complete |
||||
PoISP.description=Click Finish to finish {product-name} setup. |
||||
|
||||
PoISP.message.text.success=\ |
||||
<html><b><font size="+1">Installation Complete</font></b><br><br><br>\ |
||||
{0} has been installed on your computer.</html> |
||||
#NOI18N |
||||
PoISP.message.content.type.success=text/html |
||||
|
||||
PoISP.message.text.warnings=\ |
||||
<html><b><font size="+1">Installation Complete</font></b><br><br><br>\ |
||||
<span color="red">{0} has been installed on your computer but some not critical warnings were encountered.\ |
||||
<br><br>For more details consult the installation log file:<br>{1}</span></html> |
||||
|
||||
PoISP.message.text.finish=<html>Click Finish to close this wizard.</html> |
||||
PoISP.message.text.finish.content.type=text/html |
||||
|
||||
#NOI18N |
||||
PoISP.message.content.type.warnings=text/html |
||||
|
||||
PoISP.message.text.errors=<html><b><font size="+1">Installation Failed</font></b><br><br><br>\ |
||||
<span color="red">{0} has not been installed on your computer.</span><br><br>\ |
||||
Try to run installer again or consult the installation log file for more details:<br>{1}</span></html> |
||||
#NOI18N |
||||
PoISP.message.content.type.errors=text/html |
||||
|
||||
PoISP.message.text.success.uninstall=<html>\ |
||||
<b><font size="+1">Uninstallation Complete</font></b><br><br><br>\ |
||||
{0} has been uninstalled.</html> |
||||
#NOI18N |
||||
PoISP.message.content.type.success.uninstall=text/html |
||||
|
||||
PoISP.message.text.warnings.uninstall=\ |
||||
<html><b><font size="+1">Uninstallation Complete</font></b><br><br><br>\ |
||||
<span color="red">{0} has been uninstalled with warnings.<br><br>\ |
||||
For more details consult the installation log file:<br>{1}</span></html> |
||||
#NOI18N |
||||
PoISP.message.content.type.warnings.uninstall=text/html |
||||
|
||||
PoISP.message.text.errors.uninstall=<html><b><font size="+1">Uninstallation Failed</font></b><br><br>\ |
||||
<span color="red">Uninstallation of {0} was not completed.<br><br>\ |
||||
Try to run uninstaller again or consult the uninstallation log file for more details:<br>{1}</span>\ |
||||
</html> |
||||
#NOI18N |
||||
PoISP.message.content.type.errors.uninstall=text/html |
||||
|
||||
PoISP.message.run.application.now=Launch {0} after the installer closes. |
||||
|
||||
PoISP.next.button.text=&Finish |
||||
|
||||
|
||||
|
||||
################################################################################ |
||||
# PreInstallSummaryPanel.java |
||||
PrISP.title=Summary |
||||
PrISP.description=Click Install to start the installation. |
||||
PrISP.description.uninstall=Click Uninstall to start the uninstallation. |
||||
|
||||
PrISP.installation.folder={0} Installation Folder: |
||||
PrISP.uninstall.list.label.text=<html><br>Click Uninstall to remove {0} from the system. |
||||
PrISP.installation.size=Total Installation Size: |
||||
PrISP.download.size=Total Download Size: |
||||
|
||||
PrISP.next.button.text=&Install |
||||
PrISP.next.button.text.uninstall=&Uninstall |
||||
|
||||
PrISP.error.not.enough.space=Insufficient disk space for proper installation. Additional {1} is required in {0}. |
||||
PrISP.error.cannot.check.space=Cannot check the free disk space |
||||
PrISP.error.logic.access=Could not access product's configuration logic |
||||
PrISP.error.fsroots=Cannot get the list of file system roots |
||||
PrISP.error.non.existent.root={0} is set up to be installed to {1} which does not belong to any of the file system roots. |
||||
PrISP.error.cannot.write=The wizard does not have write access to {1}, the installation directory of {0}. Please correct the permissions before proceeding. |
||||
|
||||
PrISP.remove.app.userdir.text=\ |
||||
<html>\ |
||||
If you wish to remove the application settings directory that stores user configuration data for {0}, check the following option.<br> |
||||
PrISP.remove.app.userdir.checkbox=Remove directory {0} |
@ -1,457 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
package org.mycompany.installer.wizard.components.panels; |
||||
|
||||
import java.awt.GridBagConstraints; |
||||
import java.awt.Insets; |
||||
import java.awt.event.WindowAdapter; |
||||
import java.awt.event.WindowEvent; |
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
import java.util.LinkedList; |
||||
import java.util.List; |
||||
import org.netbeans.installer.product.Registry; |
||||
import org.netbeans.installer.product.components.Product; |
||||
import org.netbeans.installer.product.components.ProductConfigurationLogic; |
||||
import org.netbeans.installer.utils.LogManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.exceptions.InitializationException; |
||||
import org.netbeans.installer.utils.helper.swing.NbiCheckBox; |
||||
import org.netbeans.installer.utils.helper.swing.NbiTextPane; |
||||
import org.netbeans.installer.wizard.components.WizardPanel; |
||||
import org.netbeans.installer.wizard.containers.SwingContainer; |
||||
import org.netbeans.installer.wizard.containers.SwingFrameContainer; |
||||
import org.netbeans.installer.wizard.ui.SwingUi; |
||||
import org.netbeans.installer.wizard.ui.WizardUi; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.INSTALLED_SUCCESSFULLY; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.INSTALLED_WITH_WARNINGS; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.FAILED_TO_INSTALL; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.UNINSTALLED_SUCCESSFULLY; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.UNINSTALLED_WITH_WARNINGS; |
||||
import static org.netbeans.installer.utils.helper.DetailedStatus.FAILED_TO_UNINSTALL; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class PostInstallSummaryPanel extends WizardPanel { |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Instance
|
||||
|
||||
public PostInstallSummaryPanel() { |
||||
setProperty(TITLE_PROPERTY, |
||||
DEFAULT_TITLE); |
||||
setProperty(DESCRIPTION_PROPERTY, |
||||
DEFAULT_DESCRIPTION); |
||||
|
||||
setProperty(MESSAGE_TEXT_SUCCESS_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_SUCCESS); |
||||
setProperty(MESSAGE_CONTENT_TYPE_SUCCESS_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_SUCCESS); |
||||
setProperty(MESSAGE_TEXT_WARNINGS_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_WARNINGS); |
||||
setProperty(MESSAGE_CONTENT_TYPE_WARNINGS_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_WARNINGS); |
||||
setProperty(MESSAGE_TEXT_ERRORS_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_ERRORS); |
||||
setProperty(MESSAGE_CONTENT_TYPE_ERRORS_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_ERRORS); |
||||
|
||||
setProperty(MESSAGE_TEXT_SUCCESS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_SUCCESS_UNINSTALL); |
||||
setProperty(MESSAGE_CONTENT_TYPE_SUCCESS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_SUCCESS_UNINSTALL); |
||||
setProperty(MESSAGE_TEXT_WARNINGS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_WARNINGS_UNINSTALL); |
||||
setProperty(MESSAGE_CONTENT_TYPE_WARNINGS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_WARNINGS_UNINSTALL); |
||||
setProperty(MESSAGE_TEXT_ERRORS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_TEXT_ERRORS_UNINSTALL); |
||||
setProperty(MESSAGE_CONTENT_TYPE_ERRORS_UNINSTALL_PROPERTY, |
||||
DEFAULT_MESSAGE_CONTENT_TYPE_ERRORS_UNINSTALL); |
||||
|
||||
|
||||
setProperty(NEXT_BUTTON_TEXT_PROPERTY, |
||||
DEFAULT_NEXT_BUTTON_TEXT); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isPointOfNoReturn() { |
||||
return true; |
||||
} |
||||
|
||||
@Override |
||||
public WizardUi getWizardUi() { |
||||
if (wizardUi == null) { |
||||
wizardUi = new PostInstallSummaryPanelUi(this); |
||||
} |
||||
|
||||
return wizardUi; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Inner Classes
|
||||
public static class PostInstallSummaryPanelUi extends WizardPanelUi { |
||||
|
||||
protected PostInstallSummaryPanel component; |
||||
|
||||
public PostInstallSummaryPanelUi(PostInstallSummaryPanel component) { |
||||
super(component); |
||||
|
||||
this.component = component; |
||||
} |
||||
|
||||
public SwingUi getSwingUi(SwingContainer container) { |
||||
if (swingUi == null) { |
||||
swingUi = new PostInstallSummaryPanelSwingUi(component, container); |
||||
} |
||||
|
||||
return super.getSwingUi(container); |
||||
} |
||||
} |
||||
|
||||
public static class PostInstallSummaryPanelSwingUi extends WizardPanelSwingUi { |
||||
|
||||
protected PostInstallSummaryPanel component; |
||||
private NbiTextPane messagePaneInstall; |
||||
private NbiTextPane messagePaneUninstall; |
||||
|
||||
|
||||
private NbiTextPane messagePaneFinish; |
||||
private NbiCheckBox runAppNow; |
||||
private Product app; |
||||
|
||||
public PostInstallSummaryPanelSwingUi( |
||||
final PostInstallSummaryPanel component, |
||||
final SwingContainer container) { |
||||
super(component, container); |
||||
|
||||
this.component = component; |
||||
|
||||
initComponents(); |
||||
} |
||||
|
||||
protected void initializeContainer() { |
||||
super.initializeContainer(); |
||||
|
||||
// set up the back button
|
||||
container.getBackButton().setVisible(false); |
||||
container.getBackButton().setEnabled(false); |
||||
|
||||
// set up the next (or finish) button
|
||||
container.getNextButton().setVisible(true); |
||||
container.getNextButton().setEnabled(true); |
||||
|
||||
container.getNextButton().setText( |
||||
component.getProperty(NEXT_BUTTON_TEXT_PROPERTY)); |
||||
|
||||
// set up the cancel button
|
||||
container.getCancelButton().setVisible(false); |
||||
container.getCancelButton().setEnabled(false); |
||||
} |
||||
|
||||
@Override |
||||
public void evaluateNextButtonClick() { |
||||
container.getNextButton().setEnabled(false); |
||||
final Product product = app; |
||||
if (app != null) { |
||||
ProductConfigurationLogic l = null; |
||||
try { |
||||
l = app.getLogic(); |
||||
} catch (InitializationException e) { |
||||
} |
||||
final File executable = l != null ? new File(app.getInstallationLocation(), l.getExecutable()) : null; |
||||
|
||||
if (executable != null && runAppNow.isSelected()) { |
||||
LogManager.log("... running: " + executable.getAbsolutePath()); |
||||
ProcessBuilder pb = new ProcessBuilder(new String[]{executable.getAbsolutePath()}); |
||||
try { |
||||
pb.start(); |
||||
} catch (IOException e) { |
||||
LogManager.log(e); |
||||
} |
||||
|
||||
} |
||||
} |
||||
super.evaluateNextButtonClick(); |
||||
} |
||||
|
||||
protected void initialize() { |
||||
final Registry registry = Registry.getInstance(); |
||||
final List<Product> successfulInstall = registry.getProducts(INSTALLED_SUCCESSFULLY); |
||||
final List<Product> warningInstall = registry.getProducts(INSTALLED_WITH_WARNINGS); |
||||
final List<Product> errorInstall = registry.getProducts(FAILED_TO_INSTALL); |
||||
|
||||
final List<Product> successfulUninstall = registry.getProducts(UNINSTALLED_SUCCESSFULLY); |
||||
final List<Product> warningUninstall = registry.getProducts(UNINSTALLED_WITH_WARNINGS); |
||||
final List<Product> errorUninstall = registry.getProducts(FAILED_TO_UNINSTALL); |
||||
|
||||
if (errorInstall.size() > 0) { |
||||
messagePaneInstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_ERRORS_PROPERTY)); |
||||
messagePaneInstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_ERRORS_PROPERTY), |
||||
errorInstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else if (warningInstall.size() > 0) { |
||||
messagePaneInstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_WARNINGS_PROPERTY)); |
||||
messagePaneInstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_WARNINGS_PROPERTY), |
||||
warningInstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else if (successfulInstall.size() > 0) { |
||||
messagePaneInstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_SUCCESS_PROPERTY)); |
||||
messagePaneInstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_SUCCESS_PROPERTY), |
||||
successfulInstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else { |
||||
messagePaneInstall.setVisible(false); |
||||
} |
||||
|
||||
messagePaneFinish.setVisible(true); |
||||
messagePaneFinish.setContentType(DEFAULT_MESSAGE_FINISH_PROCESS_CONTENT_TYPE); |
||||
messagePaneFinish.setText(DEFAULT_MESSAGE_FINISH_PROCESS); |
||||
|
||||
if (errorUninstall.size() > 0) { |
||||
messagePaneUninstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_ERRORS_UNINSTALL_PROPERTY)); |
||||
messagePaneUninstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_ERRORS_UNINSTALL_PROPERTY), |
||||
errorUninstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else if (warningUninstall.size() > 0) { |
||||
messagePaneUninstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_WARNINGS_UNINSTALL_PROPERTY)); |
||||
messagePaneUninstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_WARNINGS_UNINSTALL_PROPERTY), |
||||
warningUninstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else if (successfulUninstall.size() > 0) { |
||||
messagePaneUninstall.setContentType(component.getProperty(MESSAGE_CONTENT_TYPE_SUCCESS_UNINSTALL_PROPERTY)); |
||||
messagePaneUninstall.setText(StringUtils.format( |
||||
component.getProperty(MESSAGE_TEXT_SUCCESS_UNINSTALL_PROPERTY), |
||||
successfulUninstall.get(0).getDisplayName(), |
||||
LogManager.getLogFile())); |
||||
} else { |
||||
messagePaneUninstall.setVisible(false); |
||||
} |
||||
|
||||
|
||||
|
||||
final List<Product> products = new LinkedList<Product>(); |
||||
products.addAll(successfulInstall); |
||||
products.addAll(warningInstall); |
||||
runAppNow.setSelected(false); |
||||
if (!products.isEmpty()) { |
||||
runAppNow.setText(StringUtils.format(DEFAULT_MESSAGE_LAUNCH_APPLICATION_NOW, |
||||
products.get(0).getDisplayName())); |
||||
runAppNow.doClick(); |
||||
app = products.get(0); |
||||
} else { |
||||
runAppNow.setVisible(false); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
private void initComponents() { |
||||
// messagePaneInstall ///////////////////////////////////////////////////
|
||||
messagePaneInstall = new NbiTextPane(); |
||||
|
||||
// messagePaneUninstall /////////////////////////////////////////////////
|
||||
messagePaneUninstall = new NbiTextPane(); |
||||
|
||||
// messagePaneRunApplication ///////////////////////////////////////////////////
|
||||
|
||||
|
||||
messagePaneFinish = new NbiTextPane(); |
||||
|
||||
runAppNow = new NbiCheckBox(); |
||||
|
||||
|
||||
// this /////////////////////////////////////////////////////////////////
|
||||
add(messagePaneInstall, new GridBagConstraints( |
||||
0, 0, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(31, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(messagePaneUninstall, new GridBagConstraints( |
||||
0, 1, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.BOTH, // fill
|
||||
new Insets(31, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
add(messagePaneFinish, new GridBagConstraints( |
||||
0, 3, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 1.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(11, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
/* |
||||
add(new NbiPanel(), new GridBagConstraints( |
||||
0, 4, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 1.0, // weight-x, weight-y
|
||||
GridBagConstraints.CENTER, // anchor
|
||||
GridBagConstraints.BOTH, // fill
|
||||
new Insets(0, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
*/ |
||||
add(runAppNow, new GridBagConstraints( |
||||
0, 4, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 1.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(11, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
|
||||
|
||||
if (container instanceof SwingFrameContainer) { |
||||
final SwingFrameContainer sfc = (SwingFrameContainer) container; |
||||
sfc.addWindowListener(new WindowAdapter() { |
||||
|
||||
@Override |
||||
public void windowClosing(WindowEvent event) { |
||||
SwingUi currentUi = component.getWizardUi().getSwingUi(container); |
||||
if (currentUi != null) { |
||||
if (!container.getCancelButton().isEnabled() && // cancel button is disabled
|
||||
!container.getCancelButton().isVisible() && // no cancel button at this panel
|
||||
!container.getBackButton().isVisible() && // no back button at this panel
|
||||
container.getNextButton().isVisible() && // next button is visible
|
||||
container.getNextButton().isEnabled()) { // and enabled
|
||||
currentUi.evaluateNextButtonClick(); |
||||
sfc.removeWindowListener(this); |
||||
} |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String MESSAGE_TEXT_SUCCESS_PROPERTY = |
||||
"message.text.success"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_SUCCESS_PROPERTY = |
||||
"message.content.type.success"; // NOI18N
|
||||
public static final String MESSAGE_TEXT_WARNINGS_PROPERTY = |
||||
"message.text.warnings"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_WARNINGS_PROPERTY = |
||||
"message.content.type.warnings"; // NOI18N
|
||||
public static final String MESSAGE_TEXT_ERRORS_PROPERTY = |
||||
"message.text.errors"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_ERRORS_PROPERTY = |
||||
"message.content.type.errors"; // NOI18N
|
||||
public static final String MESSAGE_TEXT_SUCCESS_UNINSTALL_PROPERTY = |
||||
"message.text.success.uninstall"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_SUCCESS_UNINSTALL_PROPERTY = |
||||
"message.content.type.success.uninstall"; // NOI18N
|
||||
public static final String MESSAGE_TEXT_WARNINGS_UNINSTALL_PROPERTY = |
||||
"message.text.warnings.uninstall"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_WARNINGS_UNINSTALL_PROPERTY = |
||||
"message.content.type.warnings.uninstall"; // NOI18N
|
||||
public static final String MESSAGE_TEXT_ERRORS_UNINSTALL_PROPERTY = |
||||
"message.text.errors.uninstall"; // NOI18N
|
||||
public static final String MESSAGE_CONTENT_TYPE_ERRORS_UNINSTALL_PROPERTY = |
||||
"message.content.type.errors.uninstall"; // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_SUCCESS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.success"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_SUCCESS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.success"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_WARNINGS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.warnings"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_WARNINGS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.warnings"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_ERRORS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.errors"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_ERRORS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.errors"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_SUCCESS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.success.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_SUCCESS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.success.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_WARNINGS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.warnings.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_WARNINGS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.warnings.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_TEXT_ERRORS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.errors.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_CONTENT_TYPE_ERRORS_UNINSTALL = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.content.type.errors.uninstall"); // NOI18N
|
||||
|
||||
public static final String DEFAULT_TITLE = ResourceUtils.getString( |
||||
PostInstallSummaryPanel.class, |
||||
"PoISP.title"); // NOI18N
|
||||
public static final String DEFAULT_DESCRIPTION = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.description"); // NOI18N
|
||||
public static final String DEFAULT_NEXT_BUTTON_TEXT = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.next.button.text"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_FINISH_PROCESS = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.finish"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_FINISH_PROCESS_CONTENT_TYPE = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.text.finish.content.type"); // NOI18N
|
||||
public static final String DEFAULT_MESSAGE_LAUNCH_APPLICATION_NOW = |
||||
ResourceUtils.getString(PostInstallSummaryPanel.class, |
||||
"PoISP.message.run.application.now");//NOI18N
|
||||
} |
@ -1,620 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
package org.mycompany.installer.wizard.components.panels; |
||||
|
||||
import java.awt.ComponentOrientation; |
||||
import java.awt.GridBagConstraints; |
||||
import java.awt.Insets; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import javax.swing.border.EmptyBorder; |
||||
import org.netbeans.installer.Installer; |
||||
import org.netbeans.installer.product.Registry; |
||||
import org.netbeans.installer.product.RegistryNode; |
||||
import org.netbeans.installer.product.RegistryType; |
||||
import org.netbeans.installer.product.components.Product; |
||||
import org.netbeans.installer.utils.ErrorManager; |
||||
import org.netbeans.installer.utils.FileUtils; |
||||
import org.netbeans.installer.utils.LogManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.SystemUtils; |
||||
import org.mycompany.installer.utils.applications.NetBeansRCPUtils; |
||||
import org.netbeans.installer.utils.exceptions.NativeException; |
||||
import org.netbeans.installer.utils.helper.swing.NbiCheckBox; |
||||
import org.netbeans.installer.utils.helper.swing.NbiLabel; |
||||
import org.netbeans.installer.utils.helper.swing.NbiPanel; |
||||
import org.netbeans.installer.utils.helper.swing.NbiTextPane; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel.ErrorMessagePanelSwingUi; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel.ErrorMessagePanelUi; |
||||
import org.netbeans.installer.wizard.containers.SwingContainer; |
||||
import org.netbeans.installer.wizard.ui.SwingUi; |
||||
import org.netbeans.installer.wizard.ui.WizardUi; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class PreInstallSummaryPanel extends ErrorMessagePanel { |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Instance
|
||||
|
||||
public PreInstallSummaryPanel() { |
||||
setProperty(TITLE_PROPERTY, |
||||
DEFAULT_TITLE); |
||||
setProperty(DESCRIPTION_PROPERTY, |
||||
DEFAULT_DESCRIPTION); |
||||
|
||||
setProperty(INSTALLATION_FOLDER_PROPERTY, |
||||
DEFAULT_INSTALLATION_FOLDER); |
||||
|
||||
setProperty(UNINSTALL_LABEL_TEXT_PROPERTY, |
||||
DEFAULT_UNINSTALL_LABEL_TEXT); |
||||
|
||||
setProperty(INSTALLATION_SIZE_PROPERTY, |
||||
DEFAULT_INSTALLATION_SIZE); |
||||
setProperty(DOWNLOAD_SIZE_PROPERTY, |
||||
DEFAULT_DOWNLOAD_SIZE); |
||||
|
||||
setProperty(NEXT_BUTTON_TEXT_PROPERTY, |
||||
DEFAULT_NEXT_BUTTON_TEXT); |
||||
|
||||
setProperty(ERROR_NOT_ENOUGH_SPACE_PROPERTY, |
||||
DEFAULT_ERROR_NOT_ENOUGH_SPACE); |
||||
setProperty(ERROR_CANNOT_CHECK_SPACE_PROPERTY, |
||||
DEFAULT_ERROR_CANNOT_CHECK_SPACE); |
||||
setProperty(ERROR_LOGIC_ACCESS_PROPERTY, |
||||
DEFAULT_ERROR_LOGIC_ACCESS); |
||||
setProperty(ERROR_FSROOTS_PROPERTY, |
||||
DEFAULT_ERROR_FSROOTS); |
||||
setProperty(ERROR_NON_EXISTENT_ROOT_PROPERTY, |
||||
DEFAULT_ERROR_NON_EXISTENT_ROOT); |
||||
setProperty(ERROR_CANNOT_WRITE_PROPERTY, |
||||
DEFAULT_ERROR_CANNOT_WRITE); |
||||
setProperty(REMOVE_APP_USERDIR_TEXT_PROPERTY, |
||||
DEFAULT_REMOVE_APP_USERDIR_TEXT); |
||||
setProperty(REMOVE_APP_USERDIR_CHECKBOX_PROPERTY, |
||||
DEFAULT_REMOVE_APP_USERDIR_CHECKBOX); |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public WizardUi getWizardUi() { |
||||
if (wizardUi == null) { |
||||
wizardUi = new PreInstallSummaryPanelUi(this); |
||||
} |
||||
|
||||
return wizardUi; |
||||
} |
||||
|
||||
@Override |
||||
public void initialize() { |
||||
final List<Product> toInstall = |
||||
Registry.getInstance().getProductsToInstall(); |
||||
|
||||
if (toInstall.size() > 0) { |
||||
setProperty(NEXT_BUTTON_TEXT_PROPERTY, DEFAULT_NEXT_BUTTON_TEXT); |
||||
setProperty(DESCRIPTION_PROPERTY, DEFAULT_DESCRIPTION); |
||||
} else { |
||||
setProperty(NEXT_BUTTON_TEXT_PROPERTY, DEFAULT_NEXT_BUTTON_TEXT_UNINSTALL); |
||||
setProperty(DESCRIPTION_PROPERTY, DEFAULT_DESCRIPTION_UNINSTALL); |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Inner Classes
|
||||
public static class PreInstallSummaryPanelUi extends ErrorMessagePanelUi { |
||||
|
||||
protected PreInstallSummaryPanel component; |
||||
|
||||
public PreInstallSummaryPanelUi(PreInstallSummaryPanel component) { |
||||
super(component); |
||||
|
||||
this.component = component; |
||||
} |
||||
|
||||
@Override |
||||
public SwingUi getSwingUi(SwingContainer container) { |
||||
if (swingUi == null) { |
||||
swingUi = new PreInstallSummaryPanelSwingUi(component, container); |
||||
} |
||||
|
||||
return super.getSwingUi(container); |
||||
} |
||||
} |
||||
|
||||
public static class PreInstallSummaryPanelSwingUi extends ErrorMessagePanelSwingUi { |
||||
|
||||
protected PreInstallSummaryPanel component; |
||||
private NbiTextPane locationsPane; |
||||
private NbiLabel uninstallListLabel; |
||||
private NbiTextPane uninstallListPane; |
||||
private NbiLabel installationSizeLabel; |
||||
private NbiLabel installationSizeValue; |
||||
private NbiLabel downloadSizeLabel; |
||||
private NbiLabel downloadSizeValue; |
||||
private NbiCheckBox removeUserdirCheckbox; |
||||
private NbiTextPane removeUserdirPane; |
||||
private NbiPanel spacer; |
||||
private int gridy = 0; |
||||
|
||||
public PreInstallSummaryPanelSwingUi( |
||||
final PreInstallSummaryPanel component, |
||||
final SwingContainer container) { |
||||
super(component, container); |
||||
|
||||
this.component = component; |
||||
initComponents(); |
||||
} |
||||
|
||||
// protected ////////////////////////////////////////////////////////////////
|
||||
@Override |
||||
protected void initializeContainer() { |
||||
super.initializeContainer(); |
||||
|
||||
container.getNextButton().setText( |
||||
panel.getProperty(NEXT_BUTTON_TEXT_PROPERTY)); |
||||
} |
||||
|
||||
@Override |
||||
protected void initialize() { |
||||
final Registry registry = Registry.getInstance(); |
||||
|
||||
final StringBuilder text = new StringBuilder(); |
||||
long installationSize = 0; |
||||
long downloadSize = 0; |
||||
|
||||
for (Product product : registry.getProductsToInstall()) { |
||||
installationSize += product.getRequiredDiskSpace(); |
||||
downloadSize += product.getDownloadSize(); |
||||
|
||||
|
||||
} |
||||
|
||||
// add top-level components like nb-base, glassfish, tomcat, jdk
|
||||
for (Product product : registry.getProductsToInstall()) { |
||||
text.append(StringUtils.LF); |
||||
text.append(StringUtils.format(panel.getProperty(INSTALLATION_FOLDER_PROPERTY), |
||||
product.getDisplayName())); |
||||
text.append(StringUtils.LF); |
||||
text.append(" " + product.getInstallationLocation()); |
||||
text.append(StringUtils.LF); |
||||
} |
||||
locationsPane.setText(text); |
||||
|
||||
List<Product> toUninstall = registry.getProductsToUninstall(); |
||||
String uninstallLabelText = toUninstall.size() > 0 ? StringUtils.format( |
||||
panel.getProperty(UNINSTALL_LABEL_TEXT_PROPERTY), |
||||
toUninstall.get(0).getDisplayName()) : ""; |
||||
|
||||
uninstallListLabel.setText(uninstallLabelText); |
||||
|
||||
|
||||
installationSizeLabel.setText( |
||||
panel.getProperty(INSTALLATION_SIZE_PROPERTY)); |
||||
installationSizeValue.setText(StringUtils.formatSize( |
||||
installationSize)); |
||||
|
||||
downloadSizeLabel.setText( |
||||
panel.getProperty(DOWNLOAD_SIZE_PROPERTY)); |
||||
downloadSizeValue.setText(StringUtils.formatSize( |
||||
downloadSize)); |
||||
|
||||
if (registry.getProductsToInstall().size() == 0) { |
||||
locationsPane.setVisible(false); |
||||
installationSizeLabel.setVisible(false); |
||||
installationSizeValue.setVisible(false); |
||||
} else { |
||||
locationsPane.setVisible(true); |
||||
installationSizeLabel.setVisible(true); |
||||
installationSizeValue.setVisible(true); |
||||
} |
||||
|
||||
if (registry.getProductsToUninstall().size() == 0) { |
||||
uninstallListLabel.setVisible(false); |
||||
uninstallListPane.setVisible(false); |
||||
} else { |
||||
uninstallListLabel.setVisible(true); |
||||
uninstallListPane.setVisible(true); |
||||
} |
||||
|
||||
downloadSizeLabel.setVisible(false); |
||||
downloadSizeValue.setVisible(false); |
||||
for (RegistryNode remoteNode : registry.getNodes(RegistryType.REMOTE)) { |
||||
if (remoteNode.isVisible()) { |
||||
downloadSizeLabel.setVisible(true); |
||||
downloadSizeValue.setVisible(true); |
||||
} |
||||
} |
||||
|
||||
if (Boolean.getBoolean(REMOVE_APP_USERDIR_PROPERTY)) { |
||||
removeUserdirCheckbox.doClick(); |
||||
} |
||||
|
||||
removeUserdirCheckbox.setVisible(false); |
||||
removeUserdirPane.setVisible(false); |
||||
|
||||
for (Product product : Registry.getInstance().getProductsToUninstall()) { |
||||
|
||||
try { |
||||
File installLocation = product.getInstallationLocation(); |
||||
LogManager.log("... product installation directory: " + installLocation); |
||||
File userDir = NetBeansRCPUtils.getApplicationUserDirFile(installLocation); |
||||
LogManager.log("... product userdir: " + userDir); |
||||
if (FileUtils.exists(userDir) && FileUtils.canWrite(userDir)) { |
||||
removeUserdirCheckbox.setText( |
||||
StringUtils.format( |
||||
panel.getProperty(REMOVE_APP_USERDIR_CHECKBOX_PROPERTY), |
||||
userDir.getAbsolutePath())); |
||||
removeUserdirCheckbox.setBorder(new EmptyBorder(0, 0, 0, 0)); |
||||
removeUserdirCheckbox.setVisible(true); |
||||
|
||||
removeUserdirPane.setVisible(true); |
||||
removeUserdirPane.setContentType("text/html"); |
||||
|
||||
removeUserdirPane.setText( |
||||
StringUtils.format( |
||||
panel.getProperty(REMOVE_APP_USERDIR_TEXT_PROPERTY), |
||||
product.getDisplayName())); |
||||
|
||||
} |
||||
break; |
||||
} catch (IOException e) { |
||||
LogManager.log(e); |
||||
} |
||||
|
||||
} |
||||
|
||||
//if(productCheckboxList!=null) {
|
||||
// for(Pair <Product, NbiCheckBox> pair : productCheckboxList) {
|
||||
// pair.getSecond().doClick();
|
||||
// }
|
||||
//}
|
||||
super.initialize(); |
||||
} |
||||
|
||||
@Override |
||||
protected String validateInput() { |
||||
try { |
||||
if (!Boolean.getBoolean(SystemUtils.NO_SPACE_CHECK_PROPERTY)) { |
||||
final List<File> roots = |
||||
SystemUtils.getFileSystemRoots(); |
||||
final List<Product> toInstall = |
||||
Registry.getInstance().getProductsToInstall(); |
||||
final Map<File, Long> spaceMap = |
||||
new HashMap<File, Long>(); |
||||
|
||||
LogManager.log("Available roots : " + StringUtils.asString(roots)); |
||||
|
||||
File downloadDataDirRoot = FileUtils.getRoot( |
||||
Installer.getInstance().getLocalDirectory(), roots); |
||||
long downloadSize = 0; |
||||
for (Product product : toInstall) { |
||||
downloadSize += product.getDownloadSize(); |
||||
} |
||||
// the critical check point - we download all the data
|
||||
spaceMap.put(downloadDataDirRoot, new Long(downloadSize)); |
||||
long lastDataSize = 0; |
||||
for (Product product : toInstall) { |
||||
final File installLocation = product.getInstallationLocation(); |
||||
final File root = FileUtils.getRoot(installLocation, roots); |
||||
final long productSize = product.getRequiredDiskSpace(); |
||||
|
||||
LogManager.log(" [" + root + "] <- " + installLocation); |
||||
|
||||
if (root != null) { |
||||
Long ddSize = spaceMap.get(downloadDataDirRoot); |
||||
// remove space that was freed after the remove of previos product data
|
||||
spaceMap.put(downloadDataDirRoot, |
||||
Long.valueOf(ddSize - lastDataSize)); |
||||
|
||||
// add space required for next product installation
|
||||
Long size = spaceMap.get(root); |
||||
size = Long.valueOf( |
||||
(size != null ? size.longValue() : 0L) |
||||
+ productSize); |
||||
spaceMap.put(root, size); |
||||
lastDataSize = product.getDownloadSize(); |
||||
} else { |
||||
return StringUtils.format( |
||||
panel.getProperty(ERROR_NON_EXISTENT_ROOT_PROPERTY), |
||||
product, installLocation); |
||||
} |
||||
} |
||||
|
||||
for (File root : spaceMap.keySet()) { |
||||
try { |
||||
final long availableSpace = |
||||
SystemUtils.getFreeSpace(root); |
||||
final long requiredSpace = |
||||
spaceMap.get(root) + REQUIRED_SPACE_ADDITION; |
||||
|
||||
if (availableSpace < requiredSpace) { |
||||
return StringUtils.format( |
||||
panel.getProperty(ERROR_NOT_ENOUGH_SPACE_PROPERTY), |
||||
root, |
||||
StringUtils.formatSize(requiredSpace - availableSpace)); |
||||
} |
||||
} catch (NativeException e) { |
||||
ErrorManager.notifyError( |
||||
panel.getProperty(ERROR_CANNOT_CHECK_SPACE_PROPERTY), |
||||
e); |
||||
} |
||||
} |
||||
} |
||||
|
||||
final List<Product> toUninstall = |
||||
Registry.getInstance().getProductsToUninstall(); |
||||
for (Product product : toUninstall) { |
||||
if (!FileUtils.canWrite(product.getInstallationLocation())) { |
||||
return StringUtils.format( |
||||
panel.getProperty(ERROR_CANNOT_WRITE_PROPERTY), |
||||
product, |
||||
product.getInstallationLocation()); |
||||
} |
||||
} |
||||
|
||||
} catch (IOException e) { |
||||
ErrorManager.notifyError( |
||||
panel.getProperty(ERROR_FSROOTS_PROPERTY), e); |
||||
} |
||||
|
||||
return null; |
||||
} |
||||
|
||||
// private //////////////////////////////////////////////////////////////////
|
||||
private void initComponents() { |
||||
gridy = 0; |
||||
|
||||
// locationsPane ////////////////////////////////////////////////////////
|
||||
locationsPane = new NbiTextPane(); |
||||
|
||||
// uninstallListPane ////////////////////////////////////////////////////
|
||||
uninstallListPane = new NbiTextPane(); |
||||
|
||||
// uninstallListLabel ///////////////////////////////////////////////////
|
||||
uninstallListLabel = new NbiLabel(); |
||||
uninstallListLabel.setLabelFor(uninstallListPane); |
||||
|
||||
// installationSizeValue ////////////////////////////////////////////////
|
||||
installationSizeValue = new NbiLabel(); |
||||
//installationSizeValue.setFocusable(true);
|
||||
|
||||
// installationSizeLabel ////////////////////////////////////////////////
|
||||
installationSizeLabel = new NbiLabel(); |
||||
installationSizeLabel.setLabelFor(installationSizeValue); |
||||
|
||||
// downloadSizeValue ////////////////////////////////////////////////////
|
||||
downloadSizeValue = new NbiLabel(); |
||||
//downloadSizeValue.setFocusable(true);
|
||||
|
||||
// downloadSizeLabel ////////////////////////////////////////////////////
|
||||
downloadSizeLabel = new NbiLabel(); |
||||
downloadSizeLabel.setLabelFor(downloadSizeValue); |
||||
|
||||
// spacer ///////////////////////////////////////////////////////////////
|
||||
spacer = new NbiPanel(); |
||||
|
||||
// this /////////////////////////////////////////////////////////////////
|
||||
add(locationsPane, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(11, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(uninstallListLabel, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(11, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(uninstallListPane, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(0, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
int gridy0 = gridy; |
||||
gridy++; |
||||
|
||||
removeUserdirPane = new NbiTextPane(); |
||||
add(removeUserdirPane, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(11, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
removeUserdirCheckbox = new NbiCheckBox(); |
||||
add(removeUserdirCheckbox, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.PAGE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(4, 20, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
removeUserdirCheckbox.addActionListener(new ActionListener() { |
||||
|
||||
public void actionPerformed(ActionEvent e) { |
||||
System.setProperty(REMOVE_APP_USERDIR_PROPERTY, |
||||
"" + removeUserdirCheckbox.isSelected()); |
||||
} |
||||
}); |
||||
|
||||
add(installationSizeLabel, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(22, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(installationSizeValue, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(4, 22, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(downloadSizeLabel, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(4, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(downloadSizeValue, new GridBagConstraints( |
||||
0, gridy++, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(4, 22, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(spacer, new GridBagConstraints( |
||||
0, gridy + 10, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 1.0, // weight-x, weight-y
|
||||
GridBagConstraints.CENTER, // anchor
|
||||
GridBagConstraints.BOTH, // fill
|
||||
new Insets(0, 11, 0, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
} |
||||
} |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String INSTALLATION_FOLDER_PROPERTY = |
||||
"installation.folder"; // NOI18N
|
||||
public static final String UNINSTALL_LABEL_TEXT_PROPERTY = |
||||
"uninstall.list.label.text"; // NOI18N
|
||||
public static final String INSTALLATION_SIZE_PROPERTY = |
||||
"installation.size"; // NOI18N
|
||||
public static final String DOWNLOAD_SIZE_PROPERTY = |
||||
"download.size"; // NOI18N
|
||||
public static final String ERROR_NOT_ENOUGH_SPACE_PROPERTY = |
||||
"error.not.enough.space"; // NOI18N
|
||||
public static final String ERROR_CANNOT_CHECK_SPACE_PROPERTY = |
||||
"error.cannot.check.space"; // NOI18N
|
||||
public static final String ERROR_LOGIC_ACCESS_PROPERTY = |
||||
"error.logic.access"; // NOI18N
|
||||
public static final String ERROR_FSROOTS_PROPERTY = |
||||
"error.fsroots"; // NOI18N
|
||||
public static final String ERROR_NON_EXISTENT_ROOT_PROPERTY = |
||||
"error.non.existent.root"; // NOI18N
|
||||
public static final String ERROR_CANNOT_WRITE_PROPERTY = |
||||
"error.cannot.write"; // NOI18N
|
||||
public static final String REMOVE_APP_USERDIR_PROPERTY = |
||||
"remove.app.userdir"; |
||||
public static final String REMOVE_APP_USERDIR_TEXT_PROPERTY = |
||||
"remove.app.userdir.text"; |
||||
public static final String REMOVE_APP_USERDIR_CHECKBOX_PROPERTY = |
||||
"remove.app.userdir.checkbox"; |
||||
public static final String DEFAULT_TITLE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.title"); // NOI18N
|
||||
public static final String DEFAULT_DESCRIPTION = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.description"); // NOI18N
|
||||
public static final String DEFAULT_DESCRIPTION_UNINSTALL = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.description.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_INSTALLATION_FOLDER = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.installation.folder"); // NOI18N
|
||||
public static final String DEFAULT_UNINSTALL_LABEL_TEXT = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.uninstall.list.label.text"); // NOI18N
|
||||
public static final String DEFAULT_INSTALLATION_SIZE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.installation.size"); // NOI18N
|
||||
public static final String DEFAULT_DOWNLOAD_SIZE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.download.size"); // NOI18N
|
||||
public static final String DEFAULT_NEXT_BUTTON_TEXT = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.next.button.text"); // NOI18N
|
||||
public static final String DEFAULT_NEXT_BUTTON_TEXT_UNINSTALL = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.next.button.text.uninstall"); // NOI18N
|
||||
public static final String DEFAULT_ERROR_NOT_ENOUGH_SPACE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.not.enough.space"); // NOI18N
|
||||
public static final String DEFAULT_ERROR_CANNOT_CHECK_SPACE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.cannot.check.space");// NOI18N
|
||||
public static final String DEFAULT_ERROR_LOGIC_ACCESS = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.logic.access");// NOI18N
|
||||
public static final String DEFAULT_ERROR_FSROOTS = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.fsroots"); // NOI18N
|
||||
public static final String DEFAULT_ERROR_NON_EXISTENT_ROOT = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.non.existent.root"); // NOI18N
|
||||
public static final String DEFAULT_ERROR_CANNOT_WRITE = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.error.cannot.write"); // NOI18N
|
||||
public static final String DEFAULT_REMOVE_APP_USERDIR_TEXT = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.remove.app.userdir.text"); // NOI18N
|
||||
|
||||
public static final String DEFAULT_REMOVE_APP_USERDIR_CHECKBOX = |
||||
ResourceUtils.getString(PreInstallSummaryPanel.class, |
||||
"PrISP.remove.app.userdir.checkbox"); // NOI18N
|
||||
public static final long REQUIRED_SPACE_ADDITION = |
||||
10L * 1024L * 1024L; // 10MB
|
||||
} |
@ -1,333 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
package org.mycompany.installer.wizard.components.panels; |
||||
|
||||
import java.awt.Component; |
||||
import java.awt.Dimension; |
||||
import java.awt.GridBagConstraints; |
||||
import java.awt.Insets; |
||||
import java.io.File; |
||||
import java.util.List; |
||||
import org.netbeans.installer.product.Registry; |
||||
import org.netbeans.installer.product.components.Product; |
||||
import org.netbeans.installer.utils.ErrorManager; |
||||
import org.netbeans.installer.utils.LogManager; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.StringUtils; |
||||
import org.netbeans.installer.utils.SystemUtils; |
||||
import org.netbeans.installer.utils.exceptions.InitializationException; |
||||
import org.netbeans.installer.utils.helper.Platform; |
||||
import org.netbeans.installer.utils.helper.swing.NbiPanel; |
||||
import org.netbeans.installer.utils.helper.swing.NbiTextPane; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel.ErrorMessagePanelSwingUi; |
||||
import org.netbeans.installer.wizard.components.panels.ErrorMessagePanel.ErrorMessagePanelUi; |
||||
import org.netbeans.installer.wizard.containers.SwingContainer; |
||||
import org.netbeans.installer.wizard.ui.SwingUi; |
||||
import org.netbeans.installer.wizard.ui.WizardUi; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class WelcomePanel extends ErrorMessagePanel { |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
private Registry bundledRegistry; |
||||
private Registry defaultRegistry; |
||||
|
||||
public WelcomePanel() { |
||||
setProperty(TITLE_PROPERTY, |
||||
DEFAULT_TITLE); |
||||
setProperty(DESCRIPTION_PROPERTY, |
||||
DEFAULT_DESCRIPTION); |
||||
|
||||
setProperty(WELCOME_TEXT_PROPERTY, |
||||
DEFAULT_WELCOME_TEXT); |
||||
|
||||
setProperty(WELCOME_ALREADY_INSTALLED_TEXT_PROPERTY, |
||||
DEFAULT_WELCOME_ALREADY_INSTALLED_TEXT); |
||||
setProperty(WELCOME_ALREADY_INSTALLED_NEXT_BUTTON_TEXT_PROPERTY, |
||||
DEFAULT_WELCOME_ALREADY_INSTALLED_NEXT_BUTTON_TEXT); |
||||
|
||||
try { |
||||
defaultRegistry = Registry.getInstance(); |
||||
bundledRegistry = new Registry(); |
||||
|
||||
final String bundledRegistryUri = System.getProperty( |
||||
Registry.BUNDLED_PRODUCT_REGISTRY_URI_PROPERTY); |
||||
if (bundledRegistryUri != null) { |
||||
bundledRegistry.loadProductRegistry(bundledRegistryUri); |
||||
} else { |
||||
bundledRegistry.loadProductRegistry( |
||||
Registry.DEFAULT_BUNDLED_PRODUCT_REGISTRY_URI); |
||||
} |
||||
} catch (InitializationException e) { |
||||
ErrorManager.notifyError("Cannot load bundled registry", e); |
||||
} |
||||
|
||||
} |
||||
|
||||
Registry getBundledRegistry() { |
||||
return bundledRegistry; |
||||
} |
||||
|
||||
@Override |
||||
public WizardUi getWizardUi() { |
||||
if (wizardUi == null) { |
||||
wizardUi = new WelcomePanelUi(this); |
||||
} |
||||
|
||||
return wizardUi; |
||||
} |
||||
|
||||
@Override |
||||
public boolean canExecuteForward() { |
||||
return canExecute(); |
||||
} |
||||
|
||||
@Override |
||||
public boolean canExecuteBackward() { |
||||
return canExecute(); |
||||
} |
||||
|
||||
// private //////////////////////////////////////////////////////////////////////
|
||||
private boolean canExecute() { |
||||
return bundledRegistry.getNodes().size() > 1; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Inner Classes
|
||||
public static class WelcomePanelUi extends ErrorMessagePanelUi { |
||||
|
||||
protected WelcomePanel component; |
||||
|
||||
public WelcomePanelUi(WelcomePanel component) { |
||||
super(component); |
||||
|
||||
this.component = component; |
||||
} |
||||
|
||||
@Override |
||||
public SwingUi getSwingUi(SwingContainer container) { |
||||
if (swingUi == null) { |
||||
swingUi = new WelcomePanelSwingUi(component, container); |
||||
} |
||||
|
||||
return super.getSwingUi(container); |
||||
} |
||||
} |
||||
|
||||
public static class WelcomePanelSwingUi extends ErrorMessagePanelSwingUi { |
||||
|
||||
protected WelcomePanel panel; |
||||
private NbiTextPane textPane; |
||||
|
||||
private NbiPanel leftImagePanel; |
||||
ValidatingThread validatingThread; |
||||
|
||||
public WelcomePanelSwingUi( |
||||
final WelcomePanel component, |
||||
final SwingContainer container) { |
||||
super(component, container); |
||||
|
||||
this.panel = component; |
||||
|
||||
initComponents(); |
||||
} |
||||
|
||||
@Override |
||||
public String getTitle() { |
||||
return null; // the welcome page does not have a title
|
||||
} |
||||
|
||||
// protected ////////////////////////////////////////////////////////////////
|
||||
@Override |
||||
protected void initializeContainer() { |
||||
super.initializeContainer(); |
||||
|
||||
container.getBackButton().setVisible(false); |
||||
} |
||||
|
||||
@Override |
||||
protected void initialize() { |
||||
|
||||
textPane.setContentType("text/html"); |
||||
textPane.setText(StringUtils.format(panel.getProperty(WELCOME_TEXT_PROPERTY))); |
||||
List<Product> toInstall = Registry.getInstance().getProductsToInstall(); |
||||
if(toInstall.isEmpty()) { |
||||
List <Product> list = panel.getBundledRegistry().getProducts(); |
||||
if(list.size() == 1) { |
||||
if(SystemUtils.getCurrentPlatform().isCompatibleWith(list.get(0).getPlatforms())) { |
||||
File installationLocation = list.get(0).getInstallationLocation(); |
||||
textPane.setText( |
||||
StringUtils.format( |
||||
panel.getProperty(WELCOME_ALREADY_INSTALLED_TEXT_PROPERTY), |
||||
list.get(0).getDisplayName(), |
||||
installationLocation.getAbsolutePath())); |
||||
} else { |
||||
textPane.setText( |
||||
StringUtils.format( |
||||
WELCOME_INCOMPATIBLE_PLATFORM_TEXT, |
||||
list.get(0).getDisplayName())); |
||||
} |
||||
container.getCancelButton().setVisible(false); |
||||
container.getNextButton().setText(panel.getProperty( |
||||
WELCOME_ALREADY_INSTALLED_NEXT_BUTTON_TEXT_PROPERTY)); |
||||
} |
||||
} |
||||
|
||||
super.initialize(); |
||||
} |
||||
|
||||
// private //////////////////////////////////////////////////////////////////
|
||||
private void initComponents() { |
||||
// textPane /////////////////////////////////////////////////////////////
|
||||
textPane = new NbiTextPane(); |
||||
|
||||
leftImagePanel = new NbiPanel(); |
||||
int width = 0; |
||||
int height = 0; |
||||
final String topLeftImage = SystemUtils.resolveString( |
||||
System.getProperty( |
||||
WELCOME_PAGE_LEFT_TOP_IMAGE_PROPERTY)); |
||||
final String bottomLeftImage = SystemUtils.resolveString( |
||||
System.getProperty( |
||||
WELCOME_PAGE_LEFT_BOTTOM_IMAGE_PROPERTY)); |
||||
|
||||
int bottomAnchor = NbiPanel.ANCHOR_BOTTOM_LEFT; |
||||
|
||||
if (topLeftImage != null) { |
||||
leftImagePanel.setBackgroundImage(topLeftImage, ANCHOR_TOP_LEFT); |
||||
width = leftImagePanel.getBackgroundImage(NbiPanel.ANCHOR_TOP_LEFT).getIconWidth(); |
||||
height += leftImagePanel.getBackgroundImage(NbiPanel.ANCHOR_TOP_LEFT).getIconHeight(); |
||||
} |
||||
if (bottomLeftImage != null) { |
||||
leftImagePanel.setBackgroundImage(bottomLeftImage, bottomAnchor); |
||||
width = leftImagePanel.getBackgroundImage(bottomAnchor).getIconWidth(); |
||||
height += leftImagePanel.getBackgroundImage(bottomAnchor).getIconHeight(); |
||||
} |
||||
|
||||
leftImagePanel.setPreferredSize(new Dimension(width, height)); |
||||
leftImagePanel.setMaximumSize(new Dimension(width, height)); |
||||
leftImagePanel.setMinimumSize(new Dimension(width, 0)); |
||||
leftImagePanel.setSize(new Dimension(width, height)); |
||||
|
||||
leftImagePanel.setOpaque(false); |
||||
// this /////////////////////////////////////////////////////////////////
|
||||
int dy = 0; |
||||
add(leftImagePanel, new GridBagConstraints( |
||||
0, 0, // x, y
|
||||
1, 100, // width, height
|
||||
0.0, 1.0, // weight-x, weight-y
|
||||
GridBagConstraints.WEST, // anchor
|
||||
GridBagConstraints.VERTICAL, // fill
|
||||
new Insets(0, 0, 0, 0), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
add(textPane, new GridBagConstraints( |
||||
1, dy++, // x, y
|
||||
4, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.LINE_START, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(10, 11, 11, 11), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
NbiTextPane separatorPane = new NbiTextPane(); |
||||
|
||||
separatorPane = new NbiTextPane(); |
||||
add(separatorPane, new GridBagConstraints( |
||||
3, dy, // x, y
|
||||
1, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.CENTER, // anchor
|
||||
GridBagConstraints.BOTH, // fill
|
||||
new Insets(0, 0, 0, 0), // padding
|
||||
0, 0)); // padx, pady - ???
|
||||
|
||||
|
||||
// move error label after the left welcome image
|
||||
Component errorLabel = getComponent(0); |
||||
getLayout().removeLayoutComponent(errorLabel); |
||||
add(errorLabel, new GridBagConstraints( |
||||
1, 99, // x, y
|
||||
99, 1, // width, height
|
||||
1.0, 0.0, // weight-x, weight-y
|
||||
GridBagConstraints.CENTER, // anchor
|
||||
GridBagConstraints.HORIZONTAL, // fill
|
||||
new Insets(4, 11, 4, 0), // padding
|
||||
0, 0)); // ??? (padx, pady)
|
||||
|
||||
|
||||
} |
||||
} |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String DEFAULT_TITLE = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.title"); |
||||
public static final String DEFAULT_DESCRIPTION = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.description"); // NOI18N
|
||||
public static final String WELCOME_TEXT_PROPERTY = |
||||
"welcome.text"; // NOI18N
|
||||
public static final String WELCOME_ALREADY_INSTALLED_TEXT_PROPERTY = |
||||
"welcome.already.installed.text"; // NOI18N
|
||||
public static final String WELCOME_ALREADY_INSTALLED_NEXT_BUTTON_TEXT_PROPERTY = |
||||
"welcome.already.installed.next.button.text";//NOI18N
|
||||
public static final String WELCOME_INCOMPATIBLE_PLATFORM_TEXT = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.incompatible.platform.text");//NOI18N
|
||||
|
||||
public static final String DEFAULT_WELCOME_ALREADY_INSTALLED_NEXT_BUTTON_TEXT = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.already.installed.next.button.text");//NOI18N
|
||||
|
||||
public static final String DEFAULT_WELCOME_TEXT = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.welcome.text"); // NOI18N
|
||||
|
||||
public static final String DEFAULT_WELCOME_ALREADY_INSTALLED_TEXT = |
||||
ResourceUtils.getString(WelcomePanel.class, |
||||
"WP.already.installed.text"); // NOI18N
|
||||
|
||||
public static final String WELCOME_PAGE_LEFT_TOP_IMAGE_PROPERTY = |
||||
"nbi.wizard.ui.swing.welcome.left.top.image";//NOI18N
|
||||
public static final String WELCOME_PAGE_LEFT_BOTTOM_IMAGE_PROPERTY = |
||||
"nbi.wizard.ui.swing.welcome.left.bottom.image";//NOI18N
|
||||
} |
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 5.0 KiB |
@ -1,43 +0,0 @@ |
||||
# |
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
# |
||||
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
# |
||||
# Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
# Other names may be trademarks of their respective owners. |
||||
# |
||||
# The contents of this file are subject to the terms of either the GNU General Public |
||||
# License Version 2 only ("GPL") or the Common Development and Distribution |
||||
# License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
# compliance with the License. You can obtain a copy of the License at |
||||
# http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the |
||||
# License for the specific language governing permissions and limitations under the |
||||
# License. When distributing the software, include this License Header Notice in |
||||
# each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
# designates this particular file as subject to the "Classpath" exception as provided |
||||
# by Oracle in the GPL Version 2 section of the License file that accompanied this code. |
||||
# If applicable, add the following below the License Header, with the fields enclosed |
||||
# by brackets [] replaced by your own identifying information: |
||||
# "Portions Copyrighted [year] [name of copyright owner]" |
||||
# |
||||
# Contributor(s): |
||||
# |
||||
# The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
# is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
# Rights Reserved. |
||||
# |
||||
# If you wish your version of this file to be governed by only the CDDL or only the |
||||
# GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
# this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
# you do not indicate a single choice of license, a recipient has the option to |
||||
# distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
# to extend the choice of license to its licensees as provided above. However, if you |
||||
# add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the |
||||
# option applies only if the new code is made subject to such option by the copyright |
||||
# holder. |
||||
# |
||||
|
||||
##################################################################################### |
||||
# MainSequence.java |
||||
MS.IA.title=Installation |
||||
MS.IA.description=Please wait while the installer installs {product-name}. |
@ -1,154 +0,0 @@ |
||||
/* |
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
||||
* |
||||
* Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. |
||||
* |
||||
* Oracle and Java are registered trademarks of Oracle and/or its affiliates. |
||||
* Other names may be trademarks of their respective owners. |
||||
* |
||||
* The contents of this file are subject to the terms of either the GNU General |
||||
* Public License Version 2 only ("GPL") or the Common Development and Distribution |
||||
* License("CDDL") (collectively, the "License"). You may not use this file except in |
||||
* compliance with the License. You can obtain a copy of the License at |
||||
* http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
|
||||
* License for the specific language governing permissions and limitations under the |
||||
* License. When distributing the software, include this License Header Notice in |
||||
* each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle |
||||
* designates this particular file as subject to the "Classpath" exception as |
||||
* provided by Oracle in the GPL Version 2 section of the License file that |
||||
* accompanied this code. If applicable, add the following below the License Header, |
||||
* with the fields enclosed by brackets [] replaced by your own identifying |
||||
* information: "Portions Copyrighted [year] [name of copyright owner]" |
||||
* |
||||
* Contributor(s): |
||||
* |
||||
* The Original Software is NetBeans. The Initial Developer of the Original Software |
||||
* is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All |
||||
* Rights Reserved. |
||||
* |
||||
* If you wish your version of this file to be governed by only the CDDL or only the |
||||
* GPL Version 2, indicate your decision by adding "[Contributor] elects to include |
||||
* this software in this distribution under the [CDDL or GPL Version 2] license." If |
||||
* you do not indicate a single choice of license, a recipient has the option to |
||||
* distribute your version of this file under either the CDDL, the GPL Version 2 or |
||||
* to extend the choice of license to its licensees as provided above. However, if |
||||
* you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then |
||||
* the option applies only if the new code is made subject to such option by the |
||||
* copyright holder. |
||||
*/ |
||||
package org.mycompany.installer.wizard.components.sequences; |
||||
|
||||
import org.netbeans.installer.wizard.components.sequences.ProductWizardSequence; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.mycompany.installer.wizard.components.panels.PostInstallSummaryPanel; |
||||
import org.mycompany.installer.wizard.components.panels.PreInstallSummaryPanel; |
||||
import org.netbeans.installer.product.components.Product; |
||||
import org.netbeans.installer.product.Registry; |
||||
import org.netbeans.installer.utils.ResourceUtils; |
||||
import org.netbeans.installer.utils.helper.ExecutionMode; |
||||
import org.netbeans.installer.wizard.components.WizardSequence; |
||||
import org.netbeans.installer.wizard.components.actions.DownloadConfigurationLogicAction; |
||||
import org.netbeans.installer.wizard.components.actions.DownloadInstallationDataAction; |
||||
import org.netbeans.installer.wizard.components.actions.InstallAction; |
||||
import org.netbeans.installer.wizard.components.actions.UninstallAction; |
||||
import org.netbeans.installer.wizard.components.panels.LicensesPanel; |
||||
|
||||
/** |
||||
* |
||||
* @author Dmitry Lipin |
||||
*/ |
||||
public class MainSequence extends WizardSequence { |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Instance
|
||||
|
||||
private DownloadConfigurationLogicAction downloadConfigurationLogicAction; |
||||
private LicensesPanel licensesPanel; |
||||
private PreInstallSummaryPanel preInstallSummaryPanel; |
||||
private UninstallAction uninstallAction; |
||||
private DownloadInstallationDataAction downloadInstallationDataAction; |
||||
private InstallAction installAction; |
||||
private PostInstallSummaryPanel postInstallSummaryPanel; |
||||
private Map<Product, ProductWizardSequence> productSequences; |
||||
|
||||
public MainSequence() { |
||||
downloadConfigurationLogicAction = new DownloadConfigurationLogicAction(); |
||||
licensesPanel = new LicensesPanel(); |
||||
preInstallSummaryPanel = new PreInstallSummaryPanel(); |
||||
uninstallAction = new UninstallAction(); |
||||
downloadInstallationDataAction = new DownloadInstallationDataAction(); |
||||
installAction = new InstallAction(); |
||||
postInstallSummaryPanel = new PostInstallSummaryPanel(); |
||||
productSequences = new HashMap<Product, ProductWizardSequence>(); |
||||
|
||||
installAction.setProperty(InstallAction.TITLE_PROPERTY, |
||||
DEFAULT_IA_TITLE); |
||||
installAction.setProperty(InstallAction.DESCRIPTION_PROPERTY, |
||||
DEFAULT_IA_DESCRIPTION); |
||||
} |
||||
|
||||
@Override |
||||
public void executeForward() { |
||||
final Registry registry = Registry.getInstance(); |
||||
final List<Product> toInstall = registry.getProductsToInstall(); |
||||
final List<Product> toUninstall = registry.getProductsToUninstall(); |
||||
|
||||
// remove all current children (if there are any), as the components
|
||||
// selection has probably changed and we need to rebuild from scratch
|
||||
getChildren().clear(); |
||||
|
||||
// the set of wizard components differs greatly depending on the execution
|
||||
// mode - if we're installing, we ask for input, run a wizard sequence for
|
||||
// each selected component and then download and install; if we're creating
|
||||
// a bundle, we only need to download and package things
|
||||
|
||||
if (toInstall.size() > 0) { |
||||
addChild(downloadConfigurationLogicAction); |
||||
addChild(licensesPanel); |
||||
|
||||
for (Product product : toInstall) { |
||||
if (!productSequences.containsKey(product)) { |
||||
productSequences.put( |
||||
product, |
||||
new ProductWizardSequence(product)); |
||||
} |
||||
|
||||
addChild(productSequences.get(product)); |
||||
} |
||||
} |
||||
|
||||
addChild(preInstallSummaryPanel); |
||||
|
||||
if (toUninstall.size() > 0) { |
||||
addChild(uninstallAction); |
||||
} |
||||
|
||||
if (toInstall.size() > 0) { |
||||
addChild(downloadInstallationDataAction); |
||||
addChild(installAction); |
||||
} |
||||
|
||||
addChild(postInstallSummaryPanel); |
||||
|
||||
super.executeForward(); |
||||
} |
||||
|
||||
@Override |
||||
public boolean canExecuteForward() { |
||||
return ExecutionMode.NORMAL == ExecutionMode.getCurrentExecutionMode() && |
||||
(Registry.getInstance().getProductsToInstall().size() > 0 || |
||||
Registry.getInstance().getProductsToUninstall().size() > 0); |
||||
} |
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
// Constants
|
||||
public static final String DEFAULT_IA_TITLE = |
||||
ResourceUtils.getString( |
||||
MainSequence.class, |
||||
"MS.IA.title"); // NOI18N
|
||||
public static final String DEFAULT_IA_DESCRIPTION = |
||||
ResourceUtils.getString( |
||||
MainSequence.class, |
||||
"MS.IA.description"); // NOI18N
|
||||
|
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue