Directory Tests/MVC/Fixture/Web/Routing/

Directory Created:
2008-08-11 20:55
Directory Deleted:
2010-08-24 10:42
Total Files:
0
Deleted Files:
2
Lines of Code:
0

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

Lines of Code

Tests/MVC/Fixture/Web/Routing/ Lines of Code

Developers

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

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 2 files:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (del), MockRoutePartHandler.php (del)
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 1 file:

  • Tests/MVC/Fixture/Web/Routing: MockRoutePartHandler.php (-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 1 file:

  • Tests/MVC/Fixture/Web/Routing: MockRoutePartHandler.php (new 8)
k-fish 2009-01-15 16:06 Rev.: 1749

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

1 lines of code changed in 1 file:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (+1 -1)
k-fish 2009-01-07 11:37 Rev.: 1707

FLOW3:
* changed license to LGPL v3 or later

14 lines of code changed in 1 file:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.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

2 lines of code changed in 1 file:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (+2 -2)
bwaidelich 2008-10-02 08:26 Rev.: 1306

* FLOW3: (Test) small bugfix in MockRoutePartHandler

0 lines of code changed in 1 file:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (-1)
bwaidelich 2008-10-02 08:16 Rev.: 1305

* 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:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (+2 -2)
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

2 lines of code changed in 1 file:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (+2 -1)
bwaidelich 2008-09-01 15:39 Rev.: 1163

* 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:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (+6 -1)
bwaidelich 2008-08-11 20:55 Rev.: 1122

* 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:

  • Tests/MVC/Fixture/Web/Routing: F3_FLOW3_MVC_Fixture_Web_Routing_MockRoutePartHandler.php (new 39)
Generated by StatSVN 0.5.0