Directory Tests/Unit/MVC/Web/Routing/

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

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

Lines of Code

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

Developers

Author Changes Lines of Code Lines per Change
Totals 38 (100.0%) 270 (100.0%) 7.1
k-fish 25 (65.8%) 156 (57.8%) 6.2
robert 11 (28.9%) 110 (40.7%) 10.0
sebastian 2 (5.3%) 4 (1.5%) 2.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 5 files:

  • Tests/Unit/MVC/Web/Routing: DynamicRoutePartTest.php (del), RouteTest.php (del), RouterTest.php (del), StaticRoutePartTest.php (del), UriBuilderTest.php (del)
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:

  • Tests/Unit/MVC/Web/Routing: DynamicRoutePartTest.php (-1), RouteTest.php (-1), RouterTest.php (-1), StaticRoutePartTest.php (-1), UriBuilderTest.php (-1)
robert 2010-05-28 13:13 Rev.: 4337

[+FEATURE][+API] FLOW3 (Object): The Object Manager (and the object containers) now provide a method for retrieving the implementation class name by specifying the object name. Resolves #7960
[~TASK] FLOW3 (MVC): The Request object now returns the case sensitive action name, even if it has been set all lowercase by a route. That means that a route http://host/package/mycontroller/myaction will be correctly resolved to myActionAction if \F3\Package\Controller\MyController::myActionAction exists. Addresses #7243

1 lines of code changed in 1 file:

  • Tests/Unit/MVC/Web/Routing: RouterTest.php (+1 -1)
robert 2010-02-26 15:34 Rev.: 3867

[~API] FLOW3 (Utility): Renamed detectBaseUri() to getBaseUri().
[~TASK] FLOW3 (MVC): Recomitted my previous change in getRequestPath and reworked the path rendering in the Request object (now is called "route path"). Relates to #6596
[~BUGFIX] FLOW3 (Security): The WebRedirect entry point now takes the Base URI into account. That means you'll have to specify a _relative_ URI in your settings for defining a web entry point (i.e. no leading slash!).

67 lines of code changed in 4 files:

  • Tests/Unit/MVC/Web/Routing: DynamicRoutePartTest.php (+30 -30), RouteTest.php (+1 -1), RouterTest.php (+10 -10), StaticRoutePartTest.php (+26 -26)
robert 2010-02-22 16:17 Rev.: 3837

[+FEATURE] FLOW3 (Object): Implemented a static object container which is automatically built. It's essentially a hardcoded version of the autowired and configured object dependencies - just a lot faster. Many tests are still missing, but the version in this commit should be mostly functional. Addresses #3740 and resolves #2123.
[!!!][~API] FLOW3 (Object): Heavily refactored the Object Manager and its tests. The most important change is the removal of the Object Factory whose create() method is now located in the Object Manager. Furthermore, the getObject() method has been renamed to get() and a few minor important API functions within the Object Manager have been modified. This commit also contains a script which allows for semi automatically migrating existing code to the new API (see ./flow3 migrate objectmanagerusage). Resolves #6562
[~TASK] FLOW3 (Configuration): The Configuration Manager and its YAML source now doesn't depend on the YAML package anymore but refers to a YAML parser class within the FLOW3 package. Resolves #6564.

25 lines of code changed in 3 files:

  • Tests/Unit/MVC/Web/Routing: RouteTest.php (+9 -15), RouterTest.php (+15 -15), UriBuilderTest.php (+1 -1)
robert 2010-01-26 10:54 Rev.: 3758

[+FEATURE] FLOW3 (Cache): Implemented a PHP Cache Frontend which allows for effective caching of PHP code which is included with require_once() instead of runtime parsing with eval(). This significantly improves speed when used in combination with an opcode cache such as APC. Currently only the FileBackend supports PHP code caching. Resolves #6137
[+FEATURE] FLOW3 (AOP): The AOP Framework now uses the new PHP cache frontend for storing AOP proxy classes. Speeds up the initial startup of FLOW3 enormously. Relates to #6137
[~TASK] FLOW3: Removed all dependencies from the PHP6 package because the unicode support we were using didn't really make sense in the respective situations.
[+BUGFIX] FLOW3 (Utility): Fixed a bug in Files::emptyDirectoryRecursively() which wrongly recognized certain files as directories due to incorrect usage of the directory iterator.

1 lines of code changed in 1 file:

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

