Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/model
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21693/src/org/python/pydev/debug/model
Modified Files:
XMLUtils.java
Log Message:
0.4.1 bug fixes:
- urlencode file names in stack
- display error dialog asynchronously
Index: XMLUtils.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/model/XMLUtils.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** XMLUtils.java 5 May 2004 02:02:00 -0000 1.2
--- XMLUtils.java 17 May 2004 20:17:15 -0000 1.3
***************
*** 145,148 ****
--- 145,150 ----
String id = attributes.getValue("id");
String file = attributes.getValue("file");
+ if (file != null)
+ file = URLDecoder.decode(file);
String line = attributes.getValue("line");
IPath filePath = new Path(file);
|