Changeset 2210 in products
- Timestamp:
- Apr 27, 2010 12:02:35 PM (13 years ago)
- Location:
- quintagroup.formlib.captcha/trunk
- Files:
-
- 1 deleted
- 4 edited
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
quintagroup.formlib.captcha/trunk
- Property svnmerge-integrated changed from /quintagroup.formlib.captcha/branches/captchas-refactoring:1-3002 to /quintagroup.formlib.captcha/branches/captchas-refactoring:1-3248
- Property svn:mergeinfo set to /quintagroup.formlib.captcha/branches/captchas-refactoring:1965-2081
-
quintagroup.formlib.captcha/trunk/quintagroup/formlib/captcha/__init__.py
r1959 r2210 1 # 1 from widget import CaptchaWidget 2 from field import Captcha -
quintagroup.formlib.captcha/trunk/quintagroup/formlib/captcha/configure.zcml
r1959 r2210 1 1 <configure 2 2 xmlns="http://namespaces.zope.org/zope" 3 xmlns:zcml="http://namespaces.zope.org/zcml"4 3 i18n_domain="quintagroup.formlib.captcha"> 5 4 6 <include package=".form"7 zcml:condition="installed zope.app.form"/>5 <include package="quintagroup.captcha.core" /> 6 <include package="zope.formlib" /> 8 7 8 <view 9 type="zope.publisher.interfaces.browser.IBrowserRequest" 10 for=".interfaces.ICaptcha" 11 provides="zope.app.form.interfaces.IInputWidget" 12 factory=".widget.CaptchaWidget" 13 permission="zope.Public" 14 /> 9 15 10 16 </configure> -
quintagroup.formlib.captcha/trunk/setup.py
r1959 r2210 6 6 setup(name='quintagroup.formlib.captcha', 7 7 version=version, 8 description="Captcha field for formlib based on q PloneCaptchas Zope2 Product",8 description="Captcha field for formlib based on quintagroup.captcha.core package", 9 9 long_description=open("README.txt").read() + "\n" + 10 10 open(os.path.join("docs", "HISTORY.txt")).read(), … … 27 27 'setuptools', 28 28 # -*- Extra requirements: -*- 29 'quintagroup.captcha.core', 30 'zope.app.form', 31 # 'zope.component', 32 # 'zope.interface', 33 # 'zope.schema', 34 # 'zope.i18n', 35 # 'Products.CMFCore', 29 36 ], 30 37 entry_points="""
Note: See TracChangeset
for help on using the changeset viewer.