16 lines of code changed in 2 files:

  • Tests/Unit/MVC/Web/Routing: RouteTest.php (+15 -15), RouterTest.php (+1 -1)
k-fish 2010-01-15 10:31 Rev.: 3636

[~TASK] FLOW3 (MVC): Fixed RouterTest that missed a mocked logger after r3634.

3 lines of code changed in 1 file:

  • Tests/Unit/MVC/Web/Routing: RouterTest.php (+3)
k-fish 2010-01-14 21:24 Rev.: 3635

[~TASK] FLOW3 (MVC): Adjusted RouterTest to the changes done in r3633.

18 lines of code changed in 1 file:

  • Tests/Unit/MVC/Web/Routing: RouterTest.php (+18 -18)
k-fish 2010-01-13 17:30 Rev.: 3616

[+FEATURE] FLOW3 (Persistence): Wrote a new persistence backend using a database directly instead of TYPO3CR. Details see below. Resolves #6006.
[+API] FLOW3 (Persistence): Added new backend classes that can be used for further backends.
[-API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() from BackendInterface.
[+API] FLOW3 (Persistence): Removed methods getIdentifierByObject(), getObjectByIdentifier() and isNewObject() to ManagerInterface and Manager.
[-API] FLOW3 (Persistence): Removed withUUID() from QueryInterface, use getObjectByIdentifier() on Manager instead.
[+API] FLOW3 (Persistence): Added constants for query operators to QueryInterface.

8 lines of code changed in 1 file:

  • Tests/Unit/MVC/Web/Routing: RouteTest.php (+8 -11)
k-fish 2009-11-05 14:41 Rev.: 3449

[~API] FLOW3 (Log): setLogFileURL() was renamed to setLogFileUrl() in FileBackend.
[~API] FLOW3 (MVC): redirectToURI() was renamed to redirectToUri() in AbstractController.
[~API] FLOW3 (MVC): setRequestURI(), getRequestURI(), setBaseURI() and getBaseURI() were renamed to *Uri() in Request.
[~API] FLOW3 (Property): DataType\URI was renamed to DataType\Uri.
[~API] FLOW3 (Utility): getRequestURI() was renamed to getRequestUri() in Environment.
[~TASK] Fluid (Service): Refactored XML generators a little.
[~TASK] DocumentationBrowser: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] FLOW3: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Fluid: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Kickstart: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Testing: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.
[~TASK] Welcome: Moved towards more consistent class, function and variable naming: changed uppercase acronyms to studlyCaps or StudlyCaps as needed.

15 lines of code changed in 3 files:

  • Tests/Unit/MVC/Web/Routing: RouteTest.php (+9 -9), RouterTest.php (+5 -5), UriBuilderTest.php (+1 -1)
k-fish 2009-10-30 14:32 Rev.: 3384

[+BUGFIX] FLOW3 (MVC): MVC parameters (package key, controller name, action name, format) are now lowercased before set in the request, fixes #5182.

12 lines of code changed in 2 files:

  • Tests/Unit/MVC/Web/Routing: RouterTest.php (new)
k-fish 2009-10-30 14:19 Rev.: 3382

[+FEATURE] FLOW3 (MVC): The handling of case in URIs has been changed in routing and URI building. The default is now to leave case unchanged in user-defined route parts, check the documentation for more details. Resolves #2237. Thanks to Bastian Waidelich.

100 lines of code changed in 7 files:

  • Tests/Unit/MVC/Web/Routing: DynamicRoutePartTest.php (new), RouteTest.php (+25), StaticRoutePartTest.php (new), UriBuilderTest.php (+8 -8)
sebastian 2009-10-09 13:59 Rev.: 3309

[!!!][+FEATURE] FLOW3 (Security): Added a HMAC generator and checker to prevent unauthorized access on objects where no edit fields were generated for. It is mandatory in case objects are modified on the server side. See the issue for a more in-depth explanation. This feature does NOT break backwards-compatibility as long as you use only Fluid for form-generation. In case of custom fields, it WILL break backwards compatibility, and you might need the @dontverifyrequesthash annotation. Resolves #4960.
[+FEATURE] Fluid (ViewHelpers): Added a request hash to all form fields. It is mandatory in case objects are modified on the server side. Relates to #4960.

4 lines of code changed in 2 files:

  • Tests/Unit/MVC/Web/Routing: UriBuilderTest.php (new)
Generated by StatSVN 0.5.0