diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-08-09 19:57:13 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-08-09 19:57:13 +0000 |
commit | db335aa0b4a208cbc6c118ac20fdb4bf53181a81 (patch) | |
tree | 2541f6953a65946c6a85a62e026bbddbfb297fe6 /packages/python/python-edje | |
parent | 9d204ad1e53fcb93b3f75b8c8e68030f9e82243a (diff) |
python-edje cvs add debian patch fixing unicode conversion
Diffstat (limited to 'packages/python/python-edje')
-rw-r--r-- | packages/python/python-edje/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/python/python-edje/0001-fix-unicode-conversion.patch | 41 |
2 files changed, 41 insertions, 0 deletions
diff --git a/packages/python/python-edje/.mtn2git_empty b/packages/python/python-edje/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/python/python-edje/.mtn2git_empty diff --git a/packages/python/python-edje/0001-fix-unicode-conversion.patch b/packages/python/python-edje/0001-fix-unicode-conversion.patch new file mode 100644 index 0000000000..7964e097d1 --- /dev/null +++ b/packages/python/python-edje/0001-fix-unicode-conversion.patch @@ -0,0 +1,41 @@ +From fa12a33b5a3c0e86231ca84967d9eff456e5f314 Mon Sep 17 00:00:00 2001 +From: Jan Luebbe <jluebbe@debian.org> +Date: Sat, 9 Aug 2008 18:30:04 +0200 +Subject: [PATCH] fix unicode conversion + +--- + edje/edje.c_edje_object.pxi | 11 +++++++---- + 1 files changed, 7 insertions(+), 4 deletions(-) + +diff --git a/edje/edje.c_edje_object.pxi b/edje/edje.c_edje_object.pxi +index 0f4da68..21c237e 100644 +--- a/edje/edje.c_edje_object.pxi ++++ b/edje/edje.c_edje_object.pxi +@@ -391,17 +391,20 @@ cdef public class Edje(evas.c_evas.Object) [object PyEdje, type PyEdje_Type]: + else: + raise TypeError("func must be callable or None") + +- def part_text_set(self, char *part, char *text): +- edje_object_part_text_set(self.obj, part, text) ++ def part_text_set(self, char *part, text): ++ cdef char *s ++ u = text.encode("utf8") ++ s = u ++ edje_object_part_text_set(self.obj, part, s) + + def part_text_get(self, char *part): +- "@rtype: str" ++ "@rtype: unicode" + cdef char *s + s = edje_object_part_text_get(self.obj, part) + if s == NULL: + return None + else: +- return s ++ return s.decode("utf8") + + def part_swallow(self, char *part, c_evas.Object obj): + """Swallows an object into the edje +-- +1.5.6.3 + |