prepare build.xml files for release steps (not completed)
authorjsurfer <jsurfer>
Sat, 4 Sep 2004 08:59:43 +0000 (08:59 +0000)
committerjsurfer <jsurfer>
Sat, 4 Sep 2004 08:59:43 +0000 (08:59 +0000)
36 files changed:
archive/net.sourceforge.phpeclipse.css.core/build.properties
archive/net.sourceforge.phpeclipse.css.core/build.xml [new file with mode: 0644]
archive/net.sourceforge.phpeclipse.css.core/plugin.xml
archive/net.sourceforge.phpeclipse.css.ui/build.properties
archive/net.sourceforge.phpeclipse.css.ui/build.xml [new file with mode: 0644]
archive/net.sourceforge.phpeclipse.css.ui/plugin.xml
archive/net.sourceforge.phpeclipse.html.ui/build.properties
archive/net.sourceforge.phpeclipse.html.ui/build.xml [new file with mode: 0644]
archive/net.sourceforge.phpeclipse.html.ui/plugin.xml
archive/net.sourceforge.phpeclipse.js.core/build.properties
archive/net.sourceforge.phpeclipse.js.core/build.xml [new file with mode: 0644]
archive/net.sourceforge.phpeclipse.js.core/plugin.xml
archive/net.sourceforge.phpeclipse.js.ui/build.properties
archive/net.sourceforge.phpeclipse.js.ui/build.xml [new file with mode: 0644]
archive/net.sourceforge.phpeclipse.quantum.sql/build.properties
archive/net.sourceforge.phpeclipse.quantum.sql/build.xml
archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties [deleted file]
net.sourceforge.phpeclipse.core/build.properties
net.sourceforge.phpeclipse.core/build.xml [new file with mode: 0644]
net.sourceforge.phpeclipse.core/plugin.xml
net.sourceforge.phpeclipse.debug.core/build.properties
net.sourceforge.phpeclipse.debug.ui/build.properties
net.sourceforge.phpeclipse.launching/build.properties
net.sourceforge.phpeclipse.phphelp/build.properties
net.sourceforge.phpeclipse.smarty.ui/build.properties
net.sourceforge.phpeclipse.smarty.ui/build.xml [new file with mode: 0644]
net.sourceforge.phpeclipse.ui/build.properties
net.sourceforge.phpeclipse.xml.core/build.properties
net.sourceforge.phpeclipse.xml.core/plugin.properties
net.sourceforge.phpeclipse.xml.core/plugin.xml
net.sourceforge.phpeclipse.xml.ui/build.properties
net.sourceforge.phpeclipse.xml.ui/plugin.properties
net.sourceforge.phpeclipse.xml.ui/plugin.xml
net.sourceforge.phpeclipse/build.properties
net.sourceforge.phpeclipse/build.xml
net.sourceforge.phpeclipse/dev.properties [deleted file]

index 3dcad1e..890a40e 100644 (file)
@@ -3,10 +3,4 @@ bin.includes = plugin.xml,\
                *.jar,\
                csscore.jar,\
                plugin.properties
-src.includes = .project,\
-               .classpath,\
-               build.properties,\
-               plugin.properties,\
-               plugin.xml,\
-               schema/,\
-               src/
+src.includes = src/
diff --git a/archive/net.sourceforge.phpeclipse.css.core/build.xml b/archive/net.sourceforge.phpeclipse.css.core/build.xml
new file mode 100644 (file)
index 0000000..3b9853e
--- /dev/null
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.css.core" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.css.core">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.css.core for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.css.core_0.0.1.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="csscore.jar" depends="init" unless="csscore.jar" description="Create jar: csscore.jar.">
+               <delete dir="${temp.folder}/csscore.jar.bin"/>
+               <mkdir dir="${temp.folder}/csscore.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/csscore.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"           >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/webcore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/csscore.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/csscore.jar" basedir="${temp.folder}/csscore.jar.bin"/>
+               <delete dir="${temp.folder}/csscore.jar.bin"/>
+       </target>
+
+       <target name="csscoresrc.zip" depends="init" unless="csscoresrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/csscoresrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.css.core.">
+               <available property="csscore.jar" file="${build.result.folder}/csscore.jar"/>
+               <antcall target="csscore.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="csscoresrc.zip" file="${build.result.folder}/csscoresrc.zip"/>
+               <antcall target="csscoresrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="csscore.jar"                    />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,*.jar,csscore.jar,plugin.properties"                     />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1"/>
+               <copy file="${build.result.folder}/csscoresrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" failonerror="false">
+                       <fileset dir="${basedir}" includes=".project,.classpath,build.properties,plugin.properties,plugin.xml,schema/,src/"                     />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1"/>
+               <copy file="${temp.folder}/csscore.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.core_0.0.1" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.css.core of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/csscore.jar"/>
+               <delete file="${build.result.folder}/csscoresrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.css.core_0.0.1.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.css.core_0.0.1.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.css.core" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.css.core.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.css.core_0.0.1.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index 87a6460..fb2ea58 100644 (file)
@@ -2,9 +2,9 @@
 <?eclipse version="3.0"?>
 <plugin
    id="net.sourceforge.phpeclipse.css.core"
