summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml
blob: 36ab335d29a6a6c0916a3ce2f0fbda001d65647b (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
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<site>
    <title>My XMLGRAPH Website</title>
    <document xml:id="index" name="index.html">
        <title>Site Home Page</title>
        <body>
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p>Welcome to the site. We have lots to say.</p>
                <p>Or, <em>maybe</em> not.</p>
            </div>
        </body>
    </document>
    <folder xml:id="n1" name="folder1">
        <title>Folder One</title>
        <document xml:id="n11" name="doc1">
            <title>doc1 in folder1</title>
            <body>
                <div xmlns="http://www.w3.org/1999/xhtml">
                    <p>I am in an HTML <code>div</code> so I can do <strong>LOTS</strong> of
                        formatting.</p>
                </div>
            </body>
        </document>
        <document xml:id="n12" name="doc2">
            <title>doc2 in folder1</title>
            <body>
                <div xmlns="http://www.w3.org/1999/xhtml">
                    <p>Keep this on one line.</p>
                </div>
            </body>
        </document>
    </folder>
    <folder xml:id="n2" name="folder2">
        <title>The Second Folder</title>
        <document xml:id="n21" name="doc1">
            <title>doc1 in folder2</title>
            <body>
                <div xmlns="http://www.w3.org/1999/xhtml">
                    <p>This is a special folder. It's folder 2!</p>
                </div>
            </body>
        </document>
    </folder>
</site>