[root]/Tests/MVC/Fixture/Web/Routing

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 12 (100.0%) | 74 (100.0%) | 6.1 |
| bwaidelich | 4 (33.3%) | 47 (63.5%) | 11.7 |
| k-fish | 7 (58.3%) | 19 (25.7%) | 2.7 |
| robert | 1 (8.3%) | 8 (10.8%) | 8.0 |
Removed everything in trunk after move to git.
0 lines of code changed in 2 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 1 file:
FLOW3:
* fixed license name in @license annotation, fixes #2454
1 lines of code changed in 1 file:
FLOW3:
* changed license to LGPL v3 or later
14 lines of code changed in 1 file:
!!! 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
2 lines of code changed in 1 file:
* FLOW3: (Test) small bugfix in MockRoutePartHandler
0 lines of code changed in 1 file:
* FLOW3: (MVC) View: added support for View Helpers. A View Helper must implement the interface "F3::FLOW3::MVC::View::Helper::HelperInterface". Than it can be obtained like this:
$viewHelper = $view->getViewHelper('F3::FLOW3::MVC::View::Helper::URIHelper');
* FLOW3: (MVC) View: added first implementation of a View Helper: URIHelper, the new typolink.
* FLOW3: (MVC) View: removed request setter in DefaultView as it already exists in the abstract base class.
* FLOW3: (MVC) DynamicRoutePart: split match() and resolve() methods into submethods and marked them final so inherited Classes (RoutePartHandler) won't have to duplicate code (Template Method pattern).
* FLOW3: (MVC) Route: added property for route name to enable meaningful logging messages.
* FLOW3: (MVC) Route: urlPattern can be empty now (homepage).
* FLOW3: (MVC) Route: some tweaks and smaller fixes.
* FLOW3: (MVC) Router: added support for query strings to routing mechanism. An urlPattern may look like "search?query=[query]" now.
* FLOW3: (Resource) added getter for complete path of a resource.
* FLOW3: Utility: cosmetic change in F3_FLOW3_Utility_Files.
* note: unit tests to be added!
2 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
2 lines of code changed in 1 file:
* FLOW3: (MVC) Implemented first version of a "reverse routing" mechanism which is the first step for creating proper URLs in FLOW3. Now you can generate links like this:
$router->resolve(array('@package' => 'myPackage', '@controller' => 'myController'));
But beware, naming will probably change and we're working on a link-helper to be able to create correct URLs more conveniently.
6 lines of code changed in 1 file:
* FLOW3: (MVC) Add route part handler support. A route part handler is basically nothing else than a specialized F3_FLOW3_MVC_Web_Routing_DynamicRoutePart and can be used to resolve one or multiple URL segments. Resolves #1251.
Note: There is no implementation of a route part handler yet.
39 lines of code changed in 1 file: