Re: [XML-SIG] PyXML-0.8.4 error

2010-02-20 Thread Dieter Maurer
Vinicio Nocciolini wrote at 2010-2-17 11:47 +0100: >I am using Ubuntu 9.10 >This is the error putput >regards Vinicio > > >PyXML-0.8.4$ python2.5 setup.py build >running build >running build_py >running build_ext >building '_xmlplus.parsers.pyexpat' extension >gcc -pthread -fno-strict-aliasing -DND

[XML-SIG] PyXML-0.8.4 error

2010-02-20 Thread Vinicio Nocciolini
Hi I am using Ubuntu 9.10 This is the error putput regards Vinicio PyXML-0.8.4$ python2.5 setup.py build running build running build_py running build_ext building '_xmlplus.parsers.pyexpat' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DXML

Re: [XML-SIG] pyXML

2010-01-15 Thread Stefan Behnel
ryan murphy, 15.01.2010 16:34: > When I try to build pyXML in ubuntu 9.10 I get the following error > > 'gcc' failed with error status 1. Please provide a complete error report. The above line is meaningless. Also note that PyXML is no longer maintained. If you are looking for a state-of-the-ar

[XML-SIG] pyXML

2010-01-15 Thread ryan murphy
When I try to build pyXML in ubuntu 9.10 I get the following error 'gcc' failed with error status 1. ___ XML-SIG maillist - XML-SIG@python.org http://mail.python.org/mailman/listinfo/xml-sig

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-12-01 Thread Sudesh Soni
Thanks Dieter. I will try this. With regards Sudesh From: Dieter Maurer To: Sudesh Soni Cc: xml-sig@python.org Sent: Thu, November 19, 2009 2:14:28 AM Subject: Re: [XML-SIG] PyXML installation in Zope2.8.5 Sudesh Soni wrote at 2009-11-18 08:14 -0800

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-18 Thread Dieter Maurer
Sudesh Soni wrote at 2009-11-18 08:14 -0800: >Thanks Dieter, > >Other than gzip file and I could find an exe for PYXML installation , but the >problem is that, during installation it cannot locate the python2.3 that is in >zope 2.8 itself, instead it looks in the windows registry. >Suggest. I a

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-18 Thread Sudesh Soni
stuck with issue. I have not researched which part of PyXML is needed in ZSI, but I will try to find out. Regards Sudesh From: Mike Brown To: Sudesh Soni Cc: xml-sig@python.org Sent: Tue, November 17, 2009 11:18:41 PM Subject: Re: [XML-SIG] PyXML installation

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-18 Thread Sudesh Soni
From: Dieter Maurer To: Sudesh Soni Cc: xml-sig@python.org Sent: Wed, November 18, 2009 1:35:10 AM Subject: Re: [XML-SIG] PyXML installation in Zope2.8.5 Sudesh Soni wrote at 2009-11-17 08:50 -0800: >Product - zope 2.8.5 final [python version - 2.3.5] > >I get following error when

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-17 Thread Dieter Maurer
Sudesh Soni wrote at 2009-11-17 08:50 -0800: >Product - zope 2.8.5 final [python version - 2.3.5] > >I get following error when executing - > >python setup.py build > > >running build_ext >error: Python was built with version 6 of Visual Studio, and extensions need >to be built with th

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-17 Thread Mike Brown
PyXML has two 'extension' modules (modules written in C instead of Python): _xmlplus.parsers.pyexpat (needed by PyExpat) _xmlplus.parsers.sgmlop (needed by sgmlop) After they're built and installed, they become accessible as xml.parsers.pyexpat and xml.parsers.sgmlop, respectively. You can't bu

Re: [XML-SIG] PyXML installation in Zope2.8.5

2009-11-17 Thread Sudesh Soni
The version of PyXML is 0.8.4 From: Sudesh Soni To: xml-sig@python.orgSent: Tue, November 17, 2009 11:50:22 AMSubject: PyXML installation in Zope2.8.5 Hi,   Product - zope 2.8.5 final [python version - 2.3.5]   I get following error when executing -   python setup.py build   ===

[XML-SIG] PyXML installation in Zope2.8.5

