13:51:31 <batjony> guys can I set somehow a page template automatically based on the page type (doktype) ?
13:53:34 <batjony> so for example if I have a page with doktype NEWS then automatically set a page template Private/Templates/Page/NewsPageTemplate.html
13:54:05 <batjony> NamelessCoder: is it possible ?
15:34:57 <batjony> someone could explain me why a syntaxis like:
15:35:02 <batjony> {f:if(condition: '{record.starttime}', then: '{record.starttime}')} works
15:35:21 <batjony> but when I try to format the date like:
15:35:26 <batjony> {f:if(condition: '{record.starttime}', then: '{record.starttime}->f:format.date(format:'d-m-Y')')} - then doesn work
15:43:11 <batjony> btw if I try only this: {record.starttime -> f:format.date(format:'d-m-Y')} also does not work and says "1415708770" could not be parsed by \DateTime constructor "
15:52:35 <batjony> bjo3rn: do you have also answer about my previous question, if I can set somehow a page template automatically based on the page type (doktype) ?
15:52:47 <Guest|11377> Hi there, I have problems with assets and caching
15:52:58 <Guest|11377> all my js and css files are included twice
15:53:17 <Guest|11377> I've read on this chat, about it but without solution
15:53:35 <jmverges> hey NamelessCoder, what about sysutils? is working?
15:53:42 <bjo3rn> Guest|11377 this has been fixed in the current dev branch see https://github.com/FluidTYPO3/vhs/pull/712
16:27:25 <batjony> guys I have extended the pages table and added some images FAL field called 'featured_images', which works fine, but I have some troubles when trying to output 'featured_images' in a page template
16:27:31 <batjony> what i am trying is http://pastebin.com/c2dNeydL
16:34:36 <batjony> i think such syntaxis is supported
16:34:37 <batjony> see https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/development/Resources/Private/Templates/Content/ImageGallery.html#L34
16:34:59 <batjony> this is the example which I have used and it works fine with content elements
16:48:46 <NamelessCoder> no, that would load your images from the page, not the content element. I assume you ARE building a content element since you're using v:CONTENT.resources.fal?
16:49:27 <bjo3rn> at the end of the day that should be the same, doesn't it?
16:49:29 <batjony> no, i am just trying to render some of the page properties in a fluid page template
16:50:09 <NamelessCoder> bjo3rn each of the content/page specific viewhelpers perform slightly different lookups and have different defaults - most obviously, the table parameter has a different value
16:50:09 <batjony> oo ya I see, I cant use v:content.resources.fal in this case ?
16:50:22 <NamelessCoder> which is why if you use the content VH in a page content you get what batjony gets
16:50:29 <NamelessCoder> switch to https://fluidtypo3.org/viewhelpers/vhs/development/Page/Resources/FalViewHelper.html batjony
16:50:31 <bjo3rn> sure, but in this case it's the only difference. the default table
16:50:39 <NamelessCoder> it's the VITAL difference
16:51:21 <bjo3rn> ja-haa. what I am trying to say is that table="pages" would work as well with the content.fal dealio
16:51:52 <NamelessCoder> default table as well as default fieldname
16:52:26 <NamelessCoder> but you are correct: you can make content.resources.fal, page.resources.fal and resources.record.fal work exactly the same way if you assign every argument
16:52:29 <bjo3rn> yeah, that's like poking the cube into the round hole in that kid's toy
16:52:46 <NamelessCoder> you can "there, I fixed it" it ;)
16:53:12 <bjo3rn> exactly. let's not confuse him more than he is. NamelessCoder is right.
17:47:06 <tbrodard> Dilemna: my partner is for creating a standard extbase domain model, with record, TCA, ... and so on, but I'm "tired" to repeat again and again the same things for each plugin. Can Flux / Fluidcontent be used to "replace" the standard way to create Extbase plugins ?
17:47:36 <tbrodard> i.e.: can Flux be used to define the Flexform of a standard plugin ?
18:08:23 <gbod> tbrodard: Yes, flux can be used for this kind of thing.
18:08:57 <tbrodard> Do you have a link to an example ?
18:12:16 <gbod> tbrodard: And for the model and tca - https://github.com/FluidTYPO3/fluidshare
18:27:45 <tbrodard> OK, thanks, I will have a look at them
19:54:18 <ulrikkold> is there a good (and/or simple) explanation as to why I get no RTE features when I use <flux:field.text enableRichText="1" label="textareaName"/> in my site provider extension?