-   name="Web Development Tools CSS Core"
-   version="0.0.1"
-   provider-name="WDTE Project"
+   name="PHPeclipse Web Development Tools CSS Core"
+   version="1.1.0"
+   provider-name="WDTE Project/PHPeclipse.de"
    class="net.sourceforge.phpeclipse.css.core.CssCore">
 
    <runtime>
index b7c152d..4b62277 100644 (file)
@@ -3,13 +3,6 @@ bin.includes = plugin.xml,\
                cssui.jar,\
                icons/,\
                plugin.properties
-src.includes = schema/,\
-               .classpath,\
-               .project,\
-               build.properties,\
-               plugin.properties,\
-               plugin.xml,\
-               icons/,\
-               src/
-source.cssui.jar = src
 bin.excludes = icons/.cvsignore
+src.includes = src/
+
diff --git a/archive/net.sourceforge.phpeclipse.css.ui/build.xml b/archive/net.sourceforge.phpeclipse.css.ui/build.xml
new file mode 100644 (file)
index 0000000..ba60b73
--- /dev/null
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.css.ui" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.css.ui">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.css.ui for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.css.ui_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.css.ui_1.1.0" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.css.ui.">
+       </target>
+
+       <target name="build.sources" depends="init">
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.ui_1.1.0"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.ui_1.1.0" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,plugin*.properties,cssui.jar,icons/,plugin.properties" excludes="icons/.cvsignore"                       />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.css.ui_1.1.0" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.css.ui of all the zips, jars and logs created.">
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.css.ui_1.1.0.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.css.ui_1.1.0.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.css.ui" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.css.ui.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.css.ui_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index ad01d4c..52e98d0 100644 (file)
@@ -3,7 +3,7 @@
 <plugin
    id="net.sourceforge.phpeclipse.css.ui"
    name="%pluginName"
-   version="0.0.1"
+   version="1.1.0"
    provider-name="%providerName"
    class="net.sourceforge.phpeclipse.css.ui.CssUI">
 
index d13b964..cd30b9b 100644 (file)
@@ -2,3 +2,4 @@ source.htmlui.jar = src/
 output.htmlui.jar = bin/
 bin.includes = plugin.xml,\
                htmlui.jar
+src.includes = src/
\ No newline at end of file
diff --git a/archive/net.sourceforge.phpeclipse.html.ui/build.xml b/archive/net.sourceforge.phpeclipse.html.ui/build.xml
new file mode 100644 (file)
index 0000000..42ced38
--- /dev/null
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.html.ui" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.html.ui">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.html.ui for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.html.ui_0.0.1.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="htmlui.jar" depends="init" unless="htmlui.jar" description="Create jar: htmlui.jar.">
+               <delete dir="${temp.folder}/htmlui.jar.bin"/>
+               <mkdir dir="${temp.folder}/htmlui.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/htmlui.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"            >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/xmlui.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/webcore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/xmlcore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/wdtui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
+                               <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/webbrowser.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/htmlui.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/htmlui.jar" basedir="${temp.folder}/htmlui.jar.bin"/>
+               <delete dir="${temp.folder}/htmlui.jar.bin"/>
+       </target>
+
+       <target name="htmluisrc.zip" depends="init" unless="htmluisrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/htmluisrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.html.ui.">
+               <available property="htmlui.jar" file="${build.result.folder}/htmlui.jar"/>
+               <antcall target="htmlui.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="htmluisrc.zip" file="${build.result.folder}/htmluisrc.zip"/>
+               <antcall target="htmluisrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="htmlui.jar"                     />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,htmlui.jar"                      />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1"/>
+               <copy file="${build.result.folder}/htmluisrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1"/>
+               <copy file="${temp.folder}/htmlui.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.html.ui_0.0.1" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.html.ui of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/htmlui.jar"/>
+               <delete file="${build.result.folder}/htmluisrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.html.ui_0.0.1.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.html.ui_0.0.1.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.html.ui" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.html.ui.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.html.ui_0.0.1.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index 2553033..93ada89 100644 (file)
@@ -2,9 +2,9 @@
 <?eclipse version="3.0"?>
 <plugin
    id="net.sourceforge.phpeclipse.html.ui"
