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 "ATF/XULRunner"

< ATF
Line 5: Line 5:
 
Following are the steps to package XULRunner into Eclipse update site so it can be consumed by Eclipse application.
 
Following are the steps to package XULRunner into Eclipse update site so it can be consumed by Eclipse application.
  
* Check-out the org.mozilla.xulrunner.releng project
+
* Check-out the org.eclipse.atf.mozilla.xulrunner.releng project from Eclipse CVS.
 +
** :pserver:anonymous@dev.eclipse.org:/cvsroot/tools/org.eclipse.atf/components/releng/org.eclipse.atf.mozilla.xulrunner.releng
 
* Import org.eclipse.pde.build into your workspace
 
* Import org.eclipse.pde.build into your workspace
* Launch antRunner with  
+
** Click File->Import...,
 +
** choose "Plug-ins and Fragments", press Next
 +
** add "org.eclipse.pde.build" to plug-ins to import and press Finish.
 +
* Launch antRunner with following arguments:
 
** application arguments: -buildfile ${workspace_loc}\org.eclipse.pde.build\scripts\build.xml  
 
** application arguments: -buildfile ${workspace_loc}\org.eclipse.pde.build\scripts\build.xml  
 
** vmargs: -Dbuilder=${workspace_loc}\org.mozilla.xulrunner.releng -DbaseLocation=""
 
** vmargs: -Dbuilder=${workspace_loc}\org.mozilla.xulrunner.releng -DbaseLocation=""
 +
** e.g. like this: java -jar <eclipseInstall>/plugins/org.eclipse.equinox.launcher_<version>.jar -application org.eclipse.ant.core.antRunner -buildfile ${workspace_loc}\org.eclipse.pde.build\scripts\build.xml -Dbuilder=${workspace_loc}\org.mozilla.xulrunner.releng -DbaseLocation=""
 +
 +
For details please see [http://help.eclipse.org/ganymede/topic/org.eclipse.pde.doc.user/tasks/pde_feature_build.htm PDE Help topic] or ask at [http://www.eclipse.org/atf ATF] forums.

Revision as of 05:27, 11 August 2009

Mozilla XULRunner is a Mozilla runtime package that allows to embed and launch a complete Mozilla-based browser into an application.

At ATF we use XULRunner to embed Mozilla browser into Eclipse to provide advanced web development environment with such features as javascript debugging or browser DOM model inspection and more. You can get XULRunner from Mozilla downloads.

Following are the steps to package XULRunner into Eclipse update site so it can be consumed by Eclipse application.

  • Check-out the org.eclipse.atf.mozilla.xulrunner.releng project from Eclipse CVS.
    •  :pserver:anonymous@dev.eclipse.org:/cvsroot/tools/org.eclipse.atf/components/releng/org.eclipse.atf.mozilla.xulrunner.releng
  • Import org.eclipse.pde.build into your workspace
    • Click File->Import...,
    • choose "Plug-ins and Fragments", press Next
    • add "org.eclipse.pde.build" to plug-ins to import and press Finish.
  • Launch antRunner with following arguments:
    • application arguments: -buildfile ${workspace_loc}\org.eclipse.pde.build\scripts\build.xml
    • vmargs: -Dbuilder=${workspace_loc}\org.mozilla.xulrunner.releng -DbaseLocation=""
    • e.g. like this: java -jar <eclipseInstall>/plugins/org.eclipse.equinox.launcher_<version>.jar -application org.eclipse.ant.core.antRunner -buildfile ${workspace_loc}\org.eclipse.pde.build\scripts\build.xml -Dbuilder=${workspace_loc}\org.mozilla.xulrunner.releng -DbaseLocation=""

For details please see PDE Help topic or ask at ATF forums.

Back to the top