Skip to main content
summaryrefslogtreecommitdiffstats
blob: 033cc8a1f0865cb3bc7243254f3405a656eaf568 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<?eclipse version="3.0"?>
<plugin>
   
   <extension point="org.eclipse.mylar.tasklist.providers">
      <taskHandler
            taskHandlerClass="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTaskHandler"
            externalizerClass="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTaskExternalizer"
            id="org.eclipse.mylar.bugzilla.ui.tasklist"
            name="Bugzilla Contributor">
      </taskHandler>
   </extension> 
   
   <extension point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension targetID="org.eclipse.jdt.ui.JavaPerspective">
               <newWizardShortcut id="org.eclipse.mylar.bugzilla.bugWizard"/>
          </perspectiveExtension>
	</extension>
      
   <extension
      id="org.eclipse.mylar.bugzilla.wizards"
      name="Bug Wizard"
      point="org.eclipse.ui.newWizards">
   <category
         name="Bugzilla Client"
         id="org.eclipse.mylar.bugzilla.wizard.category">
   </category>
   <wizard
         category="org.eclipse.mylar.bugzilla.wizard.category"
         class="org.eclipse.mylar.bugzilla.ui.wizard.NewBugWizard"
         icon="icons/elcl16/bug-new.gif"
         id="org.eclipse.mylar.bugzilla.bugWizard"
         name="New Bug Report">
      <description>
      	 Create a new bug report
      </description>
   </wizard>
