Skip to main content
summaryrefslogtreecommitdiffstats
blob: 989f787b8898b0b6f15502412d195836041dfa0b (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension-point id="ITestRunReport" name="ITestRunReport" schema="schema/ITestRunReport.exsd"/>
   <extension
         point="org.eclipse.ui.importWizards">
      <wizard
            category="org.eclipse.osee.define.import.category"
            class="org.eclipse.osee.ote.ui.define.importer.OutfileImportWizard"
            icon="images/outfile_import.gif"
            id="org.eclipse.osee.ote.ui.define.importer.outfileImportWizard"
            name="Test Outfiles">
      </wizard>
   </extension>
   <extension
         point="org.eclipse.ui.views">
      <category
            id="osee.test.category"
            name="OSEE Test">
      </category>
      <view
            allowMultiple="false"
            category="osee.test.category"
            class="org.eclipse.osee.ote.ui.define.views.TestRunView"
            icon="images/testRunView.gif"
            id="org.eclipse.osee.ote.ui.define.views.TestRunView"
            name="Test Run View">
      </view>
   </extension>
   <extension
         point="org.eclipse.osee.framework.ui.plugin.XNavigateItem">
      <XNavigateItem
            classname="org.eclipse.osee.ote.ui.define.views.TestRunViewNavigateItem"
            viewId="org.eclipse.osee.ote.ui.navigate.OteNavigateView">
      </XNavigateItem>
   </extension>
   <extension
         point="org.eclipse.ui.perspectiveExtensions">
      <perspectiveExtension
            targetID="org.eclipse.osee.ote.ui.TestPerspective">
         <viewShortcut
               id="org.eclipse.osee.ote.ui.define.views.TestRunView">
         </viewShortcut>
      </perspectiveExtension>
   </extension>
   <extension
         point="org.eclipse.osee.framework.skynet.core.HttpServerRequest">
      <IHttpServerRequest
            classname="org.eclipse.osee.ote.ui.define.reports.HttpReportRequest">
      </IHttpServerRequest>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            description="Display test runs grouped by branch"
            id="org.eclipse.osee.ote.ui.define.views.TestRunView.flatPresentation.command"
            name="By Branch">
      </command>
      <command
            description="Displays test runs grouped by script name and revision"
            id="org.eclipse.osee.ote.ui.define.views.TestRunView.groupedPresentation.command"
            name="By Script Revision">
      </command>
      <command
            description="Displays items in long notation"
            id="org.eclipse.osee.ote.ui.define.views.TestRunView.longNamesPresentation.command"
            name="Long">
      </command>
      <command
            description="Displays items in short notation"
            id="org.eclipse.osee.ote.ui.define.views.TestRunView.shortNamesPresentation.command"
            name="Short">
      </command>
      <command
            description="Displays the latest test run of each script."
            id="org.eclipse.osee.ote.ui.define.views.TestRunView.latestOnlyFilterHandler.command"
            name="Show only the latest run">
      </command>
   </extension>
   <extension
         name="Test Run View Commands"
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.osee.ote.ui.define.views.handlers.FlatPresentationHandler"
            commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.flatPresentation.command">
      </handler>
      <handler
            class="org.eclipse.osee.ote.ui.define.views.handlers.GroupedPresentationHandler"
            commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.groupedPresentation.command">
      </handler>
      <handler
            class="org.eclipse.osee.ote.ui.define.views.handlers.LongNamesPresentationHandler"
            commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.longNamesPresentation.command">
      </handler>
      <handler
            class="org.eclipse.osee.ote.ui.define.views.handlers.ShortNamesPresentationHandler"
            commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.shortNamesPresentation.command">
      </handler>
      <handler
            class="org.eclipse.osee.ote.ui.define.views.handlers.ToggleFilterHandler"
            commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.latestOnlyFilterHandler.command">
      </handler>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.osee.ote.ui.define.views.TestRunView">
         <menu
               label="Group By">
            <command
                  commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.groupedPresentation.command"
                  icon="images/tree_layout.gif"
                  id="org.eclipse.osee.ote.ui.define.views.TestRunView.groupedCommand"
                  style="radio">
            </command>
            <command
                  commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.flatPresentation.command"
                  icon="images/flat_layout.gif"
                  id="org.eclipse.osee.ote.ui.define.views.TestRunView.flatCommand"
                  style="radio">
            </command>
         </menu>
         <menu
               label="Notation">
            <command
                  commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.longNamesPresentation.command"
                  id="org.eclipse.osee.ote.ui.define.views.TestRunView.longNamesCommand"
                  style="radio">
            </command>
            <command
                  commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.shortNamesPresentation.command"
                  id="org.eclipse.osee.ote.ui.define.views.TestRunView.shortNamesCommand"
                  style="radio">
            </command>
         </menu>
         <menu
               label="Filters">
            <command
                  commandId="org.eclipse.osee.ote.ui.define.views.TestRunView.latestOnlyFilterHandler.command"
                  icon="images/latest_versions.gif"
                  id="org.eclipse.osee.ote.ui.define.views.TestRunView.latestOnlyFilterCommand"
                  style="toggle">
            </command>
         </menu>
      </menuContribution>
   </extension>
   <extension
         id="org.eclipse.osee.ote.ui.define.reports.HighLevelSummary"
         name="High Level Test Run Summary"
         point="org.eclipse.osee.ote.ui.define.ITestRunReport">
      <ITestRunReport
            classname="org.eclipse.osee.ote.ui.define.reports.HighLevelSummary"
            icon="images/latest_versions.gif">
      </ITestRunReport>
   </extension>
   <extension
         id="org.eclipse.osee.ote.ui.define.reports.HistoricalTestRunData"
         name="Historical Test Run Report"
         point="org.eclipse.osee.ote.ui.define.ITestRunReport">
      <ITestRunReport
            classname="org.eclipse.osee.ote.ui.define.reports.HistoricalTestRunData"
            icon="images/latest_versions.gif">
      </ITestRunReport>
   </extension>
   <extension
         point="org.eclipse.osee.framework.ui.plugin.PropertyStoreControl">
      <PropertyStoreControl
            classname="org.eclipse.osee.ote.ui.define.views.TestRunArtifactOptions"
            viewId="org.eclipse.osee.ote.ui.test.manager">
      </PropertyStoreControl>
   </extension>
   <extension
           point="org.eclipse.osee.framework.ui.skynet.ArtifactImageProvider">
        <ArtifactImageProvider
              class="org.eclipse.osee.ote.ui.define.OteArtifactImageProvider">
        </ArtifactImageProvider>
     </extension>
</plugin>

Back to the top