-   name="Web Development Tools HTML UI"
-   version="0.0.1"
-   provider-name="WDTE Project"
+   name="PHPeclipse Web Development Tools HTML UI"
+   version="1.1.0"
+   provider-name="WDTE Project/PHPeclipse.de"
    class="net.sourceforge.phpeclipse.html.ui.HTMLUI">
    
    <runtime>
index dd10961..e8c2526 100644 (file)
@@ -3,13 +3,8 @@ bin.includes = icons/,\
                plugin.xml,\
                plugin.properties,\
                net.sf.wdte.js.core.jar
-src.includes = src/,\
-               scripts/,\
-               plugin.xml,\
-               build.properties,\
-               .project,\
-               .classpath,\
-               plugin.properties
+src.includes = src/
 source.net.sf.wdte.js.core.jar = src/
 jars.compile.order = net.sf.wdte.js.core.jar
 output.net.sf.wdte.js.core.jar = bin/
\ No newline at end of file
diff --git a/archive/net.sourceforge.phpeclipse.js.core/build.xml b/archive/net.sourceforge.phpeclipse.js.core/build.xml
new file mode 100644 (file)
index 0000000..08cdd58
--- /dev/null
@@ -0,0 +1,156 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.js.core" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.js.core">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.js.core for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.js.core_0.0.9.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="net.sf.wdte.js.core.jar" depends="init" unless="net.sf.wdte.js.core.jar" description="Create jar: net.sf.wdte.js.core.jar.">
+               <delete dir="${temp.folder}/net.sf.wdte.js.core.jar.bin"/>
+               <mkdir dir="${temp.folder}/net.sf.wdte.js.core.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/net.sf.wdte.js.core.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"               >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
+                               <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
+                               <pathelement path="net.sourceforge.phpeclipse.js.core.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/net.sf.wdte.js.core.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/net.sf.wdte.js.core.jar" basedir="${temp.folder}/net.sf.wdte.js.core.jar.bin"/>
+               <delete dir="${temp.folder}/net.sf.wdte.js.core.jar.bin"/>
+       </target>
+
+       <target name="net.sf.wdte.js.coresrc.zip" depends="init" unless="net.sf.wdte.js.coresrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/net.sf.wdte.js.coresrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.js.core.">
+               <available property="net.sf.wdte.js.core.jar" file="${build.result.folder}/net.sf.wdte.js.core.jar"/>
+               <antcall target="net.sf.wdte.js.core.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="net.sf.wdte.js.coresrc.zip" file="${build.result.folder}/net.sf.wdte.js.coresrc.zip"/>
+               <antcall target="net.sf.wdte.js.coresrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="net.sf.wdte.js.core.jar"                        />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" failonerror="true">
+                       <fileset dir="${basedir}" includes="icons/,jseditorsrc.zip,plugin.xml,plugin.properties,net.sf.wdte.js.core.jar"                        />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9"/>
+               <copy file="${build.result.folder}/net.sf.wdte.js.coresrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9"/>
+               <copy file="${temp.folder}/net.sf.wdte.js.core.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.core_0.0.9" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.js.core of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/net.sf.wdte.js.core.jar"/>
+               <delete file="${build.result.folder}/net.sf.wdte.js.coresrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.js.core_0.0.9.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.js.core_0.0.9.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.js.core" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.js.core.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.js.core_0.0.9.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index 4a60e64..c8880b7 100644 (file)
@@ -3,7 +3,7 @@
 <plugin
    id="net.sourceforge.phpeclipse.js.core"
    name="%pluginName"