</extension>
   
   <extension
         id="org.eclipse.mylar.bugzilla.help.browser"
         name="Bugzilla Help"
         point="org.eclipse.help.toc">
      <toc
            file="doc/toc.xml"
            primary="false">
      </toc>
   </extension>
   <extension
   			id="org.eclipse.mylar.bugzilla.ui"
   			name="Bugzilla Client Views"
   			point="org.eclipse.ui.views">
   		 <category
   				name="Bugzilla"
            	id="org.eclipse.mylar.bugzilla.category"/>
   		 <view
   		 		name="Bugzilla Offline Reports"
   				icon="icons/elcl16/bug-dirty.gif"
   				category="org.eclipse.mylar.bugzilla.category"
   				class="org.eclipse.mylar.bugzilla.ui.OfflineView"
   				id="org.eclipse.mylar.bugzilla.ui.offlineReportsView"/>
   		 <view
   		 		name="Bugzilla Favorites"
   				icon="icons/elcl16/bug-favorite.gif"
   				category="org.eclipse.mylar.bugzilla.category"
   				class="org.eclipse.mylar.bugzilla.ui.FavoritesView"
   				id="org.eclipse.mylar.bugzilla.ui.favoritesView"/>
   </extension>   
   <extension
         point="org.eclipse.ui.editors">
      <editor
            name="Bugzilla viewer"
            icon="icons/elcl16/bug.gif"
            class="org.eclipse.mylar.bugzilla.ui.editor.ExistingBugEditor"
            id="org.eclipse.mylar.bugzilla.ui.existingBugEditor">
      </editor>
      <editor
      		name="Bugzilla viewer"
      		icon="icons/elcl16/bug.gif"
      		class="org.eclipse.mylar.bugzilla.ui.editor.NewBugEditor"
      		id="org.eclipse.mylar.bugzilla.ui.newBugEditor">
      </editor>
           <editor
           icon="icons/elcl16/bug.gif"
           name="Bugzilla task viewer"
           class="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTaskEditor"
           id="org.eclipse.mylar.bugzilla.ui.tasklist.bugzillaTaskEditor"/>
   </extension>   
   <extension
         id="org.eclipse.mylar.bugzilla.help.context"
         name="Bugzilla Context-sensitive Help"
         point="org.eclipse.help.contexts">
      <contexts 
      		file="bugzilla-help.xml">
      </contexts>
   </extension>
   <extension
         point="org.eclipse.search.searchPages"
         id="org.eclipse.mylar.bugzilla.core.search.searchPage"
         name="Bugzilla Search Page">
      <page
            class="org.eclipse.mylar.bugzilla.ui.search.BugzillaSearchPage"
            enabled="true"
            icon="icons/elcl16/bug-search.gif"
            id="org.eclipse.mylar.bugzilla.core.search.bugzillaSearchPage"
            label="Bugzilla Search"
            tabPosition="999"/>
   </extension>
   <extension
         id="BugzillaSearchPage"
         point="org.eclipse.search.searchResultViewPages">
      <viewPage
            class="org.eclipse.mylar.bugzilla.ui.search.BugzillaSearchResultView"
            searchResultClass="org.eclipse.mylar.bugzilla.core.search.BugzillaSearchResult"
            id="org.eclipse.mylar.bugzilla.BugzillaSearchResultPage"/>
   </extension>
   
   <extension point="org.eclipse.ui.viewActions"> 
		<viewContribution 
			id="org.eclipse.mylar.bugzilla.ui.tasklist.actions" 
	   		targetID="org.eclipse.mylar.tasks.ui.views.TaskListView">
  			<action
	            class="org.eclipse.mylar.bugzilla.ui.actions.RefreshBugzillaReportsAction"
	            enablesFor="*"
	            icon="icons/etool16/task-bug-refresh.gif"
	            id="org.eclipse.mylar.bugzilla.tasklist.refresh"
	            label="Synchronized Unresolved Bugzilla Reports"
	            style="push"
	            toolbarPath="mylar"
	            tooltip="Synchronized Unresolved Bugzilla Reports"> 
  			</action>
  			<action
	            class="org.eclipse.mylar.bugzilla.ui.actions.CreateBugzillaQueryCategoryAction"
	            enablesFor="*"
	            icon="icons/etool16/category-query-new.gif"
	            id="org.eclipse.mylar.bugzilla.tasklist.addQuery"
	            label="Add Bugzilla Query"
	            style="push"
	            toolbarPath="mylar"
	            tooltip="Add Bugzilla Query"> 
  			</action>
  			  			
  			<action
	            class="org.eclipse.mylar.bugzilla.ui.actions.CreateNewBugzillaTaskAction"
	            enablesFor="*"
	            icon="icons/etool16/task-bug-new.gif"
	            id="org.eclipse.mylar.bugzilla.tasklist.addNew"
	            label="Create and Add New Bugzilla Report"
	            style="push"
	            toolbarPath="mylar"
	            tooltip="Create and Add New Bugzilla Report"> 
  			</action>
    		<action
	            class="org.eclipse.mylar.bugzilla.ui.actions.CreateBugzillaTaskAction"
	            enablesFor="*"
	            icon="icons/etool16/task-bug.gif"
	            id="org.eclipse.mylar.bugzilla.tasklist.addExisting"
	            label="Add Existing Bugzilla Report"
	            style="push"
	            toolbarPath="mylar"
	            tooltip="Add Existing Bugzilla Report"> 
  			</action>
	    </viewContribution> 
	</extension>
	
	   <extension
         point="org.eclipse.ui.popupMenus">
      <viewerContribution
            id="org.eclipse.mylar.bugzilla.ui.viewerContribution1"
            targetID="org.eclipse.mylar.tasks.ui.views.TaskListView">
         <action
               class="org.eclipse.mylar.bugzilla.ui.actions.CreateBugzillaTaskAction"
               enablesFor="*"
               icon="icons/etool16/task-bug.gif"
               id="org.eclipse.mylar.bugzilla.ui.popup.addExisting"
               label="Add Existing Bugzilla Report"
               menubarPath="mylar"
               tooltip="Add Existing Bugzilla Report">
            <enablement>
               <objectClass name="org.eclipse.mylar.tasklist.internal.TaskCategory"/>
            </enablement>
         </action>
         <action
               class="org.eclipse.mylar.bugzilla.ui.actions.RefreshBugzillaAction"
               enablesFor="*"
               icon="icons/etool16/task-bug-refresh.gif"
               id="org.eclipse.mylar.bugzilla.ui.popup.refresh"
               label="Bugzilla Refresh"
               menubarPath="mylar"
               tooltip="Bugzilla Refresh">
            <enablement>
               <or>
                    <objectClass name="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaTask"/>
					<objectClass name="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaQueryCategory"/>
               		<objectClass name="org.eclipse.mylar.bugzilla.ui.tasklist.BugzillaHit"/>
               </or>
            </enablement>
         </action>
      </viewerContribution>
      
   </extension>
</plugin>

Back to the top