[root]/Tests/MVC/Fixture/Controller

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 37 (100.0%) | 540 (100.0%) | 14.5 |
| robert | 11 (29.7%) | 449 (83.1%) | 40.8 |
| k-fish | 26 (70.3%) | 91 (16.9%) | 3.5 |
Removed everything in trunk after move to git.
0 lines of code changed in 9 files:
[+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 1 file:
!!! 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 2 files:
FLOW3:
* fixed license name in @license annotation, fixes #2454
4 lines of code changed in 4 files:
FLOW3:
* changed license to LGPL v3 or later
56 lines of code changed in 4 files:
!!! 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
15 lines of code changed in 4 files:
* Fixed several global typehints (eg. DateTime > ::DateTime)
* Removed / fixed non existent classes used in some typehints
* FLOW3: (Object) Optimized the setter autowiring method: It now uses the Reflection Service instead of its own reflection
* FLOW3: (Reflection) Implemented a new API method "getMethodParameters"
* FLOW3: (MVC) Fixed a few Dispatcher tests which were not providing proper mock objects (and now exploded)
* PHPCR: Fixed type hinting in QueryObjectModelFactoryInterface::join()
2 lines of code changed in 1 file:
* Fixed FLOW3's yaml configuration: exceptional errors were defined as plain strings instead of constants resulting in even (catchable) fatal errors being ignored
* Fixed several tests which still used the object configuration instead of arrays
1 lines of code changed in 1 file:
!!! 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
16 lines of code changed in 4 files:
* FLOW3: (MVC) If the name of a valid controller component could not be resolved, the Request will now throw a "No Such Controller" exception. Earlier, the default controller was chosen which made debugging quite hard in some situations.
* FLOW3: (MVC) Removed the Presentation Controller which had no functionality (yet) anyway and wasn't used either.
* FLOW3: (MVC) Added a new method "initializeArguments" to the Request Handling Controller. Please define your arguments in this method now instead of using the initializeController() or initializeAction() method.
* FLOW3: (MVC) Added the initial implementation of a REST controller which automatically chooses the right action method based on the HTTP request.
* FLOW3: (Property) Corrected at least some misbehaviour / bug in the Property Mapper (mapping results were not used properly). However, the whole Property Editor mechanism seems still to be unstable.
* TYPO3: (Service) Further experiments with the REST services. A site service can for example be accessed via http://yourhost/typo3/service/v1/sites.json
272 lines of code changed in 4 files:
* FLOW3: (MVC) More features for the Web Response object - it is now possible to set custom headers
* FLOW3: (MVC) Improvement of the forward() method in the RequestHandlingController: After calling forward(), the control is returned to the dispatcher and lines in the controller following after the forward() method are not executed anymore.
* FLOW3: (MVC) Implemented the redirect() method for the RequestHandlingController
50 lines of code changed in 1 file:
* FLOW3: (MVC) Renamed the Default Controller. Addresses #474
* FLOW3: (MVC) Implemented the dispatch loop: The request object now contains a flag which tells if the dispatcher needs to dispatch the request again because it contains new information about the responsible controller.
* FLOW3: (MVC) The Request object now works differently in terms of specifying the controller: Instead of passing the controller component name, it is now specified by setting the package key and controller name. Addresses #474
* FLOW3: (MVC) Implemented support for forwarding requests (see Request Handling Controller). Resolves #88 and resolves #215.
* FLOW3: (MVC) Removed the locking feature from the Request object - otherwise forwarding would not be possible.
* FLOW3: (MVC) Refactored mmost of the controller-related tests and fixtures.
* FLOW3: Adapted the standard routes
* FLOW3 + TYPO3: Updated the Package Meta information
116 lines of code changed in 2 files: