Hey folks,
I'm working through Chapter 13 p.540-554
of course I am using python 2.5 and the code is designed to exploit pyxml which does not have a python 2.5 distro.
I have considered compiling. Maybe i'd compile on linux, but a windows box scares me. Just like glass, Windows tends to break when I try to clean something on it.
Any ideas of lines of code that need to be modified to accomodate 4suite instead of pyxml?
I have tried:
feed_reader.py
---------------
Code:
import xml.sax # old code
Code:
import Ft.Xml.Sax #new code, didn't work
Code:
from Ft.Xml import Sax # Second alternative. can not find SplitQname dll
something that did work, or at least passes bug test, full compile still fails due to above:
feed.py
---------
Code:
import xml.utils.iso8601 # old code
...
self.date = xml.utils.iso8601.parse(new_date)
Code:
import Ft.Lib.Time# new code works
...
self.date = Ft.Lib.Time.FromISO8601(new_date)
Any other ideas?