2009-11-17 Thread Sudesh Soni
Hi,   Product - zope 2.8.5 final [python version - 2.3.5]   I get following error when executing -   python setup.py build   running build_exterror: Python was built with version 6 of Visual Studio, and extensions need to be built with the same version of the compiler, but it isn't in

[XML-SIG] [ pyxml-XBEL-2875536 ] 'as' is the keyword in python2.6

2009-10-21 Thread SourceForge.net
XBEL item #2875536, was opened at 2009-10-09 15:42 Message generated for change (Tracker Item Submitted) made by sevenj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=707658&aid=2875536&group_id=6473 Please note that this message will contain a full copy of the com

Re: [XML-SIG] pyXML errors on install

2009-05-13 Thread Stefan Behnel
Dennis Spring wrote: > I downloaded pyXML and read the 'readMe' doc . Then you missed the fact that PyXML is unmaintained and outdated. > I am not tied to the notion of using pyXML, however I need to be able to read > and process > xml strings, not xml files. Use the xml.etree.ElementTree mo

[XML-SIG] pyXML errors on install

2009-05-13 Thread Dennis Spring
Hi; I downloaded pyXML and read the 'readMe' doc . I followed the simple instructions to build and install pyXML, but many many error messages were output to the monitor. Any ideas? I am not tied to the notion of using pyXML, however I need to be able to read and process xml strings, not xml

Re: [XML-SIG] PyXML and DOM example 'generate_xml1.py'

2008-09-14 Thread Fredrik Lundh
David Lucena wrote: I've started to use PyXML because I needed a xml library for > a tool I am making. if you're writing new code, I strongly suggest using a library based on the ElementTree API instead of struggling with an old, unmaintained and rather unwieldy XML library. if I'm reading

[XML-SIG] PyXML and DOM example 'generate_xml1.py'

2008-09-14 Thread David Lucena
I've started to use PyXML because I needed a xml library for a tool I am making. Due to lack of documentation, I have been looking for the examples, but I've found some of them does not work. In fact, the fist I tested was the one on the Subject. I have made some modifications get it to work. He

Re: [XML-SIG] PyXML for py 2.5

2008-03-13 Thread Henry S. Thompson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Martin v. Löwis writes: > If you found that validation is a processing need, I strongly recommend > that you re-evaluate your processing needs (whether you use Python > or not). IMHO, validation is much over-rated and over-used. Strong words, which I

Re: [XML-SIG] PyXML Howto

2008-03-11 Thread Stefan Behnel
Hi, [EMAIL PROTECTED] wrote: > I am writing to you to see if there is a tar.bz2 or tar.gz file of > http://pyxml.sourceforge.net/topics/howto/xml-howto.html available to > download. I am currently translating and posting different python related > tutorials and howtos to swedish and i would like t

[XML-SIG] PyXML Howto

2008-03-10 Thread info
Hi! I am writing to you to see if there is a tar.bz2 or tar.gz file of http://pyxml.sourceforge.net/topics/howto/xml-howto.html available to download. I am currently translating and posting different python related tutorials and howtos to swedish and i would like to do this with that howto. Best

Re: [XML-SIG] Pyxml

2008-03-10 Thread Stefan Behnel
Hi, please keep this discussion on the list. Somayeh Farnoush wrote: > I've just run > setup.py build > setup.py install > . > I am trying to install mpi intel which needs Python and Pyxml ... in > troubleshooting part of installing intel mpi suggested to use the command > rpm -qa | grep pyth

Re: [XML-SIG] Pyxml

2008-03-10 Thread Gloria
Stefan Behnel wrote: Hi, Somayeh Farnoush wrote: Dear sir, You've just missed half of the world population here. LOL! I have installed PyXml , but when I run this $ rpm -qa | grep python-xml it does not returned anything. does it mean that python-xml is missed? How can I f

Re: [XML-SIG] Pyxml

2008-03-10 Thread Stefan Behnel
Hi, Somayeh Farnoush wrote: > I've installed it on redhat Enterprise4 and use the > PyXML-0.8.4.tar.gz > form http://sourceforge.net/project/showfiles.php?group_id=6473 and you've done *what* with that tar.

Re: [XML-SIG] Pyxml