-   version="0.0.9"
+   version="1.1.0"
    provider-name="%providerName"
    class="net.sourceforge.phpeclipse.js.core.JSCorePlugin">
 
index c2bb87a..28a6fe2 100644 (file)
@@ -3,14 +3,7 @@ bin.includes = plugin.xml,\
                icons/,\
                plugin.properties,\
                net.sf.wdte.js.ui.jar
-src.includes = src/,\
-               plugin.xml,\
-               .template,\
-               .project,\
-               .classpath,\
-               icons/,\
-               plugin.properties,\
-               build.properties
+src.includes = src/
 jars.compile.order = net.sf.wdte.js.ui.jar
 source.net.sf.wdte.js.ui.jar = src/
 output.net.sf.wdte.js.ui.jar = bin/
diff --git a/archive/net.sourceforge.phpeclipse.js.ui/build.xml b/archive/net.sourceforge.phpeclipse.js.ui/build.xml
new file mode 100644 (file)
index 0000000..8356894
--- /dev/null
@@ -0,0 +1,186 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.js.ui" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.js.ui">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.js.ui for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.js.ui_0.0.9.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="net.sf.wdte.js.ui.jar" depends="init" unless="net.sf.wdte.js.ui.jar" description="Create jar: net.sf.wdte.js.ui.jar.">
+               <delete dir="${temp.folder}/net.sf.wdte.js.ui.jar.bin"/>
+               <mkdir dir="${temp.folder}/net.sf.wdte.js.ui.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/net.sf.wdte.js.ui.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"         >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
+                               <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/wdtui.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/webcore.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/webbrowser.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.js.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.js.core/net.sourceforge.phpeclipse.js.core.jar"/>
+                               <pathelement path="net.sourceforge.phpeclipse.js.ui.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/net.sf.wdte.js.ui.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/net.sf.wdte.js.ui.jar" basedir="${temp.folder}/net.sf.wdte.js.ui.jar.bin"/>
+               <delete dir="${temp.folder}/net.sf.wdte.js.ui.jar.bin"/>
+       </target>
+
+       <target name="net.sf.wdte.js.uisrc.zip" depends="init" unless="net.sf.wdte.js.uisrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/net.sf.wdte.js.uisrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.js.ui.">
+               <available property="net.sf.wdte.js.ui.jar" file="${build.result.folder}/net.sf.wdte.js.ui.jar"/>
+               <antcall target="net.sf.wdte.js.ui.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="net.sf.wdte.js.uisrc.zip" file="${build.result.folder}/net.sf.wdte.js.uisrc.zip"/>
+               <antcall target="net.sf.wdte.js.uisrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="net.sf.wdte.js.ui.jar"                  />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,*.jar,icons/,plugin.properties,net.sf.wdte.js.ui.jar"                    />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9"/>
+               <copy file="${build.result.folder}/net.sf.wdte.js.uisrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9"/>
+               <copy file="${temp.folder}/net.sf.wdte.js.ui.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.js.ui_0.0.9" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.js.ui of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/net.sf.wdte.js.ui.jar"/>
+               <delete file="${build.result.folder}/net.sf.wdte.js.uisrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.js.ui_0.0.9.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.js.ui_0.0.9.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.js.ui" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.js.ui.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.js.ui_0.0.9.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index c1c75db..6d05fe5 100644 (file)
@@ -5,6 +5,6 @@ bin.includes = icons/,\
                plugin.properties,\
                install.txt,\
                .classpath,\
-               .project,\
-               
+               .project
 source.quantum.jar = src/
+src.includes = src/
\ No newline at end of file
index c55c530..db3adbf 100644 (file)
@@ -37,7 +37,7 @@
                <antcall target="gather.bin.parts">
                        <param name="destination.temp.folder" value="${temp.folder}/"/>
                </antcall>
-               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" filesonly="false" whenempty="skip" update="false"/>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.4.2.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" filesonly="false" whenempty="skip" update="false"/>
                <delete dir="${temp.folder}"/>
        </target>
 
@@ -67,6 +67,7 @@
                                <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/>
                                <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
                                <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
                                <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
                                <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/>
                                <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/>
