|
From: Christopher W. <caw...@us...> - 2006-01-31 20:30:06
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv673 Modified Files: plugin.properties plugin.xml Log Message: add a new Ruby Class Wizard (it's not especially useful yet, but it is more obvious than new -> file -> name it with a standard ruby file name/extension) Index: plugin.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.properties,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** plugin.properties 5 Jan 2006 16:04:29 -0000 1.25 --- plugin.properties 31 Jan 2006 20:29:53 -0000 1.26 *************** *** 28,35 **** --- 28,39 ---- NewWizardCategory.name=Ruby NewWizardRubyProject.name=Ruby Project + NewWizardRubyClass.name=Ruby Class OpenProjectWizardAction.label=Ruby &Project... OpenProjectWizardAction.tooltip=New Ruby Project + NewClassWizardAction.label=Ruby &Class... + NewClassWizardAction.tooltip=New Ruby Class + PropertyPageRubyProject.name=Ruby Project Properties Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.xml,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** plugin.xml 5 Jan 2006 16:04:29 -0000 1.70 --- plugin.xml 31 Jan 2006 20:29:53 -0000 1.71 *************** *** 67,70 **** --- 67,81 ---- </description> </wizard> + <wizard + name="%NewWizardRubyClass.name" + icon="icons/full/etool16/newclass_wiz.gif" + category="org.rubypeople.rdt.ui.NewWizardCategoryRuby" + class="org.rubypeople.rdt.ui.wizards.RubyNewClassWizard" + preferredPerspectives="org.rubypeople.rdt.ui.PerspectiveRuby" + id="org.rubypeople.rdt.ui.wizards.RubyNewClassWizard"> + <description> + Create a new Ruby Class. + </description> + </wizard> </extension> <extension *************** *** 320,323 **** --- 331,342 ---- visible="false" id="org.rubypeople.rdt.ui.RubyElementCreationActionSet"> + <action + label="%NewClassWizardAction.label" + icon="icons/full/etool16/newclass_wiz.gif" + tooltip="%NewClassWizardAction.tooltip" + class="org.rubypeople.rdt.internal.ui.wizards.NewClassWizardAction" + toolbarPath="Normal/RubyWizards" + id="org.rubypeople.rdt.ui.actions.NewClassWizard"> + </action> <action label="%OpenProjectWizardAction.label" |