Re: What is Django?

2011-08-23 Thread Cal Leeming [Simplicity Media Ltd]
On Tue, Aug 23, 2011 at 4:54 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > Hi Julian, > > If your intention here was to suggest something that you think > Django's website should cover, then this *is* the right forum. > However, my reponse would be to ask what is wrong with the overv

Re: What is Django?

2011-08-23 Thread Russell Keith-Magee
Hi Julian, If your intention here was to suggest something that you think Django's website should cover, then this *is* the right forum. However, my reponse would be to ask what is wrong with the overview that is already there? The front page of Django's website gives a 1 paragraph summary, with a

Re: Advice on #13260 - '%' in args to urlresolvers.reverse()

2011-08-23 Thread Aaron Sokoloski
On Tue, Aug 23, 2011 at 4:31 PM, Jonathan Slenders < jonathan.slend...@gmail.com> wrote: > Do you mean that when a URL is resolved, the view still gets quoted > args/kwargs at the moment? > If so, it feels to me we should change that. It does not really make > much sense to retain the escape chara

Re: Advice on #13260 - '%' in args to urlresolvers.reverse()

2011-08-23 Thread Jonathan Slenders
On 22 août, 10:02, Aaron Sokoloski wrote: > Hmm, that's a tricky issue.  If it is set in stone that url parameters are > not unquoted automatically before they hit the view function, that implies > that reverse should not quote automatically. Do you mean that when a URL is resolved, the view sti

Re: CachedStaticFilesStorage and Media definition in ModelAdmin and Form.

2011-08-23 Thread Jannis Leidel
On 23.08.2011, at 16:45, stan wrote: > I started using the new `CachedStaticFilesStorage', great job. > > Anyway, media defined in ModelAdmin must be wrapped with a call to the > `static()' function to be processed and get the md5 hash suffix : > > from django.contrib.admin.templatetags.admin_st

CachedStaticFilesStorage and Media definition in ModelAdmin and Form.

2011-08-23 Thread stan
Hi, I started using the new `CachedStaticFilesStorage', great job. Anyway, media defined in ModelAdmin must be wrapped with a call to the `static()' function to be processed and get the md5 hash suffix : from django.contrib.admin.templatetags.admin_static import static class MyModelAdmin(admin.S

Re: What is Django?

2011-08-23 Thread Karen Tracey
Please ask general questions about Django on django-users. The topic of this list is the development of Django itself. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroup

Re: No forms in Admin interface

2011-08-23 Thread Karen Tracey
Please ask questions about using Django on django-users. The topic of this list is the development of Django itself. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.

What is Django?

2011-08-23 Thread Julian
Is there any document available that describes WHAT Django is? I am not looking for an installation guide, neither for tutorial, nor for "Django is a high-level Python Web framework". But: What does this framework include? What is it used for? How does it increase productivity? Why shouldn't I use

No forms in Admin interface

2011-08-23 Thread Rohini Dhavale
I have downloaded pre developed project in django called sms and trying to deploy it on my pc. but i can't get the data in that. When in admin it just shows the list of apps and models but when clicked on any one of them it does not open that model to add. Please give solution. -- You received th

Re: Advice on #13260 - '%' in args to urlresolvers.reverse()

2011-08-23 Thread Thomas Guettler
Am 22.08.2011 07:14, schrieb Ben Sturmfels: > Hi Folks, > > Could I get a tie-breaking opinion on whether this "quoting of > parameters to reverse()" ticket #13260 is expected behaviour or not? > > http://www.mail-archive.com/django-developers@googlegroups.com/msg25678.html > > > The original