@@ -92,7 +93,7 @@
                        </javac>
                <!-- Copy necessary resources -->
                <copy todir="${temp.folder}/quantum.jar.bin" failonerror="true">
-                       <fileset dir="src/" excludes="**/*.java"                        />
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
                </copy>
                <mkdir dir="${build.result.folder}"/>
                <jar jarfile="${build.result.folder}/quantum.jar" basedir="${temp.folder}/quantum.jar.bin"/>
        </target>
 
        <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
-               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/>
-               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="true">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" failonerror="true">
                        <fileset dir="${build.result.folder}" includes="quantum.jar"                    />
                </copy>
-               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="true">
-                       <fileset dir="${basedir}" includes="icons/,doc/,*.jar,plugin.xml,plugin.properties,install.txt,.classpath,.project,"                    />
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" failonerror="true">
+                       <fileset dir="${basedir}" includes="icons/,doc/,*.jar,plugin.xml,plugin.properties,install.txt,.classpath,.project"                     />
                </copy>
        </target>
 
        </target>
 
        <target name="gather.sources" depends="init" if="destination.temp.folder">
-               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/>
-               <copy file="${build.result.folder}/quantumsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="false"/>
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2"/>
+               <copy file="${build.result.folder}/quantumsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
        </target>
 
        <target name="gather.logs" depends="init" if="destination.temp.folder">
-               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/>
-               <copy file="${temp.folder}/quantum.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="false"/>
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2"/>
+               <copy file="${temp.folder}/quantum.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.4.2" failonerror="false"/>
        </target>
 
        <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.quantum.sql of all the zips, jars and logs created.">
                <delete file="${build.result.folder}/quantum.jar"/>
                <delete file="${build.result.folder}/quantumsrc.zip"/>
-               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.jar"/>
-               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.4.2.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.4.2.zip"/>
                <delete dir="${temp.folder}"/>
        </target>
 
        <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
-               <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.quantum.sql" property="resourcePath"/>
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.quantum.sql" property="resourcePath"/>
                <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
        </target>
 
                <delete>
                        <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
                </delete>
-               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.4.2.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
                <delete dir="${temp.folder}"/>
        </target>
 
diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties b/archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties
deleted file mode 100644 (file)
index 6125e9f..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-#Sun Jun 06 20:45:50 CEST 2004
-net.sourceforge.phpeclipse.tests=bin
-net.sourceforge.phpeclipse.debug.ui=bin
-net.sourceforge.phpeclipse=bin
-net.sourceforge.phpeclipse.phphelp=bin
-net.sourceforge.phpeclipse.quantum.sql=bin
-net.sourceforge.phpeclipse.tidy=bin
-net.sourceforge.phpeclipse.debug.core=bin
-net.sourceforge.phpeclipse.launching=bin
index 212d6fb..1f1c94c 100644 (file)
@@ -2,3 +2,4 @@ source.webcore.jar = src/
 output.webcore.jar = bin/
 bin.includes = plugin.xml,\
                webcore.jar
+src.includes = src/
\ No newline at end of file
diff --git a/net.sourceforge.phpeclipse.core/build.xml b/net.sourceforge.phpeclipse.core/build.xml
new file mode 100644 (file)
index 0000000..e11c79f
--- /dev/null
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpeclipse.core" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.core">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.core for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.core_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="webcore.jar" depends="init" unless="webcore.jar" description="Create jar: webcore.jar.">
+               <delete dir="${temp.folder}/webcore.jar.bin"/>
+               <mkdir dir="${temp.folder}/webcore.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/webcore.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"           >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/webcore.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/webcore.jar" basedir="${temp.folder}/webcore.jar.bin"/>
+               <delete dir="${temp.folder}/webcore.jar.bin"/>
+       </target>
+
+       <target name="webcoresrc.zip" depends="init" unless="webcoresrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/webcoresrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.core.">
+               <available property="webcore.jar" file="${build.result.folder}/webcore.jar"/>
+               <antcall target="webcore.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="webcoresrc.zip" file="${build.result.folder}/webcoresrc.zip"/>
+               <antcall target="webcoresrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="webcore.jar"                    />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,webcore.jar"                     />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0"/>
+               <copy file="${build.result.folder}/webcoresrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0"/>
+               <copy file="${temp.folder}/webcore.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.core_1.1.0" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.core of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/webcore.jar"/>
+               <delete file="${build.result.folder}/webcoresrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.core_1.1.0.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpeclipse.core_1.1.0.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.core" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.core.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.core_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index 4e119fa..64f2b92 100644 (file)
@@ -2,9 +2,9 @@
 <?eclipse version="3.0"?>
 <plugin
    id="net.sourceforge.phpeclipse.core"
