author | fturovic <frank.turovich@nokia.com> |
Thu, 29 Jul 2010 14:52:28 -0500 | |
changeset 1726 | a9ad516f44ae |
parent 1721 | 18638adda547 |
child 1727 | 743cc54fdffe |
permissions | -rw-r--r-- |
1360 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<?eclipse version="3.4"?> |
|
3 |
<plugin> |
|
1609 | 4 |
<extension-point id="portalPage" name="Portal Page" schema="schema/portalPage.exsd"/> |
1684
c2eba6dabd38
refactor to allow better support for multiple layers
dadubrow
parents:
1616
diff
changeset
|
5 |
<extension-point id="portalPageLayer" name="Portal Page Layer" schema="schema/portalPageLayer.exsd"/> |
1360 | 6 |
<extension |
7 |
point="org.eclipse.help.contexts"> |
|
8 |
<contexts |
|
9 |
file="contexts.xml"> |
|
10 |
</contexts> |
|
11 |
</extension> |
|
1609 | 12 |
<extension |
13 |
point="org.eclipse.ui.editors"> |
|
14 |
<editor |
|
15 |
class="com.nokia.carbide.internal.discovery.ui.editor.PortalEditor" |
|
16 |
default="false" |
|
17 |
icon="icons/Carbide_c_icon_16x16.png" |
|
18 |
id="com.nokia.carbide.discovery.ui.portalEditor" |
|
1615 | 19 |
name="%menu.title"> |
1609 | 20 |
</editor> |
21 |
</extension> |
|
22 |
<extension |
|
23 |
point="org.eclipse.ui.commands"> |
|
24 |
<command |
|
1615 | 25 |
description="%portal.desc" |
1609 | 26 |
id="com.nokia.carbide.discovery.commands.launch" |
27 |
name="%menu.title"> |
|
28 |
</command> |
|
29 |
</extension> |
|
30 |
<extension point="org.eclipse.ui.handlers"> |
|
31 |
<handler |
|
32 |
class="com.nokia.carbide.internal.discovery.ui.command.LaunchHandler" |
|
33 |
commandId="com.nokia.carbide.discovery.commands.launch"> |
|
34 |
</handler> |
|
35 |
</extension> |
|
36 |
||
37 |
<extension point="org.eclipse.ui.menus"> |
|
38 |
<!-- Defines a new menu contribution to the Eclipse help menu --> |
|
39 |
<menuContribution |
|
40 |
locationURI="menu:help?after=helpEnd"> |
|
41 |
<command |
|
42 |
commandId="com.nokia.carbide.discovery.commands.launch" |
|
43 |
icon="icons/Carbide_c_icon_16x16.png" |
|
44 |
label="%menu.title" |
|
45 |
id="portalCommand"> |
|
46 |
</command> |
|
47 |
</menuContribution> |
|
48 |
</extension> |
|
49 |
<extension |
|
50 |
point="com.nokia.carbide.discovery.ui.portalPage"> |
|
51 |
<portalPage |
|
1705 | 52 |
id="com.nokia.carbide.discovery.ui.customizePage" |
53 |
image="icons/icon-discovery.png" |
|
1684
c2eba6dabd38
refactor to allow better support for multiple layers
dadubrow
parents:
1616
diff
changeset
|
54 |
order="50" |
1721 | 55 |
title="%customize.title"> |
1705 | 56 |
</portalPage> |
57 |
<portalPage |
|
58 |
id="com.nokia.carbide.discovery.ui.homePage" |
|
59 |
image="icons/Carbide_c_icon_16x16.png" |
|
60 |
order="1" |
|
1721 | 61 |
title="%home.title"> |
1609 | 62 |
</portalPage> |
63 |
<portalPage |
|
1705 | 64 |
id="com.nokia.carbide.discovery.ui.supportPage" |
65 |
image="icons/debug.png" |
|
66 |
order="100" |
|
1721 | 67 |
title="%support.title"> |
1609 | 68 |
</portalPage> |
1705 | 69 |
</extension> |
70 |
<extension |
|
71 |
point="com.nokia.carbide.discovery.ui.portalPageLayer"> |
|
72 |
<portalPageLayer |
|
73 |
class="com.nokia.carbide.internal.discovery.ui.view.HomePage" |
|
1721 | 74 |
pageId="com.nokia.carbide.discovery.ui.homePage" |
75 |
title="Forum Nokia"> |
|
1705 | 76 |
</portalPageLayer> |
77 |
<portalPageLayer |
|
1616 | 78 |
class="com.nokia.carbide.internal.discovery.ui.view.SupportPage" |
1721 | 79 |
pageId="com.nokia.carbide.discovery.ui.supportPage" |
80 |
title="Carbide Support"> |
|
1705 | 81 |
</portalPageLayer> |
82 |
<portalPageLayer |
|
83 |
class="com.nokia.carbide.internal.discovery.ui.view.InstallExtensionsPortalExtension" |
|
1721 | 84 |
pageId="com.nokia.carbide.discovery.ui.customizePage" |
85 |
title="%install.layer.title"> |
|
86 |
</portalPageLayer> |
|
87 |
<portalPageLayer |
|
88 |
class="com.nokia.carbide.internal.discovery.ui.view.WrenchSciencePage" |
|
89 |
pageId="com.nokia.carbide.discovery.ui.homePage" |
|
90 |
title="%wrenchscience.title"> |
|
91 |
</portalPageLayer> |
|
92 |
<portalPageLayer |
|
93 |
class="com.nokia.carbide.internal.discovery.ui.view.CreatingCarbidePage" |
|
94 |
pageId="com.nokia.carbide.discovery.ui.homePage" |
|
95 |
title="%creatingcarbide.title"> |
|
1705 | 96 |
</portalPageLayer> |
1609 | 97 |
</extension> |
1360 | 98 |
|
99 |
</plugin> |