Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 767737 - patch for eric
Summary: patch for eric
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: PyXML
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Roman Rakus
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: 843176
TreeView+ depends on / blocked
 
Reported: 2011-12-14 19:01 UTC by Rex Dieter
Modified: 2014-01-13 00:14 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2013-01-11 19:42:04 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Rex Dieter 2011-12-14 19:01:12 UTC
eric, a python IDE, requires a fixed PyXML apparently.

its README-PyXML mentions:


PyXML has a problem calculating the datasize of the data read from an XML file.
In order to correct this, make the adjustment shown below.

Near the end of method parse_xml_decl (in PyXML 0.8.3 this is at line
723) in _xmlplus.parsers.xmlproc.xmlutils:

        try:
            self.data = self.charset_converter(self.data)
            self.datasize = len(self.data)  ### ADD THIS LINE
        except UnicodeError, e:
            self._handle_decoding_error(self.data, e)
        self.input_encoding = enc1

Here is the change as a diff.

--- _xmlplus/parsers/xmlproc/xmlutils.py.orig        2006-11-13 11:30:07.768059659 +0100
+++ _xmlplus/parsers/xmlproc/xmlutils.py     2006-11-13 11:30:38.871925067 +0100
@@ -720,6 +720,7 @@ class XMLCommonParser(EntityParser):
             # 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

Comment 1 Rex Dieter 2011-12-14 19:02:05 UTC
I can do the work to apply the patch to packaging, if you have no objections.

Comment 2 Toshio Ernie Kuratomi 2013-01-11 19:42:04 UTC
Eric's pyxml dep has been removed.  Work on removing PyXML for F19 is proceeding.  https://fedoraproject.org/wiki/Features/RemovePyXML

Closing this as fixed in rawhid.


Note You need to log in before you can comment on or make changes to this bug.