Changeset 7284
- Timestamp:
- 02/03/08 10:40:04 (5 years ago)
- Files:
-
- plugins/sfFormExtraPlugin/README (modified) (3 diffs)
- plugins/sfFormExtraPlugin/lib/validator/sfValidatorReCaptcha.class.php (added)
- plugins/sfFormExtraPlugin/lib/widget/sfWidgetFormReCaptcha.class.php (added)
- plugins/sfFormExtraPlugin/package.xml (modified) (2 diffs)
- plugins/sfFormExtraPlugin/test/validator/sfValidatorReCaptchaTest.php (added)
- plugins/sfFormExtraPlugin/test/widget/sfWidgetFormReCaptchaTest.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfFormExtraPlugin/README
r7278 r7284 20 20 }}} 21 21 22 == Documentation == 23 24 All classes have full API and usage documentation. The API documentation is available here. 25 22 26 == Forms == 23 27 … … 26 30 == Validators == 27 31 32 * sfValidatorReCaptcha: Validates a ReCaptcha (see sfWidgetFormReCaptcha) 33 28 34 == Widgets == 35 36 * sfWidgetFormReCaptcha: Display a ReCaptcha widget (see sfValidatorReCaptcha) 29 37 30 38 == How to contribute == … … 35 43 * The license must be MIT 36 44 * You must have a unit test suite (100% coverage) 37 * You must have PHPdoc for all classes and methods 45 * You must have PHPdoc for all classes and methods with a documentation usage 38 46 * You must follow symfony coding standards 39 * You must write a documentation usage40 47 * The contribution must not be too specific 41 48 * You must be sure you will be able to maintain your contribution 42 49 * Create a ticket and attach a patch 43 * Put the documentation usage in the ticket description44 50 * Choose `sfFormExtraPlugin` as the component 45 51 * Change the qualification to `Ready for core team` plugins/sfFormExtraPlugin/package.xml
r7278 r7284 36 36 </dir> 37 37 <dir name="validator"> 38 <file role="data" name="sfValidatorReCaptcha.class.php" /> 38 39 </dir> 39 40 <dir name="widget"> 41 <file role="data" name="sfWidgetFormReCaptcha.class.php" /> 40 42 </dir> 41 43 </dir> … … 47 49 </dir> 48 50 <dir name="validator"> 51 <file role="data" name="sfValidatorReCaptchaTest.php" /> 49 52 </dir> 50 53 <dir name="widget"> 54 <file role="data" name="sfWidgetFormReCaptchaTest.php" /> 51 55 </dir> 52 56 </dir>