django app crash on os x

2008-03-28 Thread kernel1983
svn version django on OS X 10.4 Tiger (Chinese) When I use date filter the django app crashed(OK on windows and linux) Original Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.5/lib/ python2.5/site-packages/django/template/debug.py", line 71, in render

Re: Win XP Installation

2007-11-26 Thread kernel1983
http://www.djangocn.com/setup.zip pls using this setup.py file. because the setup.py file did not consider the platform Windows. Or using SVN version. On 11月24日, 上午10时04分, dineshv <[EMAIL PROTECTED]> wrote: > Okay, found the problem. It should say: C: > \Python25\Django-0.96.1>python setup.py

Re: guid's in python

2007-09-25 Thread kernel1983
base32 base64? On Sep 26, 4:10 am, Alex Koshelev <[EMAIL PROTECTED]> wrote: > http://www.djangosnippets.org/snippets/335/ > > On 25 сент, 00:52, Leo Shklovskii <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > I'm trying to represent an Active Directory's user guid in Django. In > > AD, its a 128 bi

Did someone write an anti-spam module in django?

2007-06-14 Thread kernel1983
My weblog has got lots of spam. I'll try to deal with them. Any one has done this job? Would you mind share your code? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, s

The setup.py problem on windows in django 0.96

2007-05-19 Thread kernel1983
There is a problem while installing django 0.96 on windows It's in the setup.py,line 24 package = dirpath[len_root_dir:].lstrip('/').replace('/', '.') I think it should also consider the '\\' package = dirpath[len_root_dir:].lstrip('/').replace('/', '.').lstrip('\\').replace('\\', '.') --~--