-   name="Web Development Tools Core"
-   version="0.0.1"
-   provider-name="WDTE Project"
+   name="PHPeclipse Web Development Tools Core"
+   version="1.1.0"
+   provider-name="WDTE Project/PHPeclipse"
    class="net.sourceforge.phpeclipse.core.WebCore">
 
    <runtime>
index d035793..d7b821f 100644 (file)
@@ -7,3 +7,4 @@ bin.includes = core.jar,\
                os/,\
                plugin.properties,\
                plugin.xml
+src.includes = src/
\ No newline at end of file
index 303a231..a6a9723 100644 (file)
@@ -6,3 +6,4 @@ bin.includes = debug.jar,\
                .classpath,\
                .project,\
                .template
+src.includes = src/
\ No newline at end of file
index be84d37..49be8ce 100644 (file)
@@ -5,3 +5,4 @@ bin.includes = plugin.xml,\
                .classpath,\
                .project,\
                .template
+src.includes = src/
\ No newline at end of file
index 78ce645..c8d06c1 100644 (file)
@@ -6,3 +6,4 @@ bin.includes = phphelp.jar,\
                .classpath,\
                .project,\
                .template
+src.includes = src/
\ No newline at end of file
index d13b964..cd30b9b 100644 (file)
@@ -2,3 +2,4 @@ source.htmlui.jar = src/
 output.htmlui.jar = bin/
 bin.includes = plugin.xml,\
                htmlui.jar
