10:18:28 <erredeco> The argument "additionalAttributes" was registered with type "array", but is of type "string" in view helper "In2\Femanager\ViewHelpers\Form\TextfieldViewHelper"
11:20:37 <xaver> batjony: i use it in fluid and it works (never tried it in TS)
11:21:12 <ltrebing> xaver: I usually avoid that but my question has gone unanswered twice so far, so I assume it’s something that most people here can’t answer
11:21:36 <batjony> xaver: ok i will take a try in the fluid template
11:22:03 <BenjaminR> ltrebing: please ask again :)
11:24:53 <ltrebing> basically I want to reduce my template records to the absolute minimum and thought that it would be a good idea to have exactly one static include (for my provider extension) and then include everything else from there via INCLUDE_TYPOSCRIPT
11:25:56 <xaver> ltrebing: i don't think i can answer it completely. CSC is deeply in t3, but it can be uninstalled. normal TS is not enough. Something is added works with AddionalConfiguration.php
11:26:32 <xaver> because of the depth you need some stuff to be supported in T3 core.
11:27:59 <ltrebing> I have found that the problem is related to this: https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/setup.txt#L95
11:28:10 <xaver> ltrebing: or wait for NamelessCoder
11:29:41 <batjony> xaver, BenjaminR: ya using it like v:asset.script works
11:30:28 <ltrebing> if I include the fluidcontent_core TS via INCLUDE_TYPOSCRIPT from my provider extension, then the TS Object Browser shows me exactly this minimal tt_content.list configuration
11:31:25 <ltrebing> but if I include it as an explicit static include thingy then tt_content.list.20 is a full-featured CASE object with all the stuff that is needed to render plugins
12:33:59 <Momodedf> Could anybody help me about creating a FCE which contains other tt_content elements ?
12:36:08 <BenjaminR> Momodedf: randomresult prepared a good example based on tbs here: https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/development/Resources/Private/Templates/Content/Row.html
12:38:16 <Momodedf> Thanks you BenjaminR, I'm looking at it
12:43:09 <Momodedf> Looks like it is a more sofiticated version of what I did
12:43:56 <Momodedf> but I got the same result, an empty form with no grid, is there a required flux version ?
12:45:02 <BenjaminR> no but recommended to use latest flux and fluidcontent :)
12:47:03 <Momodedf> Arf, I've got the last in TER on my testing install ... I dont get where I'm wrong :(
12:54:08 <morgenthau> Bonjour! I have a problem with v:media.extension, maybe someone here has an idea
12:55:14 <morgenthau> I'm trying to output the file extension (e.g. PDF) of fal media in tx_news
12:56:08 <morgenthau> like that: <v:media.extension file="{f:uri.image(src:'{mediaElement.uid}' treatIdAsReference:1)}"></v:media.extension>
13:00:16 <morgenthau> hm, <v:media.extension file="{f:uri.image(src:'{mediaElement.uid}' ,treatIdAsReference:1)}"></v:media.extension> doesn't work either
13:28:36 <morgenthau> Sorry got a meeting now, will be away from the computer for some time. Thanks for the help! Any further ideas are higly appreciated :)
14:08:28 <Momodedf> :'( I realy dont get it with grids in FCE
14:10:17 <BenjaminR> create your fce at gist.github.com and i will have a look
14:30:55 <Momodedf> Oh I didnt knew github had a pastebin-like service, here is my code, I've got the sheet but no grid or new content icon https://gist.github.com/anonymous/cae4f87dfc6bf1d43a2e
14:31:57 <BenjaminR> your namespace definitions are for flux and vhs before php namespaces were introduced
14:32:46 <BenjaminR> and never define them with {namespace v=...} AND <div xmlns:v
14:40:27 <batjony> BenjaminR: i am making some ajax request to custom content elements, and now i am wondering about the ajax urls, should i use urls with no_cache =1 like index.php?id=11&bid=8&type=100&no_cache=1 or with the cHash like index.php?id=11&bid=8&type=100&cHash=eabc17071e9593424824d799cc5
14:42:29 <batjony> this content element changes often, and I think when renders it with Ajax, the output version will be not up to date
14:43:26 <BenjaminR> if performance is irrelevant you can do that - but id prefer to have a tceforms hook which clears the cache on the pages where this element is use when it is changed
17:27:13 <batjony> of course the most easy solution is to make some IF checking directly in the cotent element template based on the typeNum
17:28:45 <batjony> but is there a way to load different html ? so if I have a content element Templates/Content/Blog.html for standard requests, if we have Ajax - to load Templates/Content/BlogAjax.html ?
17:29:29 <batjony> NamelessCoder: do you have some smart idea ? :)
17:51:48 <Kaimane> Today I replaced EXT:css_styled_content with EXT:fluidcontent_core. Very nice extension and absolute clean html output. That's what I like ;-) I would like to hyphenate texts from CE Text. With EXT:css_styled_content it works "out of the box" by including static file template. But how is it possible to inject EXT:nkhyphenation in EXT:fluidcontent_core? Is it possible with TypoScript or do I
17:51:48 <Kaimane> have to create a new extension, clone the text template from EXT:fluidcontent_core and wrap {record.bodytext -> f:format.html()} with the viewhelper from EXT:nkhyphenation?
17:52:56 <NamelessCoder> Kaimane I'm pretty sure that extension works by changing the TS for lib.parseFuncHtml which is used when you use f:format.html - in other words, there's nothing in FCC that should prevent you from changing how RTE->HTML happens
18:09:11 <BenjaminR> fx your fce´s id is "test" then create a testAction() inside
18:09:20 <BenjaminR> in the testaction you can use $this->view->assign
18:09:25 <BenjaminR> to assign variables to the view
18:09:34 <NamelessCoder> Kaimane sorry, it's completely outside my usual scope
18:11:21 <batjony> BenjaminR: i have an action, but I have also some ajax logic and i need a possibility my controller to communicate also with the layout
18:12:46 <batjony> anyway tomorrow I will describe the situation with more details... :)
23:05:02 <NamelessCoder> note that menus still won't show unpublished pages
23:05:12 <Outdoorsman> I didn't really have anything good place to test it on since everything is a live site and was a little scared to break things.
23:06:03 <Outdoorsman> I looked your original notes on it an saw that wasn't checked yet.
23:06:49 <Outdoorsman> Do you know of anything else that I should try poking to break? You mentioned lot of edge cases but don't know if you had things in mind when you said that.
23:07:38 <Outdoorsman> Ahhhh... I'm soooo excited to have Workspaces again!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
23:08:11 <NamelessCoder> yeah in particular the publishing process
23:08:36 <NamelessCoder> I'm interested to see if any part of it creates problems with incorrect record values etc.
23:08:59 <Outdoorsman> I looked through the IRC logs and saw you mentioned that Workspaces cost you 20% sanity. Did it turn out to be involved as you thought?
23:09:34 <NamelessCoder> not the work itself, but aaaaaaall the refactoring leading up to it
23:09:56 <NamelessCoder> and the final word isn't out yet ;)
23:10:11 <Outdoorsman> So the refactoring was all within fluidpages or did it extend to other extensions?
23:10:40 <Outdoorsman> Yikes... ya that's not so fun.
23:12:37 <Outdoorsman> What do you mean by incorrect record values? What values? Like a particular field not keep the correct value when you create something in a Draft workspace and then publish it to live?