at 3:31 AM Ashutosh Kumar wrote:
> Hi Guys,
>
> I need help in adding user tagging feature in comment textarea, like how
> to get the users list pops out on the keypress "@".
>
> --
> You received this message because you are subscribed to the Google Groups
> &quo
Hi Guys,
I need help in adding user tagging feature in comment textarea, like how to
get the users list pops out on the keypress "@".
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop r
r for
Ella CMS
django-taggit (0.24.0) - django-taggit is a reusable
Django application for
lot
of refactoring.
https://docs.djangoproject.com/en/2.1/topics/auth/customizing/#extending-the-existing-user-model
On Thursday, February 14, 2019 at 7:54:43 AM UTC+8, Charles Thayer wrote:
>
> I'm aware of django-taggit (and similar) but I'm wondering if there's a
> p
I'm aware of django-taggit (and similar) but I'm wondering if there's a
package for tagging Users with properties that have values of different
types, such as strings, ints, datetimes, etc. For example, one might tag a
user with "power-user", add a property for "
Did you add 'tagging' to your installed apps?
Sent from my Windows Phone
--
From: Lu Sheng
Sent: 6/9/2013 9:43 PM
To: django-users@googlegroups.com
Subject: Django Tagging: no module named tagging, locally win7
My boss want me to handle a Django web-site.
My boss want me to handle a Django web-site.
I install Django django-tagging Mysql-python via pip command.
I can get:
Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)]
on win
32
Type "help", "copyright", "credits" or "license"
I just take other one coded django web-site.
I install Django, Mysql-python and django-tagging via pip.
But still when I try to run the django web-site on my win7 laptop, I get
error:
F:\sydney\main>python manage.py syncdb
ImportError: No module named tagging
F:\sydney\main>python man
Total brain block.
code: https://gist.github.com/2c70c0992ba14ded1593
The desired result is something like this
/favs/ will show all favorites (no tag cloud)
/favs/Source1
Will display tag cloud associated with only Source1
/favs/Source2
will display tag cloud associated with only Source2
Hi,
I wanna add tagging in my web.
So far, i found django-tagging[1] and django-taggit[2].
From quick look, and by reading this blog post[3], i think i will choose
django-taggit.
Before using django-taggit, is there any other alternatives?
Thanks
[1]http://code.google.com/p/django-tagging/
[2
On Fri, Mar 30, 2012 at 3:02 PM, Willy wrote:
> Django-taggit works quite well, I would suggest trying it over
> django-tagging
can you elaborate on why do you find it better? i have only tried
django-tagging some time ago, and maybe on a soon project would like
to do better
--
Django-taggit works quite well, I would suggest trying it over
django-tagging. Even if it hasn't been updated in a while it's still a good
solution, and you could always make changes to it and fork your own version
if it doesn't meet all your needs.
On Friday, March 30, 2012 1
Hello,
I searched for tagging libraries for Django and found two (django-
tagging and django-taggit) but both are fairly old and haven't been
maintained. I'd like to implement some sort of tagging on my site - a
bookmarking type service where each link has a set of tags. I know of
h
Hi, I have a question about ``django-taggit`` and the admin site.
I have written a custom intermediate model [1] for storing additional
tagging metadata, i.e. the user doing the tagging and when the tagging
happen:
class TaggedItem(GenericTaggedItemBase, TaggedItemBase):
tagger
On 10 October 2011 15:00, Jim wrote:
> Is there an application that would characterize the data by hierarchy?
>
> That is, I want a taxonomy for my data to go something like this.
> books
> books > fiction
> books > fiction > murder mysteries
> and my data can be associated with one or more su
'm using django-tagging but I also want the tree structure. I looked
at django-taxonomy but the author says it is far from ready for
production and it has not been updated in some time. I have also seen
advice to make up a tree of templates books.html, fiction.html, etc.
That solution might
m using django-tagging but I also want the tree structure. I looked
at django-taxonomy but the author says it is far from ready for
production and it has not been updated in some time. I have also seen
advice to make up a tree of templates books.html, fiction.html, etc.
That solution might be OK for
Hi,
I am trying to evaluate django-tagging or taggit for a potential project and
was wondering if
anyone has done a study on the performance of the respective libs - i mean,
performance
in terms of scaling. Also, mptt for that matter. Was wondering whether
performance of the
app would be impacted
When i was trying to install the django-tagging in my app the
following error appeared.. I tried setting the PYTHONPATH but it was
still not working. Can any one help
python2.5 setup.py install
b...@bios-hackzone:~/djcode/mysite/django-tagging$ python2.5 setup.py
install
Traceback (most recent
Hello,
I have a model that looks like this:
class Item(models.Model):
...other fields...
tags = TagField()
I have not defined any additional methods for tagging on the model.
In admin.py:
class ItemAdmin(admin.ModelAdmin):
list_filter = ('featured', 'available'
On Nov 15, 8:55 pm, Thomas Schreiber wrote:
> check the grids on django packages:http://djangopackages.com/grids/g/tagging/
django-taggit seems to be the new hotness. Unfortunately we've been
waiting for months for a conversion script to help us migrate from
django-tagging to django-tagg
check the grids on django packages:
http://djangopackages.com/grids/g/tagging/
On Mon, Nov 15, 2010 at 22:22, gyanguru wrote:
> Hi all,
>
> I am looking for django tag project. I have discovered 2 "django
> tagging" and "django tagit".
> Does any one has a b
Hi all,
I am looking for django tag project. I have discovered 2 "django
tagging" and "django tagit".
Does any one has a benchmark regarding this?
or
Any advice on which tagging app should I use.
My use case requires less amount of unique tags compared to number of
items t
Hi all!
I'm using the django-tagging app (0.3).
What is the best practice to customize the "taggeditems" admin page?
(add search_fields, list_filter...). The only way is to modify the
file \tagging\admin.py??? (I don't like this way)
Thanks.
--
You received this mes
Hi,
the way I understand the tagging module is:
you can have 2 tag fields for the model book, but they would
lead into the same cloud - and I need 2 seperated clouds for
one model.
So far I think the only solution for this is to have a 2. model
with a 1:1 relation to the model book
Someone a
s someone managed to get more than one tag field for a model? e.g. for
> internal and external tagging of an entry...
>
>
I don't know about transdb, but I am using django tagging
http://code.google.com/p/django-tagging/ and ran into the same problem.
On a book model, I wanted a &quo
Hi Béres,
no, that will not work for me. I need the possibility to have diffenrent (e.g.
empty)
tags for every language...
regards
Henrik
>reply to message:
>date: 07.09.2010 09:04:38
>from: "Beres Botond"
>to: "Django users"
>subject: Re: django-taggi
gs in multi languages for one entry?
>
> Has someone managed to get more than one tag field for a model? e.g. for
> internal and external tagging of an entry...
>
> regards
> Hinnack
>
> (1)http://code.google.com/p/transdb/
>
> Henrik Genssen
>
> h...@miadi.net
&
external tagging of an entry...
regards
Hinnack
(1) http://code.google.com/p/transdb/
Henrik Genssen
h...@miadi.net
Tel. 0451/6195650
Fax. 0451/6195655
miadi GmbH
Geschäftsführer: Henrik Genssen
Sitz der Gesellschaft: Beckergrube 2, 23552 Lübeck
Amtsgericht Lübeck HRB 10223, USt-IdNr DE
Lieferungen
I am using django-tagging with trunk and am not experiencing any real
problems. Admittedly, I'm not under massive load, but it's working
fine...
cheers
L.
On Fri, Aug 6, 2010 at 08:18, adelein wrote:
> Has anyone used django-tagging lately with Django 1.1 and above? I am
> st
Hi,
Thanks, I will continue with it then.
On Aug 5, 4:40 pm, creecode wrote:
> Hello Adelein,
>
> I used a version of django-tagging with Django v1.1 without any
> noticeable problems. Which revision it was I can't say off the top of
> my head. A look at the django-tagging
Hello Adelein,
I used a version of django-tagging with Django v1.1 without any
noticeable problems. Which revision it was I can't say off the top of
my head. A look at the django-tagging website may provide the
answers.
Toodle-looo...
creecode
On Aug 5, 3:18 pm, adelein
Has anyone used django-tagging lately with Django 1.1 and above? I am
starting to use it but saw some comments in stackoverflow about
incompatibilities. Dont want to go down a dead end.
Appreciate your tips!
Thanks,
Adelein
--
You received this message because you are subscribed to the
Yes, great ;) that worked. I put it in my root Apps folder...
seems very strange that it doesnt work in site-packages.
Anyway this will do fine :)
On Jun 29, 12:19 pm, Venkatraman S wrote:
> On Tue, Jun 29, 2010 at 4:35 PM, justin jools wrote:
> > I've installed Django Taggin
On Tue, Jun 29, 2010 at 5:08 PM, justin jools wrote:
> I tried installing by python setup.py install: SVN checkout, 0.3.1
> zip and also tried installing binary 0.3 exe.
> They all installed fine everytime, I also just tried moving 'tagging'
> to python/Lib/site-pack
I tried installing by python setup.py install: SVN checkout, 0.3.1
zip and also tried installing binary 0.3 exe.
They all installed fine everytime, I also just tried moving 'tagging'
to python/Lib/site-packages
It seems that Python isnt finding it.
On Jun 29, 12:19 pm, Venkatrama
On Tue, Jun 29, 2010 at 4:35 PM, justin jools wrote:
> I've installed Django Tagging SVN checkout, 0.3.1 zip, 0.3 exe and
> 0.2.1 versions
> and I keep getting 'no module named tagging' when I try to run python
> manage.py syncdb.
>
> I've checked my
I've installed Django Tagging SVN checkout, 0.3.1 zip, 0.3 exe and
0.2.1 versions
and I keep getting 'no module named tagging' when I try to run python
manage.py syncdb.
I've checked my Python path and added extra links:
C:\Python26\Lib\site-packages\tagging;
C:\Python26\
On Wed, Jun 23, 2010 at 11:52 AM, Jonathan Hayward <
christos.jonathan.hayw...@gmail.com> wrote:
> what is an appropriate way to guarantee that Entity is only registered
> once?
>
Yes, it happens because models.py may be imported more than once. You
should put admin registrations in an admin.py
I have, in my code:
import tagging
class Entity(models.Model):
...
tagging.register(Entity)
I'm getting an error. So far as I can tell, this is the only time
tagging.register() is called, although I do call
admin.site.register(Entity). Any ideas how I might be making a redundant
re
models.ManyToManyField('Tag',
> related_name='tours',)
>
>
> I want refactor data base to use django-tagging.
>
> class Tour(models.Model):
> name = models.CharField(max_length=50)
&
7;Tag',
related_name='tours',)
I want refactor data base to use django-tagging.
class Tour(models.Model):
name = models.CharField(max_length=50)
tags = models.ManyToManyField('Tag',
related_name
uot;TaggedItem" might break all the TagManager functionality. And there
still remains the issue of whether I'd need to fork/extend the
models.db in tagging.
I made a comment on django-tagging issues list here:
http://code.google.com/p/django-tagging/issues/detail?id=221&q=victorhooi
^
> HINT: There is an entry for table "articles_article", but it cannot
> be referenced from this part of the query.
>
> I tried using both release and recent svn versions of django, tagging
> and multilingual libs.
>
> I'm using postgresql-8.4 on Ubuntu.
--
^
HINT: There is an entry for table "articles_article", but it cannot
be referenced from this part of the query.
I tried using both release and recent svn versions of django, tagging
and multilingual libs.
I'm using postgresql-8.4 on Ubuntu.
--
You received this mess
I know django-tagging has the Tag model and the TaggedItem model. I wonder
if it would be possible to create the Many to Many relationship between your
Articles and this TaggedItem model, through a Ratings intermediary table. I
have no idea if that would work (and keep all the django-tagging
Paolo,
Thanks for the quick reply =).
I did think of that, just using a M2M, however, that means I lose all
of the inherent features of django-tagging. For our case, that would
probably be things like helpers to do auto-complete for tags,
automatically parsing form inputs with commas into tags
's either a rating (out of 10), or possibly
> no rating (i.e. Null).
>
> I was thinking of using django-tagging to add tags to each article,
> but I'm not sure how on the best way to extend it to add in the
> ratings. Should I somehow add a field to the tag model? I have a
no rating (i.e. Null).
I was thinking of using django-tagging to add tags to each article,
but I'm not sure how on the best way to extend it to add in the
ratings. Should I somehow add a field to the tag model? I have a
feeling that's a very broken/improper way of doing things. Or
oding while half asleap is
usually bad news.
-Chris
On Jan 10, 11:43 am, Daniel Roseman wrote:
> On Jan 10, 3:28 pm, flynnguy wrote:
>
>
>
> > So I'm trying to implement tagging on my website and I found the
> > django-tagging project and threw it in my app and it works gr
On Jan 10, 3:28 pm, flynnguy wrote:
> So I'm trying to implement tagging on my website and I found the
> django-tagging project and threw it in my app and it works great... on
> my laptop. Go to put things up on the server (dreamhost using their
> new passenger method) and st
So I'm trying to implement tagging on my website and I found the
django-tagging project and threw it in my app and it works great... on
my laptop. Go to put things up on the server (dreamhost using their
new passenger method) and started to run into some issues. I did easy
install using --p
Hello,
I'm using the `django-tagging`v0.3.0( http://code.google.com/p/django-tagging/
) app for tagging my blog posts (obviously).
Now I wanted to create a view, which takes a tag and returns all
related posts, posts which have the same tag.
My code:
from tagging.views i
On Dec 26, 11:11 am, Rob Hudson wrote:
> > Django-tagging have a lot of users though. Maybe the pinax-people will
> > arrange for a version that is 1.2-safe.
>
> Check out django-taggit:http://github.com/alex/django-taggit
Unfortunately django-taggit isn't multi-db safe
> Django-tagging have a lot of users though. Maybe the pinax-people will
> arrange for a version that is 1.2-safe.
Check out django-taggit: http://github.com/alex/django-taggit
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
what needs to change in
order to upgrade to what will become the next stable version :) I'm
not running 1.2 on production code, no.
> third-party applications don't tend to offer guarantees of working with
> unreleased development code.
Django-tagging have a lot of users though. Ma
2009/12/26 Russell Keith-Magee :
> On Sat, Dec 26, 2009 at 3:06 AM, Hanne Moa wrote:
>> A site using django-tagging will break hard on 1.2 as of today. See
>> issue http://code.google.com/p/django-tagging/issues/detail?id=233 .
>>
>> How is one to use as_sql() now w
On Fri, Dec 25, 2009 at 1:06 PM, Hanne Moa wrote:
> A site using django-tagging will break hard on 1.2 as of today. See
> issue http://code.google.com/p/django-tagging/issues/detail?id=233 .
>
> How is one to use as_sql() now with multi-db in?
One doesn't. And, generally, one s
On Sat, Dec 26, 2009 at 3:06 AM, Hanne Moa wrote:
> A site using django-tagging will break hard on 1.2 as of today. See
> issue http://code.google.com/p/django-tagging/issues/detail?id=233 .
>
> How is one to use as_sql() now with multi-db in?
as_sql() is (and has always been)
A site using django-tagging will break hard on 1.2 as of today. See
issue http://code.google.com/p/django-tagging/issues/detail?id=233 .
How is one to use as_sql() now with multi-db in?
HM
--
You received this message because you are subscribed to the Google Groups
"Django users"
Hi all,
I want to add the ability to tag objects, and then to vote on the
tags. So for example, users of certain groups will be able to add new
tags, while other users will only be able to vote up (if they agree
this tagging is correct) or down (if they disagree).
Anyone knows a pluggable app I
Firstly, we have simple template.
---
{% load pagination_tags %}
{% block first_column %}
{% autopaginate object_list %}
{% paginate %}
{% endblock %}
---
Suppose, we have "second_column", so how do I get the current page
number, number of all pages paginated, or even next/previous
Hello,
I can't figure out how to retrieve tags for specific models i.e., I
would like to show tags for entries if I'm on a blog/entry page, tags
for links if I'm on a blog/links page, etc. If I use {{ entry.tags }}
in the templates I get duplicate tags and if an entry has more than
one tag those t
xx.xxx.xxx] ImportError: No module named tagging
when I import the tagging module from python it imports with no
errors. My vhost for the domain in question is as follows:
/etc/apache2/sites-available/mysite.com:
ServerName mysite.com
ServerAdmin supp...@mysite.com
ServerAlias *
Hello,
I'm trying to deploy my simple app and I've mirrored the project as it
was on my local dev machine. For some reason, when I try to browse to
the url I get a 500 error and the error log says ImportError: No
module named tagging. I've added PYTHONPATH env vars as follows:
ex
So, I'm trying to extend the Tag-model in tagging.models the following
way:
from django.db import models
from tagging.models import Tag
class TagContext(models.Model):
context = models.ForeignKey( Tag, unique=True,
related_name='context' )
parent = models.ForeignKey( Tag, related_
Thanks Karen.
On Nov 14, 8:28 pm, Karen Tracey wrote:
> On Fri, Nov 13, 2009 at 11:42 PM, neridaj wrote:
> > I'm using django-tagging and I think it's causing an error when I try
> > to access the admin page. If I comment out the urls that reference
> > django-ta
On Fri, Nov 13, 2009 at 11:42 PM, neridaj wrote:
> I'm using django-tagging and I think it's causing an error when I try
> to access the admin page. If I comment out the urls that reference
> django-tagging views the error goes away.
>
> from django.conf.urls.defaults im
v 14, 4:42 am, neridaj wrote:
>
>
>
> > I'm using django-tagging and I think it's causing an error when I try
> > to access the admin page. If I comment out the urls that reference
> > django-tagging views the error goes away.
>
> > from django.conf.url
On Nov 14, 4:42 am, neridaj wrote:
> I'm using django-tagging and I think it's causing an error when I try
> to access the admin page. If I comment out the urls that reference
> django-tagging views the error goes away.
>
> from django.conf.urls.defaults import *
> f
I'm using django-tagging and I think it's causing an error when I try
to access the admin page. If I comment out the urls that reference
django-tagging views the error goes away.
from django.conf.urls.defaults import *
from blog.models import Entry, Link
from tagging.models
Thanks for sharing!
On Nov 3, 8:35 pm, Ludwik Trammer wrote:
> Hi,
>
> I'm creating my first django powered website for a client. He
> requested tags autocomplition in Django Admin. I created a small
> reusable app that plugs into django-tagging and provides a form widget
Hi,
I'm creating my first django powered website for a client. He
requested tags autocomplition in Django Admin. I created a small
reusable app that plugs into django-tagging and provides a form widget
that does exactly that (using jquery-autocomplete).
U can download it and read more at:
I have a Django app that use a django-tagging. I need to port this
application to GAE. So, the main problem is to migrate tagging part.
It has a complicated model, that should be rewritten to work with
Google store. I think tagging is very popular django app and someone
has the same problem
2009/10/15 Gregor Müllegger :
> Hi django-users,
>
> in the last week i took a quick look over the django-tagging issue tracker and
> found the interesting issue #14 "Support for machine tags". This seems to be
> the oldest unclosed issue for django-tagging. This t
f/models/querysets/#ref-models...
>
> -djibon-
>
> On 10/14/09, grimmus wrote:
>
>
>
>
>
> > Hi,
>
> > I followed the excellent Web Monkey tutorial on setting up a blog
> > using Django. It makes use of Django Tagging. If a tag is entered like
> >
owed the excellent Web Monkey tutorial on setting up a blog
> using Django. It makes use of Django Tagging. If a tag is entered like
> 'Tag' it is not found if you search for 'tag' . I would like it so the
> case of the tag doesnt matter because when i apply slugify in my
Hi,
I followed the excellent Web Monkey tutorial on setting up a blog
using Django. It makes use of Django Tagging. If a tag is entered like
'Tag' it is not found if you search for 'tag' . I would like it so the
case of the tag doesnt matter because when i apply slugify in
yes problem is django version missmatch.
django 1.0 final and its not compatible with tagging 2.*
for it you must use tagging 0.3
On Jul 26, 1:23 pm, todd12 wrote:
> Hi T,
>
> I found this in the tagging issues from 2008 but it worked:
>
> if your like me then you get this mess
ot; in save
407. fail_message, commit,
exclude=self._meta.exclude)
File "/home/chris/lib/python2.6/django/forms/models.py" in
save_instance
62. f.save_form_data(instance, cleaned_data[f.name])
File "/home/chris/lib/python2.6/django/db/mode
Hi,
I have installed the django tagging either by the using the setup.py
or
copying the "tagging" directory.
But when I import tagging in the python shell it raised:
IDLE 2.6.2 No Subprocess
>>> import tagging
Traceback (most recent call last):
File "&
Hi,
I'm using django-tagging as part of a pinax based project and I'm
looking to see if an idea I've had has already been codifed by someone
before I go off and write it.
In my app Users can tag application objects and query for those
objects via the tags; so far just basic ta
Hi T,
I found this in the tagging issues from 2008 but it worked:
if your like me then you get this message from within the python
interpreter. Well I
figured out that I need to be running the"python manage.py shell"
command from within
the site DIR to get all the environment variabl
Hello all,
I'm working through the Practical Django Projects 2nd edition, and I'm
using Django 1.0.2.
I installed the tagging application tarball in my site-packages and
when I ran the syncdb command the tagging application referenced a
deprecated django object parse_loo
On Wed, Jul 15, 2009 at 9:31 AM, joep wrote:
>
> I'm new to both python and django, so please excuse my ignorance if
> this is obvious. I have a tagged model which I would like to form a
> tag cloud. I am using the following
>
>t = Tag.objects.cloud_for_model(Post,
>filters=dict(
I'm new to both python and django, so please excuse my ignorance if
this is obvious. I have a tagged model which I would like to form a
tag cloud. I am using the following
t = Tag.objects.cloud_for_model(Post,
filters=dict(
blog__slug=blog_slug,
pub
On Sunday 12 July 2009 04:05:26 pm djangonoob wrote:
> Hi all,
> i'm using django 1.02 and python version 2.6.2. I'm on a ubuntu
> machine version 9.04. Django's running fine, but
> i have problems installing django-tagging.
>
> After running the command python
Hi all,
i'm using django 1.02 and python version 2.6.2. I'm on a ubuntu
machine version 9.04. Django's running fine, but
i have problems installing django-tagging.
After running the command python setup.py install, i received the
following
error:
error: /usr/local/lib/python2.
Thank you,
Still wouldn't I be better off putting tagging someplace associated
with Django, rather than in a Python Library so when I go to deploy
I'm not looking for stuff all over..?? Maybe just a small item,,but
housekeeping can get confusing as projects grow?
On Jun 28, 3:48 am
> It still surprises me that the tagging module does not live with the
> rest of Django as opposed to within Python.
Nothing unusual. Your django app lives in PYTHONPATH and other modules/
apps may live in libs directory as it is also in PYTHONPATH. You could
create any directory you like
Thanks I had seen the note but had not yet gone down that path,,, I'll
report back.
It still surprises me that the tagging module does not live with the
rest of Django as opposed to within Python.
Thanks for the quick reply!
On Jun 27, 5:14 pm, Karen Tracey wrote:
> On Sat, Jun 27, 2
On Sat, Jun 27, 2009 at 5:46 PM, dartdog wrote:
>
> Old topic but don't really get the solution...
> I'm using SVN 1.1 Django
> and Python 2.6 On win Vista
> I downloaded tagging and it now sits in my Site-Packages directory for
> Python I used Tagging 0.2.1 win 32ex
Old topic but don't really get the solution...
I'm using SVN 1.1 Django
and Python 2.6 On win Vista
I downloaded tagging and it now sits in my Site-Packages directory for
Python I used Tagging 0.2.1 win 32exe from Google code
It seems very strange to me that this Django package chooses
I (e.g., the author is willing to call it "1.0"), and to
> support and updates are absolute requirements.
I completely agree, and it was a poor choice of example. After all,
I started "using" Django three days ago, have never used
django-tagging, but it /seemed/ a good examp
On Mon, May 25, 2009 at 12:43 PM, martin f krafft wrote:
> Look what I found! Check out the fifth point, labeled #1, top-most
> annoyance with Python, in
And?
While I like it as much as the next guy, django-tagging, to take your
example, is currently sitting at version 0.2.1, relea
also sprach Dougal Matthews [2009.05.23.1823 +0200]:
> Fair enough. I don't really have an issue with the idea, could be
> quite handy.
>
> I can just imagine them saying no :) so thought I would question
> it as a move/idea.
Look what I found! Check out the fifth point, labeled #1, top-most
ann
/2009, martin f krafft wrote:
> also sprach Dougal Matthews [2009.05.23.1103 +0200]:
>> I don't think tagging is a particularly hard or non-trivial.
>
> No. All the more reason to push for a standard and prevent dozens
> of different implementations, no?
>
>> Anyway,
also sprach Dougal Matthews [2009.05.23.1103 +0200]:
> I don't think tagging is a particularly hard or non-trivial.
No. All the more reason to push for a standard and prevent dozens
of different implementations, no?
> Anyway, this conversation is a bit irrelevant because; Core
> d
I've never actually used it in any work related projects. I've only used it
in personal messing around type projects...
> Good contrib packages tackle issues that that are not trivial, are bikeshed
> prone, and are difficult to get right for the common case.
I don'
also sprach Kai Kuehne [2009.05.23.1048 +0200]:
> > Pretty must everybody does seem to use django-tagging unless
> > they have some special weird use-case.
>
> Huh? Can you remove that "everybody", please? I've never used
> tagging and I'm confident
1 - 100 of 284 matches
Mail list logo