Message1744
Could you please create the simplest possible example where something
goes wrong? The xml file you attached is huge -- I'm sure you can
create a simpler one showing the same problem. Your Python code is ok
otherwise but it contains hard coded path (d:\temp\pms_act.xml) so it
won't run without editing. Probably the best would be if you created
just one .py file where you had the xml as string. Then you could
simply attach that file (instead of a zip) to the bug report so that
it would be easier to view and download the code. Your example could
look something like below.
from xml.dom import minidom
from StringIO import StringIO
myxml = """<hello>
world
</hello>"""
mydom = minidom.parse(StringIO(myxml))
# do something demonstrating the problem here ...
If you make the example simple it is more likely that someone will
actually take a look at it. I'm doing all my little Jython
contributions totally on my own time. I know something about xml and
could investigate this out of my own interest but I'm not planning to
spent time on getting the example running first.
|
|
| Date |
User |
Action |
Args |
| 2008-02-20 17:17:55 | admin | link | issue1757419 messages |
| 2008-02-20 17:17:55 | admin | create | |
|