From 14c8095fd1f088dbfd27a450c9da6b0e0b4d9a6b Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 24 Jul 2008 20:54:31 +0000 Subject: Steps 1 & 2 appear sane. --- docs/tutorials/lxmlgraph/step02/myapp/configure.zcml | 2 +- docs/tutorials/lxmlgraph/step02/myapp/models.py | 9 +++++---- docs/tutorials/lxmlgraph/step02/myapp/views.py | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) (limited to 'docs/tutorials/lxmlgraph/step02') diff --git a/docs/tutorials/lxmlgraph/step02/myapp/configure.zcml b/docs/tutorials/lxmlgraph/step02/myapp/configure.zcml index 540526ec9..d299dc883 100644 --- a/docs/tutorials/lxmlgraph/step02/myapp/configure.zcml +++ b/docs/tutorials/lxmlgraph/step02/myapp/configure.zcml @@ -5,7 +5,7 @@ diff --git a/docs/tutorials/lxmlgraph/step02/myapp/models.py b/docs/tutorials/lxmlgraph/step02/myapp/models.py index 3c03de1a9..1d93ccdd0 100644 --- a/docs/tutorials/lxmlgraph/step02/myapp/models.py +++ b/docs/tutorials/lxmlgraph/step02/myapp/models.py @@ -1,3 +1,5 @@ +import os + from zope.interface import implements from zope.interface import Attribute from zope.interface import Interface @@ -32,10 +34,9 @@ def get_root(environ): parser.set_element_class_lookup(parser_lookup) # Now load the XML file - xmlstring = open("myapp/samplemodel.xml").read() + here = os.path.join(os.path.dirname(__file__)) + samplemodel = os.path.join(here, 'samplemodel.xml') + xmlstring = open(samplemodel).read() root = etree.XML(xmlstring, parser) return root - - - diff --git a/docs/tutorials/lxmlgraph/step02/myapp/views.py b/docs/tutorials/lxmlgraph/step02/myapp/views.py index 205b4b163..75e390efb 100644 --- a/docs/tutorials/lxmlgraph/step02/myapp/views.py +++ b/docs/tutorials/lxmlgraph/step02/myapp/views.py @@ -1,6 +1,6 @@ from webob import Response -def my_hello_view(context, request): +def my_view(context, request): response = Response('Hello to %s from %s @ %s' % ( context.tag, context.__name__, -- cgit v1.2.3