+src.includes = src/
\ No newline at end of file
diff --git a/net.sourceforge.phpeclipse.smarty.ui/build.xml b/net.sourceforge.phpeclipse.smarty.ui/build.xml
new file mode 100644 (file)
index 0000000..b153855
--- /dev/null
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="net.sourceforge.phpdt.smarty.ui" default="build.jars" basedir=".">
+
+       <property name="bootclasspath" value=""/>
+       <property name="basews" value="${ws}"/>
+       <property name="baseos" value="${os}"/>
+       <property name="basearch" value="${arch}"/>
+       <property name="basenl" value="${nl}"/>
+       <property name="javacFailOnError" value="false"/>
+       <property name="javacDebugInfo" value="on"/>
+       <property name="javacVerbose" value="true"/>
+       <property name="javacSource" value="1.3"/>
+       <property name="javacTarget" value="1.2"/>
+       <property name="compilerArg" value=""/>
+
+       <target name="init" depends="properties">
+               <condition property="pluginTemp" value="${buildTempFolder}/plugins">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="pluginTemp" value="${basedir}"/>
+               <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.smarty.ui">
+                       <isset property="buildTempFolder"/>
+               </condition>
+               <property name="build.result.folder" value="${basedir}"/>
+               <property name="temp.folder" value="${basedir}/temp.folder"/>
+               <property name="plugin.destination" value="${basedir}"/>
+       </target>
+
+       <target name="properties" if="eclipse.running">
+               <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+       </target>
+
+       <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpdt.smarty.ui for an update site.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpdt.smarty.ui_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" filesonly="false" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="htmlui.jar" depends="init" unless="htmlui.jar" description="Create jar: htmlui.jar.">
+               <delete dir="${temp.folder}/htmlui.jar.bin"/>
+               <mkdir dir="${temp.folder}/htmlui.jar.bin"/>
+               <!-- compile the source code -->
+               <javac destdir="${temp.folder}/htmlui.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}"            >
+                       <compilerarg line="${compilerArg}"/>
+                       <classpath>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/xmlui.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/webcore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/xmlcore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/wdtui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
+                               <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/>
+                               <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/webbrowser.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/>
+                       </classpath>
+                       <src path="src/"                        />
+                       </javac>
+               <!-- Copy necessary resources -->
+               <copy todir="${temp.folder}/htmlui.jar.bin" failonerror="true">
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
+               </copy>
+               <mkdir dir="${build.result.folder}"/>
+               <jar jarfile="${build.result.folder}/htmlui.jar" basedir="${temp.folder}/htmlui.jar.bin"/>
+               <delete dir="${temp.folder}/htmlui.jar.bin"/>
+       </target>
+
+       <target name="htmluisrc.zip" depends="init" unless="htmluisrc.zip">
+               <mkdir dir="${build.result.folder}"/>
+               <zip zipfile="${build.result.folder}/htmluisrc.zip" filesonly="false" whenempty="skip" update="false">
+                       <fileset dir="src/" includes="**/*.java"                        />
+               </zip>
+       </target>
+
+       <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpdt.smarty.ui.">
+               <available property="htmlui.jar" file="${build.result.folder}/htmlui.jar"/>
+               <antcall target="htmlui.jar"/>
+       </target>
+
+       <target name="build.sources" depends="init">
+               <available property="htmluisrc.zip" file="${build.result.folder}/htmluisrc.zip"/>
+               <antcall target="htmluisrc.zip"/>
+       </target>
+
+       <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="htmlui.jar"                     />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" failonerror="true">
+                       <fileset dir="${basedir}" includes="plugin.xml,htmlui.jar"                      />
+               </copy>
+       </target>
+
+       <target name="build.zips" depends="init">
+       </target>
+
+       <target name="gather.sources" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0"/>
+               <copy file="${build.result.folder}/htmluisrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
+       </target>
+
+       <target name="gather.logs" depends="init" if="destination.temp.folder">
+               <mkdir dir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0"/>
+               <copy file="${temp.folder}/htmlui.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpdt.smarty.ui_1.1.0" failonerror="false"/>
+       </target>
+
+       <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpdt.smarty.ui of all the zips, jars and logs created.">
+               <delete file="${build.result.folder}/htmlui.jar"/>
+               <delete file="${build.result.folder}/htmluisrc.zip"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpdt.smarty.ui_1.1.0.jar"/>
+               <delete file="${plugin.destination}/net.sourceforge.phpdt.smarty.ui_1.1.0.zip"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+       <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse.smarty.ui" property="resourcePath"/>
+               <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+       </target>
+
+       <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpdt.smarty.ui.">
+               <delete dir="${temp.folder}"/>
+               <mkdir dir="${temp.folder}"/>
+               <antcall target="build.jars"/>
+               <antcall target="build.sources"/>
+               <antcall target="gather.bin.parts">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <antcall target="gather.sources">
+                       <param name="destination.temp.folder" value="${temp.folder}/"/>
+               </antcall>
+               <delete>
+                       <fileset dir="${temp.folder}" includes="**/*.bin.log"                   />
+               </delete>
+               <zip zipfile="${plugin.destination}/net.sourceforge.phpdt.smarty.ui_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+               <delete dir="${temp.folder}"/>
+       </target>
+
+</project>
index d1ab63e..eab4458 100644 (file)
@@ -1,2 +1,3 @@
 bin.includes = plugin.xml
 source.ui.jar = src/
+src.includes = src/
\ No newline at end of file
index 6ba9e81..a37d89e 100644 (file)
@@ -1,2 +1,3 @@
 bin.includes = plugin.xml
 source.xmlcore.jar = src/
+src.includes = src/
\ No newline at end of file
index 4d68bae..50ade75 100644 (file)
@@ -8,8 +8,8 @@
 # Contributors:
 #     Christopher Lenz - initial english resources
 # 
-# $Id: plugin.properties,v 1.1 2004-09-02 18:26:54 jsurfer Exp $
+# $Id: plugin.properties,v 1.2 2004-09-04 08:59:33 jsurfer Exp $
 #
 
-pluginName = Web Development Tools XML Core
-providerName= WDTE Project
+pluginName = PHPeclipse Web Development Tools XML Core
+providerName= WDTE Project/PHPeclipse.de
index 0e5b3e3..393a42a 100644 (file)
@@ -3,7 +3,7 @@
 <plugin
    id="net.sourceforge.phpeclipse.xml.core"
    name="%pluginName"
-   version="0.0.1"
+   version="1.1.0"
    provider-name="%providerName"
    class="">
 
index 6a9fa87..efefa87 100644 (file)
@@ -1,2 +1,3 @@
 bin.includes = plugin.xml, icons/
 source.xmlui.jar = src/
