Directory Classes/MVC/View/

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

[root]/Classes/MVC/View
                Folder removed from repo Helper (0 files, 0 lines)

Lines of Code

Classes/MVC/View/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 152 (100.0%) 1225 (100.0%) 8.0
k-fish 82 (53.9%) 516 (42.1%) 6.2
robert 42 (27.6%) 327 (26.7%) 7.7
sebastian 5 (3.3%) 199 (16.2%) 39.8
bwaidelich 16 (10.5%) 154 (12.6%) 9.6
networkteam_hlubek 7 (4.6%) 29 (2.4%) 4.1

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

  • Classes/MVC/View: AbstractView.php (del), DefaultView.php (del), EmptyView.php (del), F3_FLOW3_MVC_View_Abstract.php (del), F3_FLOW3_MVC_View_AbstractView.php (del), F3_FLOW3_MVC_View_Default.php (del), F3_FLOW3_MVC_View_DefaultView.php (del), F3_FLOW3_MVC_View_Empty.php (del), F3_FLOW3_MVC_View_EmptyView.php (del), F3_FLOW3_MVC_View_Template.php (del), F3_FLOW3_MVC_View_ViewInterface.php (del), JsonView.php (del), NotFoundView.php (del), StandardView.php (del), Template.php (del), ViewInterface.php (del)
robert 2010-08-19 16:55 Rev.: 5023

[~TASK] FLOW3 (MVC): Changed the order how views are resolved: If a dedicated view exists for the controller / action pair, it is chosen instead of the Fluid Template View.
[+FEATURE] FLOW3 (MVC): The ActionController now allows for specifying view object names for each format, e.g. a specific view for JSON request, another one for HTML etc. Resolves #7113
[!!!]][API] FLOW3 (MVC): Added a new method to the ViewInterface: canRender() must tell if the view is able to render something meaningful for the given controller context.
[~TASK] Fluid (View): Adjusted the template view to the extended ViewInterface.

35 lines of code changed in 3 files:

  • Classes/MVC/View: AbstractView.php (+15), EmptyView.php (+11), ViewInterface.php (+9)
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:

  • Classes/MVC/View: AbstractView.php (-1), EmptyView.php (-2), JsonView.php (-1), NotFoundView.php (-1), ViewInterface.php (-1)
robert 2010-08-12 15:54 Rev.: 4956

[~TASK] ExtJS: Added doc comments to a few methods. Added basic parameter check for transaction arguments.
[+BUGFIX] ExtJS (ExtDirect): Fixed a bug which resulted in a broken communication between client and server via ExtDirect if a shared action method had optional arguments. Resolves #9279
[~TASK] FLOW3 (MVC): Cleaned up the code and documentation of the JsonView
[+FEATURE] FLOW3 (Persistence): The base repository now only sets the repository's object type if it has not been defined before. By that it is possible to define a custom object type in the property declaration of a concrete repository.
[+FEATURE] FLOW3 (Property): The property mapper now supports creation and recreation of objects specified by a UUID in an identity array even if they are just part of the overall source object / array to be mapped.
[+BUGFIX] FLOW3 (Validation): Fixed a few failing tests of composite validators, caused by incorrect mock building.

22 lines of code changed in 1 file:

  • Classes/MVC/View: JsonView.php (+22 -16)
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

