FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
angularjs-eclipse/org.eclipse.angularjs.ui/plugin.xml at master · thisisbook/angularjs-eclipse · GitHub
thisisbook
/
angularjs-eclipse
Public
forked from
angelozerr/angularjs-eclipse
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
angularjs-eclipse
/
org.eclipse.angularjs.ui
/
plugin.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
307 lines (281 loc) · 13.4 KB
Breadcrumbs
angularjs-eclipse
/
org.eclipse.angularjs.ui
/
plugin.xml
Copy path
File metadata and controls
307 lines (281 loc) · 13.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<?
eclipse
version
=
"
3.0
"
?>
<!--
###############################################################################
# Copyright (c) 2013 Angelo Zerr 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:
# Angelo Zerr <angelo.zerr@gmail.com> - Initial API and implementation
###############################################################################
-->
<
plugin
>
<!--
AngularJS Editor:
-->
<
extension
point
=
"
org.eclipse.ui.editors
"
>
<
editor
class
=
"
org.eclipse.angularjs.internal.ui.editor.AngularStructuredEditor
"
contributorClass
=
"
org.eclipse.angularjs.internal.ui.editor.ActionContributorForAngular
"
default
=
"
true
"
icon
=
"
icons/full/obj16/angularjs.png
"
id
=
"
org.eclipse.angularjs.editor
"
name
=
"
%angularjsEditor
"
symbolicFontName
=
"
org.eclipse.wst.sse.ui.textfont
"
>
<
contentTypeBinding
contentTypeId
=
"
org.eclipse.angularjs.core.angularsource
"
/>
</
editor
>
</
extension
>
<
extension
point
=
"
org.eclipse.wst.sse.ui.editorConfiguration
"
>
<
sourceViewerConfiguration
class=
"
org.eclipse.angularjs.internal.ui.editor.configuration.AngularStructuredTextViewerConfiguration
"
target=
"
org.eclipse.angularjs.core.angularsource
"
/>
<
contentOutlineConfiguration
class=
"
org.eclipse.angularjs.internal.ui.outline.AngularContentOutlineConfiguration
"
target=
"
org.eclipse.angularjs.core.angularsource
"
/>
<
propertySheetConfiguration
class=
"
org.eclipse.wst.xml.ui.views.properties.XMLPropertySheetConfiguration
"
target=
"
org.eclipse.angularjs.core.angularsource
"
/>
<
provisionalConfiguration
type
=
"
sourceeditingtexttools
"
class=
"
org.eclipse.wst.xml.ui.internal.provisional.XMLSourceEditingTextTools
"
target=
"
org.eclipse.angularjs.core.angularsource
"
/>
<
documentationTextHover
class=
"
org.eclipse.angularjs.internal.ui.taginfo.HTMLAngularTagInfoHoverProcessor
"
target=
"
org.eclipse.wst.html.HTML_DEFAULT
"
>
</
documentationTextHover
>
<!--
<provisionalConfiguration type="characterpairmatcher"
class="org.eclipse.angularjs.internal.ui.text.AngularDocumentRegionEdgeMatcher"
target="org.eclipse.angularjs.core.angularsource" />
-->
<!--
<provisionalConfiguration type="structuredtextfoldingprovider"
class="org.eclipse.angularjs.internal.ui.folding.AngularFoldingStructureProviderProxy"
target="org.eclipse.angularjs.core.angularsource" />
-->
<
provisionalDefinition
type
=
"
spellingregions
"
value=
"
XML_COMMENT_TEXT, ANGULAR_EXPRESSION_CONTENT, XML_CONTENT
"
target
=
"
org.eclipse.angularjs.core.angularsource
"
/>
<
provisionalDefinition
type
=
"
activecontexts
"
value=
"
org.eclipse.angularjs.core.angularsource
"
target
=
"
org.eclipse.angularjs.core.angularsource
"
/>
<!--
<provisionalConfiguration
type="org.eclipse.jface.text.quickassist.IQuickAssistProcessor"
class="org.eclipse.angularjs.internal.ui.text.correction.AngularCorrectionProcessor"
target="org.eclipse.angularjs.Angular_DEFAULT" />
-->
<
provisionalConfiguration
type=
"
autoeditstrategy
"
class=
"
org.eclipse.angularjs.internal.ui.autoedit.StructuredAutoEditStrategyAngular
"
target=
"
org.eclipse.wst.html.HTML_DEFAULT, org.eclipse.wst.html.HTML_DECLARATION
"
/>
</
extension
>
<!--
Commands:
-->
<
extension
point=
"
org.eclipse.ui.commands
"
>
<
command
id=
"
org.eclipse.angularjs.ui.convertProjectToAngular
"
name=
"
%convertProjectToAngularCommandName
"
categoryId=
"
org.eclipse.ui.category.file
"
>
</
command
>
</
extension
>
<
extension
point
=
"
org.eclipse.ui.contexts
"
>
<
context
name
=
"
%context.editingAngularSource.name
"
description
=
"
%context.editingPhpSource.description
"
parentId=
"
org.eclipse.wst.sse.ui.structuredTextEditorScope
"
id
=
"
org.eclipse.angularjs.ui.angularjsEditorScope
"
/>
<
context
name
=
"
%context.editingAngularSource.name
"
parentId=
"
org.eclipse.wst.sse.ui.structuredTextEditorScope
"
description=
"
%context.editingAngularSource.description
"
id
=
"
org.eclipse.angularjs.core.angularsource
"
>
</
context
>
</
extension
>
<!--
Handlers:
-->
<
extension
point=
"
org.eclipse.ui.handlers
"
>
<
handler
commandId=
"
org.eclipse.angularjs.ui.convertProjectToAngular
"
class=
"
org.eclipse.angularjs.internal.ui.handlers.ConvertProjectToAngularCommandHandler
"
>
<
activeWhen
>
<
with
variable
=
"
selection
"
>
<
count
value
=
"
1
"
/>
<
iterate
>
<
adapt
type
=
"
org.eclipse.core.resources.IProject
"
>
<
and
>
<
not
>
<
test
property
=
"
org.eclipse.core.resources.projectNature
"
value
=
"
org.eclipse.angularjs.core.angularnature
"
/>
</
not
>
</
and
>
</
adapt
>
</
iterate
>
</
with
>
</
activeWhen
>
</
handler
>
</
extension
>
<!--
Menus:
-->
<
extension
point=
"
org.eclipse.ui.menus
"
>
<!--
contributions to the project configure menu
-->
<
menuContribution
locationURI
=
"
popup:org.eclipse.ui.projectConfigure?after=additions
"
>
<
command
commandId
=
"
org.eclipse.angularjs.ui.convertProjectToAngular
"
>
<
visibleWhen
checkEnabled=
"
true
"
>
</
visibleWhen
>
</
command
>
</
menuContribution
>
</
extension
>
<!--
Preferences:
-->
<
extension
point
=
"
org.eclipse.ui.preferencePages
"
>
<!--
Angular Global preferences page
-->
<
page
class
=
"
org.eclipse.angularjs.internal.ui.preferences.AngularGlobalPreferencesPage
"
id
=
"
org.eclipse.angularjs.preferences
"
name
=
"
%AngularPreferencePage.name
"
/>
<!--
Angular HTML Files preferences page
-->
<
page
category
=
"
org.eclipse.angularjs.preferences
"
class
=
"
org.eclipse.angularjs.internal.ui.preferences.html.HTMLAngularGlobalPreferencesPage
"
id
=
"
org.eclipse.angularjs.html.preferences
"
name
=
"
%HTMLAngularGlobalPreferencesPag.name
"
/>
<!--
Angular Editor preferences page
-->
<
page
category
=
"
org.eclipse.angularjs.html.preferences
"
class
=
"
org.eclipse.angularjs.internal.ui.preferences.html.HTMLAngularEditorPreferencesPage
"
id
=
"
org.eclipse.angularjs.html.preferences.editor
"
name
=
"
%HTMLAngularEditorPreferencePage.name
"
/>
<!--
Angular Syntax Coloring preferences page
-->
<
page
category
=
"
org.eclipse.angularjs.html.preferences.editor
"
class
=
"
org.eclipse.angularjs.internal.ui.preferences.html.HTMLAngularEditorSyntaxColoringPreferencePage
"
id
=
"
org.eclipse.angularjs.html.preferences.editor.syntaxcoloring
"
name
=
"
%HTMLAngularEditorSyntaxColoringPreferencePage.name
"
/>
<!--
Angular Typing preferences page
-->
<
page
category
=
"
org.eclipse.angularjs.html.preferences.editor
"
class
=
"
org.eclipse.angularjs.internal.ui.preferences.html.HTMLAngularTypingPreferencePage
"
id
=
"
org.eclipse.angularjs.html.preferences.editor.typing
"
name
=
"
%HTMLAngularTypingPreferencePage.name
"
/>
<!--
Angular Folding preferences page
-->
<!--
<page
category="org.eclipse.angularjs.preferences.editor"
class="org.eclipse.angularjs.internal.ui.preferences.FreemarkerFoldingPreferencePage"
id="org.eclipse.angularjs.ui.editor.FreemarkerFolding"
name="%FreemarkerEditorFoldingPreferencePage.name"/>
Freemarker Templates preferences page
-->
<!--
<page
category="org.eclipse.angularjs.preferences.editor"
class="org.eclipse.angularjs.internal.ui.preferences.templates.FreemarkerCodeTemplatesPreferencePage"
id="org.eclipse.angularjs.preferences.templates"
name="%FreemarkerCodeTemplatesPreferencePage.name">
</page>
-->
</
extension
>
<
extension
point
=
"
org.eclipse.core.runtime.preferences
"
>
<
initializer
class=
"
org.eclipse.angularjs.internal.ui.preferences.AngularUIPreferenceInitializer
"
/>
</
extension
>
<!--
Angular UI Adapter factories
-->
<!--
======================================================================================
-->
<
extension
point
=
"
org.eclipse.wst.sse.ui.adapterFactoryDescription
"
>
<
adapterFactoryDescription
class=
"
org.eclipse.angularjs.internal.ui.editor.adapter.AdapterFactoryProviderForAngular
"
>
<
contentType
id
=
"
org.eclipse.angularjs.core.angularsource
"
/>
</
adapterFactoryDescription
>
</
extension
>
<
extension
point
=
"
org.eclipse.wst.sse.ui.completionProposal
"
>
<
proposalComputer
activate
=
"
false
"
categoryId
=
"
org.eclipse.wst.html.ui.proposalCategory.htmlTags
"
class
=
"
org.eclipse.angularjs.internal.ui.contentassist.HTMLAngularTagsCompletionProposalComputer
"
id
=
"
org.eclipse.angularjs.proposalComputer.htmlAngularTags
"
>
<
contentType
id
=
"
org.eclipse.angularjs.core.angularsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
>
</
partitionType
>
<
partitionType
id
=
"
org.eclipse.angularjs.ANGULAR_DEFAULT
"
>
</
partitionType
>
</
contentType
>
<
contentType
id
=
"
org.eclipse.wst.html.core.htmlsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
>
</
partitionType
>
<
partitionType
id
=
"
org.eclipse.angularjs.ANGULAR_DEFAULT
"
>
</
partitionType
>
</
contentType
>
<
contentType
id
=
"
org.eclipse.jst.jsp.core.jspsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
>
</
partitionType
>
<
partitionType
id
=
"
org.eclipse.angularjs.ANGULAR_DEFAULT
"
>
</
partitionType
>
</
contentType
>
</
proposalComputer
>
</
extension
>
<!--
======================================================================================
-->
<!--
As you type validation
-->
<!--
======================================================================================
-->
<
extension
point
=
"
org.eclipse.wst.sse.ui.sourcevalidation
"
>
<
validator
scope=
"
total
"
class=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularSourceValidator
"
id=
"
org.eclipse.angularjs.internal.ui.validation.htmlsyntaxvalidator
"
>
<
contentTypeIdentifier
id=
"
org.eclipse.angularjs.core.angularsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DECLARATION
"
/>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_COMMENT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.xml.XML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.sse.ST_DEFAULT
"
/>
</
contentTypeIdentifier
>
</
validator
>
</
extension
>
<
extension
point
=
"
org.eclipse.wst.sse.ui.sourcevalidation
"
>
<
validator
scope=
"
partial
"
class=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
id=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
>
<
contentTypeIdentifier
id=
"
org.eclipse.wst.html.core.htmlsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.xml.XML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.sse.ST_DEFAULT
"
/>
</
contentTypeIdentifier
>
</
validator
>
</
extension
>
<
extension
point
=
"
org.eclipse.wst.sse.ui.sourcevalidation
"
>
<
validator
scope=
"
partial
"
class=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
id=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
>
<
contentTypeIdentifier
id=
"
org.eclipse.jst.jsp.core.jspsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.xml.XML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.sse.ST_DEFAULT
"
/>
</
contentTypeIdentifier
>
</
validator
>
</
extension
>
<
extension
point
=
"
org.eclipse.wst.sse.ui.sourcevalidation
"
>
<
validator
scope=
"
partial
"
class=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
id=
"
org.eclipse.angularjs.internal.ui.validation.HTMLAngularContentValidator
"
>
<
contentTypeIdentifier
id=
"
org.eclipse.angularjs.core.angularsource
"
>
<
partitionType
id
=
"
org.eclipse.wst.html.HTML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.xml.XML_DEFAULT
"
/>
<
partitionType
id
=
"
org.eclipse.wst.sse.ST_DEFAULT
"
/>
</
contentTypeIdentifier
>
</
validator
>
</
extension
>
<!--
======================================================================================
-->
<!--
Hyperlink
-->
<!--
======================================================================================
-->
<
extension
point=
"
org.eclipse.ui.workbench.texteditor.hyperlinkDetectors
"
>
<
hyperlinkDetector
class=
"
org.eclipse.angularjs.internal.ui.hyperlink.HTMLAngularHyperLinkDetector
"
id=
"
org.eclipse.angularjs.internal.ui.hyperlink.HTMLAngularHyperLinkDetector
"
name=
"
%HTMLAngularHyperLinkDetector.name
"
targetId=
"
org.eclipse.wst.html.core.htmlsource
"
>
</
hyperlinkDetector
>
</
extension
>
</
plugin
>
Back
|
FazBrowse Home
|
New Git URL