Suggestion of exception Http301 add as new feature

2010-06-28 Thread kernel1983
There is exception Http404 in the system. During django programming, we often need to do some data valid: def A(request): valid() return render_to_response(...) def B(request): valid() return render_to_response(...) ... def valid(): throw Http301(url) With Http301 exception

Make django debug page simple when develop ajax page(with firebug)

2008-12-02 Thread kernel1983
HTML debug page is good when you develop normal web page But when you debug ajax based web page with firebug, the HTML debug page is no good for you. I did some hack in django/views/debug.py I remove TECHNICAL_404_TEMPLATE TECHNICAL_500_TEMPLATE html tags and make it simple. I think we can ha

I suggest offical version upgrade a bit for the windows user

2007-10-29 Thread kernel1983
I suggest django make at least a upgrade so that we can use command like: easy_install http://www.djangoproject.com/download/0.96.1/tarball/ Many of my friend start django on windows platform but failed to install... This issue of installing on windows has a long history. --~--~-~--~

Question about djangobook

2007-06-10 Thread kernel1983
Who manipulates the djangobook now? Or it's manipulated like a wiki? Is there any version in other languages planning? By the way, if there is a planning that django's official site in other language? --~--~-~--~~~---~--~~ You received this message because you

Re: Proposal: Let session support backends

2007-06-10 Thread kernel1983
I've write some code for a simple implement of the session middleware. But there are some problem that I was too busy to solve these days. It refers to the cache module's simple impl. Now it can be only used in debug mode. And the session id is fixed(of course it's for testing) I'm so glad that

Re: Can django support easy_install

2007-06-05 Thread kernel1983
Yes,Waylan Limberg Do you mean it is the problem of PyPI but not django? On 6月5日, 上午12时06分, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On 6/4/07, kernel1983 <[EMAIL PROTECTED]> wrote: > > > Setuptools is a powerful tools for python. > > > W

Can django support easy_install

2007-06-04 Thread kernel1983
Setuptools is a powerful tools for python. When could django support it? At Version One? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develo

Proposal: Let session support backends

2007-06-01 Thread kernel1983
Now session can be only storaged in the database. I think,django should be friendly with both new users and the mature python users. Since cache can support different kinds of backend, session should also be. Many people want to build application which can be deployed easily. If they had to run