X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/2b808329bca3af8d614aa13af7b6ccf24092d4ce..46fdca9049d4b7806bc4d6ec33973a3fc19153c4:/models/pages.py?ds=sidebyside diff --git a/models/pages.py b/models/pages.py index 3435511..b9e481b 100644 --- a/models/pages.py +++ b/models/pages.py @@ -10,9 +10,8 @@ from django.template import Context, RequestContext from django.template.loader import get_template from django.template.loader_tags import ExtendsNode, ConstantIncludeNode, IncludeNode from django.http import HttpResponse -from django.contrib.sites.models import Site from philo.models.base import TreeModel, register_value_model -from philo.models.nodes import Node +from philo.models.nodes import View from philo.utils import fattr from philo.templatetags.containers import ContainerNode @@ -91,27 +90,23 @@ class Template(TreeModel): app_label = 'philo' -class Page(Node): +class Page(View): """ Represents a page - something which is rendered according to a template. The page will have a number of related Contentlets depending on the template selected - but these will appear only after the page has been saved with that template. """ template = models.ForeignKey(Template, related_name='pages') title = models.CharField(max_length=255) - def render_to_response(self, request, path=None, subpath=None): + def render_to_response(self, node, request, path=None, subpath=None): return HttpResponse(self.template.django_template.render(RequestContext(request, {'page': self})), mimetype=self.template.mimetype) def __unicode__(self): - return self.get_path(u' › ', 'title') + return self.title class Meta: app_label = 'philo' -# the following line enables the selection of a node as the root for a given django.contrib.sites Site object -models.ForeignKey(Node, related_name='sites', null=True, blank=True).contribute_to_class(Site, 'root_node') - - class Contentlet(models.Model): page = models.ForeignKey(Page, related_name='contentlets') name = models.CharField(max_length=255)