Changeset 2737 in products


Ignore:
Timestamp:
Aug 10, 2010 3:15:12 PM (14 years ago)
Author:
mylan
Message:

Merged revisions 3750,3767-3774 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.pfg.captcha/branches/migration

........

r3750 | mylan | 2010-07-20 23:44:36 +0300 (Tue, 20 Jul 2010) | 1 line


#222: Added basic structure of migration Product to Package

........

r3767 | mylan | 2010-08-09 20:59:55 +0300 (Mon, 09 Aug 2010) | 1 line


Fix validator registration breakage

........

r3768 | mylan | 2010-08-09 21:07:08 +0300 (Mon, 09 Aug 2010) | 1 line


#222: Added migratioin old Products.qPloneCaptchaField to quintagroup.pfg.captcha fields

........

r3769 | mylan | 2010-08-10 12:19:58 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Fix typo

........

r3770 | mylan | 2010-08-10 12:59:59 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Move installation quintagroup.pfg.captcha with dependecies from global setupPloneSite to TestCase? classes

........

r3771 | mylan | 2010-08-10 14:09:48 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Splited tests.py module into 2 layers with notinstalled and installed quintagroup.pfg.captcha packages

........

r3772 | mylan | 2010-08-10 17:43:03 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Fix uninstallation 'old' packages when second run quintagroup.pfg.captcha installation

........

r3773 | mylan | 2010-08-10 17:43:54 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Added test for migration from old qPloneCaptchaField to new quintagroup.pfg.captcha

........

r3774 | mylan | 2010-08-10 18:03:41 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Prepare to 1.0.1 release

........

Location:
quintagroup.pfg.captcha/trunk
Files:
1 deleted
7 edited
9 copied

Legend:

Unmodified
Added
Removed
  • quintagroup.pfg.captcha/trunk

    • Property svnmerge-integrated changed from /quintagroup.pfg.captcha/branches/migration:1-3749 to /quintagroup.pfg.captcha/branches/migration:1-3775
    • Property svn:mergeinfo set to /quintagroup.pfg.captcha/branches/migration:2711-2735
  • quintagroup.pfg.captcha/trunk/README.txt

    r2144 r2737  
    44Quintagroup PloneFormGen Captcha Field (quintagroup.pfg.captcha) allows to  
    55add captcha field to PloneFormGen forms. 
     6 
    67 
    78Usage 
     
    1920Everything you need to do is to select this field from 'Add..' drop-down menu and save it. 
    2021 
     22 
    2123Supported Plone version 
    2224----------------------- 
     
    3234* SVN Repository - http://svn.quintagroup.com/products/quintagroup.pfg.captcha 
    3335 
     36 
    3437Notes 
    3538----- 
     
    3841 
    3942* If you want captcha for Plone default forms - use quintagroup.plonecaptchas product http://projects.quintagroup.com/products/wiki/quintagroup.plonecaptchas 
     43 
     44* Migration from qPloneCaptchaField: just replace old Products.qPloneCaptchaField with 
     45  quintagroup.pfg.captcha in the buildout and install new package with quickinstaller - 
     46  it will replace all old ones captcha fields (qPloneCaptchaField's) with new one. 
     47 
    4048 
    4149Authors 
  • quintagroup.pfg.captcha/trunk/docs/HISTORY.txt

    r2143 r2737  
    11Changelog 
    22========= 
     3 
     41.0.1 (2010-08-10) 
     5------------------ 
     6 
     7* Added migration from qPloneCaptchaField 
     8  [mylan] 
     9* Added test for migration 
     10  [mylan] 
     11 
    312 
    4131.0 (2010-04-19) 
  • quintagroup.pfg.captcha/trunk/quintagroup/pfg/captcha/profiles/default/metadata.xml

    r2095 r2737  
    11<?xml version="1.0"?> 
    22<metadata> 
    3   <version>0.2.2</version> 
     3  <version>0.3</version> 
    44  <dependencies> 
    55    <dependency>profile-Products.PloneFormGen:default</dependency> 
  • quintagroup.pfg.captcha/trunk/quintagroup/pfg/captcha/validator.py

    r2295 r2737  
    88class CaptchaValidator: 
    99 
    10     implements(IValidator) 
     10    __implements__ = (IValidator,) 
    1111 
    1212    name = 'CaptchaValidator' 
     13    title = "" 
     14    description = "" 
    1315 
    1416    def __init__(self, name, title='', description=''): 
  • quintagroup.pfg.captcha/trunk/quintagroup/pfg/captcha/version.txt

    r393 r2737  
    1 0.2.2 
     10.3 
  • quintagroup.pfg.captcha/trunk/setup.py

    r2145 r2737  
    22import os 
    33 
    4 version = '1.0' 
     4version = '1.0.1' 
    55 
    66setup(name='quintagroup.pfg.captcha', 
Note: See TracChangeset for help on using the changeset viewer.