File: test.xml

package info (click to toggle)
libxmlada 25.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,212 kB
  • sloc: ada: 78,068; sh: 3,310; makefile: 394; xml: 111; python: 39
file content (72 lines) | stat: -rw-r--r-- 1,268 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" ?>

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://test2 test2.xsd"
      xmlns:test2="http://test2"
      xsi:noNamespaceSchemaLocation='test.xsd' >
  <my_string>
    <size>10</size>
    <contents>ManuManuMa</contents>
  </my_string>

  <zip attr1="-11" attr3="1 2 3" attr4="value1">
    <code_postal>1723</code_postal>
    <foo>Manu</foo>
  </zip>

  <zip>
    <zipcode>1723</zipcode>
    <!--  <zipcode>1724</zipcode> -->
    <foo>Manu</foo>
  </zip>

  <zipb>
    <code_postal>1723</code_postal>
  </zipb>

  <zipr attr1="12:00:12">
     <zipcode>1723</zipcode>
  </zipr>

  <strs>
     <str>a</str>
     <str2>b</str2>
     <str>c</str>
  </strs>

  <strs>
     <str>a</str>
     <str2>b</str2>
     <str>c</str>
  </strs>

  <strs>
     <str>a</str>
     <str2>b</str2>
     <str>c</str>
  </strs>

  <!-- Invalid
  <strs2>
     <str>a</str>
     <str2>b</str2>
     <str3>c</str3>
  </strs2>
  -->

  <person>
     <first_name>Emmanuel</first_name>
     <last_name>Briot</last_name>
  </person>
  <person>
     <last_name>Briot</last_name>
     <first_name>Emmanuel</first_name>
  </person>
  <person>
     <first_name>Emmanuel</first_name>
  </person>

  <test2:manu/>
  <test2:manu/>

</root>