+src.includes = src/
\ No newline at end of file
index 26ec48e..a9f2361 100644 (file)
@@ -8,11 +8,11 @@
 # Contributors:
 #     Christopher Lenz - initial english resources
 # 
-# $Id: plugin.properties,v 1.1 2004-09-02 18:28:04 jsurfer Exp $
+# $Id: plugin.properties,v 1.2 2004-09-04 08:59:28 jsurfer Exp $
 #
 
-pluginName = Web Development Tools XML UI
-providerName= WDTE Project
+pluginName = PHPeclipse Web Development Tools XML UI
+providerName= WDTE Project/PHPeclipse.de
 
 xmlEditorName = XML Editor
 dtdEditorName = DTD Editor
index 491c725..dfc4a23 100644 (file)
@@ -3,7 +3,7 @@
 <plugin
    id="net.sourceforge.phpeclipse.xml.ui"
    name="%pluginName"
-   version="0.0.1"
+   version="1.1.0"
    provider-name="%providerName"
    class="net.sourceforge.phpeclipse.xml.ui.XMLPlugin">
 
index 0a3443e..5097a3a 100644 (file)
@@ -8,4 +8,6 @@ bin.includes = phpeclipse.jar,\
                icons/,\
                install.txt,\
                plugin.properties,\
-               plugin.xml
+               plugin.xml,\
+               cpl-v10.html
+src.includes = src/
index 651e449..d557270 100644 (file)
@@ -61,6 +61,7 @@
                                <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/>
                                <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/>
                                <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/>
+                               <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0"/>
                                <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/>
                                <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/>
                                <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/>
                                <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/>
                                <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/>
                                <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.webbrowser/webbrowser.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.core/webcore.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.ui/wdtui.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.ui/xmlui.jar"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/bin"/>
+                               <pathelement path="../net.sourceforge.phpeclipse.xml.core/xmlcore.jar"/>
                        </classpath>
                        <src path="src/"                        />
                        </javac>
                <!-- Copy necessary resources -->
                <copy todir="${temp.folder}/phpeclipse.jar.bin" failonerror="true">
-                       <fileset dir="src/" excludes="**/*.java"                        />
+                       <fileset dir="src/" excludes="**/*.java, **/package.htm*"                       />
                </copy>
                <mkdir dir="${build.result.folder}"/>
                <jar jarfile="${build.result.folder}/phpeclipse.jar" basedir="${temp.folder}/phpeclipse.jar.bin"/>
 
        <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
                <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="true">
+                       <fileset dir="${build.result.folder}" includes="phpeclipse.jar"                 />
+               </copy>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="true">
+                       <fileset dir="${basedir}" includes="phpeclipse.jar,bin/,.classpath,.project,.template,TODO,icons/,install.txt,plugin.properties,plugin.xml,cpl-v10.html"                        />
+               </copy>
        </target>
 
        <target name="build.zips" depends="init">
        <target name="gather.sources" depends="init" if="destination.temp.folder">
                <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0"/>
                <copy file="${build.result.folder}/phpeclipsesrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="false"/>
+               <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="false">
+                       <fileset dir="${basedir}" includes="src/"                       />
+               </copy>
        </target>
 
        <target name="gather.logs" depends="init" if="destination.temp.folder">
        </target>
 
        <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
-               <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse" property="resourcePath"/>
+               <eclipse.convertPath fileSystemPath="C:/eclipse3/workspace/net.sourceforge.phpeclipse" property="resourcePath"/>
                <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
        </target>
 
diff --git a/net.sourceforge.phpeclipse/dev.properties b/net.sourceforge.phpeclipse/dev.properties
deleted file mode 100644 (file)
index 83a763a..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-#Sun Jun 06 20:45:38 CEST 2004
-net.sourceforge.phpeclipse.tests=bin
-net.sourceforge.phpeclipse.debug.ui=bin
-net.sourceforge.phpeclipse=bin
-net.sourceforge.phpeclipse.phphelp=bin
-net.sourceforge.phpeclipse.quantum.sql=bin
-net.sourceforge.phpeclipse.tidy=bin
-net.sourceforge.phpeclipse.debug.core=bin
-net.sourceforge.phpeclipse.launching=bin