Directory Classes/Validation/Exception/

Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
16
Lines of Code:
0

[root]/Classes/Validation/Exception

Lines of Code

Classes/Validation/Exception/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 71 (100.0%) 444 (100.0%) 6.2
robert 10 (14.1%) 274 (61.7%) 27.4
k-fish 59 (83.1%) 127 (28.6%) 2.1
sebastian 1 (1.4%) 35 (7.9%) 35.0
andi 1 (1.4%) 8 (1.8%) 8.0

Most Recent Commits

k-fish 2010-08-24 10:42 Rev.: 5057

Removed everything in trunk after move to git.

0 lines of code changed in 16 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (del), F3_FLOW3_Validation_Exception_InvalidSubject.php (del), F3_FLOW3_Validation_Exception_NoValidatorFound.php (del), InvalidChainIndex.php (del), InvalidSubject.php (del), InvalidSubjectException.php (del), InvalidTypeHintException.php (del), InvalidValidationConfiguration.php (del), InvalidValidationConfigurationException.php (del), InvalidValidationOptions.php (del), InvalidValidationOptionsException.php (del), NoSuchFilter.php (del), NoSuchFilterException.php (del), NoSuchValidator.php (del), NoSuchValidatorException.php (del), NoValidatorFound.php (del)
k-fish 2010-08-16 14:07 Rev.: 4988

[+TASK] FLOW3 (Validation): The ValidatorResolver now throws a helpful exception when encountering missing @param annotations.

35 lines of code changed in 1 file:

  • Classes/Validation/Exception: InvalidTypeHintException.php (new 35)
k-fish 2010-08-13 16:21 Rev.: 4969

[-TASK] FLOW3: Removed @version keyword from files, resolves #8835.

0 lines of code changed in 5 files:

  • Classes/Validation/Exception: InvalidSubjectException.php (-1), InvalidValidationConfigurationException.php (-1), InvalidValidationOptionsException.php (-1), NoSuchFilterException.php (-1), NoSuchValidatorException.php (-1)
k-fish 2010-03-04 11:06 Rev.: 3903

[+FEATURE] FLOW3 (Core): The flow3 hell script now uses the PHP binary specified in the PHP environment variable, resolves #6681.
[~TASK] FLOW3: Some SVN property maintenance.

1 lines of code changed in 1 file:

  • Classes/Validation/Exception: InvalidValidationConfigurationException.php (+1 -1)
robert 2010-01-15 15:38 Rev.: 3643

[~TASK] FLOW3 (Documentation): Updated the Coding Guidelines: removed inconsistent exceptions from the general class naming rules. Also added the rule that names of aspect classes must end with "Aspect". Relates to #5658
[~TASK] Global: Renamed many classes and interfaces in order to be consistent with FLOW3's naming rules. A migration script to update third-party applications will follow soon. Resolves #5658

180 lines of code changed in 5 files:

  • Classes/Validation/Exception: InvalidSubjectException.php (new 36), InvalidValidationConfigurationException.php (new 36), InvalidValidationOptionsException.php (new 36), NoSuchFilterException.php (new 36), NoSuchValidatorException.php (new 36)
k-fish 2009-10-30 10:26 Rev.: 3380

[~TASK] FLOW3: Made all exceptions part of the public API, so they get documented properly.

5 lines of code changed in 5 files:

  • Classes/Validation/Exception: InvalidSubject.php (+1), InvalidValidationConfiguration.php (+1), InvalidValidationOptions.php (+1), NoSuchFilter.php (+1), NoSuchValidator.php (+1)
sebastian 2009-09-17 10:57 Rev.: 3192

[-API] FLOW3 (MVC): Removed enableValidation() and disableValidation() on the Controller Argument. They are not needed anymore.
[!!!][+BUGFIX] FLOW3 (MVC): Now, in case people do not specify an @param annotation, they will get an exception instead of Text being used.
[+BUGFIX] FLOW3 (MVC): Cleaned up validator registration in ActionController. Now, @dontvalidate annotations only disable the model-based validators.
[+BUGFIX] FLOW3 (Validation): Cleaned up ValidatorResolver. Now, Validators which check the data type from the @param annotation are also added to the validator chain.
[!!!][+BUGFIX] FLOW3 (Validation): @param string is now validated as string, and not anymore as Text. This fixes numerous bug reports in Fluid.

35 lines of code changed in 1 file:

  • Classes/Validation/Exception: InvalidValidationConfiguration.php (new 35)
k-fish 2009-07-16 15:02 Rev.: 2813

[+TASK] FLOW3: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Fluid: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Kickstart: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHP6: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] PHPUnit: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Testing: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Welcome: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] YAML: Removed file level docblocks and @package/@subpackage annotations.

0 lines of code changed in 4 files:

  • Classes/Validation/Exception: InvalidSubject.php (-8), InvalidValidationOptions.php (-8), NoSuchFilter.php (-8), NoSuchValidator.php (-8)
k-fish 2009-06-02 11:35 Rev.: 2523

Added svn:keywords where missing...

2 lines of code changed in 1 file:

  • Classes/Validation/Exception: InvalidValidationOptions.php (+2 -2)
robert 2009-04-30 16:15 Rev.: 2185

This commit is all about validation. Although the new features basically work, a few smaller features and tweak are missing before the whole concept works as intended. Documentation will follow (hopefully soon).