28 lines of code changed in 1 file:

  • Classes/MVC/View: JsonView.php (+28 -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

21 lines of code changed in 5 files:

  • Classes/MVC/View: AbstractView.php (+5 -72), EmptyView.php (+4 -2), JsonView.php (+7 -39), NotFoundView.php (+1 -33), ViewInterface.php (+4 -4)
networkteam_hlubek 2010-06-29 18:02 Rev.: 4668

[+FEATURE] ExtJS (ExtDirect): Configurable exception information exposure in the Ext Direct RequestHandler
[+BUGFIX] ExtJS (ExtDirect): The RequestHandler will call an ExceptionHandler to log exceptions that occured inside an Ext Direct request
[~TASK] ExtJS (ExtDirect): Extracted some code from RequestHandler to Transaction
[~TASK] FLOW3 (MVC): Removed Whitespace in JsonView

0 lines of code changed in 1 file:

  • Classes/MVC/View: JsonView.php (-1)
sebastian 2010-06-29 12:02 Rev.: 4664

[+BUGFIX] FLOW3: Re-added AbstractView, as we need it in JsonView

72 lines of code changed in 1 file:

  • Classes/MVC/View: AbstractView.php (new 72)
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:

  • Classes/MVC/View: AbstractView.php (del)
sebastian 2010-06-28 19:54 Rev.: 4654

[+BUGFIX] FLOW3: Followup patch to r4653.

127 lines of code changed in 4 files:

  • Classes/MVC/View: EmptyView.php (+35 -1), JsonView.php (+37 -1), NotFoundView.php (+53 -1), ViewInterface.php (+2)
networkteam_hlubek 2010-06-09 14:19 Rev.: 4473

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

4 lines of code changed in 1 file:

  • Classes/MVC/View: JsonView.php (new 4)
networkteam_hlubek 2010-05-14 17:29 Rev.: 4297

[+TASK] TYPO3: Implemented TYPO3 error view and page not found handling for PageController. Resolves #7775.

7 lines of code changed in 1 file:

  • Classes/MVC/View: NotFoundView.php (+7 -2)
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.

5 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+3 -3), ViewInterface.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.

7 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+6 -5), NotFoundView.php (+1 -1)
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.

2 lines of code changed in 1 file:

  • Classes/MVC/View: AbstractView.php (+2 -9)
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

12 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+10 -10), ViewInterface.php (+2 -2)
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.

3 lines of code changed in 1 file:

  • Classes/MVC/View: AbstractView.php (+3 -3)
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.

2 lines of code changed in 2 files:

  • Classes/MVC/View: NotFoundView.php (+1 -1), StandardView.php (+1 -1)
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).

9 lines of code changed in 3 files:

  • Classes/MVC/View: AbstractView.php (+8 -8), StandardView.php (-2), ViewInterface.php (+1 -2)
k-fish 2009-10-22 18:22 Rev.: 3345

[~TASK] FLOW3: Added @api annotations on class level and adjusted CGL to explain class-level @api handling.

4 lines of code changed in 4 files:

  • Classes/MVC/View: AbstractView.php (+1), NotFoundView.php (+1), StandardView.php (+1), ViewInterface.php (+1)
robert 2009-10-14 13:08 Rev.: 3318

[~API] FLOW3 (MVC): Configured the AbstractView and NotFoundView to be of scope prototype instead of singleton. Make sure to annotate all your views as prototypes as well!
[~TASK] Fluid (View): TemplateView is now prototype because it can be configured. If it stayed a singleton, we'd run into big trouble when template views are nested.

2 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+1), NotFoundView.php (+1)
k-fish 2009-09-23 10:13 Rev.: 3212

[+FEATURE] FLOW3 (MVC): Removed EmptyView and made NotFoundView display helpful message instead, resolves #4405.

14 lines of code changed in 1 file:

  • Classes/MVC/View: NotFoundView.php (+14)
bwaidelich 2009-07-27 21:11 Rev.: 2900

[+TASK] FLOW3 (MVC): Added the previously committed method assignMultiple() to the ViewInterface

9 lines of code changed in 1 file:

  • Classes/MVC/View: ViewInterface.php (+9)
bwaidelich 2009-07-27 20:49 Rev.: 2899

[+FEATURE] FLOW3 (MVC): Enable bulk assignment of template variables in AbstractView. Just call $this->view->assignMultiple(array('key1' => 'value1', 'key2' => 'value2')) to set multiple keys at once. Resolves #3997
[+BUGFIX] FLOW3 (MVC): AbstractView::assign() now returns itself as stated in the comment. This enables method chaining like: $this->view->assign('key1', 'value1')->assign('key2', 'value2');
[+TASK]: FLOW3 (MVC): Tweaked NotFoundView and StandardView and added test cases for all views of the FLOW3 MVC Subpackage.
[-TASK]: Fluid (View): Removed obsolete Method assign() from TemplateView as this method already exists in the parent class. The check for the key "view" is not needed anymore since the view is stored in the VariableContainer

