Hi,

The debugger of RDT doesn't display japanese characters correctly.
I created a patch to specifiy encoding to UTF-8.
Please check it.

Shugo
=== 
org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/RubyDebuggerProxy.java
==================================================================
--- 
org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/RubyDebuggerProxy.java
  (revision 122)
+++ 
org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/RubyDebuggerProxy.java
  (revision 123)
@@ -110,7 +110,7 @@
                        try {
                                XmlPullParserFactory factory = 
XmlPullParserFactory.newInstance("org.kxml2.io.KXmlParser,org.kxml2.io.KXmlSerializer",
 null);
                                xpp = factory.newPullParser();
-                               xpp.setInput(new BufferedReader(new 
InputStreamReader(getSocket().getInputStream())));
+                               xpp.setInput(getSocket().getInputStream(), 
"UTF-8");
                        } catch (XmlPullParserException e) {
                                e.printStackTrace();
                        } catch (IOException e) {
-------------------------------------------------------------------------
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=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development

Reply via email to