Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-dev] Extending DocShare for JSP editor


HI Lauren

Use "popup:org.eclipse.jst.jsp.core.jspsource.source.EditorContext" instead of "popup:org.eclipse.jst.jsp.core.jspsource" in  locationURI.

This should be the content of your plugin

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension
         point="org.eclipse.ui.menus">
         <menuContribution locationURI="popup:org.eclipse.jst.jsp.core.jspsource.source.EditorContext">
            <dynamic class="org.eclipse.ecf.internal.provisional.docshare.menu.DocShareRosterMenuContributionItem"
             id="com.foo.jmd.MyEditorContextID.dynamic1">
            </dynamic>
        </menuContribution>
         
   </extension>

</plugin>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Thanks & Regards
Gaurav
Technical Lead - Portal Designer & Portlet Web2.0 Tooling,
RAD Portal Tools

“If you judge people, you have no time to love them.”
—Mother Teresa



"Lauren J. Hayward" <laurenjhayward@xxxxxxxxx>
Sent by: wtp-dev-bounces@xxxxxxxxxxx

01/24/2009 12:28 AM

Please respond to
lauren@xxxxxxxxxxxxxxx; Please respond to
"General discussion of project-wide or architectural issues."        <wtp-dev@xxxxxxxxxxx>

To
wtp-dev@xxxxxxxxxxx
cc
Subject
[wtp-dev] Extending DocShare for JSP editor





Hi,

I'm attempting to extend the DocShare real-timed shared editing plugin to the JSP editor.  I have been using the tutorial posted here,
http://wiki.eclipse.org/Extending_Real-Time_Shared_Editing_for_Use_with_Other_Editors, to do so.  I have tried every combination of options I can think of inside my plugin.xml file, and I can't seem to get it correct.  No matter what I do, the option to "Share Editor With" does not appear in the JSP editor, even though it works fine in the Java editor and text editor.  I'm including two different versions of plugin.xml below.  The first version is the file for a new plugin I created and the second version is the file for the original docshare plugin.xml.

I would really appreciate any help or hints you can provide.

Thank you for your time!
Lauren

---


<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
  <extension point="org.eclipse.ui.menus">
         <menuContribution locationURI="popup:org.

eclipse.jst.jsp.core.jspsource">
            <dynamic class="org.eclipse.ecf.internal.provisional.docshare.menu.DocShareRosterMenuContributionItem"
            id="org.eclipse.jst.jsp.core.jspsource.dynamic1">
           </dynamic>
         </menuContribution>
</extension>

</plugin>

---

  <?xml version="1.0" encoding="UTF-8" ?>
  <?eclipse version="3.2"?>
- <plugin>
- <extension point="org.eclipse.ecf.start">
  <run class="org.eclipse.ecf.internal.docshare.ECFStart" />
  </extension>
- <extension point="org.eclipse.ui.menus">
- <menuContribution locationURI="popup:#CompilationUnitEditorContext">
  <dynamic class="org.eclipse.ecf.internal.provisional.docshare.menu.DocShareRosterMenuContributionItem" id="org.eclipse.ecf.editorshare.dynamic1" />
  </menuContribution>
  </extension>
- <extension point="org.eclipse.ui.menus">
- <menuContribution locationURI="popup:#TextEditorContext">
  <dynamic class="org.eclipse.ecf.internal.provisional.docshare.menu.DocShareRosterMenuContributionItem" id="org.eclipse.ecf.editorshare.dynamic2" />
  </menuContribution>
  </extension>
- <extension point="org.eclipse.ui.menus">
- <menuContribution locationURI="popup:org.eclipse.jst.jsp.core.jspsource.JSPSourcePageEditor">
  <dynamic class="org.eclipse.ecf.internal.provisional.docshare.menu.DocShareRosterMenuContributionItem" id="org.eclipse.ecf.editorshare.dynamic3" />
  </menuContribution>
  </extension>
  </plugin>


--
Lauren J. Hayward
NC State STARS Assistant Academic Liaison
Master's Degree Student, NC State University

http://www4.ncsu.edu/~ljhaywar
lauren@xxxxxxxxxxxxxxx_______________________________________________
wtp-dev mailing list
wtp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/wtp-dev


Back to the top