Bastian Waidelich [Mon, 19 Jul 2010 19:40:53 +0000 (19:40 +0000)]
[+TASK] Fluid (Tests): Backported FormViewHelperTest from Fluid package
[+BUGFIX] Fluid (ViewHelpers): FormViewHelper wraps hidden fields with a div tag to create XHTML valid output. This fixes #5512 (backported from Fluid package)
Bastian Waidelich [Mon, 19 Jul 2010 18:09:46 +0000 (18:09 +0000)]
[~TASK] Fluid (ViewHelpers): Fixed BE support of the ViewHelpers cObject, format.crop, uri.resource. Relates to #8947
[~TASK] Fluid (ViewHelpers): Added BE support in the ViewHelpers format.html and image. Relates to #8947
Bastian Waidelich [Thu, 15 Jul 2010 17:25:11 +0000 (17:25 +0000)]
[!!!][+TASK] Fluid (ViewHelpers): The value argument is required again in form.checkbox and form.radio ViewHelpers. This is a breaking change, as the value argument has not been mandatory for a while. But it probably won't break existing templates as omitting the value makes no sense at all. Relates to #8852 (backported from Fluid package r4864)
[+FEATURE] Fluid (Core): implemented overrideArgument() method in AbstractViewHelper to be able to override previously registered arguments in subclasses. This resolves #8852 (backported from Fluid package r4864)
[+BUGFIX] Fluid (Core): Negative numeric values are properly converted to FALSE when used in boolean ViewHelper arguments. This resolves #8893 (backported from Fluid package r4864)
Bastian Waidelich [Thu, 15 Jul 2010 15:08:09 +0000 (15:08 +0000)]
[+BUGFIX] Fluid (ViewHelpers): Reversed the rendering order of header and childNodes in be.container ViewHelper to enable child nodes to modify the pageRenderer. This resolves #8880 (thanks to Andreas Wolf)
Bastian Waidelich [Tue, 13 Jul 2010 14:27:02 +0000 (14:27 +0000)]
[+BUGFIX] Fluid: Removed leading slash from @var annotations that were backported by mistake
Bastian Waidelich [Tue, 13 Jul 2010 14:17:07 +0000 (14:17 +0000)]
[+BUGFIX] Fluid: Replaced SplObjectStorage by Tx_Extbase_Persistence_ObjectStorage to be PHP 5.2-compatible (which ships with a broken implementation of SplObjectStorage)
[!!!][~TASK] Fluid (Core): Renamed ConditionViewHelper and TagBasedViewHelper to Abstract*ViewHelper as per CGL. (backported from Fluid package r4840). To be backwards-compatible, TagBasedViewHelper.php still exists and will write an entry to TYPO3s deprecation log if used. Please adapt your custom ViewHelpers and inherit from AbstractTagBasedViewHelper instead of TagBasedViewHelper. This resolves #8834
[~TASK] Fluid: Marked vfs unit tests to be skipped, as vfs is not part of v4 (yet)
Bastian Waidelich [Tue, 13 Jul 2010 10:12:30 +0000 (10:12 +0000)]
[-TASK] Fluid: Removed @package/@subpackage annotations from all Fluid classes. They have already been removed in FLOW3 packages in r2813.
Bastian Waidelich [Tue, 13 Jul 2010 09:42:26 +0000 (09:42 +0000)]
[-TASK] Fluid: Removed @version annotation from all Fluid classes to ease the backporting process. Relates to #8835 (backported from Fluid package)
Bastian Waidelich [Tue, 13 Jul 2010 09:13:21 +0000 (09:13 +0000)]
[+BUGFIX] Fluid (View): fixed method signature of AbstractTemplateView:getTemplateSource() that was different from the concrete implementation (backported from Fluid package)
Sebastian Kurfürst [Mon, 12 Jul 2010 20:18:26 +0000 (20:18 +0000)]
Fluid in v5 and v4 are now synchronized again!
[+FEATURE] Fluid: The TemplateVariableContainer now provides a method to retrieve all variables.
[~TASK] Fluid (Core): Introduced a RenderingContextInterface to more cleanly decouple Fluid's rendering context from the TypoScript rendering context. Note that view helpers (and other code) should now refer to that interface instead of the concrete Fluid implementation!
[!!!][+BUGFIX] Fluid (Core): Refactored all Condition-ViewHelpers like f:if, f:security.if* to use a newly created base class F3\Fluid\Core\ViewHelper\ConditionViewHelper. This greatly simplifies the implementation of custom conditions. However, THIS IS A BREAKING CHANGE in case you copied the f:if ViewHelper to create a custom condition ViewHelper, as the internal workings changed. Please check the new f:if ViewHelper to see how to adjust your ViewHelper -- you basically just have to throw away a lot of code. Resolves #8824.
[!!!][-API] Fluid (TemplateView): Removed renderSection() and renderWithLayout() from public API in Tx_Fluid_View_TemplateView, as this should only be called from inside Fluid.
[!!!][TASK] Fluid (ViewHelpers): the <f:section />-ViewHelper now does NOT render itself anymore when encountered in a normal template. Example: Before the change, the template "before <f:section name='...'> middle </f:section> after" was rendered as "before middle after", but now it is only rendered as "before after". Although this is a breaking change, it is quite unlikely that anybody relied on this behavior, as it was inconsistent beforehand.
[TASK] Fluid (TemplateView): Major refactoring of the layout, partial and section rendering mechanism. This also induces a speedup as retundant rendering is eliminated.
[+FEATURE] Fluid (ViewHelpers): The <f:render>-ViewHelper can be now used to render sections in the same partial and template. In these cases, all arguments need to be specified explicitely. Additionally, it can now be used to render a section recursively.
[~TASK] Fluid (Core): Removed some non-API-methods which were never called.
Bastian Waidelich [Mon, 12 Jul 2010 13:55:21 +0000 (13:55 +0000)]
[+FEATURE] Fluid (ViewHelpers): format.crop ViewHelper now supports all features in Backend mode. Relates to #8648
Bastian Waidelich [Fri, 25 Jun 2010 09:57:00 +0000 (09:57 +0000)]
[+TASK] Fluid: Set dependency to Extbase 1.2.x in ext_emconf.php to avoid confusions when working with different versions
Bastian Waidelich [Thu, 24 Jun 2010 19:34:52 +0000 (19:34 +0000)]
[+TASK] Fluid: Backported recent changes from Fluid package:
[+FEATURE] Fluid (ViewHelpers): added "selectAllByDefault" argument to form.select ViewHelper. Resolves #4984
[~TASK] Fluid (Parser): Got rid of the constructor in Parser\Configuration.
Bastian Waidelich [Thu, 24 Jun 2010 10:14:25 +0000 (10:14 +0000)]
[+FEATURE] Fluid (ViewHelpers): Added uri.image ViewHelper. This resolves #8233
[+FEATURE] Fluid (ViewHelpers): Added URI options noCache, noCacheHash, section, format, additionalParams, absolute, addQueryString & argumentsToBeExcludedFromQueryString to FormViewHelper. Resolves #8247
[+BUGFIX] Fluid: Removed a leading backslash in ViewHelperBaseTestcase that led to an error with PHP < 5.3
[+TASK] Fluid: Backported some recent Fluid changes (Note: this is not a complete backport, there are still changes in Fluid Package that are not backported yet):
[+BUGFIX] Fluid (ViewHelpers): form.select ViewHelper did only check whether "multiple" attribute was set and not whether it was empty or not. Resolves #5879
[+FEATURE] Fluid (ViewHelpers): GroupedForViewHelper can now group by object. Resolves #7389
Sebastian Kurfürst [Tue, 22 Jun 2010 11:08:51 +0000 (11:08 +0000)]
Raised Fluid version number to 1.2.0
Sebastian Kurfürst [Fri, 18 Jun 2010 10:48:47 +0000 (10:48 +0000)]
Raising version number to 1.2.0RC1
Bastian Waidelich [Fri, 18 Jun 2010 10:38:07 +0000 (10:38 +0000)]
[+BUGFIX] Fluid: Removed some debug code introduced with the latest commit. Sorry for this.
Bastian Waidelich [Fri, 18 Jun 2010 10:28:31 +0000 (10:28 +0000)]
[!!!][+TASK] Fluid: Template filenames are expected to be UpperCamelCased from now on. For a grace period there is still a fallback mechanism, so that your old template filenames will still work. But you should rename your templates from "myaction.html" to "MyAction.html" to make sure, that it still works in upcoming versions of Fluid! Resolves #7243
Sebastian Kurfürst [Fri, 18 Jun 2010 09:19:33 +0000 (09:19 +0000)]
[+BUGFIX] Fluid (Core): Putting form fields in partial now works as expected. Resolves #4277.
Sebastian Kurfürst [Fri, 18 Jun 2010 08:50:00 +0000 (08:50 +0000)]
[+BUGFIX] Fluid (Core): AbstractViewHelper does not flood the syslog anymore. Resolves #5783.
Bastian Waidelich [Thu, 17 Jun 2010 16:18:34 +0000 (16:18 +0000)]
[TASK] Fluid: Replaced some RuntimeExceptions by Tx_Fluid_Core_ViewHelper_Exception_InvalidVariableExceptions in ViewHelperVariableContainer to get green unit tests again
[TASK] Fluid: Added new Exception classes to ext_autoload.php
Bastian Waidelich [Thu, 17 Jun 2010 15:58:40 +0000 (15:58 +0000)]
[TASK] Fluid: Automatic backport from Fluid package. Mostly comment fixes and smaller tweaks
Sebastian Kurfürst [Tue, 15 Jun 2010 17:33:21 +0000 (17:33 +0000)]
[~BUGFIX] Fluid (ViewHelpers): Fixed a half-finished documentation. Related to #5638.
Sebastian Kurfürst [Tue, 15 Jun 2010 11:49:15 +0000 (11:49 +0000)]
[+BUGFIX] Fluid (Core): Now, it is possible to "unselect" checkboxes in editing forms; also with multiselect checkboxes. Resolves #5638
Sebastian Kurfürst [Tue, 15 Jun 2010 07:06:45 +0000 (07:06 +0000)]
[+BUGFIX] Fluid (Core): Fixed misleading exception. Resolves #7417.
Felix Oertel [Tue, 1 Jun 2010 12:36:53 +0000 (12:36 +0000)]
[+BUGFIX] Fluid (ViewHelpers): added auto-detection of string-format and propper cropping of HTML. Resolves #7743
Sebastian Kurfürst [Sun, 2 May 2010 13:00:47 +0000 (13:00 +0000)]
* Raised version to 1.2.0beta1
Sebastian Kurfürst [Fri, 16 Apr 2010 08:39:18 +0000 (08:39 +0000)]
[+BUGFIX] Fluid (ViewHelpers): escapeViewHelper now takes encoding of resulting web page into account. Resolves #7292.
Steffen Ritter [Sat, 27 Mar 2010 12:10:48 +0000 (12:10 +0000)]
Updated ext_autoload.php to match Backport in Rev 2043
Sebastian Kurfürst [Fri, 19 Mar 2010 12:12:15 +0000 (12:12 +0000)]
[+FEATURE] Fluid (ViewHelpers): The <f:form.error> ViewHelper now supports property paths for the "for"-Argument. Now, one can display only the errors of a given property of an object. Example: In the Blog Example, one could now write <f:form.errors for="blog.title">.
Sebastian Kurfürst [Tue, 16 Mar 2010 10:56:16 +0000 (10:56 +0000)]
[+TASK] Fluid (ViewHelpers): Improved Documentation in *PageViewHelper. Thanks to Falk Kühnel for the suggestion! Resolves #6297.
Sebastian Kurfürst [Tue, 16 Mar 2010 10:51:45 +0000 (10:51 +0000)]
[+BUGFIX] Fluid (ViewHelpers): f:link.action can now be used inside f:form without breaking hmac verification. Resolves #6809, Resolves #6808, Resolves #6514. Thanks to Peter Niederlag for providing a patch!
Sebastian Kurfürst [Tue, 16 Mar 2010 10:31:30 +0000 (10:31 +0000)]
* Raised version number to alpha2
Sebastian Kurfürst [Tue, 16 Mar 2010 10:31:00 +0000 (10:31 +0000)]
[+BUGFIX] Fluid (Core): Fixing a parse error in PHP 5.2.X in TemplateParser. Resolves #6870.
Sebastian Kurfürst [Tue, 16 Mar 2010 08:49:45 +0000 (08:49 +0000)]
[!!!][TASK] Fluid: Raised version number to 1.1.0. This version needs Extbase 1.1.0 as well!
[TASK] Fluid: Backported all changes from Fluid v5 again. This includes mostly some internal restructurings.
[!!!][TASK] Fluid (ViewHelpers): The <f:base> ViewHelper now creates a self-closing tag instead of an opening/closing tag. This is standards-conformant, but will BREAK IE6!!
Sebastian Kurfürst [Tue, 16 Mar 2010 08:27:53 +0000 (08:27 +0000)]
* Re-adding tests
Sebastian Kurfürst [Tue, 16 Mar 2010 08:26:20 +0000 (08:26 +0000)]
* Temporarily deleting tests. Will be re-added at next commit.
Sebastian Kurfürst [Sun, 29 Nov 2009 10:45:05 +0000 (10:45 +0000)]
[+BUGFIX] Fluid (ViewHelpers): Fixing potential XSS Attack if $TYPO3_CONF_VARS['SYS']['sitename'] contains malicious code. Resolves bug #12764 on bugs.typo3.org.
Michael Stucki [Wed, 25 Nov 2009 21:53:57 +0000 (21:53 +0000)]
Add missing SVN properties for new or modified files
Oliver Hader [Wed, 25 Nov 2009 13:40:22 +0000 (13:40 +0000)]
Revert last change
Oliver Hader [Wed, 25 Nov 2009 13:35:42 +0000 (13:35 +0000)]
[TASK] Updated version to 1.0.1 and cleaned ext_emconf.php
Oliver Hader [Tue, 17 Nov 2009 21:23:38 +0000 (21:23 +0000)]
[TASK] Fluid: Updated version to 1.0.0 and cleaned ext_emconf.php
Sebastian Kurfürst [Wed, 11 Nov 2009 14:51:34 +0000 (14:51 +0000)]
[+BUGFIX] Fluid (ViewHelpers): Removed newline at beginning of Crop ViewHelper, in front of <?php
Sebastian Kurfürst [Sun, 8 Nov 2009 08:52:41 +0000 (08:52 +0000)]
* increased version numbers to 0.9.17
Sebastian Kurfürst [Sun, 8 Nov 2009 08:51:02 +0000 (08:51 +0000)]
* Many non-functional changes (comments etc)
* ObjectAccessorPostProcessor again works now :-)
Sebastian Kurfürst [Fri, 6 Nov 2009 04:55:55 +0000 (04:55 +0000)]
* Raising version number to 0.9.12
Sebastian Kurfürst [Thu, 5 Nov 2009 10:32:57 +0000 (10:32 +0000)]
[!!!][+BUGFIX] Fluid (ViewHelpers): FIxed the Resource ViewHelper to be in sync with FLOW3 again. This means that instead of writing <f:uri.resource>...</f:uri.resource>, you write <f:uri.resource path="..." /> or {f:uri.resource(path:'...')}. Resolves #5237.
Sebastian Kurfürst [Thu, 5 Nov 2009 08:37:52 +0000 (08:37 +0000)]
[+BUGFIX] Fluid (Core): Now, the inline notation also works if spaces are before and after ->. This makes it a lot more error-tolerant.
[~TASK] Fluid: Backported the recent changes in v5, which are some additional non-functional checks, a new exception hierarchy and updated comments.
Sebastian Kurfürst [Thu, 5 Nov 2009 08:14:25 +0000 (08:14 +0000)]
[TASK] Fluid (ViewHelpers): Comment Fixes
Bastian Waidelich [Thu, 29 Oct 2009 11:20:10 +0000 (11:20 +0000)]
[+FEATURE] Fluid (ViewHelpers): extended cObject viewhelper by an additional "data" argument. Now you can write {f:cObject(typoscriptObjectPath: 'lib.someCObject', data: someObject)} in your templates. This change is backwards compatible! Relates to #5150
[+FEATURE] Fluid (ViewHelpers): extended translate viewhelper by an additional "default" argument. Now you can write {f:translate(key: 'someLocallangKey', default: 'some fallback')} in your templates. This change is backwards compatible! Relates to #5150
Sebastian Kurfürst [Thu, 29 Oct 2009 07:24:15 +0000 (07:24 +0000)]
[!!!][+FEATURE] Fluid: Strings inside Arrays and the inline notation are now parsed by Fluid as well. This enables things like {fullName: '{firstName} {lastName}'} - thus, everything can be nested inside arrays and the ViewHelper inline notation arguments. This is a breaking change in case you used literal {...} inside your arguments, but not else. Relates to #5118.
[+FEATURE] Fluid (ViewHelpers): extended format.date viewhelper by an additional "date" argument. Now you can write {f:format.date(date: 'yesterday')} in your templates. This change is backwards compatible! Relates to #5150
[+FEATURE] Fluid (ViewHelpers): extended if viewhelper by arguments "then" and "else". Now you can write {f:if(condition: 1, then: 'yes', else: 'no'} in your templates. This change is backwards compatible! Relates to #5150
[~TASK] Fluid (Core): added check for reserved keywords to TemplateVariableContainer. This relates to #5158
[~TASK] Fluid (Tests): moved and renamed VariableContainerTest
~TASK] Fluid (Core): Changed method names (handler_*) in TemplateParser, resolves #5135.
[~TASK] Fluid (Tests): Cleanup to comments and "framework code", resolves #5136.
Sebastian Kurfürst [Mon, 26 Oct 2009 09:48:45 +0000 (09:48 +0000)]
[+FEATURE] Extbase (Utility): Localization Helper now supports sprintf format strings and an optional array argument. Most of this patch has been provided by Bastian. Relates to #4858. Resolves #5003
[+FEATURE] Fluid (Utility): Translation ViewHelper now supports sprintf format strings and an optional array argument. Relates to #5003
[~TASK] Viewhelpertest: Adjusted examples for f:translate. Relates to #5003
Sebastian Kurfürst [Mon, 26 Oct 2009 06:08:39 +0000 (06:08 +0000)]
[+BUGFIX] Fluid (Core): Validation of ViewHelper arguments is non-mandatory now, as there is no validator for each domain object / we do not always want to call it. Resolves #5108.
[+BUGFIX] Fluid (Core): Shorthand Syntax of ViewHelpers can now use longer namespace prefixes than one character. Resolves #5107.
Sebastian Kurfürst [Sat, 24 Oct 2009 11:49:45 +0000 (11:49 +0000)]
[~TASK] Fluid: Added @package and @subpackage annotations.
Sebastian Kurfürst [Sat, 24 Oct 2009 11:01:38 +0000 (11:01 +0000)]
* Adding @api annotations
* Changed the fluid-specific RuntimeException to SPL's RuntimeException.
Bastian Waidelich [Wed, 21 Oct 2009 16:59:03 +0000 (16:59 +0000)]
[~TASK] Fluid (ViewHelpers): Added some checks to make form view helper usable without the surrounding f:form tag. This resolves #3985 (backported from v5)
Bastian Waidelich [Wed, 21 Oct 2009 16:02:16 +0000 (16:02 +0000)]
[+BUGFIX] Fluid: register universal tag attributes in link.email view helper. This resolves #5069.
[+TASK] Fluid: added some standard tag attributes to link.email, link.action and link.external view helpers (backported from v5)
Sebastian Kurfürst [Wed, 21 Oct 2009 10:18:44 +0000 (10:18 +0000)]
* Increasing version number to 0.9.11
Sebastian Kurfürst [Wed, 21 Oct 2009 10:07:45 +0000 (10:07 +0000)]
* WHitespace changes
* ObjectAccessorNode now fails silently if no variable found
Sebastian Kurfürst [Wed, 21 Oct 2009 09:53:26 +0000 (09:53 +0000)]
[!!!][+FEATURE] Fluid (Core): Removed the old Shorthand Syntax, and added a new chainable syntax for ViewHelpers. ADJUST YOUR TEMPLATES in case you use the {f:….()} syntax! Resolves #5033.
[+TASK] Fluid (Core): The object accessor node now uses FLOW3 reflection service instead of custom implementation. This should be functionally equivalent
[+TASK] Fluid: Improved doc comments
[+TASK] Fluid: Improved test cases by removing some not needed stub classes
[+TASK] Fluid (Core): added API annotations in AbstractViewHelper. TagBasedViewHelper
Sebastian Kurfürst [Tue, 20 Oct 2009 03:39:21 +0000 (03:39 +0000)]
* Fixed doc comments
* Raised version to 0.9.10
Jochen Rau [Tue, 13 Oct 2009 15:30:07 +0000 (15:30 +0000)]
[+BUGFIX] Fluid (ViewHelpers): Added check, if the given value implements the Iterator interface. This is important to allow objects like the Object Storage to be traversed.
Sebastian Kurfürst [Mon, 12 Oct 2009 06:23:39 +0000 (06:23 +0000)]
[+FEATURE] tx_fluid (ViewHelpers): Prepared ViewHelpers for Request Hash (HMAC) generation. Relates to #4960.
[+FEATURE] tx_fluid (Core): Implemented editing of properties for nested objects in forms. Resolves #3702.
[+TASK] tx_fluid: Backported everything which results in comment-changes and some formatting changes.
Sebastian Kurfürst [Sat, 10 Oct 2009 12:36:37 +0000 (12:36 +0000)]
* Backported a few testcases
Sebastian Kurfürst [Fri, 9 Oct 2009 17:40:07 +0000 (17:40 +0000)]
Moved unit tests around
Sebastian Kurfürst [Fri, 9 Oct 2009 14:57:20 +0000 (14:57 +0000)]
[TASK] tx_fluid: Backported some non-functional changes
Jochen Rau [Thu, 8 Oct 2009 13:27:37 +0000 (13:27 +0000)]
[-TASK] Fluid (Core): Removed previous added registration of event handler attributes. Use "additionalAttributes" instead.
Jochen Rau [Tue, 6 Oct 2009 08:43:43 +0000 (08:43 +0000)]
[+BUGFIX] Fluid (Core): Added event handler tags to universal tags in TagBasedViewHelper.
Jochen Rau [Tue, 6 Oct 2009 08:43:36 +0000 (08:43 +0000)]
[~TASK] Fluid: Tweaked icon.
[~TASK] Fluid: Recreated ext_autoload.php.
Sebastian Kurfürst [Mon, 5 Oct 2009 15:09:59 +0000 (15:09 +0000)]
* Small bugfix. sorry guys :-)
Sebastian Kurfürst [Mon, 5 Oct 2009 15:08:38 +0000 (15:08 +0000)]
[TASK] BlogExample: Adjusted TypoScript _LOCAL_LANG settings as needed in recent commit. Related to #4905.
Sebastian Kurfürst [Mon, 5 Oct 2009 13:31:02 +0000 (13:31 +0000)]
* Small cleanup - check if controllerContext is set to prevent fatal error in rare cases.
Bastian Waidelich [Mon, 28 Sep 2009 20:59:02 +0000 (20:59 +0000)]
[+BUGFIX] Fluid(ViewHelpers): Replaced calls to $GLOBALS['LANG'] by $GLOBAL['TSFE'] if $GLOBALS['LANG'] is not available. This fixes #4794
Sebastian Kurfürst [Thu, 24 Sep 2009 09:00:40 +0000 (09:00 +0000)]
Raising version to 0.9.9
Bastian Waidelich [Wed, 23 Sep 2009 20:47:14 +0000 (20:47 +0000)]
[~BUGFIX] Fluid (ViewHelpers): fixed and tweaked format.crop view helper (BE mode)
[-TASK] Fluid (ViewHelpers): removed instanceof check from be.menus.actionMenu view helper to enable wrapping of menuItems in <f:if> blocks
Bastian Waidelich [Wed, 23 Sep 2009 15:33:06 +0000 (15:33 +0000)]
[+FEATURE] Fluid(ViewHelpers): Added BE view helpers be.container, be.buttons.csh, be.buttons.icon, be.menus.actionMenu, be.pageInfo & be.tableList. NOTE: BE view helpers are still experimental and subject of change!
[+FEATURE] Fluid(ViewHelpers): TranslateViewHelper now fully works in BE mode and respects BE user language. This relates to #3292
[~BUGFIX] Fluid(ViewHelpers): Email addresses are now prepend with "mailto:" in uri.email view helper (BE mode)
[+TASK] Fluid(ViewHelpers): uri.resource view helper now prepends "../" to relative URIs in BE mode
[~BUGFIX] Fluid(Tests): Fixed some unit tests so that they run green. We still need more tests and a way to simulate FE mode from phpunit.
Sebastian Kurfürst [Thu, 17 Sep 2009 13:59:19 +0000 (13:59 +0000)]
Raising Version Number to 0.9.6 in preparation for 4.3beta1
Bastian Waidelich [Thu, 17 Sep 2009 13:14:01 +0000 (13:14 +0000)]
[+FEATURE] Fluid (Viewhelpers): Added uri.resource view helper
Bastian Waidelich [Thu, 17 Sep 2009 12:50:44 +0000 (12:50 +0000)]
[~BUGFIX] Fluid (Tests): Fixed two test cases that broke due to the fact that unit tests run in BE mode.. We'll have to find a way to simulate FE mode in unit tests!
Bastian Waidelich [Thu, 17 Sep 2009 12:44:23 +0000 (12:44 +0000)]
[+FEATURE] Fluid (Viewhelpers): Added backend mode support for view helpers base, cObject, format.crop (partly), link.email, translate (partly), uri.email. Now only image- and renderFlashMessages view helpers are not working in BE
Bastian Waidelich [Thu, 17 Sep 2009 10:27:54 +0000 (10:27 +0000)]
[!!!][+FEATURE] Fluid (TemplateView): made layoutRootPath and partialRootPath configurable. Now templateRootPath defines the path to the "Templates" folder. LayoutRootPath & PartialRootPath can be specified independently. Related to #3296.
[~TASK] Fluid: Backported some whitespace changes from Fluid package
Bastian Waidelich [Wed, 16 Sep 2009 16:56:17 +0000 (16:56 +0000)]
4207[~TASK] Fluid: made action argument optional in Uri/ActionViewHelper. Relates to #4207.
Bastian Waidelich [Wed, 16 Sep 2009 16:52:53 +0000 (16:52 +0000)]
[~TASK] Fluid: tweaked exception that is thrown when trying to iterate through non-traversable objects in ForViewHelper
[~TASK] Fluid: fixed typo in ForViewHelperTest
[+FEATURE] Fluid: added CycleViewHelper. Resolves #4458
[+FEATURE] Fluid: added GroupedForViewHelper. Resolves #4460
[+TASK] Fluid: added test case for PaddingViewHelper. Relates to #4459
Bastian Waidelich [Wed, 16 Sep 2009 16:44:18 +0000 (16:44 +0000)]
[~TASK] Fluid: Backported fixed method parameter documentation found by new reflection service checks.
Sebastian Kurfürst [Wed, 16 Sep 2009 10:40:53 +0000 (10:40 +0000)]
[+FEATURE] Fluid (ViewHelpers): Added a Form Password ViewHelper, to generate password input boxes. Resolves #4648.
Sebastian Kurfürst [Wed, 16 Sep 2009 10:06:17 +0000 (10:06 +0000)]
[+FEATURE] Fluid (ViewHelpers): Added a PaddingViewHelper
[+FEATURE] Fluid (ViewHelpers): Added a RenderFlashMessages ViewHelper
[TASK] Fluid (Core): Added a PaddingViewHelper
[TASK] Fluid (Core): Added an exception if ViewHelpers declare an argument multiple times.
Sebastian Kurfürst [Wed, 16 Sep 2009 08:52:05 +0000 (08:52 +0000)]
[~TASK] Fluid: Added the debug mode constant from Fluid v5 to ease backporting
Jochen Rau [Tue, 15 Sep 2009 14:25:42 +0000 (14:25 +0000)]
[+BUGFIX] Fluid (ViewHelpers): Fixed TranslateViewHelper. LLLabels can now be overwritten via TS (plugin.tx_blogexample.settings._LOCAL_LANG .default.read_more = more).
Jochen Rau [Mon, 14 Sep 2009 08:15:06 +0000 (08:15 +0000)]
[+FEATURE] Fluid (ViewHelpers): Added a simple CountViewHelper.
Sebastian Kurfürst [Sun, 13 Sep 2009 18:59:22 +0000 (18:59 +0000)]
[+BUGFIX] Fluid: Fixed fatal error and missing uid to __identifier conversion.
Sebastian Kurfürst [Sat, 12 Sep 2009 14:20:56 +0000 (14:20 +0000)]
[+BUGFIX] Extbase (Property): Fixed the property mapper by backporting the FLOW3 changes. Now we support mapping of 1:1 relations as well. Resolves #4357.
Bastian Waidelich [Fri, 4 Sep 2009 16:08:17 +0000 (16:08 +0000)]
[+FEATURE] Fluid (ViewHelpers): added "format" argument to action- and page-viewHelpers. Now you can create links like "<f:link.action format="xml" />"
[~TASK] Fluid (Tests): Adapted ViewHelperBaseTestcase to the latest Exbase changes
Sebastian Kurfürst [Tue, 1 Sep 2009 06:58:55 +0000 (06:58 +0000)]
[~TASK] Fluid: Raised version number to 0.9.5.
Bastian Waidelich [Mon, 31 Aug 2009 19:10:20 +0000 (19:10 +0000)]
[FEATURE] Fluid (ViewHelpers): Backported checkbox & radio form viewHelpers from Fluid
[-BUGFIX] Fluid (ViewHelpers): Removed unused "options"-argument from formViewHelper
[+FEATURE] Fluid (ViewHelpers): Added "actionUri"-argument to formViewHelper which allows to explicitly set the forms action attribute
[~TASK] Fluid (ViewHelpers): Adapted viewHelpers to latest changes of UriBuilder (Extbase revision 1179)
[~BUGFIX] Fluid (ViewHelpers): SubmitViewHelper now correctly extends Tx_Fluid_ViewHelpers_Form_AbstractFormFieldViewHelper
[-TASK] Fluid (Tests): Removed obsolete file ViewHelperBaseTestcase_testcase.php
Sebastian Kurfürst [Mon, 31 Aug 2009 11:09:50 +0000 (11:09 +0000)]
[FEATURE] Fluid (TemplateView): Made templateRootPath configurable. Related to #3296.
Jochen Rau [Wed, 26 Aug 2009 10:24:07 +0000 (10:24 +0000)]
[+FEATURE] Fluid (View): Prepared Fluid to enable 'format' aware templates (like "show.html" and "show.json"). Related to #4120.
Jochen Rau [Mon, 24 Aug 2009 09:48:48 +0000 (09:48 +0000)]
[+BUGFIX] Fluid: Added missing reference in ext_autoload.php. Resolves #4287.
Jochen Rau [Fri, 14 Aug 2009 08:54:47 +0000 (08:54 +0000)]
[+BUGFIX] Fluid (TemplateParser): The View Helper name is now resolved correctly even if it has more than two levels (like f:foo.bar.baz). Added Unit Test. Resolves #4231.
Jochen Rau [Mon, 10 Aug 2009 23:39:22 +0000 (23:39 +0000)]
[~TASK] Fluid (ViewHelpers): Follow-up. Added several files.
Jochen Rau [Mon, 10 Aug 2009 23:37:02 +0000 (23:37 +0000)]
[~FEATURE] Fluid (ViewHelpers): Adjusted AbstractFormViewHelper to be able to namespace arguments. Fixed several Unit Tests. The patch was provided by Bastian. Thanks a lot! Resolves #3317.