2008-03-10 Thread Stefan Behnel
Hi, Somayeh Farnoush wrote: > Dear sir, You've just missed half of the world population here. > I have installed PyXml , but when I run this > > $ rpm -qa | grep python-xml > > it does not returned anything. does it mean that python-xml is missed? How > can I fix it? Depends on how you insta

[XML-SIG] Pyxml

2008-03-10 Thread Somayeh Farnoush
Dear sir, I have installed PyXml , but when I run this $ rpm -qa | grep python-xml it does not returned anything. does it mean that python-xml is missed? How can I fix it? regards, SF ___ XML-SIG maillist - XML-SIG@python.org http://mail.python.org

Re: [XML-SIG] PyXML for py 2.5

2008-03-08 Thread Martin v. Löwis
> What about changing the "XML" link on the Python homepage to point to a > Wiki page? I think this one would come close: > > http://wiki.python.org/moin/PythonXml Ok, I changed it so. Regards, Martin ___ XML-SIG maillist - XML-SIG@python.org http://

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Martin v. Löwis
> That's what we did, and that package (the one the SIG recommended) has > been abandoned in favor of a newer one. That's not exactly true. It hasn't been abandoned in favor of lxml, or some other package. It has been abandoned in favor of the standard library (at least, that's why *I* abandoned

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Stefan Behnel
Hi Martin, Martin v. Löwis wrote: >>> Mapping of Schema definitions to Python classes? >> >> A combination of lxml.objectify and schema validation is close enough >> to that, >> IMHO, but not a bit less powerful, as it's C-implemented and completely >> runtime configurable in Python code at basica

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Bob Kline
Martin v. Löwis wrote: > I don't think Python is or should be the premier language to do XML > processing. I was just echoing language from the SIG's own home page. We don't need it to be the best language for XML processing, but it's the language we use for much of our administrative interface

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Fred Drake
On Feb 24, 2008, at 4:08 AM, Stefan Behnel wrote: > I think validation is somewhat comparable to assertions that you put > into your > code. There's one case where we use schema-based validation in our products, and that's at organizational boundaries: Where we accept XML from another compa

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Dave Kuhlman
On Sun, Feb 24, 2008 at 10:08:00AM +0100, Stefan Behnel wrote: > Hi, > > Martin v. L?wis wrote: > > I don't think Python is or should be the premier language to do XML > > processing. > > I object! > > > > If you have an application that is entirely about XML > > processing, use Java. > > I hi

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Martin v. Löwis
>> Mapping of Schema definitions to Python classes? > > A combination of lxml.objectify and schema validation is close enough to that, > IMHO, but not a bit less powerful, as it's C-implemented and completely > runtime configurable in Python code at basically any granularity. So can you also use

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Harry George
On Sun, 24 Feb 2008 11:05:34 +0100 "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > >> If you have an application that is entirely about XML > >> processing, use Java. [snip] > > Sure, if your processing needs are simple, the Python implementation > will be simple, and perhaps also reasonably perf

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Stefan Behnel
Hi, Martin v. Löwis wrote: > Implementation of specifications is another reason. XSLT2, XPath2, > XQuery? There definitely isn't a "standard" solution, but it's not true that there is nothing, either. http://www.w3.org/XML/Query/#implementations http://behnel.de/cgi-bin/weblog_basic/index.php?p=

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Martin v. Löwis
>> If you have an application that is entirely about XML >> processing, use Java. > > I highly object! > > Performance is one reason: > http://www.xml.com/pub/a/2007/05/09/xml-parser-benchmarks-part-1.html > http://www.xml.com/pub/a/2007/05/16/xml-parser-benchmarks-part-2.html > http://effbot.org

Re: [XML-SIG] PyXML for py 2.5

2008-02-24 Thread Stefan Behnel
Hi, Martin v. Löwis wrote: > I don't think Python is or should be the premier language to do XML > processing. I object! > If you have an application that is entirely about XML > processing, use Java. I highly object! Performance is one reason: http://www.xml.com/pub/a/2007/05/09/xml-parser-b

Re: [XML-SIG] PyXML for py 2.5

