-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
148 lines (146 loc) · 5.47 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="com.swdc.codetime.managers.InfoPreferencePage"
id="com.swdc.codetime.PreferencesPage"
name="Code Time">
</page>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup
class="com.swdc.codetime.CodeTimeActivator">
</startup>
</extension>
<extension point="org.eclipse.ui.views">
<view id="com.swdc.codetime.webview.codeTimeView"
name="Code Time"
class="com.swdc.codetime.webview.CodeTimeView"
icon="icons/paw.png"/>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.trim.status">
<toolbar
id="com.swdc.codetime.toolbar">
<control
class="com.swdc.codetime.util.SWCoreStatusBar">
</control>
</toolbar>
</menuContribution>
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?before=help">
<menu
id="com.swdc.codetime.menus.metrics"
label="Code Time"
mnemonic="M">
<command
commandId="com.swdc.codetime.commands.metrics.codetime"
id="com.swdc.codetime.commands.metrics.codetime">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.dashboard"
id="com.swdc.codetime.commands.metrics.dashboard">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.topforty"
id="com.swdc.codetime.commands.metrics.topforty">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.login"
id="com.swdc.codetime.commands.metrics.login">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.togglestatus"
id="com.swdc.codetime.commands.metrics.togglestatus">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.slackconnect"
id="com.swdc.codetime.commands.metrics.slackconnect">
</command>
<command
commandId="com.swdc.codetime.commands.metrics.slackdisconnect"
id="com.swdc.codetime.commands.metrics.slackdisconnect">
</command>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<category
id="com.swdc.codetime.commands.category"
name="Code Time">
</category>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.codetime"
name="Dashboard">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.dashboard"
name="More data at Software.com">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.topforty"
name="Software top 40">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.login"
name="Log in to see your coding data">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.togglestatus"
name="Show/hide status bar metrics">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.slackconnect"
name="Connect Slack workspace">
</command>
<command
categoryId="com.swdc.codetime.commands.category"
id="com.swdc.codetime.commands.metrics.slackdisconnect"
name="Disconnect Slack workspace">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="com.swdc.codetime.handlers.CodeTimeDashboardHandler"
commandId="com.swdc.codetime.commands.metrics.codetime">
</handler>
<handler
class="com.swdc.codetime.handlers.SoftwareTopFortyHandler"
commandId="com.swdc.codetime.commands.metrics.topforty">
</handler>
<handler
class="com.swdc.codetime.handlers.MetricsDashboardHandler"
commandId="com.swdc.codetime.commands.metrics.dashboard">
</handler>
<handler
class="com.swdc.codetime.handlers.SoftwareLoginHandler"
commandId="com.swdc.codetime.commands.metrics.login">
</handler>
<handler
class="com.swdc.codetime.handlers.ToggleStatusBarHandler"
commandId="com.swdc.codetime.commands.metrics.togglestatus">
</handler>
<handler
class="com.swdc.codetime.handlers.SlackConnectHandler"
commandId="com.swdc.codetime.commands.metrics.slackconnect">
</handler>
<handler
class="com.swdc.codetime.handlers.SlackDisconnectHandler"
commandId="com.swdc.codetime.commands.metrics.slackdisconnect">
</handler>
</extension>
</plugin>