xmlproc maintainer?

A

Alban Hertroys

Hello all,

We recently (about a week ago) sent a patch to the maintainer of
xmlproc, but we didn't receive a reply yet. A look at the site reveals
that the last update was somewhere in 2000.

Does anybody know who the current maintainer is (if that changed), or
what the status of xmlproc is? We kind of depend on it...

The patch fixes a buffering problem if the XML contains utf-8 codes,
which gets especially problematic if one such character pair starts as
the last byte in the buffer... Patch attached, in case someone can use it.


Regards,

Alban Hertroys,
MAG Productions.

--- ../xmlproc-backup/xmlutils.py 2005-03-11 11:04:44.000000000 +0100
+++ xmlutils.py 2005-03-11 13:45:43.000000000 +0100
@@ -264,8 +264,8 @@
decoder could have run out of data. The latter case is very
hard to determine in Python 2.0"""

- if str(exc) in ["UTF-8 decoding error: unexpected end of data",
- "UTF-16 decoding error: truncated data"]:
+ s = str(exc)
+ if s.find('unexpected end of data')!=-1 or s.find('truncated data')!=-1:
while 1:
self.encoded_data = new_data[-1]+self.encoded_data
new_data = new_data[:-1]
@@ -296,7 +296,7 @@
first_feed = 1
self.parseStart()

- new_data = new_data + self.encoded_data
+ new_data = self.encoded_data + new_data
self.encoded_data = ""

if not decoded and not self.charset_converter:
@@ -720,6 +720,7 @@
# to the recoding.
try:
self.data = self.charset_converter(self.data)
+ self.datasize = len(self.data)
except UnicodeError, e:
self._handle_decoding_error(self.data, e)
self.input_encoding = enc1
 
?

=?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?=

Alban said:
We recently (about a week ago) sent a patch to the maintainer of
xmlproc, but we didn't receive a reply yet. A look at the site reveals
that the last update was somewhere in 2000.

Does anybody know who the current maintainer is (if that changed), or
what the status of xmlproc is? We kind of depend on it...

xmlproc is maintained as part of PyXML now; please sent the patch to
the patches tracker at sf.net/projects/pyxml.

That said, PyXML did not have a release on its own for quite some time,
either; mainly due to lack of user interest.

Regards,
Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,563
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top