Activity
From 2009-06-29 to 2009-07-28
2009-07-28
-
21:01 Bug #4028 (Resolved): Email Uri Helper creates a link tag instead of an URI
- Applied in changeset r2914.
-
20:17 Bug #4028 (Resolved): Email Uri Helper creates a link tag instead of an URI
- \F3\Fluid\ViewHelpers\Uri\EmailViewHelper actually does the same as \F3\Fluid\ViewHelpers\Link\EmailViewHelper - crea...
-
21:01 Bug #4027 (Resolved): options-argument of the SelectViewHelper should not be optional
- Applied in changeset r2914.
-
20:05 Bug #4027 (Resolved): options-argument of the SelectViewHelper should not be optional
- The SelectViewHelper expects $this->arguments['options'] to be an array. A Select field without options wouldn't make...
-
20:26 Revision 7286ef57: [+FEATURE] Fluid (Core): Added "not equal" Comparator. Now you can use booleanArgument="{foo} != {bar}" in your template
- [TASK] Fluid (Core): Whitespace- and doc comment tweaks in ViewHelperNode, TagBuilder, EmailViewHelper amd ThenViewHe...
-
19:58 Bug #3792: Special tag attributes for form view helpers are missing (e.g. size)
- Christopher Hlubek wrote:
> Form input elements can have a lot of HTML attributes e.g. for the size or maxlength.
>... -
13:55 Revision ee2556be: [~TASK] Fluid (Documentation): adjusted IDs in the docbook sources.
- [~TASK] Fluid (Service): the docbook generator adds an ID to the section it generates.
2009-07-27
-
23:41 Revision 961b7fd2: [TASK] Fluid (View): Refactored TemplateView. Now, We're using a clever fallback scheme to resolve Partials and Templates.
- [!!!] Fluid (View): In case you used Partials until now, the Syntax changed! Partials are not allowed to have / in fr...
-
22:01 Feature #3997 (Resolved): Enable bulk assignment of template variables
- Applied in changeset r2899.
-
14:54 Feature #3997 (Resolved): Enable bulk assignment of template variables
- Currenly TemplateView::assign() expects two arguments: the key and the value of the variable to assign. When lots of ...
-
21:49 Revision bf0a33ad: [+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 chaini...
-
18:03 Revision 361ad47b: [TASK] Fluid (Core): Removed a few @api annotations.
-
18:02 Bug #3994 (Resolved): Viewhelpers are instanciated multiple times in ViewHelperNode
- Applied in changeset r2895.
-
14:38 Bug #3994 (Accepted): Viewhelpers are instanciated multiple times in ViewHelperNode
-
12:36 Bug #3994 (Resolved): Viewhelpers are instanciated multiple times in ViewHelperNode
- In the evaluate() method of \F3\Fluid\Core\Parser\SyntaxTree\ViewHelperNode there is...
-
17:45 Revision 758a2e10: [+BUGFIX] Fluid (Core): ViewHelpers are not anymore instanciated multiple times for one tag in the template. Now, you can store values inside a ViewHelper, f.e. to see how often it has been rendered. Fixes #3994.
-
11:27 Task #3987 (Resolved): Inconsistent attribute naming in Form view helper
- The action link view helper uses the following attributes for specifying the action:...
-
11:17 Bug #3443: Unreachable code in TemplateView
- I roughly fixed this in r2873, however the partials rendering mechanism still needs to be checked by Sebastian.
-
10:40 Bug #3985 (Resolved): f:form.textbox is not usable anymore without wrapping an f:form element
- Hi,
you have been able to use ViewHelper form.textbox as standalone to create an input field.
Since some time (cann...
2009-07-26
-
11:54 Story #3714: Add advanced validation of ViewHelper arguments
- So sorry, this is a mix up. Of course it can't be protected, the v3 patch changes this to public as it is on my other...
2009-07-25
-
22:37 Story #3714 (Needs Feedback): Add advanced validation of ViewHelper arguments
- Hey Christian,
I just had a quick look at the patch, and I still have two questions:
1) How can initializeRende...
2009-07-24
-
17:34 Revision 2b986cd3: [~BUGFIX] FLOW3 (Validation): The ValidatorResolver test case failed - but only if the Blog package was installed. This was due to some Blog model being used by a data provider which in reality should have been a sample, not existing class. Fixed that.
- [~TASK] FLOW3 (Validation): The TextValidator was too restrictive because it did not allow line breaks and other comm...
-
17:04 Revision 08c95808: [~BUGFIX] Fluid (ViewHelpers): Fixed a failing test of the For view helper introduced in the last commit.
-
16:47 Revision 32458fc8: [+FEATURE] Fluid (ViewHelpers): Introduced a new attribute "reverse" to the for view helper which allows for iterating reversely over arrays and SPLObjectStorages.
-
13:21 Bug #3969: "Fatal error: Objects used as arrays.." with PHP 5.2.0
- We considered in TYPO3 core not to make workarounds for PHP Bugs - these will be fixed in later releases anyway
-
00:43 Bug #3969: "Fatal error: Objects used as arrays.." with PHP 5.2.0
- As far as I know this was actually a problem in some PHP releases, so an PHP update fixing this bug seems OK to me. I...
2009-07-23
-
17:39 Bug #3969 (Closed): "Fatal error: Objects used as arrays.." with PHP 5.2.0
- I spend some time now, to understand this error:
Fatal error: Objects used as arrays in post/pre increment/decreme... -
16:30 Revision 90a1d988: [+BUGFIX] Fluid (View): Fixed the partials render method. Now partials do basically work, however I don't recommend using them yet until tests and further fixes have been written.
-
16:20 Revision 63ca0b83: [+TASK] Fluid (Documentation): Updated the documentation regarding the new "absolute" and "format" attributes for URI view helpers.
-
15:36 Story #3714 (Resolved): Add advanced validation of ViewHelper arguments
- Patch v2 working good with some basic testing. Think it could be integrated, what do I have to do now with the patch?
-
15:12 Revision 4ebbc8c0: [+FEAT] Fluid (ViewHelper): The Action View Helper and the URI Builder now support rendering of absolute URIs. This comes in handy if you need an URI pointing to your feed or the like. Absolute URIs can be generated by specifying the "absolute" property: <f:link.action action="index" controller="Post" absolute="TRUE" />...
-
13:39 Revision adb4bd63: [+FEAT] FLOW3 (MVC): The format of a request may now contain any character which allows to specify formats like "rss.xml" or "foo.bar.baz.html" instead of just "xml".
- [~TASK] FLOW3 (Validation): Fixed an exception message in the Validator Resolver.
[+FEAT] Fluid (View): While resolvi...
2009-07-22
2009-07-21
-
23:01 Feature #3861 (Resolved): Backport fluids f:form:errors feature
- Applied in changeset r977.
2009-07-20
-
08:16 Feature #3861: Backport fluids f:form:errors feature
- I'll give it a try now.
Greets,
Sebastian
2009-07-17
-
17:02 Bug #3676 (Resolved): SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- Applied in changeset r2832.
-
16:25 Bug #3676: SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- I discussed that with Bastian and we decided to name the methods @getIdentifierByObject@ and @getObjectByIdentifier@....
-
15:44 Bug #3676: SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- Karsten Dambekalns wrote:
> I am currently using @$this->persistenceManager->getBackend()->getUUIDByObject($value)@ ... -
15:31 Bug #3676: SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- Bastian Waidelich wrote:
> Let's try to keep this abstract to be able to backport this to extbase. Instead of workin... -
15:09 Bug #3676: SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- Let's try to keep this abstract to be able to backport this to extbase. Instead of working with UUIDs or UIDs we migh...
-
14:53 Bug #3676: SelectViewHelper should automatically use the persistence manager to determine the UID of an object
- Hi,
* for the @value@ try to use
*# optionValueField
*# UUID
*# __toString()
* for the @label@ try to use
*# option... -
14:28 Bug #3676 (Accepted): SelectViewHelper should automatically use the persistence manager to determine the UID of an object
-
16:53 Revision eb506230: [+BUGFIX] Fluid (ViewHelper): SeelctViewHelper now handles collections of objects passed as options as expected virtually always, fixes #3676
- [~TASK] FLOW3: renamed getUUIDByObject() to getIdentifierByObject() and getObjectByUUID() to getObjectByIdentifier(),...
2009-07-16
-
16:02 Revision 4cfed346: [+TASK] FLOW3: Removed file level docblocks and @package/@subpackage annotations.
- [+TASK] Fluid: Removed file level docblocks and @package/@subpackage annotations.
[+TASK] Kickstart: Removed file lev...
2009-07-15
-
16:32 Revision e832d00e: [!!!][~TASK] FLOW3: Renamed the directory "Public" to "Web" and the constant FLOW3_PATH_PUBLIC to FLOW3_PATH_WEB accordingly.
- [!!!][~TASK] FLOW3: Renamed the folder for packages which are included in the FLOW3 distribution from "Distribution" ...
-
13:21 Revision e4a087ef: [TASK] Fluid: moved from @internal to @api, relates to #3883
2009-07-14
2009-07-13
2009-07-09
-
18:13 Feature #3861 (Resolved): Backport fluids f:form:errors feature
- nothing more to say :).
2009-07-08
-
14:19 Revision daa712d8: [-API] FLOW3 (Package): Removed the getPackagePAth() and getPackageClassesPath() from the Package Manager because they were redundant. Please use $package->getPackagePath() and $package->getClassesPath() respectively.
- [~API] FLOW3 (Package): In the class Package renamed getPackageMetaDataPath() and getPackageDocumentationPath() to ge...
-
09:36 Story #3714: Add advanced validation of ViewHelper arguments
- New patch for FLOW3, just with the change to the AbstractViewHelper and a call to it in ViewHelperNode, but I am not ...
2009-07-03
-
20:23 Story #3714 (Accepted): Add advanced validation of ViewHelper arguments
- I am working on FLOW3 port an cleanup, patch next week.
2009-07-02
-
23:05 Bug #3814 (Resolved): whitespaces at the end of FormViewHelper.php
- Thanks, this is now resolved in tx_fluid trunk!
Greets,
Sebastian -
23:04 Revision 0f4baaca: Fluid:
- [+FIX] (ViewHelpers): Removed trailing whitespace in FormViewHelper, refs #3814
-
22:59 Feature #3293 (Resolved): support for legacy TypoScript (with . at end)
- committed. Thanks and sorry for the long delay!
Greets,
Sebastian -
15:16 Revision 84b213d6: [TASK] FLOW3 (Tests): Fixed some issues found while trying PHPUnit 3.4
- [TASK] Fluid (Tests): Fixed some issues found while trying PHPUnit 3.4
[TASK] TYPO3CR (Tests): Fixed some issues foun...
2009-07-01
-
17:22 Bug #3814 (Resolved): whitespaces at the end of FormViewHelper.php
- In file:
root / fluid / trunk / Classes / ViewHelpers / FormViewHelper.php
please remove whitespaces after ... -
11:21 Revision 158bb19e: Set next version number of package Fluid to 1.0.0-alpha3
-
11:21 Revision 6962133e: Tagged package Fluid as version 1.0.0-alpha2
2009-06-30
-
17:48 Revision 66885964: * [TASK] FLOW3 (Package): Removed the "state" tag from the Package.xml files and the related code. Resolves #3559
-
16:24 Revision 6edfdbc1: * [TASK] Fluid: Fixed a comment.
-
13:10 Revision 15b292d0: [TASK] Fluid (ViewHelpers): removed useless use statement
-
09:52 Revision 3a85918d: Fluid:
- * [FIX]: Fixed XML Schema generation
-
09:46 Feature #3725: CSS Engine
- Hi Christian,
that sounds really like a good plan! I'd suggest you'd develop the ViewHelper for FLOW3 first, and the... -
09:20 Feature #3725: CSS Engine
- I will try to convert the CSS Cacheer into a ViewHelper. LessCSS looks nice (especially syntax) but all the features ...
-
09:44 Story #3714: Add advanced validation of ViewHelper arguments
- Hey Christian,
first of all - thanks for your nice work :-)
I have some comments:
- in the ValidatorResolver y... -
09:16 Story #3714 (Needs Feedback): Add advanced validation of ViewHelper arguments
- As this is my first bigger patch, would be great if someone could look it over and comment...
-
01:01 Revision 1ca389ff: * [TASK] Fluid (ViewHelpers): Implemented a first version of error marking on form view helpers. Refs #3793
2009-06-29
-
23:39 Revision 2d245dd7: [TASK] Fluid (ViewHelpers): some documentation and code tweaks
-
23:15 Revision 308173d3: * [TASK] Fluid (ViewHelpers): Fixed file headers
-
23:02 Feature #3802 (Resolved): View helper for form errors
- Applied in changeset r2661.
-
22:39 Feature #3802 (Resolved): View helper for form errors
- There should be a view helper to display errors for a form or for the whole action. It should iterate over all error ...
-
23:02 Feature #3791 (Resolved): View helper for resource URIs
- Applied in changeset r2661.
-
22:40 Revision beffb7b1: * [TASK] Fluid (ViewHelpers) Implemented a resource URI view helper, resolves #3791
- * [TASK] Fluid (ViewHelpers) A basic errors view helper (f:form.errors) to display form errors, resolves #3802
-
21:38 Revision d58a736a: [TASK] Fluid (ViewHelpers): Added tag attributes for disabled, maxlength, readonly and size to the TextboxViewHelper for text input fields, refs #3792
-
21:31 Revision 2a5d1cfe: * [FIX] FLOW3 (MVC): Arguments are reset on each call to processRequest, fixes #3795
- * [FIX] FLOW3 (MVC): Fixed wrong type hints in AbstractController and added the param for redirect arguments
* [+FEAT... -
11:27 Story #3714: Add advanced validation of ViewHelper arguments
- The attached diff changes some files (mostly extBase) and tries to put most of the code into central place.
Also available in: Atom