Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-05-10 10:05:34 +0000
committerLars Vogel2019-05-10 14:44:08 +0000
commit4ecaa04936436e3d09483d2957ffb4f7cfdf4b23 (patch)
treebee65f1755ac71a3ead39d1a51978c1f1a5800cf
parent3ea450b71ceca04125fd508ac99cccf7b92ef7d8 (diff)
downloadeclipse.platform.ui-4ecaa04936436e3d09483d2957ffb4f7cfdf4b23.tar.gz
eclipse.platform.ui-4ecaa04936436e3d09483d2957ffb4f7cfdf4b23.tar.xz
eclipse.platform.ui-4ecaa04936436e3d09483d2957ffb4f7cfdf4b23.zip
Delete prepareforpii.xml from o.e.ui.navigator.resourcesI20190510-1800
Last modified 2005 in the initial contribution. Change-Id: I6d47195972ff18f8d3301a44cf0413677dfecf12 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.navigator.resources/prepareforpii.xml37
1 files changed, 0 insertions, 37 deletions
diff --git a/bundles/org.eclipse.ui.navigator.resources/prepareforpii.xml b/bundles/org.eclipse.ui.navigator.resources/prepareforpii.xml
deleted file mode 100644
index b2cc36f02e9..00000000000
--- a/bundles/org.eclipse.ui.navigator.resources/prepareforpii.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<project name="PrepareForPII" default="main" basedir=".">
-
- <!-- Setup temp variables -->
- <target name="init">
- <property name="nlsDir" value="d:/NLS/Corona/0526"/>
- <property name="plugin" value="org.eclipse.ui.workbench.navigator"/>
- <property name="plugindir" value="d:/workspaceCorona/${plugin}"/>
- <property name="outputDir" value="${nlsDir}/${plugin}"/>
-
-
- </target>
-
- <!-- Create the destination dir -->
- <target name="nlsDir" depends="init">
- <mkdir dir="${nlsDir}"/>
- </target>
-
- <!-- Create the destination dir -->
- <target name="plugindir" depends="nlsDir">
- <delete dir="${outputDir}"/>
- <mkdir dir="${outputDir}"/>
- </target>
-
- <!-- Move the files to the correct locations in the workspace. -->
- <target name="main" depends="plugindir">
- <messageIdGen folderPath = "${plugindir}" componentId = "E" />
-
- <copy todir = "${outputDir}/property_files" >
- <fileset dir="${plugindir}/property_files">
- <include name="**/*.properties"/>
- </fileset>
- </copy>
-
- <copy file="${plugindir}/plugin.properties" todir="${outputDir}"/>
-
- </target>
-</project>

Back to the top