Changeset 2215 in products


Ignore:
Timestamp:
Apr 27, 2010 12:57:38 PM (14 years ago)
Author:
mylan
Message:

Merged all changes from branches/captchas-refactoring into trunk.

Merged revisions 3005,3095,3110-3117 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/branches/captchas-refactoring

........

r3005 | liebster | 2010-03-22 16:19:33 +0200 (Mon, 22 Mar 2010) | 1 line


Add depending quintagroup.captcha.core

........

r3095 | mylan | 2010-04-01 17:31:59 +0300 (Thu, 01 Apr 2010) | 1 line


#173: Fix wrong import, update package description, update dependencies list in quintagroup.z3cform.captcha package

........

r3110 | mylan | 2010-04-07 16:56:33 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add default captcha widget factory adapter registration

........

r3111 | mylan | 2010-04-07 16:59:19 +0300 (Wed, 07 Apr 2010) | 1 line


#185: force package autoregistration with z3c.autoinclude

........

r3112 | mylan | 2010-04-07 17:00:00 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add default imports into package init module

........

r3113 | mylan | 2010-04-07 17:03:13 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests infrastructure

........

r3114 | mylan | 2010-04-07 17:04:51 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add registration tests

........

r3115 | mylan | 2010-04-07 18:07:15 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests for captcha widget

........

r3116 | mylan | 2010-04-07 18:38:19 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests for captcha validator

........

r3117 | mylan | 2010-04-08 16:23:01 +0300 (Thu, 08 Apr 2010) | 1 line


#185: Fixed tests for plone>=3.3

........

Location:
quintagroup.z3cform.captcha/trunk
Files:
5 edited
2 copied

Legend:

Unmodified
Added
Removed
  • quintagroup.z3cform.captcha/trunk

    • Property svnmerge-integrated changed from /quintagroup.z3cform.captcha/branches/captchas-refactoring:1-3003 to /quintagroup.z3cform.captcha/branches/captchas-refactoring:1-3253
    • Property svn:mergeinfo set to /quintagroup.z3cform.captcha/branches/captchas-refactoring:1966-2078
  • quintagroup.z3cform.captcha/trunk/quintagroup/z3cform/captcha/__init__.py

    r1960 r2215  
     1from field import Captcha 
     2from widget import CaptchaWidget 
     3from widget import CaptchaWidgetFactory 
  • quintagroup.z3cform.captcha/trunk/quintagroup/z3cform/captcha/configure.zcml

    r1960 r2215  
    22    xmlns="http://namespaces.zope.org/zope" 
    33    i18n_domain="quintagroup.z3cform.captcha"> 
     4 
     5  <include package="z3c.form" /> 
     6  <include package="quintagroup.captcha.core" /> 
     7 
     8  <!--Widget--> 
     9  <adapter 
     10    for=".field.Captcha 
     11         z3c.form.interfaces.IFormLayer" 
     12    factory=".widget.CaptchaWidgetFactory" 
     13    /> 
    414 
    515  <!--Validators--> 
  • quintagroup.z3cform.captcha/trunk/quintagroup/z3cform/captcha/validator.py

    r1960 r2215  
    77from Products.CMFCore.utils import getToolByName 
    88 
    9 from quintagroup.plonecaptchas.utils import decrypt, parseKey, encrypt1, getWord 
     9from quintagroup.captcha.core.utils import decrypt, parseKey, encrypt1, getWord 
    1010 
    1111from z3c.form.validator import SimpleFieldValidator 
  • quintagroup.z3cform.captcha/trunk/setup.py

    r1960 r2215  
    66setup(name='quintagroup.z3cform.captcha', 
    77      version=version, 
    8       description="Captcha field for z3cform based on quintagroup.plonecaptchas package", 
     8      description="Captcha field for z3cform based on quintagroup.captcha.core package", 
    99      long_description=open("README.txt").read() + "\n" + 
    1010                       open(os.path.join("docs", "HISTORY.txt")).read(), 
     
    2626      install_requires=[ 
    2727          'setuptools', 
    28           # uncomment next packages only if they will be downloaded from some package index 
    29           # 'quintagroup.plonecaptchas',  
     28          'quintagroup.captcha.core', 
     29          'z3c.form', 
     30          # 'zope.schema', 
     31          # 'zope.i18n', 
     32          # 'zope.component', 
     33          # 'zope.interface', 
     34          # 'zope.app.pagetemplate', 
     35          # 'Products.CMFCore', 
    3036      ], 
    3137      entry_points=""" 
    3238      # -*- Entry points: -*- 
     39      [z3c.autoinclude.plugin] 
     40      target = plone 
    3341      """, 
    3442      ) 
     43 
     44 
Note: See TracChangeset for help on using the changeset viewer.