2008-02-23 Thread Martin v. Löwis
> If I understand the responses I got to my original question correctly, > the SIG views the lxml package as the successor to PyXML, its former but > now abandoned flagship for making Python the premier language for XML > processing. Is that right? If so, I'm not sure that this WiKi page > m

Re: [XML-SIG] PyXML for py 2.5

2008-02-13 Thread Stefan Behnel
Kevin Cole wrote: > On Feb 12, 2008 12:47 PM, Stefan Behnel wrote: > >> That may be so, but if validation is just an >> >> easy_install lxml >> >> and an updated import line away, I don't think that makes it that much >> less suited for the "premier language". > > An slightly off-topic rant: I'

Re: [XML-SIG] PyXML

2008-02-12 Thread John W. Shipman
On Mon, 11 Feb 2008, Tesco Scoco wrote: +-- | I need info on PyXML with regard to the following: | a. How it works in processing XML documents. | b. How different is it from the normal built-in python xml processing | capabilities | | A pdf document will be of value. Hey, I'm new in this business a

Re: [XML-SIG] PyXML for py 2.5

2008-02-12 Thread Bob Kline
Stefan Behnel wrote: >> it's hard to imagine Python becoming the premier language for XML >> processing without support for document validation in the standard >> library distribution. >> > > That may be so, but if validation is just an > > easy_install lxml > > and an updated import line

Re: [XML-SIG] PyXML for py 2.5

2008-02-12 Thread Stefan Behnel
> Stefan Behnel wrote: >> What about changing the "XML" link on the Python homepage to point to a >> Wiki page? I think this one would come close: >> >> http://wiki.python.org/moin/PythonXml > > If I understand the responses I got to my original question correctly, > the SIG views the lxml package

Re: [XML-SIG] PyXML for py 2.5

2008-02-12 Thread Bob Kline
Stefan Behnel wrote: > What about changing the "XML" link on the Python homepage to point to a > Wiki page? I think this one would come close: > > http://wiki.python.org/moin/PythonXml > If I understand the responses I got to my original question correctly, the SIG views the lxml package as th

Re: [XML-SIG] PyXML for py 2.5

2008-02-12 Thread Stefan Behnel
Martin v. Löwin wrote: >> BTW, who's responsible for updating the XML-SIG page that the Python >> homepage links to behind it's prominent "XML" link? > > In short: anybody who volunteers. What about changing the "XML" link on the Python homepage to point to a Wiki page? I think this one would come

Re: [XML-SIG] PyXML

2008-02-11 Thread Stefan Behnel
Hi, Tesco Scoco wrote: > I need info on PyXML with regard to the following: > b. How different is it from the normal built-in python xml processing > capabilities I think the main difference is that it is no longer maintained. There are better tools which are (ElementTree) or are not (lxml) in th

[XML-SIG] PyXML

2008-02-11 Thread Tesco Scoco
Hi, I need info on PyXML with regard to the following: a. How it works in processing XML documents. b. How different is it from the normal built-in python xml processing capabilities A pdf document will be of value. Hey, I'm new in this business and I find it exciting. Regards, Tesco ___

Re: [XML-SIG] PyXML on PyPI

2008-02-06 Thread Michael Dunstan
On Feb 7, 2008 6:52 PM, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > >> It would be useful to have a copy of source tar ball for PyXML 0.8.4 > >> uploaded to PyPI. Then it can be easy_installed or used in > >> zc.buildout. There is an existing entry for PyXML on PyPI which has > >> the owners "lo

Re: [XML-SIG] PyXML on PyPI

2008-02-06 Thread Martin v. Löwis
>> It would be useful to have a copy of source tar ball for PyXML 0.8.4 >> uploaded to PyPI. Then it can be easy_installed or used in >> zc.buildout. There is an existing entry for PyXML on PyPI which has >> the owners "loewis, aaronsw, jkloth". Can one of these owners upload >> PyXML-0.8.4.tar.gz

Re: [XML-SIG] PyXML on PyPI

2008-02-06 Thread Stefan Behnel
Hi, Michael Dunstan wrote: > It would be useful to have a copy of source tar ball for PyXML 0.8.4 > uploaded to PyPI. Then it can be easy_installed or used in > zc.buildout. There is an existing entry for PyXML on PyPI which has > the owners "loewis, aaronsw, jkloth". Can one of these owners uploa

