Search found 8 matches

by ameyzzin
Thu Feb 17, 2005 5:17 pm
Forum: XSLT and FOP
Topic: WhiteSpace
Replies: 7
Views: 8230

So there is no way you can keep the original data ..this isesentially the parsing mucking up the data.
Can we have a different XSLT which will read the normalized data and convert it back to what it was originally
by ameyzzin
Thu Feb 17, 2005 8:33 am
Forum: XSLT and FOP
Topic: WhiteSpace
Replies: 7
Views: 8230

george i have sent the file to support @ oxygenxml
thanks
by ameyzzin
Wed Feb 16, 2005 5:56 pm
Forum: XSLT and FOP
Topic: WhiteSpace
Replies: 7
Views: 8230

George,

In my XML i have an attribute which has base64binary data.This data has some whitespace in it .after i do a <copy-of> and i look under a Hex editor
the whitespace has changed from "OD OD OA" to "26 23 78 41".

I can send you my XML and XSL files if you want.

Thanks
by ameyzzin
Wed Feb 16, 2005 1:23 am
Forum: XSLT and FOP
Topic: WhiteSpace
Replies: 7
Views: 8230

WhiteSpace

I have a xsl which copies a xml file to another xml file while inserting new elements,attributes etc. I use MSXSL to do the transform. I have noticed in while looking under the hex editor that the newer xml the whitespaces have changed there were place which had a 2 bit whitespace which is converted...
by ameyzzin
Wed Feb 16, 2005 1:17 am
Forum: XSLT and FOP
Topic: Same name sibling elements
Replies: 2
Views: 5710

Thanks george ,i need to OR it like you suggested..sorry for not being clear abt my doubts...i got it working
by ameyzzin
Tue Feb 15, 2005 1:54 am
Forum: XSLT and FOP
Topic: Same name sibling elements
Replies: 2
Views: 5710

Same name sibling elements

How can i write a single XSL that will get cpad from under cpadPtAddr and cpad from under cpadPtAddrFlr and output it top a pipe delimited text file. IO have two xsls that can do this seperately but match template works only for either cpadptAddr or cpadPtAddrFLr <?xml version="1.0"?> <te>...
by ameyzzin
Tue Feb 15, 2005 1:32 am
Forum: XSLT and FOP
Topic: inserting a new attribute to an existing element
Replies: 2
Views: 17243

Got it

thanks,
I got what i needed
by ameyzzin
Tue Feb 15, 2005 12:10 am
Forum: XSLT and FOP
Topic: inserting a new attribute to an existing element
Replies: 2
Views: 17243

inserting a new attribute to an existing element

Hi, I have an xml file , which has several elements ..i would like to add a new attribute to an existing element. eg. if i wan to add attribute "district" to element "Center" <xsl:attribute name"District">45</xsl:attribute> and write the xml file again with updated attr...