|
From: <caw...@us...> - 2007-02-20 14:20:56
|
Revision: 1987
http://svn.sourceforge.net/rubyeclipse/?rev=1987&view=rev
Author: cawilliams
Date: 2007-02-20 06:20:48 -0800 (Tue, 20 Feb 2007)
Log Message:
-----------
apply Martin's migrating-diff patch (Ticket #247)
Modified Paths:
--------------
trunk/org.rubypeople.rdt/rdt.license
trunk/org.rubypeople.rdt-feature/feature.xml
trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model/RubyDebugTarget.java
trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_RubyDebugCommunicationTest.java
trunk/org.rubypeople.rdt.doc.user/docbook.xml
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java
trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
Modified: trunk/org.rubypeople.rdt/rdt.license
===================================================================
--- trunk/org.rubypeople.rdt/rdt.license 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt/rdt.license 2007-02-20 14:20:48 UTC (rev 1987)
@@ -7,7 +7,7 @@
See www.rubypeople.org for more information.
The RDT is bundled with the kxml2 pull parser, which is under CPL as well.
-The file org.rubypeople.rdt.launching/ruby/eclipseDebug.rb is based on the debug.rb file, which is part
+The file org.rubypeople.rdt.launching/ruby/classic-debug.rb is based on the debug.rb file, which is part
of the ruby 1.6.8 release.
Because of the nature of developing this plugin, many features or concepts have been copied from
the jdt. Therefore you will find code fragements which have been copied from the jdt. We did not
@@ -113,4 +113,4 @@
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.
-
\ No newline at end of file
+
Modified: trunk/org.rubypeople.rdt-feature/feature.xml
===================================================================
--- trunk/org.rubypeople.rdt-feature/feature.xml 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt-feature/feature.xml 2007-02-20 14:20:48 UTC (rev 1987)
@@ -30,7 +30,7 @@
RegExp plug-in, http://e-p-i-c.sourceforge.net
JRuby, http://jruby.codehaus.org/
kxml2, http://kxml.sourceforge.net
-The file org.rubypeople.rdt.launching/ruby/eclipseDebug.rb
+The file org.rubypeople.rdt.launching/ruby/classic-debug.rb
is based on the debug.rb file, which is part of the ruby 1.6.8
release. Because of the nature of developing this plugin, many
features or concepts have been copied from the JDT. Therefore
Modified: trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model/RubyDebugTarget.java
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model/RubyDebugTarget.java 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model/RubyDebugTarget.java 2007-02-20 14:20:48 UTC (rev 1987)
@@ -53,7 +53,7 @@
this.isTerminated = false ;
IBreakpointManager manager= DebugPlugin.getDefault().getBreakpointManager();
manager.addBreakpointListener(this);
- addDebugParameter("$EclipseListenPort=" + port);
+ addDebugParameter("$RemoteDebugPort=" + port);
}
public RubyDebugTarget(ILaunch launch, int port) {
@@ -247,7 +247,7 @@
public File getDebugParameterFile() {
if (debugParameterFile == null) {
try {
- debugParameterFile = File.createTempFile("eclipseDebug",".rb") ;
+ debugParameterFile = File.createTempFile("classic-debug",".rb") ;
} catch (IOException e) {
RdtDebugCorePlugin.log("Could not create debugParameterFile", e) ;
}
Modified: trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_RubyDebugCommunicationTest.java
===================================================================
--- trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_RubyDebugCommunicationTest.java 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_RubyDebugCommunicationTest.java 2007-02-20 14:20:48 UTC (rev 1987)
@@ -78,7 +78,7 @@
String cmd = "rdebug -s -w -n -p 1098 --cport 1099 -d -f xml -I " + getTmpDir().replace('\\', '/') + " " + getRubyTestFilename();
// "FTC_DebuggerCommunicationTest.RUBY_INTERPRETER + " -I" +
// createIncludeDir() + " -I" + getTmpDir().replace('\\', '/') + "
- // -reclipseDebugVerbose.rb " + ;
+ // -rclassic-debug-verbose.rb " + ;
System.out.println("Starting: " + cmd);
process = Runtime.getRuntime().exec(cmd);
rubyStderrRedirectorThread = new OutputRedirectorThread(process.getErrorStream());
Modified: trunk/org.rubypeople.rdt.doc.user/docbook.xml
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/docbook.xml 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt.doc.user/docbook.xml 2007-02-20 14:20:48 UTC (rev 1987)
@@ -719,7 +719,7 @@
<orderedlist>
<listitem>
<para>open file
- ECLIPSE_HOME/plugins/org.rubypeople.rdt.launching/ruby/eclipseDebug.rb</para>
+ ECLIPSE_HOME/plugins/org.rubypeople.rdt.launching/ruby/classic-debug.rb</para>
</listitem>
<listitem>
<para>set ECLIPSE_VERBOSE = true</para>
@@ -813,4 +813,4 @@
click of an element </listitem>
</itemizedlist>
</chapter>
-</book>
\ No newline at end of file
+</book>
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java 2007-02-20 14:20:48 UTC (rev 1987)
@@ -149,9 +149,9 @@
}
if (RdtDebugCorePlugin.isRubyDebuggerVerbose() || isDebuggerVerbose()) {
- arguments.add("-reclipseDebugVerbose");
+ arguments.add("-rclassic-debug-verbose");
} else {
- arguments.add("-reclipseDebug");
+ arguments.add("-rclassic-debug");
}
// FIXME Somehow hook this into the loadpath stuff?
arguments.add("-I");
Modified: trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
===================================================================
--- trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-02-20 14:10:08 UTC (rev 1986)
+++ trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-02-20 14:20:48 UTC (rev 1987)
@@ -70,7 +70,7 @@
protected List getCommandLine(IProject project, boolean debug) {
List commandLine = new ArrayList();
if (debug) {
- commandLine.add("-reclipseDebug");
+ commandLine.add("-rclassic-debug");
}
// The include paths and the executed ruby file is quoted on windows
if (debug) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|