W
Wizfrog
Hello,
I am using XSL to transform a XML file into a HTML output.
classic
so, I have a tag calling an image with a local path as
<img src="images/myimage.jpg"/>
nothing really strange here...
I am just surprised to see that the output includes the FULL path to
the image.
so, XSL first is able to figure out that my img tag is an html tag and
put in the full path there.
it makes for a HUGE src field, and since I am generating an output
with several images for each field, and hundreds of fields, it's just
slow.
i am thinking that all this extra text in the HTML just makes it
heavier to handle, and just wish to use the simpler local path.
Why is XSL generating the full path like this? How do I get around
this?
other thing i found out is that it keeps inserting attributes like:
xmlns:td="urn:schemas-microsoft-com:datatypes" all over the place in
my <div>
I tried to use <xsl:element name="div"> instead of just <div> but it
didn't help.
any idea?
thanks for help!
I am using XSL to transform a XML file into a HTML output.
classic
so, I have a tag calling an image with a local path as
<img src="images/myimage.jpg"/>
nothing really strange here...
I am just surprised to see that the output includes the FULL path to
the image.
so, XSL first is able to figure out that my img tag is an html tag and
put in the full path there.
it makes for a HUGE src field, and since I am generating an output
with several images for each field, and hundreds of fields, it's just
slow.
i am thinking that all this extra text in the HTML just makes it
heavier to handle, and just wish to use the simpler local path.
Why is XSL generating the full path like this? How do I get around
this?
other thing i found out is that it keeps inserting attributes like:
xmlns:td="urn:schemas-microsoft-com:datatypes" all over the place in
my <div>
I tried to use <xsl:element name="div"> instead of just <div> but it
didn't help.
any idea?
thanks for help!