annotate data/jsondata.xml @ 13:197a850b1f6f default tip

working version of xml2json transformation
author cin
date Mon, 09 Apr 2018 16:27:26 +0300
parents 191b81b2052b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
14162f9133a1 working on xml to json transform
cin
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
14162f9133a1 working on xml to json transform
cin
parents:
diff changeset
2 <person>
12
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
3 <firstName>Peter</firstName>
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
4 <firstName>Craig</firstName>
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
5 <lastName>Jackson</lastName>
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
6 <age>49</age>
13
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
7 <xaddress order="1" shared="true">
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
8 <street>1st avenue,
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
9 new street</street>
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
10 </xaddress>
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
11 <xhome>
12
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
12 <tel>123-23-12</tel>
13
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
13 </xhome>
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
14 <xwork>
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
15 <tel>213-55-66</tel>
197a850b1f6f working version of xml2json transformation
cin
parents: 12
diff changeset
16 </xwork>
12
191b81b2052b first version of the xslt transform from xml to json
cin
parents: 11
diff changeset
17 <unemployed>false</unemployed>
11
14162f9133a1 working on xml to json transform
cin
parents:
diff changeset
18 </person>