summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/custom/mixed/people.xml
blob: 4e5c0ca099bd1105e24117d8145ec67421eadd12 (plain)
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
<?xml version="1.0"?>

<!--

file      : examples/cxx/tree/custom/mixed/people.xml
author    : Boris Kolpackov <boris@codesynthesis.com>
copyright : not copyrighted - public domain

-->

<ppl:directory xmlns:ppl="http://www.codesynthesis.com/people"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://www.codesynthesis.com/people people.xsd">

  <person>
    <first-name>John</first-name>
    <last-name>Doe</last-name>
    <gender>male</gender>
    <age>32</age>
    <bio>
      <xhtml xmlns="http://www.w3.org/1999/xhtml">
        <p>Married to Jane Doe.</p>
      </xhtml>
    </bio>
  </person>

  <person>
    <first-name>Jane</first-name>
    <last-name>Doe</last-name>
    <gender>female</gender>
    <age>28</age>
    <bio>
      <xhtml xmlns="http://www.w3.org/1999/xhtml">
        <p>Married to John Doe.</p>
      </xhtml>
    </bio>
  </person>

</ppl:directory>