it would be very useful to see which is more popular when tagging something doc vs docs vs documentation for example or tags vs tagging. this will help the folksonomy converge.
I don't see where tag autocomplete is. I have it in an app, "misc" but I don't see it implemented in the current master.
Ah, I suppose that it is now in:
tagging_utils/urls.py: url(r'^autocomplete/(?P<app_label>\w+)/(?P<model>\w+)/$', 'tagging_utils.views.autocomplete', name='tagging_utils_autocomplete'),
tagging_utils/views.py:def autocomplete(request, app_label, model):
I got tag autocompletion by writing my own view and and copying the bit of JS from this site. I don't see that you can just pinax-admin clone_project and get autocompletion.. Am I wrong?
I put this across a couple of commits but tagging_utils now has a templatetag and jquery.autocomplete.js in media. All of the templates/default with a TagField have autocomplete with counts (and comments for how to adapt suggestions/counts to model-only):
I think that this will break other projects that use the template if tagging_utils is not in INSTALLED_APPS and included in urls.