*.jar,\
csscore.jar,\
plugin.properties
-src.includes = .project,\
- .classpath,\
- build.properties,\
- plugin.properties,\
- plugin.xml,\
- schema/,\
- src/
+src.includes = src/
--- /dev/null
+<?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>
<?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>
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/
+
--- /dev/null
+<?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>
<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">
output.htmlui.jar = bin/
bin.includes = plugin.xml,\
htmlui.jar
+src.includes = src/
\ No newline at end of file
--- /dev/null
+<?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>
<?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>
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
--- /dev/null
+<?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>
<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">
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/
--- /dev/null
+<?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>
plugin.properties,\
install.txt,\
.classpath,\
- .project,\
-
+ .project
source.quantum.jar = src/
+src.includes = src/
\ No newline at end of file
<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>
<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"/>
</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>
+++ /dev/null
-#
-#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
output.webcore.jar = bin/
bin.includes = plugin.xml,\
webcore.jar
+src.includes = src/
\ No newline at end of file
--- /dev/null
+<?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>
<?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>
os/,\
plugin.properties,\
plugin.xml
+src.includes = src/
\ No newline at end of file
.classpath,\
.project,\
.template
+src.includes = src/
\ No newline at end of file
.classpath,\
.project,\
.template
+src.includes = src/
\ No newline at end of file
.classpath,\
.project,\
.template
+src.includes = src/
\ No newline at end of file
output.htmlui.jar = bin/
bin.includes = plugin.xml,\
htmlui.jar
+src.includes = src/
\ No newline at end of file
--- /dev/null
+<?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>
bin.includes = plugin.xml
source.ui.jar = src/
+src.includes = src/
\ No newline at end of file
bin.includes = plugin.xml
source.xmlcore.jar = src/
+src.includes = src/
\ No newline at end of file
# 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
<plugin
id="net.sourceforge.phpeclipse.xml.core"
name="%pluginName"
- version="0.0.1"
+ version="1.1.0"
provider-name="%providerName"
class="">
bin.includes = plugin.xml, icons/
source.xmlui.jar = src/
+src.includes = src/
\ No newline at end of file
# 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
<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">
icons/,\
install.txt,\
plugin.properties,\
- plugin.xml
+ plugin.xml,\
+ cpl-v10.html
+src.includes = src/
<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>
+++ /dev/null
-#
-#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