Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:Widgets"

(EDT Widget Build Process)
Line 20: Line 20:
  
 
*org.eclipse.edt.rui.dojo_0.7.0.zip -> Created by merging org.eclipse.edt.rui.dojo_0.7.0 with org.eclipse.edt.rui.dojo.runtime.local_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0  
 
*org.eclipse.edt.rui.dojo_0.7.0.zip -> Created by merging org.eclipse.edt.rui.dojo_0.7.0 with org.eclipse.edt.rui.dojo.runtime.local_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0  
*org.eclipse.edt.rui.dojo.remote_0.7.0 -> Created by merging org.eclipse.edt.rui.dojo_0.7.0 with org.eclipse.edt.rui.dojo.runtime.remote_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0
+
*org.eclipse.edt.rui.dojo.remote_0.7.0 -> Created by merging org.eclipse.edt.rui.dojo.remote_0.7.0 with org.eclipse.edt.rui.dojo.runtime.remote_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0
  
 
After these two zip files are built, they are placed in the org.eclipse.edt.ide.ui.resources plug-in, under the org.eclipse.edt.ide.ui.rui folder.  
 
After these two zip files are built, they are placed in the org.eclipse.edt.ide.ui.resources plug-in, under the org.eclipse.edt.ide.ui.rui folder.  

Revision as of 23:02, 30 October 2011

EDT Widget Projects

The following EDT Widget projects are stored in CVS under the 'widgets' folder:

  • org.eclipse.edt.rui.dojo.runtime.remote_1.6.1
  • org.eclipse.edt.rui.dojo.widgets_0.7.0
  • org.eclipse.edt.rui.dojo_0.7.0
  • org.eclipse.edt.rui.dojo.remote_0.7.0
  • org.eclipse.edt.rui.dojo.runtime.local_1.6.1
  • org.eclipse.edt.rui.widgets_0.7.0

EDT Widget Build Process

The following widget projects are used by the EDT build process, and should not be updated:

  • org.eclipse.edt.rui.dojo_0.7.0
  • org.eclipse.edt.rui.dojo.remote_0.7.0

Each time the EDT build process runs, content from the two projects listed above is merged with content from other widget projects to produce the following zip files:

  • org.eclipse.edt.rui.dojo_0.7.0.zip -> Created by merging org.eclipse.edt.rui.dojo_0.7.0 with org.eclipse.edt.rui.dojo.runtime.local_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0
  • org.eclipse.edt.rui.dojo.remote_0.7.0 -> Created by merging org.eclipse.edt.rui.dojo.remote_0.7.0 with org.eclipse.edt.rui.dojo.runtime.remote_1.6.1 and org.eclipse.edt.rui.dojo.widgets_0.7.0

After these two zip files are built, they are placed in the org.eclipse.edt.ide.ui.resources plug-in, under the org.eclipse.edt.ide.ui.rui folder.

The org.eclipse.edt.rui.widgets_0.7.0 is also zipped and placed in the same folder as org.eclipse.edt.rui.widgets_0.7.0.zip.

NOTE: The content of the org.eclipse.edt.ide.ui.resources plug-in is NOT updated in CVS during the build process. Only the version of the plug-in that is included with the build is updated.

EDT Widget Project Development Considerations

When developing content for the widget projects, only the following projects should be updated:

  • org.eclipse.edt.rui.widgets_0.7.0
  • org.eclipse.edt.rui.dojo.runtime.remote_1.6.1
  • org.eclipse.edt.rui.dojo.runtime.local_1.6.1
  • org.eclipse.edt.rui.dojo.widgets_0.7.0

Any widget projects that are added to an EDT runtime workspace by the New Project wizard should be replaced by the version of the projects listed above in CVS.

When working with the development version of the Dojo widget projects, you will need to update your EGL project references so that they depend on the runtime version of the Dojo widgets project, and NOT the org.eclipse.edt.rui.widgets_0.7.0 project. The runtime versions of the Dojo widget project depends on, and exports, the org.eclipse.edt.rui.widgets_0.7.0 project.

Back to the top