summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2008-07-24 17:14:16 +0000
committerPaul Everitt <paul@agendaless.com>2008-07-24 17:14:16 +0000
commit1a7b14de4bc89ef0fd162ef8e62d01926e42b54e (patch)
tree8d9ccc8187ac29eb80ac310c6f82c17d548cdf54 /docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml
parentc1a6ef6f751a16b7a352bc3fdad13d4b5b73f212 (diff)
downloadpyramid-1a7b14de4bc89ef0fd162ef8e62d01926e42b54e.tar.gz
pyramid-1a7b14de4bc89ef0fd162ef8e62d01926e42b54e.tar.bz2
pyramid-1a7b14de4bc89ef0fd162ef8e62d01926e42b54e.zip
Add tutorial sections
Diffstat (limited to 'docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml')
-rw-r--r--docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml b/docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml
new file mode 100644
index 000000000..36ab335d2
--- /dev/null
+++ b/docs/tutorials/lxmlgraph/step04/myapp/samplemodel.xml
@@ -0,0 +1,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>