author | TasneemS |
Mon, 11 Jan 2010 15:29:46 -0800 | |
changeset 26 | 72a52c262d99 |
parent 21 | 8b1393d47610 |
child 231 | 611be8d22832 |
permissions | -rw-r--r-- |
0 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<?eclipse version="3.4"?> |
|
3 |
<plugin> |
|
21 | 4 |
<extension |
0 | 5 |
point="org.eclipse.ui.propertyPages"> |
6 |
<page |
|
7 |
name="Sample Page" |
|
8 |
nameFilter="*.*" |
|
9 |
class="org.symbian.tools.wrttools.jseditors.properties.SamplePropertyPage" |
|
10 |
id="org.symbian.tools.wrttools.jseditors.properties.samplePropertyPage"> |
|
11 |
<enabledWhen> |
|
12 |
<instanceof |
|
13 |
value="org.eclipse.core.resources.IFile"> |
|
14 |
</instanceof> |
|
15 |
</enabledWhen> |
|
16 |
</page> |
|
17 |
</extension> |
|
18 |
<extension |
|
19 |
point="org.eclipse.ui.editors"> |
|
20 |
<editor |
|
21 |
name="Sample XML File" |
|
22 |
extensions="xml" |
|
23 |
icon="icons/sample.gif" |
|
24 |
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor" |
|
25 |
class="org.symbian.tools.wrttools.jseditors.editors.XMLEditor" |
|
26 |
id="org.symbian.tools.wrttools.jseditors.editors.XMLEditor"> |
|
27 |
</editor> |
|
28 |
<editor |
|
29 |
name="Sample Multi-page Editor" |
|
30 |
extensions="mpe" |
|
31 |
icon="icons/sample.gif" |
|
32 |
contributorClass="jstesteditor2.editors.MultiPageEditorContributor" |
|
33 |
class="org.symbian.tools.wrttools.jseditors.editors.MultiPageEditor" |
|
34 |
id="org.symbian.tools.wrttools.jseditors.editors.MultiPageEditor"> |
|
35 |
</editor> |
|
36 |
<editor |
|
37 |
name="Sample JavaScript File" |
|
38 |
extensions="js" |
|
39 |
icon="icons/sample.gif" |
|
40 |
contributorClass="org.symbian.tools.wrttools.jseditors.editors.JSEditorContributor" |
|
41 |
class="net.sf.wdte.js.ui.editors.JSEditor" |
|
42 |
id="net.sf.wdte.js.ui.editors.JSEditor"> |
|
43 |
</editor> |
|
44 |
</extension> |
|
10 | 45 |
|
0 | 46 |
<extension |
47 |
point="org.eclipse.ui.newWizards"> |
|
48 |
<category |
|
8
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
49 |
id="org.symbian.tools.wrttools.jseditors.category" |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
50 |
name="WRT Files"> |
0 | 51 |
</category> |
52 |
<wizard |
|
53 |
name="XML File" |
|
8
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
54 |
icon="icons/new_xml.gif" |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
55 |
category="org.symbian.tools.wrttools.jseditors.category" |
0 | 56 |
class="org.symbian.tools.wrttools.jseditors.wizards.NewXMLWizard" |
57 |
id="org.symbian.tools.wrttools.jseditors.wizards.NewXMLWizard"> |
|
58 |
</wizard> |
|
8
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
59 |
<wizard |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
60 |
name="HTML File" |
9 | 61 |
icon="icons/newhtml_wiz.gif" |
8
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
62 |
category="org.symbian.tools.wrttools.jseditors.category" |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
63 |
class="org.symbian.tools.wrttools.jseditors.wizards.NewHTMLWizard" |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
64 |
id="org.symbian.tools.wrttools.jseditors.wizards.NewHTMLWizard"> |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
65 |
</wizard> |
0 | 66 |
<wizard |
67 |
name="JavaScript File" |
|
8
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
68 |
icon="icons/newjscript_wiz.gif" |
683bdcbc3ebd
Added HTML Wizard. Changed category to Web Runtime(WRT). Sanitized for licenses. Fixed category for WRT files. General cleanup.
TasneemS@US-TASNEEMS
parents:
0
diff
changeset
|
69 |
category="org.symbian.tools.wrttools.jseditors.category" |
0 | 70 |
class="org.symbian.tools.wrttools.jseditors.wizards.NewJSWizard" |
71 |
id="org.symbian.tools.wrttools.jseditors.wizards.NewJSWizard"> |
|
72 |
</wizard> |
|
73 |
</extension> |
|
74 |
<extension |
|
75 |
point="org.eclipse.ui.preferencePages"> |
|
76 |
<page |
|
77 |
name="Sample Preferences" |
|
78 |
class="org.symbian.tools.wrttools.jseditors.preferences.SamplePreferencePage" |
|
79 |
id="org.symbian.tools.wrttools.jseditors.preferences.SamplePreferencePage"> |
|
80 |
</page> |
|
81 |
</extension> |
|
82 |
<extension |
|
83 |
point="org.eclipse.core.runtime.preferences"> |
|
84 |
<initializer |
|
85 |
class="org.symbian.tools.wrttools.jseditors.preferences.PreferenceInitializer"> |
|
86 |
</initializer> |
|
87 |
</extension> |
|
88 |
<extension |
|
89 |
point="org.eclipse.help.toc"> |
|
90 |
<toc |
|
91 |
file="toc.xml"> |
|
92 |
</toc> |
|
93 |
<toc |
|
94 |
file="testToc.xml" |
|
95 |
primary="true"> |
|
96 |
</toc> |
|
97 |
</extension> |
|
98 |
<extension |
|
99 |
point="org.eclipse.ui.decorators"> |
|
100 |
<decorator |
|
101 |
lightweight="true" |
|
102 |
location="BOTTOM_RIGHT" |
|
103 |
adaptable="true" |
|
104 |
label="Resource Decorator" |
|
105 |
icon="icons/sample_decorator.gif" |
|
106 |
state="true" |
|
107 |
id="org.symbian.tools.wrttools.jseditors.decorator"> |
|
108 |
<enablement> |
|
109 |
<and> |
|
110 |
<objectClass |
|
111 |
name="org.eclipse.core.resources.IResource"> |
|
112 |
</objectClass> |
|
113 |
<or> |
|
114 |
<objectClass |
|
115 |
name="org.eclipse.core.resources.IProject"> |
|
116 |
</objectClass> |
|
117 |
<objectClass |
|
118 |
name="org.eclipse.core.resources.IFile"> |
|
119 |
</objectClass> |
|
120 |
</or> |
|
121 |
</and> |
|
122 |
</enablement> |
|
123 |
</decorator> |
|
124 |
</extension> |
|
26 | 125 |
|
0 | 126 |
<extension |
127 |
point="org.eclipse.ui.intro.configExtension"> |
|
128 |
<configExtension |
|
129 |
content="intro/sample.xml" |
|
130 |
configId="org.eclipse.ui.intro.universalConfig"> |
|
131 |
</configExtension> |
|
132 |
</extension> |
|
133 |
<extension |
|
134 |
point="org.eclipse.ui.perspectives"> |
|
135 |
<perspective |
|
136 |
name="Release Engineering" |
|
137 |
icon="icons/releng_gears.gif" |
|
138 |
class="org.symbian.tools.wrttools.jseditors.perspectives.RelEngPerspective" |
|
139 |
id="org.symbian.tools.wrttools.jseditors.perspectives.RelEngPerspective"> |
|
140 |
</perspective> |
|
141 |
</extension> |
|
142 |
<extension |
|
143 |
id="org.symbian.tools.wrttools.jseditors.builders.SampleBuilder" |
|
144 |
name="Sample Project Builder" |
|
145 |
point="org.eclipse.core.resources.builders"> |
|
146 |
<builder |
|
147 |
hasNature="true"> |
|
148 |
<run |
|
149 |
class="org.symbian.tools.wrttools.jseditors.builder.SampleBuilder"> |
|
150 |
</run> |
|
151 |
</builder> |
|
152 |
</extension> |
|
153 |
<extension |
|
154 |
id="org.symbian.tools.wrttools.jseditors.builders.SampleNature" |
|
155 |
name="Sample Project Nature" |
|
156 |
point="org.eclipse.core.resources.natures"> |
|
157 |
<runtime> |
|
158 |
<run |
|
159 |
class="org.symbian.tools.wrttools.jseditors.builders.SampleNature"> |
|
160 |
</run> |
|
161 |
</runtime> |
|
162 |
<builder |
|
163 |
id="org.symbian.tools.wrttools.jseditors.builders.SampleBuilder"> |
|
164 |
</builder> |
|
165 |
</extension> |
|
166 |
<extension |
|
167 |
id="org.symbian.tools.wrttools.jseditors.xmlProblem" |
|
168 |
name="XML Problem" |
|
169 |
point="org.eclipse.core.resources.markers"> |
|
170 |
<super |
|
171 |
type="org.eclipse.core.resources.problemmarker"> |
|
172 |
</super> |
|
173 |
<persistent |
|
174 |
value="true"> |
|
175 |
</persistent> |
|
176 |
</extension> |
|
177 |
<extension |
|
178 |
id="org.symbian.tools.wrttools.jseditors.jsProblem" |
|
179 |
name="JS Problem" |
|
180 |
point="org.eclipse.core.resources.markers"> |
|
181 |
<super |
|
182 |
type="org.eclipse.core.resources.problemmarker"> |
|
183 |
</super> |
|
184 |
<persistent |
|
185 |
value="true"> |
|
186 |
</persistent> |
|
187 |
</extension> |
|
188 |
<extension |
|
189 |
point="org.eclipse.ui.splashHandlers"> |
|
190 |
<splashHandler |
|
191 |
class="org.symbian.tools.wrttools.jseditors.splashHandlers.InteractiveSplashHandler" |
|
192 |
id="org.symbian.tools.wrttools.jseditors.splashHandlers.interactive"> |
|
193 |
</splashHandler> |
|
194 |
<splashHandlerProductBinding |
|
195 |
splashId="org.symbian.tools.wrttools.jseditors.splashHandlers.interactive" |
|
196 |
productId="org.eclipse.epp.package.rcp.product"> |
|
197 |
</splashHandlerProductBinding> |
|
198 |
</extension> |
|
199 |
||
200 |
</plugin> |