[Python-Dev] c/ElementTree XML serialisation
Alex Leach
albl500 at york.ac.uk
Wed May 9 14:41:19 CEST 2012
More information about the Python-Dev mailing list
Wed May 9 14:41:19 CEST 2012
- Previous message: [Python-Dev] c/ElementTree XML serialisation
- Next message: [Python-Dev] c/ElementTree XML serialisation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wednesday 09 May 2012 08:10:34 And Clover wrote: | On 2012-05-08 23:41, Alex Leach wrote: | > I still need< and> symbols. I have no idea how to write a loop in | > javascript without one. | Just &-escape them same as you do in any other element. 'style' and | 'script' do not require any special handling in XML. | | <svg xmlns="http://www.w3.org/2000/svg"> | <script type="text/javascript"> | for (var i= 0; i<3; i++) | alert(i); | </script> | <style type="text/css"> | circle[class='foo<bar'] { fill: blue; } | </style> | <circle cx="200" cy="200" r="100" class="foo<bar"/> | </svg> | | ('>' doesn't necessarily need escaping anyway, except as part of a ]]> | sequence in text content.) Cheers, I'll have to check that. I assumed < etc. didn't get executed properly in SVG files. Assuming you're correct (you python-devs always are!), it must have been another problem that was causing issues...
- Previous message: [Python-Dev] c/ElementTree XML serialisation
- Next message: [Python-Dev] c/ElementTree XML serialisation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list