Re: [RDT-Dev] Broken Overview and Tutorial

2006-08-13 Thread Markus Barchfeld
designker wrote:
 Okay all fixed now. Please apply debug.ui.patch.txt to rdt.debug.ui. 
 This will remove the cheatcheet extension from the plugin.xml. You 
 still need to delete the unneeded cheetsheet files from rdt.debug.ui. 
 Without this the cheetsheet appears twice.

 Now apply rdt.patch.txt to rubypeople.rdt. This fixes the 
 webServises.xml to directly open the Ruby perspective.

Hi Designker!

Your changes are in the repository. Sorry, that it took so long.
Do you plan further improvements? You mentioned a simple hello world 
example.

Markus

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development


Re: [RDT-Dev] Broken Overview and Tutorial

2006-08-04 Thread designker
Sorry I am a newbie to lots of these things so probably messed the
patch up. All the icons work fine for me, but then I had also updated all
the css files. Here is a zip file with my org.rubypeople.rdt directory. (arghh gmail bounces zips. Just rename the extension of the file to zip)
I deleted the bin directory and all the hidden svn files though.The current RDT source has many '.cvsignore' files. Should these be deleted now RDT uses subversion?Regards,
DesignkerOn 8/4/06, Markus Barchfeld [EMAIL PROTECTED] wrote:
 Here is the patch for use on org.rubypeople.rdt I recommend deleting the relevant files from org.rubypeople.rdt.debug.ui yourself as at the moment Subclipse seems to fight my attempts to delete them properly so I can create a
 relevant patch. It fixes the overview, tutorial and whats new welcome extension. It also moves the cheatsheet from dubug.ui. The open ruby perspective class is no longer needed as the open
 perspective command is called directly from the cheetsheet now. Have you had a chance to build the plugin from the trunk because I am convinced it is slightly messed up. The documentation is definitely
 broken and the Ruby Editor parser seems to be broken as well. It highlights all sorts of things the 0.8 release version does not.The documentation needs to be generated first. Please follow theinstructions on the wiki page
