Generated: Thu 2012-03-01 08:22 CST
Source file: /home/alisue/Dropbox/Codes/django-permission/tests/src/miniblog/blogs/views.py
Stats: 15 executed, 1 missed, 9 excluded, 38 ignored
# vim: set fileencoding=utf-8 :
"""
Mini blog views
AUTHOR:
lambdalisue[Ali su ae] (lambdalisue@hashnote.net)
License:
The MIT License (MIT)
Copyright (c) 2012 Alisue allright reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
"""
from __future__ import with_statement
from django.views.generic import ListView
from django.views.generic import DetailView
from django.views.generic import CreateView
from django.views.generic import UpdateView
from django.views.generic import DeleteView
from django.core.urlresolvers import reverse
from models import Entry
from forms import EntryForm
class EntryListView(ListView):
model = Entry
class EntryDetailView(DetailView):
model = Entry
slug_field = 'title'
class EntryCreateView(CreateView):
form_class = EntryForm
model = Entry
class EntryUpdateView(UpdateView):
form_class = EntryForm
model = Entry
class EntryDeleteView(DeleteView):
model = Entry
def get_success_url(self):
return reverse('blogs-entry-list')