> Hey all,
>
> Good news, I have a proof of concept of this idea actually working! It
runs
> as a fairly simple Ant task and it is SO much cleaner and easier to use
than
> XSL it is silly.
>
> -jon
This sounds good.
XML is really great but its syntax sometimes
just does not make it practical to use.
Here is some other format I use to get the same effect.
XML format:
<AAA id='a1' pos='start'>
<BBB id='b1'/>
<BBB id='b2'/>
</AAA>
<AAA id='a2'>
<BBB id='b3'/>
<BBB id='b4'/>
<CCC id='c1'>
<DDD id='d1'/>
</CCC>
<BBB id='b5'>
<CCC id='c2'/>
</BBB>
</AAA>
In some other format:
AAA a1 start
BBB b1
BBB b2
AAA a2 .
BBB b3
BBB b4
CCC c1
DDD d1
BBB b5
CCC c2
Comp AAA
Element id
Element pos
Comp BBB parent AAA
Element id
Comp CCC parent BBB
Element id
Comp DDD parent CCC
Element id
Theo