http://rubyeclipse.mktec.com/cgi-bin/trac.py/wiki/WritingDocumentationwith the following addtions:* create the docbook directory on the same level as your *workspace*
* docbook-dtds from http://www.docbook.org/xml/4.2/docbook-xml-4.2.zipand extract into a *subfolder dtd* into the docbook directory* run the ant script with java 
1.4BTW: Is the wiki still in a non-edit state?I applied your patch to org.rubypeople.rdt and moved the cheatsheetsdirectory to org.rubypeople.rdt. Then I've removed the cheatSheetContentextension from the 
debug.ui plugin.xml. Now I can open the cheatsheetfrom the Help-Cheat sheets. Since you probably modified the the cheatsheet: could you send it to me, too? (It wasn't part of the patch)The welcome page seems to be OK again. Except for the missing icons on
tutorial and overview page (like rdc_overview.gif). Do the show up inyour runtime workspace?Thanks for your workMarkus


org.rubypeople.rdt.jar
Description: Binary data
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development


Re: [RDT-Dev] Broken Overview and Tutorial

2006-08-03 Thread designker
Here is the patch for use on org.rubypeople.rdtI recommend deleting the relevant files from org.rubypeople.rdt.debug.ui yourself as at the moment Subclipse seems to fight my attempts to delete them properly so I can create a relevant patch.
It fixes the overview, tutorial and whats new welcome extension.It also moves the cheatsheet from dubug.ui.The open ruby perspective class is no longer needed as the open perspective command is called directly from the cheetsheet now.
Have you had a chance to build the plugin from the trunk because I am convinced it is slightly messed up. The documentation is definitely broken and the Ruby Editor parser seems to be broken as well. It highlights all sorts of things the 
0.8 release version does not.Regards,DesignkerOn 8/2/06, Markus Barchfeld [EMAIL PROTECTED]
 wrote:designker wrote: Hi, After messing around with 
org.rubypeople.rdt I have fixed the RDT Overview and Tutorial that no longer appeared as of RDT 0.8. I am not 100% sure I have fixed it all as the org.rubypeople.rdt.doc.user that is in the trunk has an empty HTML folder and I think that is where the
 RDT help should have been?Could you move the cheatsheet to org.rubypeople.rdt? The reason why itwas located in debug.ui were commands which used classes from debug.ui.And org.rubypeople.rdt should not depend on 
org.rubypeople.rdt.debug.ui.The html files are generated from the docbook file. Try to generatedwith the current information in the wiki. If that doesn't work anymore Iam going to update it. Can you explain how I can now give you the changes. Should I email a
 patch or is there some way to commit it to a branch so you can evaluate it. Sorry for the newbie questions.You can send a patch to me. After you have sent in a few patches and ifyou intend to contribute further (which of course would be very much
appreciated) you will be granted developer access.ThanksMarkus
Index: 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/RdtPlugin.java
===
--- 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/RdtPlugin.java
 (revision 0)
+++ 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/RdtPlugin.java
 (revision 0)
@@ -0,0 +1,20 @@
+package org.rubypeople.rdt.cheatsheets;
+
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+
+
+public class RdtPlugin extends AbstractUIPlugin {
+
+   public static final String PLUGIN_ID = org.rubypeople.rdt; 
//$NON-NLS-1$
+   protected static RdtPlugin plugin;
+   
+   public RdtPlugin() {
+   super();
+   plugin = this;
+   }
+   
+   public static RdtPlugin getDefault() {
+   return plugin;
+   }
+}
+
Index: 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/webservice/OpenNewRubyProjectWizardAction.java
===
--- 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/webservice/OpenNewRubyProjectWizardAction.java
 (revision 0)
+++ 
C:/PluginStuff/org.rubypeople.rdt/src/org/rubypeople/rdt/cheatsheets/webservice/OpenNewRubyProjectWizardAction.java
 (revision 0)
@@ -0,0 +1,45 @@
+package org.rubypeople.rdt.cheatsheets.webservice;
+
+import org.eclipse.jface.action.Action;
+import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.cheatsheets.ICheatSheetAction;
+import org.eclipse.ui.cheatsheets.ICheatSheetManager;
+import org.rubypeople.rdt.internal.ui.RubyPlugin;
+import org.rubypeople.rdt.internal.ui.wizards.NewProjectCreationWizard;
+
+
+/**
+ * @author markus
+ *
+ */
+public class OpenNewRubyProjectWizardAction extends Action implements 
ICheatSheetAction  {
+   public OpenNewRubyProjectWizardAction() {
+   super(OpenProject); //$NON-NLS-1$
+   }
+   
+   /**
+* @see IActionDelegate#run(IAction)
+*/
+   public void run() {
+   run(new String [] {}, null);
+   }
+
+   /* (non-Javadoc)
+* @see 
org.eclipse.ui.cheatsheets.ICheatSheetAction#run(java.lang.String[], 
org.eclipse.ui.cheatsheets.ICheatSheetManager)
+*/
+   public void run(String[] params, ICheatSheetManager manager) {
+   NewProjectCreationWizard wizard = new 
NewProjectCreationWizard();
+   if (params.length  0) {
+   wizard.setDefaultProjectName(params[0]) ;
+   }
+   wizard.init(PlatformUI.getWorkbench(), new 
StructuredSelection());
+   WizardDialog dialog = new 
WizardDialog(RubyPlugin.getActiveWorkbenchShell(), wizard);
+   dialog.create();
+   //SWTUtil.setDialogSize(dialog, 500, 500);
+   dialog.getShell().setText(wizard.getWindowTitle());
+   int result = dialog.open();
+   

Re: [RDT-Dev] Broken Overview and Tutorial

2006-08-02 Thread Markus Barchfeld
designker wrote:
 Hi,

 After messing around with org.rubypeople.rdt I have fixed the RDT 
 Overview and Tutorial that no longer appeared as of RDT 0.8. I am not 
 100% sure I have fixed it all as the org.rubypeople.rdt.doc.user that 
 is in the trunk has an empty HTML folder and I think that is where the 
 RDT help should have been?

Could you move the cheatsheet to org.rubypeople.rdt? The reason why it 
was located in debug.ui were commands which used classes from debug.ui. 
And org.rubypeople.rdt should not depend on org.rubypeople.rdt.debug.ui.
The html files are generated from the docbook file. Try to generated 
with the current information in the wiki. If that doesn't work anymore I 
am going to update it.


 Can you explain how I can now give you the changes. Should I email a 
 patch or is there some way to commit it to a branch so you can 
 evaluate it. Sorry for the newbie questions.
You can send a patch to me. After you have sent in a few patches and if 
you intend to contribute further (which of course would be very much 
appreciated) you will be granted developer access.

Thanks
Markus

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development


[RDT-Dev] Broken Overview and Tutorial

2006-08-01 Thread designker
Hi,After messing around with org.rubypeople.rdt I have fixed the RDT Overview and Tutorial that no longer appeared as of RDT 0.8. I am not 100% sure I have fixed it all as the org.rubypeople.rdt.doc.user that is in the trunk has an empty HTML folder and I think that is where the RDT help should have been?
Can you explain how I can now give you the changes. Should I email a patch or is there some way to commit it to a branch so you can evaluate it. Sorry for the newbie questions.Designker.
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development