forked from django-ordered-model/django-ordered-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1814f6f
Showing
13 changed files
with
276 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/build | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Copyright (c) 2009, Ben Firshman | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
* The names of its contributors may not be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
django-ordered-model | ||
==================== | ||
|
||
django-ordered-model allows models to be ordered and provides a simple admin | ||
interface for reordering them. | ||
|
||
Requires: | ||
|
||
* Django 1.1 | ||
|
||
Installation | ||
------------ | ||
|
||
$ python setup.py install | ||
|
||
Usage | ||
----- | ||
|
||
Inherit your model from `OrderedModel` to make it ordered: | ||
|
||
from django.db import models | ||
from ordered_model.models import OrderedModel | ||
|
||
class Item(OrderedModel): | ||
name = models.CharField(max_length=100) | ||
|
||
Model instances now have `move_up()` and `move_down()` methods to move them | ||
relative to each other. | ||
|
||
To add arrows in the admin change list page to do reordering, you can use the | ||
`OrderedModelAdmin` and the `move_up_down_links` field: | ||
|
||
from django.contrib import admin | ||
from ordered_model.admin import OrderedModelAdmin | ||
from models import Item | ||
|
||
class ItemAdmin(OrderedModelAdmin): | ||
list_display = ('name', 'move_up_down_links') | ||
|
||
admin.site.register(Item, ItemAdmin) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Based on http://www.djangosnippets.org/snippets/998/ and http://www.djangosnippets.org/snippets/259/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from django.conf import settings | ||
from django.contrib import admin | ||
from django.contrib.admin.util import unquote | ||
from django.core.urlresolvers import reverse | ||
from django.http import HttpResponseRedirect | ||
from django.shortcuts import get_object_or_404 | ||
from django.utils.functional import update_wrapper | ||
|
||
class OrderedModelAdmin(admin.ModelAdmin): | ||
def get_urls(self): | ||
from django.conf.urls.defaults import patterns, url | ||
def wrap(view): | ||
def wrapper(*args, **kwargs): | ||
return self.admin_site.admin_view(view)(*args, **kwargs) | ||
return update_wrapper(wrapper, view) | ||
info = self.model._meta.app_label, self.model._meta.module_name | ||
return patterns('', | ||
url(r'^(.+)/move-(up)/$', | ||
wrap(self.move_view), | ||
name='%s_%s_move_up' % info), | ||
url(r'^(.+)/move-(down)/$', | ||
wrap(self.move_view), | ||
name='%s_%s_move_down' % info), | ||
) + super(OrderedModelAdmin, self).get_urls() | ||
|
||
def move_view(self, request, object_id, direction): | ||
obj = get_object_or_404(self.model, pk=unquote(object_id)) | ||
if direction == 'up': | ||
obj.move_up() | ||
else: | ||
obj.move_down() | ||
return HttpResponseRedirect('../../') | ||
|
||
def move_up_down_links(self, obj): | ||
return '<a href="../../%(app_label)s/%(module_name)s/%(object_id)s/move-up/"><img src="%(ADMIN_MEDIA_PREFIX)simg/admin/arrow-up.gif" alt="Move up" /></a> <a href="../../%(app_label)s/%(module_name)s/%(object_id)s/move-down/"><img src="%(ADMIN_MEDIA_PREFIX)simg/admin/arrow-down.gif" alt="Move up" /></a>' % { | ||
'app_label': self.model._meta.app_label, | ||
'module_name': self.model._meta.module_name, | ||
'object_id': obj.id, | ||
'ADMIN_MEDIA_PREFIX': settings.ADMIN_MEDIA_PREFIX, | ||
} | ||
move_up_down_links.allow_tags = True | ||
move_up_down_links.short_description = 'Move' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
from django.contrib.contenttypes.models import ContentType | ||
from django.core.urlresolvers import reverse | ||
from django.db import models | ||
|
||
class OrderedModel(models.Model): | ||
""" | ||
An abstract model that allows objects to be ordered relative to each other. | ||
Provides an ``order`` field. | ||
""" | ||
|
||
order = models.PositiveIntegerField(editable=False) | ||
|
||
class Meta: | ||
abstract = True | ||
ordering = ('order',) | ||
|
||
def save(self, *args, **kwargs): | ||
if not self.id: | ||
qs = self.__class__.objects.order_by('-order') | ||
try: | ||
self.order = qs[0].order + 1 | ||
except IndexError: | ||
self.order = 0 | ||
super(OrderedModel, self).save(*args, **kwargs) | ||
|
||
def _move(self, up): | ||
qs = self.__class__._default_manager | ||
if up: | ||
qs = qs.order_by('-order').filter(order__lt=self.order) | ||
else: | ||
qs = qs.filter(order__gt=self.order) | ||
try: | ||
replacement = qs[0] | ||
except IndexError: | ||
# already first/last | ||
return | ||
self.order, replacement.order = replacement.order, self.order | ||
self.save() | ||
replacement.save() | ||
|
||
def move_down(self): | ||
""" | ||
Move this object down one position. | ||
""" | ||
return self._move(up=False) | ||
|
||
def move_up(self): | ||
""" | ||
Move this object up one position. | ||
""" | ||
return self._move(up=True) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"pk": 1, | ||
"model": "tests.item", | ||
"fields": { | ||
"name": "1", | ||
"order": 0 | ||
} | ||
}, | ||
{ | ||
"pk": 2, | ||
"model": "tests.item", | ||
"fields": { | ||
"name": "2", | ||
"order": 1 | ||
} | ||
}, | ||
{ | ||
"pk": 3, | ||
"model": "tests.item", | ||
"fields": { | ||
"name": "3", | ||
"order": 5 | ||
} | ||
}, | ||
{ | ||
"pk": 4, | ||
"model": "tests.item", | ||
"fields": { | ||
"name": "4", | ||
"order": 6 | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.db import models | ||
from ordered_model.models import OrderedModel | ||
|
||
class Item(OrderedModel): | ||
name = models.CharField(max_length=100) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
DATABASE_ENGINE = 'sqlite3' | ||
ROOT_URLCONF = 'tests.urls' | ||
INSTALLED_APPS = [ | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.sites', | ||
'ordered_model', | ||
'ordered_model.tests', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from django.test import TestCase | ||
from ordered_model.tests.models import Item | ||
|
||
class ModelTestCase(TestCase): | ||
fixtures = ['test_items.json'] | ||
|
||
def assertNames(self, names): | ||
self.assertEqual(names, [i.name for i in Item.objects.all()]) | ||
|
||
def test_inserting_new_models(self): | ||
Item.objects.create(name='Wurble') | ||
self.assertNames(['1', '2', '3', '4', 'Wurble']) | ||
|
||
def test_move_up(self): | ||
Item.objects.get(pk=4).move_up() | ||
self.assertNames(['1', '2', '4', '3']) | ||
Item.objects.get(pk=1).move_up() | ||
self.assertNames(['1', '2', '4', '3']) | ||
|
||
def test_move_up_with_gap(self): | ||
Item.objects.get(pk=3).move_up() | ||
self.assertNames(['1', '3', '2', '4']) | ||
|
||
def test_move_down(self): | ||
Item.objects.get(pk=1).move_down() | ||
self.assertNames(['2', '1', '3', '4']) | ||
Item.objects.get(pk=4).move_down() | ||
self.assertNames(['2', '1', '3', '4']) | ||
|
||
def test_move_down_with_gap(self): | ||
Item.objects.get(pk=2).move_down() | ||
self.assertNames(['1', '3', '2', '4']) | ||
|
||
def test_delete(self): | ||
Item.objects.get(pk=2).delete() | ||
self.assertNames(['1', '3', '4']) | ||
Item.objects.get(pk=3).move_up() | ||
self.assertNames(['3', '1', '4']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from django.conf.urls.defaults import * | ||
|
||
urlpatterns = patterns('', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='django-ordered-model', | ||
version='0.1', | ||
description='Allows Django models to be ordered and provides a simple admin interface for reordering them.', | ||
author='Ben Firshman', | ||
author_email='[email protected]', | ||
url='http://github.com/bfirsh/django-ordered-model/', | ||
packages=[ | ||
'ordered_model', | ||
], | ||
classifiers=['Development Status :: 4 - Beta', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
], | ||
) |