Re: captcha problem

2006-10-31 Thread Dirk Eschler
Am Dienstag, 31. Oktober 2006 15:20 schrieb Dirk Eschler: > In this case i would expect a TemplateSyntaxError. Since you don't get one, > i suppose it is loaded. > > I tried to reproduce your error: i get empty captcha_* values when my > captcha/urls.py is wrong. Judging from the code you have

Re: captcha problem

2006-10-31 Thread Grigory Fateyev
Hello Dirk Eschler! On Tue, 31 Oct 2006 15:32:03 +0100 you wrote: > > urlpatterns = patterns('anastas.apps.captcha.views', > > (r'^i/$', 'image'), > > (r'^json/$', 'json'), > > ) This is like mine. > Uh wait, only the image is broken in this case. > > Another thing to check, does

Re: captcha problem

2006-10-31 Thread Dirk Eschler
Am Dienstag, 31. Oktober 2006 14:24 schrieb Grigory Fateyev: > Hello Aidas Bendoraitis! > > On Tue, 31 Oct 2006 12:11:00 +0100 you wrote: > > Maybe your captcha template tag is not loaded? Did you put it in the > > right place? > > Thanks for replay! > > I am sure templsate is in the right place:

Re: captcha problem

2006-10-31 Thread Grigory Fateyev
Hello Aidas Bendoraitis! On Tue, 31 Oct 2006 12:11:00 +0100 you wrote: > Maybe your captcha template tag is not loaded? Did you put it in the > right place? Thanks for replay! I am sure templsate is in the right place: anastas/ apps/ captcha/ templatetags/

Re: captcha problem

2006-10-31 Thread Aidas Bendoraitis
Maybe your captcha template tag is not loaded? Did you put it in the right place? Regards, Aidas Bendoraitis aka Archatas On 10/31/06, Grigory Fateyev <[EMAIL PROTECTED]> wrote: > > Hello Grigory Fateyev! > On Mon, 30 Oct 2006 21:30:01 +0300 you wrote: > > > Why it can be, and how to fix it? >

Re: captcha problem

2006-10-31 Thread Grigory Fateyev
Hello Grigory Fateyev! On Mon, 30 Oct 2006 21:30:01 +0300 you wrote: > Why it can be, and how to fix it? Please, any suggestions? -- Всего наилучшего! Григорий greg [at] anastasia [dot] ru Письмо отправлено: 2006/10/31 13:06 --~--~-~--~~~---~--~~ You received

captcha problem

2006-10-30 Thread Grigory Fateyev
Hello! I want to use captcha protection for any app, and I do: ### urls.py (r'^captcha/', include('anastas.apps.captcha.urls')), ### anastas.apps.articles.urls.py (r'^create/$', 'anastas.apps.captcha.views.verify', dict(forward_to='anastas.apps.a rticles.views.create_article')), ###