Directory Tests/Unit/MVC/View/

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

[root]/Tests/Unit/MVC/View

Lines of Code

Tests/Unit/MVC/View/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 40 (100.0%) 561 (100.0%) 14.0
bwaidelich 4 (10.0%) 378 (67.4%) 94.5
sebastian 2 (5.0%) 95 (16.9%) 47.5
robert 20 (50.0%) 62 (11.1%) 3.1
k-fish 13 (32.5%) 25 (4.5%) 1.9
networkteam_hlubek 1 (2.5%) 1 (0.2%) 1.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/View: AbstractViewTest.php (del), EmptyViewTest.php (del), JsonViewTest.php (del), NotFoundViewTest.php (del), StandardViewTest.php (del)
k-fish 2010-08-19 15:31 Rev.: 5020

[~TASK] FLOW3 (MVC): Added closing php tag to JsonViewTest.

2 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: JsonViewTest.php (+2 -1)
k-fish 2010-08-13 16:21 Rev.: 4969

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

0 lines of code changed in 4 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (-1), EmptyViewTest.php (-1), JsonViewTest.php (-1), NotFoundViewTest.php (-1)
bwaidelich 2010-08-11 13:55 Rev.: 4953

[+BUGFIX] FLOW3 (MVC): F3\FLOW3\MVC\View\JsonView no longer throws an exception if more than one variable is assigned. This relates to #9136
[+FEATURE] FLOW3 (MVC): F3\FLOW3\MVC\View\JsonView is now able to render multiple variables. By default only variables with the name "value" are rendered. You can change that behavior through the setVariablesToRender() setter. This relates to #9136

69 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: JsonViewTest.php (+69 -5)
bwaidelich 2010-08-04 18:50 Rev.: 4931

[+TASK] FLOW3 (MVC): Cleaned up View implementations. They no correctly implement F3\FLOW3\MVC\View\ViewInterface. This resolves #9136
[+BUGFIX] Fluid (View): AbstractTemplateView now correctly implements F3\FLOW3\MVC\View\ViewInterface and assign() and assignMultiple() will return an instance of $this to allow chaining again like $this->view->assign()->assign()... This fixes #9090

309 lines of code changed in 3 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (new 192), EmptyViewTest.php (+22 -12), JsonViewTest.php (+95 -1)
robert 2010-06-28 23:08 Rev.: 4656

[+BUGFIX] FLOW3: Some missing files, excessive files and other corrections as a followup to Sebastian's patch in r4653.

0 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: AbstractViewTest.php (del)
sebastian 2010-06-28 19:54 Rev.: 4654

[+BUGFIX] FLOW3: Followup patch to r4653.

95 lines of code changed in 2 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (+94), NotFoundViewTest.php (+1 -20)
networkteam_hlubek 2010-06-09 14:19 Rev.: 4473

[+TASK] Added a general JSON View with configurable serialization, relates to #8059

1 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: JsonViewTest.php (new 1)
k-fish 2010-03-23 15:28 Rev.: 4005

[~TASK] FLOW3 (MVC): Renamed Controller\Context (back) to Controller\ControllerContext, resolves #6949.
[~TASK] ExtJS: Renamed Controller\Context (back) to Controller\ControllerContext, relates to #6949.
[~TASK] Fluid: Renamed Controller\Context (back) to Controller\ControllerContext, relates to #6949.

2 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: NotFoundViewTest.php (+2 -2)
robert 2010-02-28 10:00 Rev.: 3882

[+BUGFIX] FLOW3 (Security): Fixed the built-in authentication route.
[~TASK] FLOW3 (MVC): In the view, renamed the "viewData" property to "variables" because we use this term in real life.

2 lines of code changed in 1 file:

  • Tests/Unit/MVC/View: AbstractViewTest.php (+2 -2)
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.

22 lines of code changed in 4 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (+7 -7), EmptyViewTest.php (+4 -4), NotFoundViewTest.php (+7 -13), StandardViewTest.php (+4 -10)
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

28 lines of code changed in 4 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (+3 -3), EmptyViewTest.php (+6 -6), NotFoundViewTest.php (+11 -11), StandardViewTest.php (+8 -8)
robert 2009-12-21 17:21 Rev.: 3548

[+FEATURE][+API] Fluid (ViewHelper): The Resource view helper now supports Resource objects: Like before you can provide a path and package key pointing to a static package resource or you pass it a resource object. Relates to #5822
[~TASK][~API] Fluid (ViewHelper): The ActionViewhelper now produces only absolute URIs. The argument "absolute" is now obsolete.
[~TASK] Fluid (ViewHelper): Defined additional reserved keywords "on", "off", "yes" and "no" in the TemplateVariableContainer.
[~TASK] FLOW3 (Resource): Renamed a few classes in FLOW3/Resource/: "Manager" -> "ResourceManager", "Publisher" -> "ResourcePublisher". Relates to #5658
[~TASK] FLOW3 (Cache): Defined a new "magic" tag for the cache frontends: TAG_PACKAGE can now be used wherever cache entries should be flushed if any package is activated or deactivated. Relates to #5774
[~TASK] FLOW3: Replaced occurrences of "[fF]ileName" with "[fF]ilename".
[~TASK] FLOW3 (Package): isPackageAvailable() and isPackageActive() no longer throw exceptions if the given parameter is not a valid string. However they still return FALSE of course in those cases.
[+FEATURE][+API] FLOW3 (Reflection): Added a new method isMethodTaggedWith() to the Reflection Service.
[+FEATURE][+API] FLOW3 (Resource): Completely reworked the resource management module. It now supports persistent resources, file uploads and provides a more flexible publishing mechanism. Resolves #5822

[+FEATURE] FLOW3 (Resource): Implemented an Object Converter for resources which can handle file uploads.
[~TASK] FLOW3 (Utility): Renamed Files::mimeTypeFromFilename() and Files::mediaTypeFromFilename() to Files::getMimeTypeFromFilename() and Files::getMediaTypeFromFilename() respectively.
[~CONFIGURATION][~API] FLOW3 (Resource): Changed the names of settings for the Resource module. Please refer to the updated Settings.yaml for the new options.
[~TASK] FLOW3 (Documentation): Documented the new Resource module.
[~TASK] ExtJS: Updated the view helpers to match the new Resource framework. Relates to #5822
[~TASK] FLOW3: Implemented additional rewrite rules in the .htaccess file to support the new static resources publish mechanism.

8 lines of code changed in 6 files:

  • Tests/Unit/MVC/View: AbstractViewTest.php (+1 -1), EmptyViewTest.php (new), NotFoundViewTest.php (+3 -3), StandardViewTest.php (+2 -2)
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.

21 lines of code changed in 2 files:

  • Tests/Unit/MVC/View: NotFoundViewTest.php (+18 -18), StandardViewTest.php (+3 -3)
robert 2009-11-05 11:54 Rev.: 3441

[~TASK][+API] FLOW3 (MVC): Refactored the Controller Context and how its being built in the Abstract Controller and Action Controller. The controllers now provide a method getControllerContext() which can potentially be used as a factory method for injecting a controller's current context into other objects (such as a TypoScript view).

2 lines of code changed in 4 files:

  • Tests/Unit/MVC/View: NotFoundViewTest.php (new), StandardViewTest.php (+1 -1)
Generated by StatSVN 0.5.0