| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<?eclipse version="3.0"?> |
| 3 |
<plugin> |
| 4 |
|
| 5 |
<extension |
| 6 |
id="application" |
| 7 |
point="org.eclipse.core.runtime.applications"> |
| 8 |
<application> |
| 9 |
<run class="jp.sourceforge.concierge.framework.Application" /> |
| 10 |
</application> |
| 11 |
</extension> |
| 12 |
|
| 13 |
<extension |
| 14 |
point="org.eclipse.ui.perspectives"> |
| 15 |
<perspective |
| 16 |
name="Concierge" |
| 17 |
class="jp.sourceforge.concierge.framework.MainPerspective" |
| 18 |
icon="icons/concierge.png" |
| 19 |
id="jp.sourceforge.concierge.framework.MainPerspective"> |
| 20 |
</perspective> |
| 21 |
<perspective |
| 22 |
name="Biblio" |
| 23 |
class="jp.sourceforge.concierge.framework.BibliographyPerspective" |
| 24 |
icon="icons/concierge.png" |
| 25 |
id="jp.sourceforge.concierge.framework.BibliographyPerspective"> |
| 26 |
</perspective> |
| 27 |
<perspective |
| 28 |
name="Admin" |
| 29 |
class="jp.sourceforge.concierge.framework.AdministrativePerspective" |
| 30 |
icon="icons/concierge.png" |
| 31 |
id="jp.sourceforge.concierge.framework.AdministrativePerspective"> |
| 32 |
</perspective> |
| 33 |
</extension> |
| 34 |
|
| 35 |
<extension |
| 36 |
point="org.eclipse.ui.preferencePages"> |
| 37 |
<page |
| 38 |
class="jp.sourceforge.concierge.framework.preferences.ProxyPreferencePage" |
| 39 |
id="jp.sourceforge.concierge.framework.preferences.ProxyPreferencePage" |
| 40 |
name="Proxy"/> |
| 41 |
<page |
| 42 |
class="jp.sourceforge.concierge.framework.preferences.AccountPreferencePage" |
| 43 |
id="jp.sourceforge.concierge.framework.preferences.AccountPreferencePage" |
| 44 |
name="Account"/> |
| 45 |
<page |
| 46 |
class="jp.sourceforge.concierge.framework.preferences.DatabasePreferencePage" |
| 47 |
id="jp.sourceforge.concierge.framework.preferences.DatabasePreferencePage" |
| 48 |
name="Database"/> |
| 49 |
</extension> |
| 50 |
|
| 51 |
<extension |
| 52 |
point="org.eclipse.core.runtime.preferences"> |
| 53 |
<initializer class="jp.sourceforge.concierge.framework.preferences.PreferenceInitializer"/> |
| 54 |
</extension> |
| 55 |
|
| 56 |
<extension |
| 57 |
point="org.eclipse.ui.actionSets"> |
| 58 |
<actionSet |
| 59 |
label="Update Action Set" |
| 60 |
visible="true" |
| 61 |
id="jp.sourceforge.concierge.framework.UpdateActionSet"> |
| 62 |
<action |
| 63 |
label="Software Updates" |
| 64 |
id="jp.sourceforge.concierge.framework.UpdateAction" |
| 65 |
menubarPath="help/UpdateAction" |
| 66 |
class="jp.sourceforge.concierge.framework.UpdateAction"> |
| 67 |
</action> |
| 68 |
</actionSet> |
| 69 |
</extension> |
| 70 |
<extension |
| 71 |
id="product" |
| 72 |
point="org.eclipse.core.runtime.products"> |
| 73 |
<product |
| 74 |
application="jp.sourceforge.concierge.framework.application" |
| 75 |
name="Concierge"> |
| 76 |
<property |
| 77 |
name="startupProgressRect" |
| 78 |
value="0,207,427,15"/> |
| 79 |
<property |
| 80 |
name="appName" |
| 81 |
value="Concierge"/> |
| 82 |
<property |
| 83 |
name="aboutImage" |
| 84 |
value="splash.bmp"/> |
| 85 |
<property |
| 86 |
name="windowImages" |
| 87 |
value="icons/logo16.gif,icons/logo32.gif,icons/logo48.gif,icons/logo64.gif,icons/logo128.gif"/> |
| 88 |
<property |
| 89 |
name="startupForegroundColor" |
| 90 |
value="000000"/> |
| 91 |
<property |
| 92 |
name="startupMessageRect" |
| 93 |
value="0,192,0,0"/> |
| 94 |
</product> |
| 95 |
</extension> |
| 96 |
|
| 97 |
</plugin> |