10:28:04 <rosieres> TBH: There´s no need for a custom VH if you use FLUID it has builtin -> See this -> http://fluidtypo3.org/viewhelpers/fluid/master/Format/DateViewHelper.html
10:29:50 <rosieres> BUT: If you have an issue with the output of this VH be sure that you do not have any linebreaks in the <f:formate.date/> declaration . . . it messes up
10:33:00 <Harpagophyt> it is the extension gb_events and i need the date with german names
10:35:26 <rosieres> if you have set the locale settings in ts correct, the output should be german
10:40:37 <rosieres> Harpagophyt: repeat myself -> https://bitbucket.org/gutebotschafter/gb_events/src/27895e7b0814a9077a9f400550e90fc646baa57b/Resources/Private/Templates/Event/Calendar.html?at=master there you can see it uses Locale Date Output for the Month as of %B
10:49:27 <Harpagophyt> hmmmmm, i add this viewhelper, changed and checked the locales but also in english ... - mysterious
10:50:17 <Harpagophyt> shell: > locale -a # line: de_AT.utf8
10:52:09 <Harpagophyt> no - not yet *g*: TS Object Browser: [locale_all] = "de_AT.utf8"
10:52:38 <batjony> I am using fluidpages, and in Page Configuration I have set same template for main and sub pages, is it possible in the other "Page Configuration" tab to hide the options for the sub pages, because both main pages and sub pages use same template, and there is no sense to see same options twice ?
10:56:36 <Harpagophyt> batjony: what if you want other options for subpages
10:58:52 <Harpagophyt> if i call setlocale(LC_TIME, "de_AT.utf8"); in the view helper it works - very funny
11:28:14 <Guest|82707> Hi! Can someone tell me why an action in the ContentController of my provider extension is not executed? I followed this (http://fluidtypo3.org/documentation/templating-manual/advanced-provider-extensions/custom-flux-controllers/controller-actions.html) part of the manual. In my PageController everything works fine. Using all the newest version of
12:27:17 <Guest|96874> Hi, iam trying to create a table, that shows all users, but my template fails with memory exhausted error. do you have some hints when to use partials, and when not. is there a difference memorywise between tagsyntax and inline syntax? thx for any help
12:48:01 <Fizelchen> Hi, i just upgraded to the latest flux dev and get the following error on my PID=1, where my root template is stored
12:48:02 <Fizelchen> Fatal error: Class 'TYPO3\CMS\Core\Versioning\VersionState' not found in /html/typo3/typo3conf/ext/flux/Classes/ViewHelpers/Be/ContentAreaViewHelper.php on line 132
13:06:09 <xaver> Guest|96874: you create for every user a "big" object - this needs resources
13:09:33 <gbod_> Guest|96874: You might slim down the user objects to only the properties needed in your table
13:14:59 <Harpagophyt> what could be wrong if i use: <flux:field.input name="settings.carousel.id" default="{v:random.string(length: 8)}" /> and if i use it in the main section it is empty
13:34:12 <gbod_> Hi, after updating fluidpages to current development head all of my backendlayouts break. I found out that it breaks with commit https://github.com/FluidTYPO3/fluidpages/commit/6353dab98eba6fa3ebb981718d9f40f0bda85d21 Anybody out there having the same experiences?
13:34:38 <gbod_> xaver: nope, sorry, no time at that weekend. :(
13:54:10 <batjony> a quick question, could someone say why this does not work <f:link.page additionalParams="{'{dynamicParamName}': '{dynamicParamValue}'}" />
13:54:23 <batjony> i want both the param name and value to be variable
13:54:36 <NamelessCoder> fluid simply doesn't work that way
13:54:46 <NamelessCoder> what you write there would require dual parsing
13:55:36 <batjony> how can I refactor this syntaxis in order to work
13:56:07 <NamelessCoder> I suggest building those parameters in PHP instead
13:58:40 <batjony> NamelessCoder: for example <?php $this->view->assign('test', array($dynamicParamName => $dynamicParamValue)); ?> and then <f:link.page additionalParams="{test}" /> ?
14:31:26 <Fizelchen> is flux 7.1 only compatible with Typo3 6.2.x ?
14:32:17 <Fizelchen> i get an error with flux 7.1 staging in Typo3 6.1.10: Fatal error: Class 'TYPO3\CMS\Core\Versioning\VersionState' not found in /html/typo3/typo3conf/ext/flux/Classes/ViewHelpers/Be/ContentAreaViewHelper.php on line 133
17:01:26 <papillon6> Hi all! I'm struggling with a caching problem in fluid. Page generation is very slow, due to a complex navigation-structure, which needs several nested for-each-loops in fluid. Analizing the cached entry in typo3temp/Cache/... revealed that all iterations (for-each) are still in the cached file. Is there a way to cache a ready-rendered HTML-structure instead?
17:16:28 <TorstenFink> Hi there, i have a Problem with the current flux/fluidcontent github staging and typo3 6.1.10, image references are not copied, anyone has infos to this?
17:16:44 <TorstenFink> i found something that this is a problem of typo3, maybe its fixed in 6.2.?
17:23:22 <TorstenFink> come one someone is here ;)
18:07:22 <william_klee> it's me again :) that still about the link field when a page is selected, i can see the page'id in the input field but i need to display page's title in the input field. Did some search but find anything about it.
18:37:50 <gbod_> NamelessCode: Great and constant code quality. Really nice.
23:48:24 <irnnr> I have a multi tree installation, and would like to use fluidpages for only one of the sites for now. Any way I can disable fluidpages for the other sites?
23:56:18 <gbod_> irnnr: take a look into the ext_tables.php of https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme There you can see the way fluidpages and fluidcontent are turned on an off. You can do it in the same way based on the page uid of your tree you like to use fluidpages in.
23:57:07 <gbod_> Basically it's all about registering your provider extension for one of the special use cases Pages or Content.