[XML-SIG] PyXML on PyPI

2008-02-06 Thread Michael Dunstan
Hi, It would be useful to have a copy of source tar ball for PyXML 0.8.4 uploaded to PyPI. Then it can be easy_installed or used in zc.buildout. There is an existing entry for PyXML on PyPI which has the owners "loewis, aaronsw, jkloth". Can one of these owners upload PyXML-0.8.4.tar.gz to PyPI? (

[XML-SIG] [ pyxml-XBEL-1856104 ] getAttribute returns blank string

2007-12-21 Thread SourceForge.net
XBEL item #1856104, was opened at 2007-12-21 16:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=707658&aid=1856104&group_id=6473 Please note that this message will contain a full copy of

Re: [XML-SIG] PyXML setup.py install - MSVC Compile Errors (error LNK2019: unresolved external symbol __imp__)

2007-11-06 Thread Martin v. Löwis
> If you are not tied to PyXML by some external constraint, you might want to > use ElementTree or lxml instead, which are easy to use and actively maintained > (as opposed to PyXML). As another alternative, you might try the XML libraries that come with Python itself, which share already a lot of

Re: [XML-SIG] PyXML for py 2.5

2007-11-02 Thread Martin v. Löwis
> BTW, who's responsible for updating the XML-SIG page that the Python homepage > links to behind it's prominent "XML" link? In short: anybody who volunteers. Regards, Martin ___ XML-SIG maillist - XML-SIG@python.org http://mail.python.org/mailman/li

Re: [XML-SIG] PyXML for py 2.5

2007-11-02 Thread Stefan Behnel
Martin v. Löwis wrote: >> Do you have a version of PyXML that works with python version 2.5? If >> not when do you expect it to be available? > > PyXML is currently unmaintained. So likely, there won't be any file > releases if it anymore. BTW, who's responsible for updating the XML-SIG page tha

Re: [XML-SIG] PyXML for py 2.5

2007-11-02 Thread Martin v. Löwis
> Do you have a version of PyXML that works with python version 2.5? If > not when do you expect it to be available? PyXML is currently unmaintained. So likely, there won't be any file releases if it anymore. Regards, Martin ___ XML-SIG maillist - XML

Re: [XML-SIG] PyXML for py 2.5

2007-10-29 Thread Luis Miguel Morillas
2007/8/21, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > Hi > Do you have a version of PyXML that works with python version 2.5? If not > when do you expect it to be available? > > Are you on windows? I compiled a this version [1] for a colleague. I've never used it because I prefer amara [2], mor

[XML-SIG] PyXML for py 2.5

2007-10-29 Thread Brenda.Taylor
Hi Do you have a version of PyXML that works with python version 2.5? If not when do you expect it to be available? Regards Brenda Nokia UK Limited registered in England & Wales Registered Number: 02212202 Registered Office: Lancaster House, Lancaster Way, Ermine Business Park, Huntingdon,

Re: [XML-SIG] PyXML setup.py install - MSVC Compile Errors (error LNK2019: unresolved external symbol __imp__)

2007-10-25 Thread Stefan Behnel
Paul Hudson wrote: > I am attempting to setup PyXML under ActiveState's 64bit build of Python. If you are not tied to PyXML by some external constraint, you might want to use ElementTree or lxml instead, which are easy to use and actively maintained (as opposed to PyXML). http://codespeak.net/lx

[XML-SIG] PyXML setup.py install - MSVC Compile Errors (error LNK2019: unresolved external symbol __imp__)

2007-10-25 Thread Paul Hudson
Hello Everyone, I am attempting to setup PyXML under ActiveState's 64bit build of Python. I am running WinXP x64 on an AMD Opteron proc. I am using Visual C++ 2003. I referenced this page to get as far as I have: http://www.vrplumber.com/programming/mstoolkit/ (I made the recommended changes to

Re: [XML-SIG] PyXML on AIX

2007-04-11 Thread Mike Brown
John Dunn wrote: > I have been asked to install a python application on AIX 5.3 that runs OK on > Windows > I have installed Python 4.2.2 from python.org and pyXML form > sourceforge. > > However when I run the application I get the following error : > > class xml.sax._exceptions.SAXReaderNo

[XML-SIG] PyXML on AIX

2007-03-31 Thread John Dunn
I have been asked to install a python application on AIX 5.3 that runs OK on Windows I have installed Python 4.2.2 from python.org and pyXML form sourceforge. However when I run the application I get the following error : class xml.sax._exceptions.SAXReaderNotAvailable Do I need to set som

Re: [XML-SIG] pyxml status report

2007-03-14 Thread Martin v. Löwis
Gregory Dudek schrieb: > Somebody who can write to the sourceforge pyxml site really should > update the "topics" page ( http://pyxml.sourceforge.net/topics/ ) > > as well as the "web home" ( http://pyxml.sourceforge.net/ ). > > These are the first places you get to if you Google "python xml" a

[XML-SIG] pyxml status report

2007-03-05 Thread Gregory Dudek
Somebody who can write to the sourceforge pyxml site really should update the "topics" page ( http://pyxml.sourceforge.net/topics/ ) as well as the "web home" ( http://pyxml.sourceforge.net/ ). These are the first places you get to if you Google "python xml" and they are both rather misleadin

[XML-SIG] [ pyxml-XBEL-1665664 ] parse time problem

2007-02-22 Thread SourceForge.net
XBEL item #1665664, was opened at 2007-02-21 22:42 Message generated for change (Comment added) made by sergiomb You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=707658&aid=1665664&group_id=6473 Please note that this message will contain a full copy of the comment th

[XML-SIG] [ pyxml-XBEL-1665664 ] parse time is depend of system timezone

2007-02-22 Thread SourceForge.net
XBEL item #1665664, was opened at 2007-02-21 22:42 Message generated for change (Settings changed) made by sergiomb You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=707658&aid=1665664&group_id=6473 Please note that this message will contain a full copy of the comment

[XML-SIG] [ pyxml-XBEL-1665664 ] parse time problem

2007-02-21 Thread SourceForge.net
XBEL item #1665664, was opened at 2007-02-21 22:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=707658&aid=1665664&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Bugs-1639086 ] 1) XmlProc is not "pure" python 2) Problems with name spaces

2007-01-18 Thread SourceForge.net
Bugs item #1639086, was opened at 2007-01-18 19:49 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1639086&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Patches-1622024 ] minidom namespace normalization

2006-12-25 Thread SourceForge.net
Patches item #1622024, was opened at 2006-12-25 16:01 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1622024&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Bugs-1616923 ] AttributesImpl does not implement __contains__ on Linux

2006-12-16 Thread SourceForge.net
Bugs item #1616923, was opened at 2006-12-16 11:05 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1616923&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Bugs-1598441 ] Fails to print ampersand

2006-11-17 Thread SourceForge.net
Bugs item #1598441, was opened at 2006-11-17 17:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1598441&group_id=6473 Please note that this message will contain a full copy of

Re: [XML-SIG] pyxml build for 2.5 FINAL

2006-09-29 Thread Martin v. Löwis
Paul Watson schrieb: > I woud like to use pyxml with Python 2.5. My existing code is > working under Python 2.4. How can I get pyxml for Python 2.5? You should be able to build PyXML yourself from the latest source release. Notice that PyXML is no longer maintained, though. Regards, Martin ___

[XML-SIG] [ pyxml-Bugs-1566185 ] fix for bool & comment nodes

2006-09-27 Thread SourceForge.net
Bugs item #1566185, was opened at 2006-09-27 07:35 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1566185&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] pyxml build for 2.5 FINAL

2006-09-20 Thread Paul Watson
I woud like to use pyxml with Python 2.5. My existing code is working under Python 2.4. How can I get pyxml for Python 2.5? Thanks. If I should be using some other XML processing package, please let me know. Thanks. Kindest regards, Paul Watson

[XML-SIG] [ pyxml-Bugs-1562266 ] Build for 2.5

2006-09-20 Thread SourceForge.net
Bugs item #1562266, was opened at 2006-09-20 09:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1562266&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Patches-1532827 ] Fix handling of line terminators in msie_parse

2006-08-01 Thread SourceForge.net
Patches item #1532827, was opened at 2006-08-02 02:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1532827&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Bugs-1532824 ] xbel utilities should print usage on stderr

2006-08-01 Thread SourceForge.net
Bugs item #1532824, was opened at 2006-08-02 01:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1532824&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Bugs-1532817 ] --msie in xbel_parse calls undefined dump_msie

2006-08-01 Thread SourceForge.net
Bugs item #1532817, was opened at 2006-08-02 01:26 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1532817&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Bugs-1519384 ] bug in xmlparse_GetInputContext

2006-07-08 Thread SourceForge.net
Bugs item #1519384, was opened at 2006-07-08 16:51 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1519384&group_id=6473 Please note that this message will contain a full copy of

Re: [XML-SIG] Pyxml: DOM questions, problems with namespaces

2006-06-06 Thread Mike Brown
Matthias Dorfner wrote: > 1. some problems creating my xml file with the > correct double quoted string in the namespace, here one example: > > > xmlns:noNameSpaceSchemaLocation='Handle.xsd'> > > I need exactly this output but not single quoted(' -> "). Here's the code The type of quotes used

[XML-SIG] [pyxml][doc][5.1] Clarification request

2006-06-01 Thread Lukasz Szybalski
pyxml basics http://pyxml.sourceforge.net/topics/howto/node12.html I am following pyxml doc in hope to quickly grasp functions and classes available in pyxml. _ starting out: >>> from xml.sax import saxutils >>> class FindIssue(saxutils.DefaultHandler): ... def __init__(self,title,num

[XML-SIG] Pyxml: DOM questions, problems with namespaces

2006-05-27 Thread Matthias Dorfner
Hello together, I'm quite new to pyxml, so please forgive me some maybe "stupid" questions. I've two question: 1. some problems creating my xml file with the correct double quoted string in the namespace, here one example: I need exactly this output but not single quoted(' -> "). Here's the c

[XML-SIG] Pyxml question

2006-05-27 Thread Matthias Dorfner
Hello, first of all thanks a lot for your great pyxml descriptions on your homepage, it helps me a lot! Nevertheless I've still some problems creating my xml file with the correct double quoted string in the namespace, here one example: I need exactly this output but not single quoted(' -> ").

[XML-SIG] [ pyxml-Patches-1491055 ] sgmlop broken on Python 2.5

2006-05-18 Thread SourceForge.net
Patches item #1491055, was opened at 2006-05-18 18:04 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1491055&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Bugs-1480403 ] xpath.Evaluate() fails on larger documents

2006-05-02 Thread SourceForge.net
Bugs item #1480403, was opened at 2006-05-02 13:59 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1480403&group_id=6473 Please note that this message will contain a full copy of

Re: [XML-SIG] PyXML install problems on Mac OS X

2006-04-10 Thread Martin v. Löwis
Todd O'Bryan wrote: > I'm trying to install PyXML, but having problems. It appears that, > for some reason, gcc is not looking in /usr/include for header files. > I've tried looking through setup.py to see what was going on, but I'm > a Python newbie and just got lost in the code. > gcc -arc

[XML-SIG] PyXML install problems on Mac OS X

2006-04-04 Thread Todd O'Bryan
I hope this is the right place to ask about this... I have Mac OS X, 10.4.6 (updated this morning) with the new Python 2.4.3 Universal Binary just released at python.org. I'm trying to install PyXML, but having problems. It appears that, for some reason, gcc is not looking in /usr/include for

[XML-SIG] [ pyxml-Patches-1444526 ] c14n.py: http://www.w3.org/TR/xml-exc-c14n/ fix

2006-03-06 Thread SourceForge.net
Patches item #1444526, was opened at 2006-03-07 00:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1444526&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Patches-1442890 ] TreeWalker iterates past root node

2006-03-03 Thread SourceForge.net
Patches item #1442890, was opened at 2006-03-04 04:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1442890&group_id=6473 Please note that this message will contain a full copy

Re: [XML-SIG] PyXML 0.8.4 and expat byteorder

2006-02-09 Thread Uche Ogbuji
Bob Ippolito wrote: > Here's the PyXML patch that gets expat byteorder from pyconfig.h. I > don't know who the maintainer is nor do I have any interest in > subscribing to xml-sig (this CC will probably bounce, or get stuck in > mod queue for days/weeks/forever). If you give a damn about PyXML >

Re: [XML-SIG] PyXML 0.8.4 and expat byteorder

2006-02-09 Thread Uche Ogbuji
Bob Ippolito wrote: > Here's the PyXML patch that gets expat byteorder from pyconfig.h. I > don't know who the maintainer is nor do I have any interest in > subscribing to xml-sig (this CC will probably bounce, or get stuck in > mod queue for days/weeks/forever). If you give a damn about PyXML >

[XML-SIG] [ pyxml-Patches-1423775 ] expat byteorder breaks for OS X universal binary builds

2006-02-03 Thread SourceForge.net
Patches item #1423775, was opened at 2006-02-03 17:59 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1423775&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] PyXML 0.8.4 and expat byteorder

2006-02-03 Thread Bob Ippolito
Here's the PyXML patch that gets expat byteorder from pyconfig.h. I don't know who the maintainer is nor do I have any interest in subscribing to xml-sig (this CC will probably bounce, or get stuck in mod queue for days/weeks/forever). If you give a damn about PyXML please make sure to ge

[XML-SIG] [ pyxml-Patches-1378015 ] html style element may contain text

2005-12-10 Thread SourceForge.net
Patches item #1378015, was opened at 2005-12-11 06:37 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1378015&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Bugs-1370537 ] PrettyPrinter uses single quotes

2005-11-30 Thread SourceForge.net
Bugs item #1370537, was opened at 2005-12-01 02:03 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1370537&group_id=6473 Please note that this message will contain a full copy of

[XML-SIG] [ pyxml-Patches-1365920 ] Support UTF-16 encoding when PrettyPrinting.

2005-11-24 Thread SourceForge.net
Patches item #1365920, was opened at 2005-11-24 22:32 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1365920&group_id=6473 Please note that this message will contain a full copy

[XML-SIG] [ pyxml-Bugs-1365605 ] PrettyPrint with UTF-16 encoding produces invalid XML.

2005-11-24 Thread SourceForge.net
Bugs item #1365605, was opened at 2005-11-24 14:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1365605&group_id=6473 Please note that this message will contain a full copy of

Re: [XML-SIG] PyXML vs. stdlib xml.sax - SAX implementation/comparisonmatrix

2005-11-17 Thread Fredrik Lundh
Mike Brown wrote: > If someone with a few hours to kill would be willing to generate some XSLT to > render it, that would be great. how about 20 minutes and Python ? import elementtree.ElementTree as ET doc = ET.parse("sax-in-python.xml") class NS: def __init__(self, uri): self.uri

[XML-SIG] [ pyxml-Patches-1358233 ] pyexpat.py should call PyGIL_Acquire

2005-11-16 Thread SourceForge.net
Patches item #1358233, was opened at 2005-11-16 17:44 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=306473&aid=1358233&group_id=6473 Please note that this message will contain a full copy

Re: [XML-SIG] PyXML vs. stdlib xml.sax - SAX implementation/comparison matrix

2005-11-15 Thread Thomas Passin
Mike Brown wrote: > I have a documentation project for someone. > > Inspired by the DOM standards compliance matrix[1] and the nonexistence of > documentation comparing PyXML to stdlib xml.sax, I've created (by hand, by > looking at source code and CVS logs) an XML document that can be used to

[XML-SIG] PyXML vs. stdlib xml.sax - SAX implementation/comparison matrix

2005-11-14 Thread Mike Brown
I have a documentation project for someone. Inspired by the DOM standards compliance matrix[1] and the nonexistence of documentation comparing PyXML to stdlib xml.sax, I've created (by hand, by looking at source code and CVS logs) an XML document that can be used to generate a matrix showing th

[XML-SIG] [ pyxml-Bugs-1352653 ] Pretty printing not working

2005-11-09 Thread SourceForge.net
Bugs item #1352653, was opened at 2005-11-09 23:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106473&aid=1352653&group_id=6473 Please note that this message will contain a full copy of

  1   2   >