Re: [Zope] Captcha Image For Form Verification

2007-01-25 Thread Maciej Wisniowski
> Does anyone if there is a product (specifically for zope) for creating a
> "captcha" image to verify that an actual human is submitting a form?
> 
> I am using zope 2.8.1 with python 2.3.5 on a windows server.  I am
> currently looking into this:
> 
> http://captchas.net/sample/python/
AFAIK there is such product for Plone, you may want to take a look at
this.

-- 
Maciej Wisniowski
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Captcha Image For Form Verification

2007-01-25 Thread kjzz.webmaster
Does anyone if there is a product (specifically for zope) for creating a 
"captcha" image to verify that an actual human is submitting a form?


I am using zope 2.8.1 with python 2.3.5 on a windows server.  I am currently 
looking into this:


http://captchas.net/sample/python/ 


___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
well, i mean, given the python implementations that are available,
that code on this site can be adapted and used to generate a captcha
image object.

2005/9/14, Brian Sullivan <[EMAIL PROTECTED]>:
> 
> 
> On 9/14/05, akonsu <[EMAIL PROTECTED]> wrote: 
> > as i said earlier,
> http://cvs.bluedynamics.org/viewcvs/BlueTexima/ 
> > seems to have code that dynamically creates an image object. would
> > this help?
>  
>  
> Possibly but that is only part of the puzzle - usually the image has
> distorted text on a mottled background to further complicate and confuse
> automatic readers and force a human read.
>  
> 
> ___
> Zope maillist  -  Zope@zope.org
> http://mail.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
>  http://mail.zope.org/mailman/listinfo/zope-announce
>  http://mail.zope.org/mailman/listinfo/zope-dev )
> 
> 
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread Brian Sullivan

On 9/14/05, akonsu <[EMAIL PROTECTED]> wrote:
as i said earlier, http://cvs.bluedynamics.org/viewcvs/BlueTexima/
seems to have code that dynamically creates an image object. wouldthis help?
 
 
Possibly but that is only part of the puzzle - usually the image has distorted text on a mottled background to further complicate and confuse automatic readers and force a human read. 
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
as i said earlier, http://cvs.bluedynamics.org/viewcvs/BlueTexima/
seems to have code that dynamically creates an image object. would
this help?

2005/9/14, Brian Sullivan <[EMAIL PROTECTED]>:
>  
> Has anyone created a Zope product based on either of those?
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread Brian Sullivan

On 9/14/05, akonsu <[EMAIL PROTECTED]> wrote:
I am not sure if there is a ready product for this, but is there a wayin zope to generate an image dynamically? does anyone know how? if
there is, any python implementation of captcha can be adapted to zopei think.
 
 
I found this:
http://captchas.net/
http://captchas.net/sample/python/
 
It seems they provide the service of creating the graphic.
 
and this
 
http://svn.navi.cx/misc/trunk/pycaptcha/README
 
that uses the Python Imaging Library and so is self contained.
 
Has anyone created a Zope product based on either of those?
  
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
> 
> But some people are using text-to-image products
> to render buttons and this is where you can
> use CSS instead.
> 

ok, i see.

> Btw. Text-to-image obfuscation makes it harder for
> machines to automatically fill out forms but not
> impossible.
> 

of course ;-) this is just to prevent impossible amounts of spam. it
is ok if it fails once in a while. so far i have not heard about a
reliable algorithm for accurate image recognition.
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread Tino Wildenhain
Am Mittwoch, den 14.09.2005, 13:48 -0700 schrieb akonsu:
> could you explain how one can use CSS to generate images during
> request processing? or am i missing something?

No it cant - you cannot use it to obfuscate text
like your captcha product seems to do.

But some people are using text-to-image products
to render buttons and this is where you can
use CSS instead.

Btw. Text-to-image obfuscation makes it harder for
machines to automatically fill out forms but not
impossible.



___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
could you explain how one can use CSS to generate images during
request processing? or am i missing something?

2005/9/14, Tino Wildenhain <[EMAIL PROTECTED]>:
> Am Mittwoch, den 14.09.2005, 13:37 -0700 schrieb akonsu:
> > thank you. my question was how to do it from zope. namely, how to set
> > request headers/contents, etc. from another list i found this link
> > that has some image generating code:
> > http://cvs.bluedynamics.org/viewcvs/BlueTexima/. hope this will help
> > others.
> 
> You could just have written you are looking for an image-button
> generator. And I would point you to the (sometimes) wonderful
> world of CSS as a better alternative to this :-)
> 
> 
> 
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread Tino Wildenhain
Am Mittwoch, den 14.09.2005, 13:37 -0700 schrieb akonsu:
> thank you. my question was how to do it from zope. namely, how to set
> request headers/contents, etc. from another list i found this link
> that has some image generating code:
> http://cvs.bluedynamics.org/viewcvs/BlueTexima/. hope this will help
> others.

You could just have written you are looking for an image-button
generator. And I would point you to the (sometimes) wonderful
world of CSS as a better alternative to this :-)



___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
thank you. my question was how to do it from zope. namely, how to set
request headers/contents, etc. from another list i found this link
that has some image generating code:
http://cvs.bluedynamics.org/viewcvs/BlueTexima/. hope this will help
others.

konstantin

2005/9/14, Jonathan <[EMAIL PROTECTED]>:
> From: "akonsu" <[EMAIL PROTECTED]>
> >I am not sure if there is a ready product for this, but is there a way
> > in zope to generate an image dynamically? does anyone know how? if
> > there is, any python implementation of captcha can be adapted to zope
> 
> Google 'python image library'  (PIL)
> 
> 
> Jonathan
> 
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread Jonathan

From: "akonsu" <[EMAIL PROTECTED]>

I am not sure if there is a ready product for this, but is there a way
in zope to generate an image dynamically? does anyone know how? if
there is, any python implementation of captcha can be adapted to zope


Google 'python image library'  (PIL)


Jonathan

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Captcha

2005-09-14 Thread akonsu
I am not sure if there is a ready product for this, but is there a way
in zope to generate an image dynamically? does anyone know how? if
there is, any python implementation of captcha can be adapted to zope
i think.

konstanitn

2005/9/13, Brian Sullivan <[EMAIL PROTECTED]>:
> Is anybody aware of a ready to go Zope product for using creating/using
> Captcha? 
> ___
> Zope maillist  -  Zope@zope.org
> http://mail.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
>  http://mail.zope.org/mailman/listinfo/zope-announce
>  http://mail.zope.org/mailman/listinfo/zope-dev )
> 
> 
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Captcha

2005-09-13 Thread Brian Sullivan
Is anybody aware of a ready to go Zope product for using creating/using Captcha?
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )