public
Description: The source code for the Django Plugables application index.
Homepage: http://djangoplugables.com/
Clone URL: git://github.com/revyver/django-plugables.git
Search Repo:
Throwing some svn:ignores and adding newforms-admin support to 
django-tagging.

git-svn-id: 
http://svn.revyver.com/djangopluggables.com/trunk/applications@195 
5c07df8f-9e68-4da1-b9d9-3219ff5d644b
revyver (author)
Sat Apr 05 19:41:35 -0700 2008
commit  8d95cf3650c6a37e0fc29b62d06f10f5fae506ed
tree    f17352ade56766c1324568645201af17bb553614
parent  41e39c796b6277506834bf3d0e1979427443d72d
...
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
0
@@ -1 +1,8 @@
0
+from django.contrib import admin
0
+
0
+from tagging.models import Tag, TaggedItem
0
+
0
+
0
+admin.site.register(Tag)
0
+admin.site.register(TaggedItem)
...
442
443
444
 
 
 
 
 
 
 
...
442
443
444
445
446
447
448
449
450
451
0
@@ -442,4 +442,11 @@
0
 
0
     def __unicode__(self):
0
         return u'%s [%s]' % (self.object, self.tag)
0
+
0
+##################
0
+# Initialization #
0
+##################
0
+
0
+from tagging import register
0
+del register
...
 
 
 
 
 
 
...
1
2
3
4
5
6
0
@@ -1 +1,7 @@
0
+# Administration
0
+from tagging import admin
0
+
0
+# Template Tags
0
+from django import template
0
+template.add_to_builtins('tagging.templatetags.tagging_tags')

Comments

    No one has commented yet.