From 75cc1eb2a85c2e8ef872566c0b798c6526a23cb3 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 16 May 2011 15:57:10 +0100 Subject: [PATCH] blogpost/views no longer needed --- examples/blogpost/views.py | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 examples/blogpost/views.py diff --git a/examples/blogpost/views.py b/examples/blogpost/views.py deleted file mode 100644 index c4b54f734..000000000 --- a/examples/blogpost/views.py +++ /dev/null @@ -1,27 +0,0 @@ -from djangorestframework.modelresource import InstanceModelResource, ListOrCreateModelResource - -from blogpost import models - -BLOG_POST_FIELDS = ('created', 'title', 'slug', 'content', 'absolute_url', 'comment_url', 'comments_url') -COMMENT_FIELDS = ('username', 'comment', 'created', 'rating', 'absolute_url', 'blogpost_url') - -class BlogPosts(ListOrCreateModelResource): - """A resource with which lists all existing blog posts and creates new blog posts.""" - model = models.BlogPost - fields = BLOG_POST_FIELDS - -class BlogPostInstance(InstanceModelResource): - """A resource which represents a single blog post.""" - model = models.BlogPost - fields = BLOG_POST_FIELDS - -class Comments(ListOrCreateModelResource): - """A resource which lists all existing comments for a given blog post, and creates new blog comments for a given blog post.""" - model = models.Comment - fields = COMMENT_FIELDS - -class CommentInstance(InstanceModelResource): - """A resource which represents a single comment.""" - model = models.Comment - fields = COMMENT_FIELDS -