Commits / 6c68b33
Erik Grinaker avatarErik Grinaker committed (raw commit)

handle non-ascii characters correctly

Comments (0)

Files changed (3)

 
 	* display non-ascii characters in filenames correctly
 
+	* workaround for incorrect encoding of non-ascii characters
+
 2005-02-09  Erik Grinaker <erikg@codepoet.no>
 
 	* make undo actually for for edit actions
 - workaround for gnome-python 2.9.x crasher bug in the session client
 - prefs, password generator and search dialogs are no longer modal
 - display non-ascii characters in filenames correctly
+- handle non-ascii characters correctly (workaround for incorrect
+  encoding in data files)
 
 
 2005-02-08: Revelation 0.4.0

src/lib/datahandler/rvl.py

 					continue
 
 				elif child.nodeName == "name":
-					e.name = util.dom_text(child)
+					e.name = unicode(util.dom_text(child).encode("iso-8859-1"), "utf-8")
 
 				elif child.nodeName == "description":
-					e.description = util.dom_text(child)
+					e.description = unicode(util.dom_text(child).encode("iso-8859-1"), "utf-8")
 
 				elif child.nodeName == "updated":
 					e.updated = int(util.dom_text(child))
 
 				elif child.nodeName == "field":
-					e[self.__lookup_field(child.attributes["id"].nodeValue)] = util.dom_text(child)
+					e[self.__lookup_field(child.attributes["id"].nodeValue)] = unicode(util.dom_text(child).encode("iso-8859-1"), "utf-8")
 
 				elif child.nodeName == "entry":
 					if type(e) != entry.FolderEntry:
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.