[jboss-cvs] jbosside/core/plugins/org.jboss.ide.eclipse.firstrun ...
Robert Stryker
rawblem at gmail.com
Tue Sep 12 17:25:23 EDT 2006
User: rawb
Date: 06/09/12 17:25:23
Modified: core/plugins/org.jboss.ide.eclipse.firstrun plugin.xml
Log:
Substantial changes, including an extension point, to allow conversion and updates between JBoss IDE versions. Plugins requiring conversions between versions should use this extension point in their own plug-in rather than adding upgrade wizard pages to the firstrun plugin.
Text for upgrade to 2.0 will need to be decided upon. (Pages created, text is fluff)
Revision Changes Path
1.2 +45 -0 jbosside/core/plugins/org.jboss.ide.eclipse.firstrun/plugin.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: plugin.xml
===================================================================
RCS file: /cvsroot/jboss/jbosside/core/plugins/org.jboss.ide.eclipse.firstrun/plugin.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- plugin.xml 29 Dec 2005 23:05:59 -0000 1.1
+++ plugin.xml 12 Sep 2006 21:25:23 -0000 1.2
@@ -1,9 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
+ <extension-point id="FirstRunWizardPage" name="org.jboss.ide.eclipse.firstrun.wizard" schema="schema/org.jboss.ide.eclipse.firstrun.exsd"/>
<extension
point="org.eclipse.ui.startup">
<startup class="org.jboss.ide.eclipse.firstrun.FirstRunStartup"/>
</extension>
+ <extension
+ point="org.jboss.ide.eclipse.firstrun.FirstRunWizardPage">
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.FirstRunInfoPage"
+ fromVersion="1.5.*"
+ id="org.jboss.ide.eclipse.firstrun.Info16"
+ name="org.jboss.ide.eclipse.firstrun.UpgradeWizard1"
+ toVersion="1.6.*"
+ weight="0"/>
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.FirstRunFinalPage"
+ fromVersion="1.5.*"
+ id="org.jboss.ide.eclipse.firstrun.FinalPage16"
+ name="org.jboss.ide.eclipse.firstrun.UpgradeWizard2"
+ toVersion="1.6.*"
+ weight="100"/>
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.FirstRunPackagingProjectsPage"
+ fromVersion="1.5.*"
+ id="org.jboss.ide.eclipse.firstrun.Packaging16"
+ name="org.jboss.ide.eclipse.firstrun.UpgradeWizard3"
+ toVersion="1.6.*"/>
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.FirstRunXDocletProjectsPage"
+ fromVersion="1.5.*"
+ id="org.jboss.ide.eclipse.firstrun.XDoclet16"
+ name="org.jboss.ide.eclipse.firstrun.UpgradeWizard4"
+ toVersion="1.6.*"/>
+ </extension>
+ <extension
+ point="org.jboss.ide.eclipse.firstrun.FirstRunWizardPage">
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.upgrade20.FirstRunFinalPage20"
+ fromVersion="1.6.*"
+ id="org.jboss.ide.eclipse.firstrun.FinalPage20"
+ toVersion="2.0.0.*"
+ weight="100"/>
+ <UpgradeWizard
+ WizardPage="org.jboss.ide.eclipse.firstrun.wizard.pages.upgrade20.FirstRunInfoPage20"
+ fromVersion="1.6.*"
+ id="org.jboss.ide.eclipse.firstrun.Info20"
+ toVersion="2.0.*"
+ weight="0"/>
+ </extension>
</plugin>
More information about the jboss-cvs-commits
mailing list