summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step03/myapp/templates
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-01 10:26:57 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-01 10:26:57 +0000
commitba9b0e647bff1bf0c437ab204ddf11783ed698f8 (patch)
tree1952ebfdc40ae71a3bc54eb10a92a0fe1e8273ec /docs/tutorials/lxmlgraph/step03/myapp/templates
parentbc0698e1ac67106346d8c006bddcb38370f7c16b (diff)
downloadpyramid-ba9b0e647bff1bf0c437ab204ddf11783ed698f8.tar.gz
pyramid-ba9b0e647bff1bf0c437ab204ddf11783ed698f8.tar.bz2
pyramid-ba9b0e647bff1bf0c437ab204ddf11783ed698f8.zip
Merge "c-free" branch to trunk.
Diffstat (limited to 'docs/tutorials/lxmlgraph/step03/myapp/templates')
-rw-r--r--docs/tutorials/lxmlgraph/step03/myapp/templates/default.pt8
-rw-r--r--docs/tutorials/lxmlgraph/step03/myapp/templates/xsltview.xsl12
2 files changed, 0 insertions, 20 deletions
diff --git a/docs/tutorials/lxmlgraph/step03/myapp/templates/default.pt b/docs/tutorials/lxmlgraph/step03/myapp/templates/default.pt
deleted file mode 100644
index 3cc98ef92..000000000
--- a/docs/tutorials/lxmlgraph/step03/myapp/templates/default.pt
+++ /dev/null
@@ -1,8 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:tal="http://xml.zope.org/namespaces/tal">
- <head></head>
- <body>
- <h1>My template is viewing item: ${name}</h1>
- <p>The node has a tag name of: ${node.tag}.</p>
- </body>
-</html>
diff --git a/docs/tutorials/lxmlgraph/step03/myapp/templates/xsltview.xsl b/docs/tutorials/lxmlgraph/step03/myapp/templates/xsltview.xsl
deleted file mode 100644
index 4d759b15b..000000000
--- a/docs/tutorials/lxmlgraph/step03/myapp/templates/xsltview.xsl
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:template match="/document">
- <html>
- <head/>
- <body>
- <h1>My template is viewing item: <xsl:value-of select="@name"/></h1>
- <p>The node has a name of: <xsl:value-of select="name()"/>.</p>
- </body>
- </html>
- </xsl:template>
-</xsl:stylesheet>