Re: Redesign of djangoproject.com?

2012-05-02 Thread Alec Taylor
I quite like that last one (on Google Docs) Only caveat is the way sites that use Django are listed. It seems quite pedestrian... maybe add big image logos or whatnot... advertising that Bitbucket, Instagram and The Washington Post use Django is the easiest way to make people consider Django. On

Re: Model forms error messages

2012-05-02 Thread Karol Sikora
Here is my use case. Model field definition: blog_url = models.URLField(verbose_name=u'Blog', blank=True, error_messages={'invalid': u'Adres bloga nie jest prawidłowy'}) To define error messages in form I have to write: blog_url = forms.CharField(error_messages={'invalid': u'Adres bloga

Re: GitHub migration done!

2012-05-02 Thread Carl Meyer
On 05/02/2012 10:09 AM, Cal Leeming [Simplicity Media Ltd] wrote: Apologies if this question has already been answered or seems silly but - is there a reason Mercurial is needed?? Can contributors not just switch to using git? i.e. if we have deprecated SVN, then why isn't Mercurial also being d

Re: Redesign of djangoproject.com?

2012-05-02 Thread Hooshyar Naraghi
Hello all, I would like to share yet another design for the Django Project web site. First, I jump in with the design, and at the end I'll say a little about my background. First, the design. https://docs.google.com/open?id=0B9D91R1_2bXLd0dKM21tOUVRRjQ https://docs.google.com/open?id=0B9D91R1_

Re: Test suite for session backend

2012-05-02 Thread Andrei Antoukh
2012/5/2 jgc31416 > Hi all, > > I am new to Django development and I would like to know if there is a test > for the session backend, I am writting a "yetAnOtherOne" session backend > for MongoDB ( https://github.com/jgc31416/DJango14_MongoSessionStorage ) > and I would like to see if it passes t

Re: GitHub migration done!

2012-05-02 Thread Vinay Sajip
On May 1, 5:39 pm, Carl Meyer wrote: > It's just a cron job and a local repo using hgsubversion; every five > minutes it pulls the latest from Subversion and pushes it to Bitbucket. > The repo and cron job are hosted on the djangoproject.com server. If you > are able to get the conversion from g

Re: GitHub migration done!

2012-05-02 Thread Cal Leeming [Simplicity Media Ltd]
Apologies if this question has already been answered or seems silly but - is there a reason Mercurial is needed?? Can contributors not just switch to using git? i.e. if we have deprecated SVN, then why isn't Mercurial also being deprecated?? Cal On Wed, May 2, 2012 at 2:38 PM, Florian Apolloner

Re: Model forms error messages

2012-05-02 Thread Carl Meyer
Hi Karol, On 05/02/2012 08:13 AM, Karol Sikora wrote: According to my ticket: https://code.djangoproject.com/ticket/18237 and previous one eg.: https://code.djangoproject.com/ticket/13693 I would to discuss wider this case. IMHO redefining field in model form subclass to set custom error message

Model forms error messages

2012-05-02 Thread Karol Sikora
Hi, According to my ticket: https://code.djangoproject.com/ticket/18237 and previous one eg.: https://code.djangoproject.com/ticket/13693 I would to discuss wider this case. IMHO redefining field in model form subclass to set custom error messages is a hardly DRY violation. Currently we have er

Re: GitHub migration done!

2012-05-02 Thread Florian Apolloner
On Wednesday, May 2, 2012 3:37:07 PM UTC+2, Florian Apolloner wrote: > > Far from easy, last time (or actually times) I tried to use it it broke in > many horrible ways :( [And either the link isn't listing an up2date project > or it's really dead since 3 years] > Ignore the dead status, I had

Re: GitHub migration done!

2012-05-02 Thread Florian Apolloner
On Tuesday, May 1, 2012 6:40:53 PM UTC+2, dstufft wrote: > > Pretty sure this isn't going to make a compatible with the existing > mirror > mirror but http://hg-git.github.com/ should make it easy to go from git > -> hg. > Far from easy, last time (or actually times) I tried to use it it broke

Re: Test suite for session backend

2012-05-02 Thread Aymeric Augustin
2012/5/2 jgc31416 : > I am new to Django development and I would like to know if there is a test > for the session backend Hi, The tests for django.contrib.sessions are in django/contrib/sessions/tests/ Best regards, -- Aymeric. -- You received this message because you are subscribed to the

Re: ValueError: unknown locale: UTF-8

2012-05-02 Thread Timothy Makobu
Worked. Thanks. On Wed, May 2, 2012 at 3:00 PM, Adnane Belmadiaf wrote: > Hi, > > Look at this ticket https://code.djangoproject.com/ticket/5846 > > For more infos : > http://patrick.arminio.info/blog/2012/02/fix-valueerror-unknown-locale-utf8/ > > 2012/5/2 Timothy Makobu > >> Hi Devs, >> >> I g

Re: ValueError: unknown locale: UTF-8

2012-05-02 Thread Adnane Belmadiaf
Hi, Look at this ticket https://code.djangoproject.com/ticket/5846 For more infos : http://patrick.arminio.info/blog/2012/02/fix-valueerror-unknown-locale-utf8/ 2012/5/2 Timothy Makobu > Hi Devs, > > I got no reply on this issue when I posted it on django-users. I was > eventually able to go a

Test suite for session backend

2012-05-02 Thread jgc31416
Hi all, I am new to Django development and I would like to know if there is a test for the session backend, I am writting a "yetAnOtherOne" session backend for MongoDB ( https://github.com/jgc31416/DJango14_MongoSessionStorage ) and I would like to see if it passes the tests. JG -- You rece

Fwd: ValueError: unknown locale: UTF-8

2012-05-02 Thread Timothy Makobu
Hi Devs, I got no reply on this issue when I posted it on django-users. I was eventually able to go around it by installing Django 1.3 (I was getting the error on 1.4) This error occurred on both PostreSQL and MySQL databases. regards, Tim -- Forwarded message -- From: Timothy M

Re: Redesign of djangoproject.com?

2012-05-02 Thread Vladimir U.
i think, in all proposals lack of some mention about where i can find django apps. Maybe its good idea to add a block with latest/popular packages from pypi or/and djangopackages.com to the the main page or just a link (hide/show subcategory). [-]community [+]packages [+]blogs ... http

Re: Redesign of djangoproject.com?

2012-05-02 Thread Anton Strogonoff
Hi all! I think it would be fair to note that Dana's mock-up (http://cl.ly/0U2C1O20133i0U3d1s3X/o) seems to solve most of the tasks mentioned by Russell, while avoiding information overload and keeping visual hierarchy clear. - If I seek to contribute to Django, the mock-up features a clear a

Re: Redesign of djangoproject.com?

2012-05-02 Thread Atul Bhouraskar
On 2 May 2012 11:56, Buddy Lindsey, Jr. wrote: > um, not sure what happened to part of my response, but to summarize a > missing paragraph I would like the design to consider showing more of the > community as well. > > > Buddy Lindsey, Jr. wrote: > > > Russell Keith-Magee wrote: > > > > * One of