aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--._setup.pybin0 -> 187 bytes
-rw-r--r--PKG-INFO18
-rw-r--r--debian/README.source5
-rw-r--r--debian/changelog9
-rw-r--r--debian/control4
-rw-r--r--debian/watch2
-rw-r--r--setup.py4
-rw-r--r--tagging/admin.py10
-rw-r--r--tagging/forms.py4
9 files changed, 48 insertions, 8 deletions
diff --git a/._setup.py b/._setup.py
new file mode 100644
index 0000000..b052229
--- /dev/null
+++ b/._setup.py
Binary files differ
diff --git a/PKG-INFO b/PKG-INFO
new file mode 100644
index 0000000..5808eb1
--- /dev/null
+++ b/PKG-INFO
@@ -0,0 +1,18 @@
+Metadata-Version: 1.0
+Name: django-tagging
+Version: 0.3
+Summary: Generic tagging application for Django
+Home-page: http://code.google.com/p/django-tagging/
+Author: Jonathan Buchanan
+Author-email: jonathan.buchanan@gmail.com
+License: UNKNOWN
+Description: UNKNOWN
+Platform: UNKNOWN
+Classifier: Development Status :: 4 - Beta
+Classifier: Environment :: Web Environment
+Classifier: Framework :: Django
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: BSD License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Topic :: Utilities
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..a33fd37
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,5 @@
+
+This package uses quilt to handle patches. See
+/usr/share/doc/quilt/README.source for some introductory information about
+it.
+
diff --git a/debian/changelog b/debian/changelog
index 47e1b1b..731e7d5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+python-django-tagging (0.3-1) unstable; urgency=low
+
+ * New upstream release. Closes: #549612
+ * Update watch file to match new scheme.
+ * Update Standards-Version to 3.8.3, no changes needed.
+ * Add a README.source pointing to quilt's README.source.
+
+ -- Raphaël Hertzog <hertzog@debian.org> Mon, 05 Oct 2009 23:52:09 +0200
+
python-django-tagging (0.2.1+svn154-2) unstable; urgency=low
* Apply patch to fix weight of tag when using logarithmic distribution.
diff --git a/debian/control b/debian/control
index 398c902..4946f2d 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: python-django-tagging
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
-Uploaders: Raphael Hertzog <hertzog@debian.org>, David Spreen <netzwurm@debian.org>
-Standards-Version: 3.8.1
+Uploaders: Raphaël Hertzog <hertzog@debian.org>, David Spreen <netzwurm@debian.org>
+Standards-Version: 3.8.3
Build-Depends: debhelper (>= 7.0.50), python-dev, quilt (>= 0.46-7)
Build-Depends-Indep: python-support, python-docutils
Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-django-tagging/trunk/
diff --git a/debian/watch b/debian/watch
index c8929c9..7c08702 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,3 +1,3 @@
version=3
http://code.google.com/p/django-tagging/downloads/list \
-.*/files/tagging-(\d.*)\.zip
+.*/files/django-tagging-(\d.*)\.tar\.gz
diff --git a/setup.py b/setup.py
index bcfd6d5..a755df8 100644
--- a/setup.py
+++ b/setup.py
@@ -46,14 +46,14 @@ for dirpath, dirnames, filenames in os.walk(tagging_dir):
data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
# Dynamically calculate the version based on tagging.VERSION
-version_tuple = (0, 3, 'pre')
+version_tuple = (0, 3, None)
if version_tuple[2] is not None:
version = "%d.%d_%s" % version_tuple
else:
version = "%d.%d" % version_tuple[:2]
setup(
- name = 'tagging',
+ name = 'django-tagging',
version = version,
description = 'Generic tagging application for Django',
author = 'Jonathan Buchanan',
diff --git a/tagging/admin.py b/tagging/admin.py
index 4c1ef38..bec3922 100644
--- a/tagging/admin.py
+++ b/tagging/admin.py
@@ -1,5 +1,13 @@
from django.contrib import admin
from tagging.models import Tag, TaggedItem
+from tagging.forms import TagAdminForm
+
+class TagAdmin(admin.ModelAdmin):
+ form = TagAdminForm
admin.site.register(TaggedItem)
-admin.site.register(Tag)
+admin.site.register(Tag, TagAdmin)
+
+
+
+
diff --git a/tagging/forms.py b/tagging/forms.py
index a70ac6b..a2d9fd9 100644
--- a/tagging/forms.py
+++ b/tagging/forms.py
@@ -8,7 +8,7 @@ from tagging import settings
from tagging.models import Tag
from tagging.utils import parse_tag_input
-class AdminTagForm(forms.ModelForm):
+class TagAdminForm(forms.ModelForm):
class Meta:
model = Tag
@@ -16,7 +16,7 @@ class AdminTagForm(forms.ModelForm):
value = self.cleaned_data['name']
tag_names = parse_tag_input(value)
if len(tag_names) > 1:
- raise ValidationError(_('Multiple tags were given.'))
+ raise forms.ValidationError(_('Multiple tags were given.'))
elif len(tag_names[0]) > settings.MAX_TAG_LENGTH:
raise forms.ValidationError(
_('A tag may be no more than %s characters long.') %