Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-04-24 13:55:45 +0000
committerslewis2008-04-24 13:55:45 +0000
commitae3cad832373bf37ab834a13e9db6d5ee1b854ac (patch)
treef394c8b5c00cc7d788d3fa1619b1216601c28582
parent347b67d3c3a56335add70f6a72d372186917e618 (diff)
downloadorg.eclipse.ecf-ae3cad832373bf37ab834a13e9db6d5ee1b854ac.tar.gz
org.eclipse.ecf-ae3cad832373bf37ab834a13e9db6d5ee1b854ac.tar.xz
org.eclipse.ecf-ae3cad832373bf37ab834a13e9db6d5ee1b854ac.zip
Added resource and editor sharing menu contributions for StructuredTextEditor to address bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=228582
-rw-r--r--framework/bundles/org.eclipse.ecf.docshare/plugin.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf.docshare/plugin.xml b/framework/bundles/org.eclipse.ecf.docshare/plugin.xml
index c5cacf536..e55d1d234 100644
--- a/framework/bundles/org.eclipse.ecf.docshare/plugin.xml
+++ b/framework/bundles/org.eclipse.ecf.docshare/plugin.xml
@@ -13,7 +13,7 @@
locationURI="popup:#CompilationUnitEditorContext">
<dynamic
class="org.eclipse.ecf.docshare.menu.DocShareRosterMenuContributionItem"
- id="org.eclipse.ecf.editorshare.dynamic1">
+ id="org.eclipse.ecf.docshare.compilationuniteditorcontribution">
</dynamic>
</menuContribution>
</extension>
@@ -24,10 +24,20 @@
locationURI="popup:#TextEditorContext">
<dynamic
class="org.eclipse.ecf.docshare.menu.DocShareRosterMenuContributionItem"
- id="org.eclipse.ecf.editorshare.dynamic2">
+ id="org.eclipse.ecf.docshare.texteditorcontribution">
</dynamic>
</menuContribution>
</extension>
+ <extension
+ point="org.eclipse.ui.menus">
+ <menuContribution
+ locationURI="popup:org.eclipse.wst.sse.ui.StructuredTextEditor.EditorContext?after=additions">
+ <dynamic
+ class="org.eclipse.ecf.docshare.menu.DocShareRosterMenuContributionItem"
+ id="org.eclipse.ecf.editorshare.structuredtexteditorcontribution">
+ </dynamic>
+ </menuContribution>
+ </extension>
</plugin>

Back to the top