Re: Having trouble synchronizing the database, can someone help?

2011-02-17 Thread ofri
What you are looking for is: python manage.py reset app_name flush only deletes the data. reset also drops the tables and re-create them. On Feb 17, 7:41 am, Chen Xu wrote: > Sorry, I dont really understand how python manage.py sqlcustom  command > works, can anyone give an example, I am trying

Re: RSS Aggregator

2010-05-13 Thread ofri
Try Django-planet: http://github.com/matagus/django-planet On May 12, 9:06 pm, beetlecube wrote: > Hello, >  Just wondering if there are alternatives to the feedjack RSS > aggregator that anyone has used. It doesn't have to be "Django-ized" > like feedjack is. > > Just any Python library that you

Re: NoReverseMatch for authentication app views

2010-05-02 Thread ofri
Did you try: reverse("login") ? when you define this url, you're using patterns('django.contrib.auth.views', url(r'^login/$', 'login', { 'template_name': 'login.html' }, name='login'), the last parameter names it 'login' On 2 מאי, 16:10, Alper KANAT wrote: > Hey There, > > I'm st

Tagging with voting on tags

2009-12-14 Thread ofri
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 c