Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Example Shared Text Editor"

m (There was no hint, that the server has to be running.)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
ECF Committer Ken Gilmer has implemented a shared text editor in the '''org.eclipse.ecf.example.collab.editor''' plugin.
+
ECF committer Ken Gilmer has implemented a shared text editor in the '''org.eclipse.ecf.example.collab.editor''' plugin.
  
First, get the plugin from anonymous CVS.  [http://www.eclipse.org/ecf/resources.html See the ECF dev resources page] for a description of how to get this plugin and the necessary dependencies.
+
'''NOTE: This work has been deprecated in favor of the work on DocShare/Cola'''Please see [[DocShare_Plugin]] for further info about the recent work.
 
+
# We will use two instances of eclipse for this demo; the creator instance (CI), and the joiner instance (JI). Therefore, start server first! (See e.g. http://www.eclipse.org/ecf/scribbleshare.html)
+
# Run two the two Eclipse instances, making sure to use different workspaces if you are on the same machine.
+
# Go to eclipse preferences, team->ECF Editor Sharing.  Adjust connection parameters as necessary. If you are using multiple machines, both will need to point to the same ECF server. <br>http://kengilmer.com/shared_editor/s2.jpg
+
# Create a text file in a project in CI.
+
# In CI, Right click on file and select Team -> Initiate Shared Session <br>http://kengilmer.com/shared_editor/s1.jpg
+
# At this point, you have created a shared editor instance in CINow others can connect.
+
# In JI, select File->New->Team->Shared Editor Session<br>http://kengilmer.com/shared_editor/s3.jpg
+
# The dialog will now show a window asking for local container, and will list all active editor sessions.  These sessions are global to the ECF container name specified in preferences.<br>http://kengilmer.com/shared_editor/s4.jpg
+
# Select your file.  The editor will be created, and saved to whatever project container is specified in JI.
+
# Start typing in CI.  You should see changes on both editors.  <br>http://kengilmer.com/shared_editor/s5.jpg
+

Latest revision as of 15:29, 28 October 2008

ECF committer Ken Gilmer has implemented a shared text editor in the org.eclipse.ecf.example.collab.editor plugin.

NOTE: This work has been deprecated in favor of the work on DocShare/Cola. Please see DocShare_Plugin for further info about the recent work.

Back to the top