42 lines of code changed in 3 files:

  • Classes/MVC/View: AbstractView.php (+17), NotFoundView.php (+14 -2), StandardView.php (+11 -1)
k-fish 2009-07-27 12:06 Rev.: 2890

[+TASK] FLOW3: Moved some resources away from the public resources folder.

2 lines of code changed in 2 files:

  • Classes/MVC/View: NotFoundView.php (+1 -1), StandardView.php (+1 -1)
k-fish 2009-07-27 10:41 Rev.: 2888

[+BUGFIX] FLOW3 (MVC): When calling a controller on an inactive package the user no longer simply get's a 404 but a helpful hint. Fixes #3699.

1 lines of code changed in 1 file:

  • Classes/MVC/View: NotFoundView.php (+1)
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 5 files:

  • Classes/MVC/View: AbstractView.php (-8), EmptyView.php (-4), NotFoundView.php (-8), StandardView.php (-8), ViewInterface.php (-8)
k-fish 2009-07-15 12:28 Rev.: 2794

[TASK] FLOW3: moved from @internal to @api, resolves #3883

7 lines of code changed in 5 files:

  • Classes/MVC/View: AbstractView.php (+2 -3), EmptyView.php (-2), NotFoundView.php (+1), StandardView.php (+1), ViewInterface.php (+3)
bwaidelich 2009-05-23 17:51 Rev.: 2344

FLOW3:
* Removed FLOW3\Utility\GenericCollection from repository, it's currently not needed. Resolves #3400
* Moved method setArgumentsFromRawRequestData() from Router to RequestBuilder. Resolves #3368
* Renamed URIHelper to URIBuilder. Removed Classes HelperInterface, AbstractHelper and InvalidViewHelper Exception. Adapted AbstractView & ViewInterface. Resolves #3303
* Added section parameter to URIFor() method of the URIBuilder
* Refactored Base controllers - controllerContext is no instance variable anymore and will be created when passed to view in initializeView(). Resolves #3404
* ControllerContext is of scope prototype now. Added setter/getter for URIBuilder. Some cosmetic changes.
* Added getRequestPath() to Request.
* ControllerKeys (@controller, @action, @package, @subpackage and @format) can now be set by request arguments. Resolves #2853

0 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (-25), ViewInterface.php (-9)
robert 2009-05-20 19:14 Rev.: 2293

* FLOW3: Marked all methods as @internal except those which are considered part of the official API. Resolves #1280
* TYPO3CR: Fixed two tests of the Storage\PDO\Search testcase.

7 lines of code changed in 3 files:

  • Classes/MVC/View: AbstractView.php (+3), EmptyView.php (+3 -1), StandardView.php (+1 -1)
k-fish 2009-05-19 14:43 Rev.: 2257

FLOW3:
* removed dependency on removed View\Template in StandardView and EmptyView

6 lines of code changed in 2 files:

  • Classes/MVC/View: NotFoundView.php (+3 -4), StandardView.php (+3 -4)
robert 2009-05-15 21:15 Rev.: 2232

Bug fixes during the TYPO3 Bugday on T3DD09

* FLOW3: (MVC) Added typehint to AbstractView / ViewInterface setControllerContext()
* FLOW3: (MVC) Removed the resolving of an object's identity from the Dynamic Route Part handler. This needs to be implemented in a specialized, dedicated route part handler. Refs #1789
* FLOW3: (MVC) A Route now converts route values which are objects into their uuid.
* FLOW3: (MVC) Fixed a typo in the Router which cause a fatal error (sometimes). setRoutePartConfigurations()
* FLOW3: (MVC) Adapted the tests for the DynamicRoutePart handler