* FLOW3: (Validation) Implemented annotation based validation for models. That means you now can define validation rules by adding @validate annotations to class properties and these rules will be enforced when arguments of this type are passed as controller arguments. Resolves #3093 but some fine tuning and small additional features are missing.
* FLOW3: (Validation) Note that #3130 is not solved yet in this commit.
* FLOW3: (MVC) Implemented a MVC Controller Arguments Validator which is able to validate a whole Arguments object. This is used during the mapAndValidate process in the controller. Addresses #3093.
* FLOW3: (Property) The property mapper now accepts arrays as source and / or target.
* FLOW3: (Property) mapAndValidate() will now truly validate the result of the mapping. If the result does not validate, the target remains unchanged.
* FLOW3: (Validation) Removed the Filter Chain for now - it will surely come back but didn't work like it was currently implemented.
* FLOW3: (Validation) Improved the AbstractValidator and added a new AbstractObjectValidator
* FLOW3: (Validation) Adapted all validators to the new Validator interface and AbstractValidator
* FLOW3: (Validation) Implemented a new Generic Object validator which can validate properties of any object
* FLOW3: (Validation) Simplified the chaining of validators and during that process removed the ObjectValidatorChainValidator
* FLOW3: Added and adapted many tests

43 lines of code changed in 1 file:

  • Classes/Validation/Exception: NoSuchFilter.php (new 43)
robert 2009-04-16 07:22 Rev.: 2159

* FLOW3: (MVC) Implemented the automatic validation rule registration based on @validate annotations in action methods. Note that validators are registered now but validation still does not happen (yet). Resolves #3092
* FLOW3: (Validation) Modified the API of the ValidatorResolver

43 lines of code changed in 1 file:

  • Classes/Validation/Exception: NoSuchValidator.php (new 43)
andi 2009-03-26 23:48 Rev.: 2096

FLOW3(Validation):
* Implemented the StringLengthValidator. Resolves #2832.

8 lines of code changed in 1 file:

  • Classes/Validation/Exception: InvalidValidationOptions.php (new 8)
robert 2009-01-28 13:04 Rev.: 1811

!!! Globally renamed all class files to the new shorter version. Resolves #2524
FLOW3: (Resource) Adapted the class loader and other related parts of FLOW3 to the new class filename convention
FLOW3: Moved the FLOW3 bootstrap into the F3\FLOW3 namepace

8 lines of code changed in 3 files:

  • Classes/Validation/Exception: InvalidChainIndex.php (new), InvalidSubject.php (new 8), NoValidatorFound.php (new)
k-fish 2009-01-15 16:06 Rev.: 1749

FLOW3:
* fixed license name in @license annotation, fixes #2454

3 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+1 -1), F3_FLOW3_Validation_Exception_InvalidSubject.php (+1 -1), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+1 -1)
k-fish 2009-01-09 16:39 Rev.: 1723

FLOW3, Lucene, PHP6, PHPCR, Smarty, Testing, TYPO3, TYPO3CR, TypoScript:
* fixed broken @version $Id$ annotations that got hosed during new namespace refactoring. Sorry!

6 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+2 -2), F3_FLOW3_Validation_Exception_InvalidSubject.php (+2 -2), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+2 -2)
k-fish 2009-01-07 11:37 Rev.: 1707

FLOW3:
* changed license to LGPL v3 or later

42 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+14 -7), F3_FLOW3_Validation_Exception_InvalidSubject.php (+14 -7), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+14 -7)
k-fish 2008-12-10 15:39 Rev.: 1599

!!! 5.3.0alpha3 namespaces refactoring:
* changed namespace delimiter from :: to \
* all class references in namespaced code prepended by \

PHPUnit:
* adapted mock object handling to the new namespaces syntax

FLOW3:
* PropertyReflection now uses setAccessible() instead of array cast to access protected properties

PHPCR:
* added a missing interface already used for type hints

12 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+4 -4), F3_FLOW3_Validation_Exception_InvalidSubject.php (+4 -4), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+4 -4)
k-fish 2008-09-19 19:27 Rev.: 1264

Set svn:keywords property to Id on all PHP files.

0 lines of code changed in 2 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (changed), F3_FLOW3_Validation_Exception_NoValidatorFound.php (changed)
k-fish 2008-09-12 16:07 Rev.: 1210

!!! Major change, will break existing code.

Part 3 - Packages

FLOW3, most other packages:
* added namespaces to the code of FLOW3 and all packages in the current TYPO3v5 distribution.

PHPUnit:
* some changes to make PHPUnit (more) namespace-compatible.

Some notes:
* Documentation updates will follow
* you might need to change your class names when adapting namespaces to avoid using "Class", "Empty", "Default", ...
* expect FLOW3CGL and/or PHPCodeSniffer to be broken (I'll have a look)
* some parts might still be broken, especially in edge-cases where the global namespace needs to explicitly used

12 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+4 -3), F3_FLOW3_Validation_Exception_InvalidSubject.php (+4 -3), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+4 -3)
k-fish 2008-05-29 21:52 Rev.: 881

FLOW3, PHPCR:
* Heavy updates to the inline documentation, eliminating all phpDocumentor warnings for the FLOW3 package

9 lines of code changed in 3 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (+3 -2), F3_FLOW3_Validation_Exception_InvalidSubject.php (+3 -2), F3_FLOW3_Validation_Exception_NoValidatorFound.php (+3 -2)
k-fish 2008-05-10 16:43 Rev.: 831

Pending commit, fixes #477.

0 lines of code changed in 6 files:

  • Classes/Validation/Exception: F3_FLOW3_Validation_Exception_InvalidChainIndex.php (-1), F3_FLOW3_Validation_Exception_InvalidSubject.php (-1), F3_FLOW3_Validation_Exception_NoValidatorFound.php (new)
Generated by StatSVN 0.5.0