Removes leftover references to relationships in nodeview error handling and in TreeEntity
authorStephen Burrows <stephen.r.burrows@gmail.com>
Thu, 21 Oct 2010 20:20:14 +0000 (16:20 -0400)
committerStephen Burrows <stephen.r.burrows@gmail.com>
Thu, 21 Oct 2010 20:20:14 +0000 (16:20 -0400)
models/base.py
views.py

index 5d09f37..05074c3 100644 (file)
@@ -340,11 +340,5 @@ class TreeEntity(Entity, TreeModel):
                        return QuerySetMapper(self.attribute_set, passthrough=self.parent.attributes)
                return super(TreeEntity, self).attributes
        
-       @property
-       def relationships(self):
-               if self.parent:
-                       return QuerySetMapper(self.relationship_set, passthrough=self.parent.relationships)
-               return super(TreeEntity, self).relationships
-       
        class Meta:
                abstract = True
\ No newline at end of file
index fd8e662..7aac917 100644 (file)
--- a/views.py
+++ b/views.py
@@ -27,7 +27,7 @@ def node_view(request, path=None, **kwargs):
                        raise
                
                try:
-                       Http404View = node.relationships['Http404']
+                       Http404View = node.attributes['Http404']
                except KeyError:
                        Http404View = None
                
@@ -42,7 +42,7 @@ def node_view(request, path=None, **kwargs):
                        raise
                
                try:
-                       Http500View = node.relationships['Http500']
+                       Http500View = node.attributes['Http500']
                        
                        if not Http500View:
                                raise e