source: trunk/de.ugoe.cs.swe.exercises/plugin.xml @ 3

Last change on this file since 3 was 3, checked in by zeiss, 15 years ago
  • Property svn:mime-type set to text/plain
File size: 4.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4
5   <extension
6         id="application"
7         point="org.eclipse.core.runtime.applications">
8      <application>
9         <run
10               class="de.ugoe.cs.swe.exercises.Application">
11         </run>
12      </application>
13   </extension>
14   <extension
15         point="org.eclipse.ui.perspectives">
16      <perspective
17            name="Exercise"
18            class="de.ugoe.cs.swe.exercises.Perspective"
19            id="de.ugoe.cs.swe.exercises.perspective">
20      </perspective>
21   </extension>
22   <extension
23         point="org.eclipse.ui.views">
24      <view
25            category="de.ugoe.cs.swe.exercises.category"
26            class="de.ugoe.cs.swe.exercises.lecturer.ViewLecturer"
27            icon="icons/user-online16.png"
28            id="de.ugoe.cs.swe.exercises.views.lecturer"
29            name="Lecturer"
30            restorable="true">
31      </view>
32      <view
33            category="de.ugoe.cs.swe.exercises.category"
34            class="de.ugoe.cs.swe.exercises.exercise.ViewExercise"
35            icon="icons/edit-copy16.png"
36            id="de.ugoe.cs.swe.exercises.views.exercise"
37            name="Exercises"
38            restorable="true">
39      </view>
40      <view
41            category="de.ugoe.cs.swe.exercises.category"
42            class="de.ugoe.cs.swe.exercises.lecture.GUITreeView"
43            icon="icons/x-office-address-book16.png"
44            id="de.ugoe.cs.swe.exercises.views.tree"
45            name="Lectures"
46            restorable="true">
47      </view>
48      <category
49            id="de.ugoe.cs.swe.exercises.category"
50            name="Exercises">
51      </category>
52   </extension>
53   <extension
54         point="org.eclipse.ui.perspectiveExtensions">
55      <perspectiveExtension
56            targetID="*">
57         <view
58               closeable="false"
59               id="de.ugoe.cs.swe.exercises.views.lecturer"
60               minimized="false"
61               moveable="false"
62               ratio="0.95f"
63               relationship="fast"
64               showTitle="true"
65               standalone="false"
66               visible="true">
67         </view>
68         <view
69               closeable="false"
70               id="de.ugoe.cs.swe.exercises.views.exercise"
71               minimized="false"
72               moveable="false"
73               ratio="0.95f"
74               relationship="fast"
75               showTitle="true"
76               standalone="false"
77               visible="true">
78         </view>
79         <view
80               closeable="false"
81               id="de.ugoe.cs.swe.exercises.views.tree"
82               minimized="false"
83               moveable="false"
84               ratio="0.95f"
85               relationship="fast"
86               showTitle="true"
87               standalone="false"
88               visible="true">
89         </view>
90      </perspectiveExtension>
91   </extension>
92   <extension
93         point="org.eclipse.ui.commands">
94      <command
95            defaultHandler="de.ugoe.cs.swe.exercises.svn.Settings"
96            id="de.ugoe.cs.swe.exercises.commands.svnSettings"
97            name="SVN Settings">
98      </command>
99   </extension>
100   <extension
101         point="org.eclipse.ui.menus">
102      <menuContribution
103            locationURI="menu:org.eclipse.ui.main.menu">
104         <menu
105               label="Options">
106            <command
107                  commandId="de.ugoe.cs.swe.exercises.commands.svnSettings"
108                  icon="icons/system-run16.png"
109                  label="Settings"
110                  style="push">
111            </command>
112         </menu>
113      </menuContribution>
114   </extension>
115   <extension
116         id="product"
117         point="org.eclipse.core.runtime.products">
118      <product
119            application="de.ugoe.cs.swe.exercises.application"
120            name="Exercises">
121         <property
122               name="appName"
123               value="Exercises">
124         </property>
125         <property
126               name="preferenceCustomization"
127               value="plugin_customization.ini">
128         </property>
129         <property name="startupProgressRect" value="10,375,580,15"/>
130         <property
131               name="windowImages"
132               value="/de.ugoe.cs.swe.exercise/icons/edit-copy16.png,/de.ugoe.cs.swe.exercise/icons/edit-copy48.png">
133         </property>
134         <property
135               name="startupForegroundColor"
136               value="000000">
137         </property>
138         <property
139               name="startupMessageRect"
140               value="10,360,580,20">
141         </property>
142         <property
143               name="aboutImage"
144               value="/de.ugoe.cs.swe.exercise/about.png">
145         </property>
146         <property
147               name="aboutText"
148               value="Another great product brought to you by:&#x0A;The Exercise Manager Team&#x0A;&#x0A;Please report any found bugs to /dev/null">
149         </property>
150      </product>
151   </extension>
152</plugin>
Note: See TracBrowser for help on using the repository browser.