Re: [XML-SIG] XBEL xslt stylesheet

2005-01-03 Thread Christian Junk
Am Freitag, 31. Dezember 2004 01:31 schrieb Narve Saetre: > There seem to be an invalid URL (another web page gone dead) on the XBEL > > page: > >Joris Graaumans ([EMAIL PROTECTED]) has developed a couple of XSLT > > stylesheets for XBEL . Yes, this URL is

[XML-SIG] xml.dom.minidom.toprettyxml whitespace question

2005-01-03 Thread Andy Meyer
Hello all, I have a question about the xml.dom.minidom.toprettyxml method's insertion of whitespace into text elements, e.g. 'Hello!' getting transformed by toprettyxml to: Hello! with the addition of tabs and newlines around 'Hello!', instead of: Hello! Since a SAX-style

Re: [XML-SIG] xml.dom.minidom.toprettyxml whitespace question

2005-01-03 Thread Rich Salz
I'm new to XML and handling whitespace seems to be an unresolved issue. You might want to look up the "xml:space" attribute, and "whitespace normalization" (e.g., XPath 1.0) Is this behavior by design? Yes. Note that the name is "toprettyxml" not just "dump" or "print" -- it's designed to make t

[XML-SIG] XIST 2.8 has been released

2005-01-03 Thread Walter Dörwald
XIST 2.8 has been released! What is it? === XIST is an extensible HTML/XML generator written in Python. XIST is also a DOM parser (built on top of SAX2) with a very simple and Pythonesque tree API. Every XML element type corresponds to a Python class, and these Python classes provide a conv

Re: [XML-SIG] xml.dom.minidom.toprettyxml whitespace question

2005-01-03 Thread Malcolm Tredinnick
On Mon, 2005-01-03 at 13:29 -0500, Andy Meyer wrote: > Hello all, > > I have a question about the xml.dom.minidom.toprettyxml method's > insertion of whitespace into text elements, e.g. > 'Hello!' getting transformed by toprettyxml to: > > > > Hello! > > > > with the addit