From 12a0f5525d9018963b4ee16cdaf03194499da64f Mon Sep 17 00:00:00 2001 From: Vivian Kong Date: Fri, 25 Apr 2008 13:36:59 +0000 Subject: [PATCH] fix source build --- .../sourceTemplatePlugin/about.html | 22 +++++++++++++ .../sourceTemplatePlugin/about.ini | 29 ++++++++++++++++++ .../sourceTemplatePlugin/about.mappings | 6 ++++ .../sourceTemplatePlugin/about.properties | 23 ++++++++++++++ .../sourceTemplatePlugin/build.properties | 27 ++++++++++++++++ .../sourceTemplatePlugin/eclipse32.gif | Bin 0 -> 1706 bytes .../sourceTemplatePlugin/plugin.properties | 12 ++++++++ 7 files changed, 119 insertions(+) create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.html create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.ini create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.mappings create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.properties create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/build.properties create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/eclipse32.gif create mode 100644 releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/plugin.properties diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.html b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.html new file mode 100644 index 00000000000..5e7ffbdb249 --- /dev/null +++ b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.html @@ -0,0 +1,22 @@ + + + +About + + + +

About This Content

+ +

June 22, 2007

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content.

+ + + \ No newline at end of file diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.ini b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.ini new file mode 100644 index 00000000000..a21a3ecea0e --- /dev/null +++ b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.ini @@ -0,0 +1,29 @@ +# about.ini +# contains information about a feature +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# "%key" are externalized strings defined in about.properties +# This file does not need to be translated. + +# Property "aboutText" contains blurb for "About" dialog (translated) +aboutText=%blurb + +# Property "windowImage" contains path to window icon (16x16) +# needed for primary features only + +# Property "featureImage" contains path to feature image (32x32) +featureImage=eclipse32.gif + +# Property "aboutImage" contains path to product image (500x330 or 115x164) +# needed for primary features only + +# Property "appName" contains name of the application (translated) +# needed for primary features only + +# Property "welcomePage" contains path to welcome page (special XML-based format) +# optional + +# Property "welcomePerspective" contains the id of the perspective in which the +# welcome page is to be opened. +# optional + + diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.mappings b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.mappings new file mode 100644 index 00000000000..bddaab43109 --- /dev/null +++ b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.mappings @@ -0,0 +1,6 @@ +# about.mappings +# contains fill-ins for about.properties +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file does not need to be translated. + +0=@build@ \ No newline at end of file diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.properties b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.properties new file mode 100644 index 00000000000..2c84f225d81 --- /dev/null +++ b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/about.properties @@ -0,0 +1,23 @@ +############################################################################### +# Copyright (c) 2005 IBM Corporation and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +# about.properties +# contains externalized strings for about.ini +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# fill-ins are supplied by about.mappings +# This file should be translated. + +blurb=Eclipse C/C++ Development Tooling Source Code\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +(c) Copyright IBM Corp. and others 2000, 2007. All rights reserved.\n\ +Visit http://www.eclipse.org/cdt diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/build.properties b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/build.properties new file mode 100644 index 00000000000..811ba521d76 --- /dev/null +++ b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/build.properties @@ -0,0 +1,27 @@ +############################################################################### +# Copyright (c) 2005, 2006 IBM Corporation and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +bin.includes = about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + eclipse32.gif,\ + plugin.xml,\ + plugin.properties,\ + src/**,\ + META-INF/ +src.includes = about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + eclipse32.gif,\ + plugin.xml,\ + plugin.properties +sourcePlugin=true diff --git a/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/eclipse32.gif b/releng/org.eclipse.cdt.platform-feature/sourceTemplatePlugin/eclipse32.gif new file mode 100644 index 0000000000000000000000000000000000000000..e6ad7ccd75b6f4c8c87df7a6450f1b4f16bd40c2 GIT binary patch literal 1706 zcmV;b237e-Nk%w1VITk?0QUd@00030|Nm)P=t)VD=*!^Uv(oV0>&=nA$cwwmn8L$~ zySj(D+{E6+qspy;xTAWt;@0W2n#Akl@X5B;mUg&|ajT?~zI|n;gKevthr)Ygw_Z?@ zWLKJnd%k>gwqjG&VN=v#Qqf;h&|gu{U{lgxQqNvd&0J5%UsBCpQOjFT#9B_lacQtf zKCN9*&0J8)T~W(iP{&(O##>OvSx&)NO}|-B!dg$lSWUcFO}tr7zF1DZSWUZEO}bW1 zxmHZJRZO;2OSDu=u~SR2QcA8-Nvu&xt4BeHGAxfPC3iM2mMbQ1O+~C#O}JD{v{X#9 zQA(^)N~=&wsZU9!Oh=(kNTW?ip-V=bOh=wkOs1)()gBsVDJ6kDIg(07n^R7!Nkx}R zMwv%Mlt@LCM?{iFLy$&7jZ{#nM?{ZINtstvrdwC4R8gB+SDa;Hr)XxP%E{#g1W^bF zR0;`L3<_8f4q^@sS`ram6B1n(6=4?^VHz1_ARcfY9cd~lb}ub9&f=EV1LWV&>gh)t{NJ)@QO_otnolQ-ZQBs;w zQkhaxno?4kR#%=^SDjm1qF-R9UtgwUWU6Fjs%K}eXK1cyXs&N>wQOv$b91Pp3aD%(TAVVi=@*`umsyND23sw_bqoN(T{ZL@Z5TC~s1CLJ3_#Yc}FHLeOsl<3f-2m~OAbDf!+ zwoRHaU2@iJ*)d3l1X0Ps_(n>Yg(?*PU;w9lxNqIYWz!^WIy39TfcXjph{;dy0tlHY zlc2x^Z~%T2igTZM1{yNEW!K9txpdJOer2F>K>`hgqJ=l1bVHyf(^XdtB=Rko3od>z zv4RRIkwL}-2lV3)KKSsX&pr3lqYgdk%!5um@|<%HJnod!4m;$Wn9>+xEPy};+H9ju zHlTc>2{fQtH$Zm0FnCKXwDiG+3NoYw#ux}7&;ekAQG*GU?;SG$FoFc4C6}_q!iNeo zq~t{yW%jerI_t=2PmMR`h>kox!UN6(Xvu8<+9`v!(78t|cbvkCsVP}O#R3ZWxlTTU)?*`%I`Zh_ zqUDf7&I>T4R7DjJC_q7bpiz?Gd~<^ON*=15V#+8;ypTdlQ%rGz0uH!wpsWk(@@XHi z$)YI1uL&ZgB*YLz5ApH^ zgJfAV$gbRBhbeNzAqo;OxR7!PDLoNH5KeSWfddyDp^MG4?BNQ-1gmO=*?D4Q@s2#BZT+u}Vmo`VJyV6Z_WOXz{e7D*t{ z!V3{!9Rdj;q{IVvIh2kAV~x?U!ig%VU@GS>xPU?lZ-XAX05#~K`|dx{K!Xi8v<@lf zKO6pb2q1v)K}x