[
Lists Home |
Date Index |
Thread Index
]
- From: Sean McGrath <sean@digitome.com>
- To: xml-dev@lists.xml.org
- Date: Fri, 10 Nov 2000 17:15:37 +0000
At 08:12 PM 11/4/00 +0000, Matt Sergeant wrote:
>By procedural I
>mean something that says:
>
>foreach foo element
> output "foo: "
> foreach bar element child of foo
> output " = "
> foreach text child of bar
> output the text
>
>Mapping that model to mixed content is, umm, difficult, to say the least.
Using the Pyxie Python library the code would look like this:
for f in T.Elements("foo"):
T.Seek(f)
print "\nfoo = "
for b in T.Children("bar"):
T.Seek("bar")
print T.JoinData()
What is difficult about that? (Or have I misunderstood you?)
Sean
Sean McGrath
CTO
Propylon - Enabling Universal Mobility
http://www.propylon.com
Tel: +353 1 6620482
|