summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step01/myapp
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/step01/myapp
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/step01/myapp')
-rw-r--r--docs/tutorials/lxmlgraph/step01/myapp/__init__.py1
-rw-r--r--docs/tutorials/lxmlgraph/step01/myapp/configure.zcml12
-rw-r--r--docs/tutorials/lxmlgraph/step01/myapp/models.py18
-rw-r--r--docs/tutorials/lxmlgraph/step01/myapp/views.py7
4 files changed, 0 insertions, 38 deletions
diff --git a/docs/tutorials/lxmlgraph/step01/myapp/__init__.py b/docs/tutorials/lxmlgraph/step01/myapp/__init__.py
deleted file mode 100644
index 792d60054..000000000
--- a/docs/tutorials/lxmlgraph/step01/myapp/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-#
diff --git a/docs/tutorials/lxmlgraph/step01/myapp/configure.zcml b/docs/tutorials/lxmlgraph/step01/myapp/configure.zcml
deleted file mode 100644
index e06023c24..000000000
--- a/docs/tutorials/lxmlgraph/step01/myapp/configure.zcml
+++ /dev/null
@@ -1,12 +0,0 @@
-<configure xmlns="http://namespaces.repoze.org/bfg">
-
- <!-- this must be included for the view declarations to work -->
- <include package="repoze.bfg.includes" />
-
- <!-- the default view for a MyModel -->
- <view
- for=".models.IMyModel"
- view=".views.my_hello_view"
- />
-
-</configure>
diff --git a/docs/tutorials/lxmlgraph/step01/myapp/models.py b/docs/tutorials/lxmlgraph/step01/myapp/models.py
deleted file mode 100644
index 85d603d80..000000000
--- a/docs/tutorials/lxmlgraph/step01/myapp/models.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from zope.interface import implements
-from zope.interface import Attribute
-from zope.interface import Interface
-
-class IMyModel(Interface):
- __name__ = Attribute('Name of the model instance')
-
-class MyModel(dict):
- implements(IMyModel)
- def __init__(self, name):
- self.__name__ = name
-
-root = MyModel('site')
-root['a'] = MyModel('a')
-root['b'] = MyModel('b')
-
-def get_root(environ):
- return root
diff --git a/docs/tutorials/lxmlgraph/step01/myapp/views.py b/docs/tutorials/lxmlgraph/step01/myapp/views.py
deleted file mode 100644
index 13de3ae31..000000000
--- a/docs/tutorials/lxmlgraph/step01/myapp/views.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from webob import Response
-
-def my_hello_view(context, request):
- response = Response('Hello from %s @ %s' % (
- context.__name__,
- request.environ['PATH_INFO']))
- return response