Is djangoproject down?

2014-03-12 Thread Robert Slotboom
Hi guys, I am trying to visit djangoproject.com but the site is not responding for hours. Is it down?? Cheers Rob -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Filtering foreign items in admin

2007-02-12 Thread Robert Slotboom
Hi Rob, Perfect! Thank's Robert Slotboom Op 10-feb-07 om 17:13 heeft Rob Hudson het volgende geschreven: > "limit_choices_to --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&qu

Re: sorting the results of a queryset

2007-01-11 Thread Robert Slotboom
the sorting problem because there can only be one level for parent . Unfortunately none of these solutions can be applied for the simple category, subcategory, n-category realtions. But I've got my taxanomic tree!!! -- Robert Slotboom > Not since the sorting is done in Python instead of SQL. If

Re: sorting the results of a queryset

2007-01-09 Thread Robert Slotboom
Hi Brian, Of course the parenthesis... I'll this fix tomorrow. > sorted(Category.objects.all(), key=Category.get_absolute_url) This is a very nice approach! Although, shouldn't these "get_absolute_url" calls be followed by () ? Thank's Rob > > Rob Slotboom wrote: >> in the model class: >>

Re: admin > custom error message

2007-01-09 Thread Robert Slotboom
Hi James, > You don't need to write a manipulator; just write a validator > function, and put it in the validator_list for that field on the > model. Django will handle calling the validator for you any time one > of the "automatic" manipulators (e.g., in the admin) gets used. > Ok I got it

Re: special characters in model

2007-01-02 Thread Robert Slotboom
Hi Ramiro, In BBedit I saved the file as utf8 and the problem was solved. Thanks Rob Op 31-dec-06 om 19:27 heeft Ramiro Morales het volgende geschreven: Try encoding the models.py file using utf-8 (use iconv to re-encode it if it is encoded in ASCII or ISO 8859-x) and flag the encodig