Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
139 lines (129 loc) · 4.98 KB

File metadata and controls

139 lines (129 loc) · 4.98 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.nodeclipse.ui.wizards.category"
name="Nodeclipse">
</category>
<wizard
category="org.nodeclipse.ui.wizards.category"
class="org.nodeclipse.phantomjs.wizards.PhantomjsProjectWizard"
finalPerspective="org.nodeclipse.ui.perspectives.NodePerspective"
icon="icons/phantomjs_top_right_corner_new.png"
id="org.nodeclipse.phantomjs.wizards.PhantomjsProjectWizard"
name="&amp;PhantomJS Project"
project="true">
<description>
Create a new PhantomJS project (or add .project file to an existing project)
</description>
</wizard>
</extension>
<extension
point="org.eclipse.ui.ide.projectNatureImages">
<image
icon="icons/phantomjs_half_size.png"
id="org.nodeclipse.phantomjs.PhantomjsNature.Image"
natureId="org.nodeclipse.phantomjs.PhantomjsNature">
</image>
</extension>
<extension
id="org.nodeclipse.phantomjs.PhantomjsNature"
name="PhantomJS Project Nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.nodeclipse.phantomjs.nature.PhantomjsNature">
</run>
</runtime>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.nodeclipse.ui.editors.NodeEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
default="true"
extensions="pjs"
icon="icons/phantomjs.png"
id="org.nodeclipse.phantomjs.editors.PhantomjsEditor"
name="PhantomJS Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.phantomjs.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.phantomjs.launch.LaunchConfigurationType"
modes="run, debug"
name="PhantomJS Script">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.phantomjs.launch.LaunchConfigurationType"
icon= "icons/phantomjs_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.phantomjs.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- phantomjs run/debug -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.phantomjs.launch.LaunchShortcut"
icon= "icons/phantomjs_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.phantomjs.launch.LaunchShortcut"
label= "PhantomJS Script"
modes= "run, debug" >
<configurationType
id= "org.nodeclipse.phantomjs.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.js" >
</test>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.pjs" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.phantomjs.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.phantomjs.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.phantomjs.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.nodeclipse.phantomjs.preferences.PhantomjsPreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.nodeclipse.ui.preferences.NodePreferencePage"
class="org.nodeclipse.phantomjs.preferences.PhantomjsPreferencePage"
id="org.nodeclipse.phantomjs.preferences.PhantomjsPreferencePage"
name="PhantomJS">
</page>
</extension>
</plugin>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.