use / as list delimiter

This commit is contained in:
j 2011-01-16 00:57:44 +00:00
parent c55a906bc9
commit d39d66c112
3 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ def parseCondition(condition):
return q
elif key_type == 'list':
q = Q(itemId=False)
l = v.split(".")
l = v.split("/")
if len(l) == 2:
lqs = list(List.objects.filter(name=l[1], user__username=l[0]))
if len(lqs) == 1:

View File

@ -64,7 +64,7 @@ class List(models.Model):
return self.get_id()
def get_id(self):
return u'%s.%s' % (self.user.username, self.name)
return u'%s/%s' % (self.user.username, self.name)
def editable(self, user):
#FIXME: make permissions work

View File

@ -13,7 +13,7 @@ from item import utils
from item.models import Item
def get_list_or_404_json(id):
username, listname = id.split('.')
username, listname = id.split('/')
return get_object_or_404_json(models.List, user__username=username, name=listname)
def _order_query(qs, sort):