2 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+1 -1), ViewInterface.php (+1 -1)
networkteam_hlubek 2009-05-15 17:53 Rev.: 2225

Fixes #3302: implementing a Controller Context except for adding the URIhelper

18 lines of code changed in 4 files:

  • Classes/MVC/View: AbstractView.php (+9 -9), NotFoundView.php (+3 -8), StandardView.php (+3 -9), ViewInterface.php (+3 -3)
robert 2009-05-04 14:25 Rev.: 2189

* FLOW3: (MVC) Introduced a RequestInterface and a ResponseInterface and made sure those are used everywhere where the Request class was used before.
* FLOW3: (Documentation) Continued writing documentation for the MVC framework.

7 lines of code changed in 4 files:

  • Classes/MVC/View: AbstractView.php (+3 -3), NotFoundView.php (+1 -1), StandardView.php (+1 -1), ViewInterface.php (+2 -2)
k-fish 2009-04-24 13:28 Rev.: 2179

FLOW3:
* changed $viewObjectNamePattern in ActionController to expect views classes in a namespace reflecting the controller name
* renamed DefaultController to StandardController to follow suit
* renamed DefaultView to StandardView to follow suit
* updated documentation

FLOW3 Distribution:
* updated Routes.yaml

Fluid:
* renamed DefaultController to StandardController

Testing:
* renamed DefaultController to StandardController

TYPO3CR:
* renamed DefaultController to StandardController in Admin subpackage
* moved view classes to new location

66 lines of code changed in 1 file:

  • Classes/MVC/View: StandardView.php (new 66)
robert 2009-04-06 10:34 Rev.: 2143

* FLOW3: (AOP) Fixed a bug in the AOP Framework which led to proxy classes being proxied again - resulting in weird side effects like the package manager not being injected into the proxy class etc. Now the target class is being checked before building a proxy.
* FLOW3: (Fluid) Fixed a bug in the AbstractFormViewHelper: The identity hidden field were not rendered even though the "value" argument was NULL. That was due to using isset() instead of explicit comparison with NULL.

1 lines of code changed in 1 file:

  • Classes/MVC/View: AbstractView.php (+1 -1)
bwaidelich 2009-03-23 17:03 Rev.: 2023

* FLOW3(MVC): added assign($key, $value) to ViewInterface and implemented it in AbstractView to be able to call $this->view->assign() polymorphic for template based views and e.g. json-views.
* FLOW3 (Log): fixed an assertion in FileBackendTest which failed on windows systems due to an extra byte in PHP_EOL.
* FLOW3 (Security): mark RSAWalletServicePHPTest skipped if openssl extension is not installed

28 lines of code changed in 2 files:

  • Classes/MVC/View: AbstractView.php (+18), ViewInterface.php (+10)
k-fish 2009-03-03 14:46 Rev.: 1966

FLOW3:
* Package\Meta\XMLWriter now uses startDocument() instead of writeRaw()
* replaced chr(10) with PHP_EOL (where applicable!)
* replaced curly braces with square brackets for character access on strings (this is no longer the better choice...)
* replaced == with typesafe comparator === where it was used

TYPO3CR:
* replaced chr(10) with PHP_EOL (where applicable!)
* replaced curly braces with square brackets for character access on strings (this is no longer the better choice...)

1 lines of code changed in 1 file:

  • Classes/MVC/View: Template.php (+1 -1)
k-fish 2009-02-25 18:02 Rev.: 1943

FLOW3:
* added (simple) NotFoundController, refs #1511
* some tiny cleanup

66 lines of code changed in 1 file:

  • Classes/MVC/View: NotFoundView.php (new 66)
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

82 lines of code changed in 5 files:

  • Classes/MVC/View: AbstractView.php (new 72), DefaultView.php (new), EmptyView.php (new 5), Template.php (new 1), ViewInterface.php (new 4)

(19 more)

Generated by StatSVN 0.5.0