IRC logs

20141106

Logs from channel #fedext on freenode - our official support channel.

IRC log range: 20141106*

20141106

  • 07:51:21 <jmverges> good morning mates
  • 09:22:00 <randomresult> @namelesscoder site is absolutely crazy
  • 09:29:12 <denis-fluid> Good morning :-)
  • 09:29:23 <denis-fluid> A new day and one new question :D
  • 09:30:18 <bjo3rn> same shit, different day ^^
  • 09:30:52 <denis-fluid> Is it possible to render the flux select field options dynamically from an array setup as a TS constant?
  • 09:31:11 <bjo3rn> should be possible, yes
  • 09:32:26 <bjo3rn> plugin.tx_myext.settings.foobar = foo,bar,baz should be accessible in flux with {settings.foobar}
  • 09:33:10 <bjo3rn> see https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/setup.txt
  • 09:33:42 <bjo3rn> and https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Resources/Private/Partials/Content/Header.html
  • 09:33:58 <denis-fluid> oh perfect!
  • 09:34:25 <denis-fluid> This gets better and better and better :D
  • 09:34:30 <denis-fluid> Thank you very much bjo3rn
  • 09:34:33 <bjo3rn> yw
  • 09:47:02 <randomresult> @NamelessCoder after installing EXT:site i have a .git folder in all the extensions
  • 10:02:27 <Akii> is there an estimate when the next flux version is released? (minor patchlevel)
  • 10:08:24 <denis-fluid> bjo3rn: I've tried that now. For testing reasons I just setup a simple variable in my setup.txt - https://gist.github.com/DenisMir/d59d3c126caec1deef71 - I'm trying to render that one as items in the select field like so: <flux:field.select name="settings.switch" label="LLL:breakpoints.switchCols"
  • 10:08:25 <denis-fluid> items="{grid.breakpoints}" />
  • 10:09:10 <denis-fluid> But nothing appears in the select field. :/
  • 10:09:26 <bjo3rn> try {settings.grid.breakpoints}
  • 10:13:52 <denis-fluid> Hmm nope doesn't work.
  • 10:15:29 <bjo3rn> oh, it has to be plugin.tx_xyz,settings.grid.breakpoints in your setup.txt as well. 'settings' is important.
  • 10:18:51 <denis-fluid> ahhh ok :-)
  • 10:32:04 <denis-fluid> bjo3rn: I got the following setup now. Setup: https://gist.github.com/DenisMir/d59d3c126caec1deef71 Constants: https://gist.github.com/DenisMir/6ea74bfbf4947f5fdaca - I can see the correct settings in the constants editor of T3. When I'm trying to output one of the breakpoints in a p tag just for testing I'm getting an emtpy string. (<p>{settings.grid.breakpoints.b0}</p>) - I'm not quite sure if this should be possible :-)
  • 10:41:34 <bjo3rn> denis-fluid I don't think so. you should be able to use the constant to populate argument items of your select field now though
  • 10:42:00 <denis-fluid> I'm checking no the fluidbootstraptheme example.
  • 10:42:16 <denis-fluid> It got some examples as well. I'm getting back in a minute.
  • 10:45:25 <Kaimane> Hi at all. Yesterday I asked why the data-object is no present in my partial. I provide everything to the partial with arguments="{_all}" but if i debug {data} fluid returns "null". What to do to get data in my partial?
  • 10:46:50 <bjo3rn> Kaimane is it part of a content or page template?
  • 10:48:09 <bjo3rn> content template: {data}, page template: {page}
  • 10:48:25 <bjo3rn> or was it {record}?
  • 10:48:28 <bjo3rn> .oO
  • 10:48:40 <Akii> why not both
  • 10:48:41 <Akii> :D
  • 10:48:47 <bjo3rn> or pagerecord ^^
  • 10:48:58 <bjo3rn> what does {_all -> f:debug()} reveal?
  • 10:49:05 <Akii> page . uniqid() . record
  • 10:52:21 <Kaimane> bjo3rn: it is a template which is used by fluidpages. So it is a page template.
  • 10:54:35 <bjo3rn> it's {page} then
  • 11:00:03 <Kaimane> bjo3rn: {_all -> f:debug()} is great! {page} provides the uid of the page ;) thank you very much for that hint!
  • 11:01:57 <denis-fluid> What do I have to do that "ext_tables.php" gets executed again? (I added the seperate ts path like the one in fluidbootstraptheme)
  • 11:06:38 <denis-fluid> Forget the question I got it :D
  • 11:18:22 <denis-fluid> Hmpf I'm getting the following error now. What could that be: No value found for key "FluidTYPO3\Vhs\ViewHelpers\SwitchViewHelper->switchCaseValue", thus the key cannot be removed.
  • 11:27:20 <jmverges> hey mates, does anybody know some extension for provide comments to NEWS extension?
  • 11:44:59 <bjo3rn> denis-fluid this error happens when the switch value is NULL
  • 11:46:19 <denis-fluid> bjo3rn: Yeah I added the settings in the ts config and the switch started to fail. I found the error. I named some fields "settings.xyz" and used the value in the switch. This started failing when I added the settings to the TS setup.
  • 11:46:50 <denis-fluid> I assume that "settings." is not a good start for field names.
  • 11:48:31 <denis-fluid> But in the end I still got the same problem with the rendering of TS values. :-) - I got the following simple constants.txt: https://gist.github.com/DenisMir/62959b62795371d49624
  • 11:48:58 <denis-fluid> I can output the content simply with "{settings.grid}"
  • 11:49:43 <denis-fluid> But as soon as I change the content of "grid" to something like: grid { 10 = test } and try to access it with {settings.grid.10} it fails.
  • 11:57:57 <denis-fluid> bjo3rn: Ok when setting the grid to "grid = 10,20,30" I am able to render the 10,20,30 in the select field. But I'd like to have a key/value pair which does not seem possible I assume.
  • 12:00:59 <bjo3rn> denis-fluid sure: settings.grid { 10 = foo 20 = bar 30 = baz } (formatted as single lines ofc)
  • 12:01:30 <denis-fluid> I give it a try one sec
  • 12:04:06 <denis-fluid> bjo3rn: This leads to the following in the select field -> http://imgur.com/rdefOua
  • 12:05:05 <denis-fluid> and in the object browser I can't edit or add additional items
  • 12:54:23 <bjo3rn> denis-fluid sure, one sec
  • 12:55:08 <bjo3rn> denis-fluid http://pastebin.com/yhidSfXV
  • 13:19:12 <denis-fluid> bjo3rn: That is what I have tried. This makes it available in the object editor. But it doesn't work with the select field. :( The select field is populated with one option "{$plugin.tx_xyz.settings.grid}"
  • 13:19:51 <bjo3rn> ok, then CSV maybe. sec, I need to try something.
  • 13:19:59 <denis-fluid> Wenn I change grid to "grid = foo,bar,baz" I'm getting the select field populated with the correct items "foo,bar and baz"
  • 13:20:52 <denis-fluid> It is weird that I even can't access the values like {settings.grid.10} in the normal rendering section.
  • 13:21:04 <denis-fluid> "can't even.." :D
  • 13:22:56 <bjo3rn> hm, #worksonmymachine as shown above
  • 13:23:15 <denis-fluid> to populate a select field with that? :(
  • 13:23:33 <bjo3rn> yep
  • 13:25:11 <denis-fluid> In one line or the normal multiple line
  • 13:25:24 <bjo3rn> http://pastebin.com/aHC2tYwQ
  • 13:26:00 <Guest|99209> Hi there and thx for the great documentation. I just want to mention that link https://fluidtypo3.org/community/support-chat.html leads to the fals page, maybe you want to fix this...
  • 13:26:21 <Guest|99209> Sry, it's actually https://fluidtypo3.org/viewhelpers/fluid/master/Link/ActionViewHelper.html
  • 13:26:41 <denis-fluid> bjo3rn: I will try that once again. :/
  • 13:26:48 <Akii> haha not bad
  • 13:27:28 <bjo3rn> hi Guest|99209 thanks. we are aware of that issue.
  • 13:27:42 <danilobuerger> WE WANT SOLUTIONS!1
  • 13:27:43 <Akii> caching?
  • 13:28:12 <bjo3rn> cosmic disruption?
  • 13:28:27 <Akii> wild assumptions?
  • 13:28:38 <danilobuerger> bjo3rn did you try flushing the cache :-) ?
  • 13:28:41 <bjo3rn> human failure. pretty sure.
  • 13:29:08 <Akii> HumanCacheBackend?
  • 13:29:09 <bjo3rn> I never flush ^^
  • 13:30:07 <Guest|99209> ok, bye
  • 13:30:17 <bjo3rn> I don't have BE access thus no flush :S
  • 13:31:09 <Akii> just append an invalid chash
  • 13:31:53 <Akii> you've to know a thing or two about typo3 in order to use the documentation :D I like!
  • 13:32:20 <bjo3rn> show me you do, Akii ^^ go ahead and flush it good
  • 13:32:44 <Akii> can't flush it but force an uncached version
  • 13:32:52 <bjo3rn> do it.
  • 13:32:58 <Akii> I already did :o
  • 13:33:01 <bjo3rn> hehe
  • 13:33:05 <Akii> I know the secrets of the action VH now
  • 13:34:51 <bjo3rn> 'who you gonna call? cache busters!'
  • 13:35:02 <Akii> yip
  • 13:36:56 <denis-fluid> bjo3rn: could you paste me the whole template class. I'm totally confused why this doesn't work. (since everything else worked, I'm just wondering if the system is gettings confused with fields named "settings.<field name>")
  • 13:37:11 <denis-fluid> (template file not class)
  • 13:38:17 <bjo3rn> sure thing: http://pastebin.com/m3iT3dWY
  • 13:38:40 <bjo3rn> it's a playground template so don't look too close at the details ^^
  • 13:38:51 <denis-fluid> bjo3rn: Sure ;)
  • 13:41:10 <bjo3rn> mahlzeit
  • 13:41:17 <denis-fluid> malhzeit :-)
  • 13:58:30 <bjo3rn> back. denis-fluid? works?
  • 14:00:07 <denis-fluid> bjo3rn: I'm getting crazy. :-) I will clean up everything from the "settings.<field>" name stuff and try it again.
  • 14:01:26 <denis-fluid> bjo3rn: I will need some minutes and will get back to you. I hope the result is positive. :-) With the stuff you pastebined you get a select field with e.g. key: 10 value: foo. Correct?
  • 14:01:40 <bjo3rn> correctomnudo
  • 14:01:59 <denis-fluid> bjo3rn: Ok great :-). So I still got some hope.
  • 14:02:10 * bjo3rn is crossing fingers
  • 14:02:23 <denis-fluid> My setup is pretty normal. (nothing special)
  • 14:02:41 <denis-fluid> What does the [global] in the setup.txt mean?
  • 14:02:56 <denis-fluid> I saw that in some setup.txt files from fluidbootstraptheme
  • 14:03:21 <danilobuerger> denis-fluid typoscript ways of using conditions, [global] means no condition
  • 14:03:28 <bjo3rn> this marks the end of a condition
  • 14:03:34 <bjo3rn> ah, faster
  • 14:03:49 <denis-fluid> danilobuerger: Thank you. Ok this can't be the error.
  • 14:03:51 <bjo3rn> http://docs.typo3.org/typo3cms/TyposcriptReference/Conditions/Index.html
  • 14:04:05 <denis-fluid> thanks
  • 14:29:16 <floxx> is it safe to use container elements in combination with ter versions of ft3 extensions? are there any multilanguage bugs?
  • 14:30:24 <floxx> afair there were some bugs but i'm not sure if they still exist in ter versions (i usually used dev branch)
  • 14:47:12 <xaver> NamelessCoder: 5.3.9 is requried for the interface feature
  • 14:50:28 <danilobuerger> i thought you closed that xaver ?
  • 14:50:51 <xaver> danilobuerger: yes but claus ask yesterday inthis chan :P
  • 14:50:55 <xaver> only my bouncer was present
  • 14:51:07 <danilobuerger> ah ok
  • 14:51:20 <danilobuerger> well at least i think it was 5.3.9 when redeclaring interface was introduced
  • 14:52:02 <denis-fluid> bjo3rn: Ok here we go. I got the following setup. Simple example template: https://gist.github.com/DenisMir/85f251c13d68c84b3543 - Simple setup.txt https://gist.github.com/DenisMir/4477f935e730fce8e770 and simple constants.txt - https://gist.github.com/DenisMir/42a3d287e272b1902313
  • 14:52:48 <denis-fluid> When looking at the "Example" content element I'm still getting an empty select field. :( :(
  • 14:53:33 <danilobuerger> denis-fluid what does <f:debug>{settings.foo}</f:debug> output
  • 14:53:46 <denis-fluid> one sec
  • 14:55:27 <denis-fluid> danilobuerger: This is the output -> https://gist.github.com/DenisMir/00866b7b702034a0fa49
  • 14:55:53 <danilobuerger> and thats your problem
  • 14:56:23 <denis-fluid> danilobuerger: :-) And what is the solution to this problem? *g*
  • 14:56:51 <denis-fluid> I'm scratching my head since two hours and don't know how to solve the problem. :/
  • 14:57:00 <danilobuerger> i wonder why the constant is not parsed..
  • 14:57:19 <danilobuerger> move the constant foo to setup and see if the select renders properly
  • 14:59:15 <denis-fluid> Now I get the following debug message which seems ok now: https://gist.github.com/DenisMir/00866b7b702034a0fa49
  • 14:59:38 <danilobuerger> that looks fine, does the select render in BE ?
  • 15:00:34 <denis-fluid> And the select field looks like this: http://imgur.com/Kmlkl9X :(
  • 15:01:18 <danilobuerger> hmm
  • 15:02:34 <danilobuerger> then i have no advice left.. you will have to debug it
  • 15:02:58 <denis-fluid> ok :(
  • 15:03:16 <denis-fluid> But thank you for your help.
  • 15:03:31 <denis-fluid> Have you got an idea why the constants don't get parsed correctly?
  • 15:04:09 <danilobuerger> no idea, but i would first get it to work without constants
  • 15:08:55 <bjo3rn> denis-fluid I don't think you can have a ts constant which is an array editable in ts editor
  • 15:09:07 <bjo3rn> unless it's a csv value
  • 15:09:20 <bjo3rn> thus it makes no sense having a constant here, right?
  • 15:09:34 <denis-fluid> That would make sense yeah.
  • 15:09:37 <bjo3rn> *associative array i.e.
  • 15:10:08 <denis-fluid> But it does not make sense that the select field is not rendering even when the setup.txt contains the array.
  • 15:10:14 <bjo3rn> true
  • 15:11:29 <bjo3rn> does your provider extension have a vendor prefix?
  • 15:11:40 <bjo3rn> ach, nvm.
  • 15:12:19 <bjo3rn> where and how did you generate that debug message above?
  • 15:12:48 <denis-fluid> I generated the debug message in the "Main" section.
  • 15:12:57 <denis-fluid> in the frontend rendering
  • 15:13:15 <denis-fluid> And I am able to do something like <p>{settings.foo.10}</p>
  • 15:13:23 <denis-fluid> which gives me "foo"
  • 15:13:32 <bjo3rn> .oO
  • 15:13:33 <denis-fluid> in the frontend (as expected)
  • 15:14:08 <denis-fluid> Where would I set the vendor prefix?
  • 15:14:20 <denis-fluid> I just generated the extension with the fluidtypo3 builder
  • 15:14:22 <bjo3rn> nvm, that was out of scope here
  • 15:14:29 <denis-fluid> ok :-)
  • 15:17:48 <danilobuerger> bjo3rn constant is fine
  • 15:18:31 <bjo3rn> danilobuerger and how would you edit that in the be?
  • 15:18:37 <danilobuerger> denis-fluid please see fcc as it does the same thing https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Resources/Private/Partials/Properties/Header.html https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/setup.txt https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/constants.txt
  • 15:18:46 <danilobuerger> bjo3rn i meant as csv
  • 15:19:00 <bjo3rn> then it's no longer associative
  • 15:19:17 <bjo3rn> he want key/value pairs for the select field
  • 15:19:43 <danilobuerger> yeah
  • 15:20:09 <bjo3rn> ah! you mean as in header type?
  • 15:20:16 <bjo3rn> didn't know that was possible. cool!
  • 15:20:39 <bjo3rn> https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/constants.txt#L16
  • 15:21:03 <danilobuerger> i thought you did as you commited to that file ;-)
  • 15:21:26 <bjo3rn> don't remember what I commited :S
  • 15:21:35 <denis-fluid> danilobuerger: I will try that out.
  • 15:23:45 <denis-fluid> danilobuerger: But it is not exactly what I want. I want to have multiple items by default. When I understand the header example correctly it sets type to "1" and you can select in the options from "1,2,3,4,5 or 6"
  • 15:24:10 <denis-fluid> But I want options "1,2,3,4" and want to be able to change these selection of options.
  • 15:24:24 <danilobuerger> try to get the select box working first through setup
  • 15:25:08 <denis-fluid> I'm trying to
  • 15:28:56 <NIMIUS|johannes> we are planning some FCE's atm. Quick question: Is some sort of inheritance possible?
  • 15:29:58 <bjo3rn> denis-fluid your select field is empty? can you check the markup for anything unusual (chrome dev tools, firebug)?
  • 15:30:12 <denis-fluid> bjo3rn: Yeah one sec.
  • 15:31:01 <bjo3rn> NIMIUS|johannes please be a little more specific. interitance of values or templates?
  • 15:31:16 <bjo3rn> s/t/h
  • 15:31:59 <NIMIUS|johannes> sorry, templates. I want to have one basic element and extend it by one attribute for another element
  • 15:33:14 <denis-fluid> bjo3rn, danilobuerger: Ok I got something weird. Here is the template: https://gist.github.com/DenisMir/6b972e594ff93dcd7301- breakpoint is empty and breakpointTwo is correctly populated.
  • 15:33:21 <danilobuerger> NIMIUS|johannes use partials like fcc does
  • 15:33:28 <bjo3rn> well, you could use partials
  • 15:33:32 <bjo3rn> dangit!
  • 15:33:35 <bjo3rn> ^^
  • 15:34:29 <bjo3rn> one stupid question denis-fluid: is your provider extension tx_xyz? ^^
  • 15:34:39 <denis-fluid> Nope it is not ;)
  • 15:35:02 <bjo3rn> you know what I mean ^^
  • 15:35:35 <bjo3rn> is the extension key correct?
  • 15:35:41 <denis-fluid> I just too that for the examples. :-)
  • 15:35:47 <denis-fluid> (took)
  • 15:36:07 <denis-fluid> I don't understand why the short form is not working. :/
  • 15:36:10 <danilobuerger> denis-fluid whats your real extension key?
  • 15:36:11 <NIMIUS|johannes> that could be an idea. thanks
  • 15:37:06 <denis-fluid> danilobuerger: "droid_boilerplate"
  • 15:37:29 <danilobuerger> and in your TS do you use plugin.tx_droid_boilerplate or plugin.tx_droidboilerplate?
  • 15:37:37 <bjo3rn> eew, underscore
  • 15:37:40 <denis-fluid> the second one
  • 15:37:55 <danilobuerger> ok, the second one is correct
  • 15:38:00 <Guest|23559> could anyone please add a hint that the fluid.format.date viewhelper needs a @ prefix when casting a timestamp :)
  • 15:38:00 <denis-fluid> which got generated from the builder but I was never sure if that is correct
  • 15:38:32 <denis-fluid> Ok so this is correct
  • 15:38:42 <danilobuerger> if you are using the second one, yes
  • 15:38:57 <danilobuerger> it would be nice if you could gist template and setup again with real keys
  • 15:39:11 <denis-fluid> I'm thinking about dropping the underscore altogether to rule out an error there.
  • 15:39:14 <danilobuerger> underscores in ext keys are dangerous
  • 15:39:15 <bjo3rn> you can kill us afterwards to keep the secret ^^
  • 15:39:42 <denis-fluid> haha
  • 15:41:10 <NIMIUS|johannes> everything, that is not lowercase is dangerous in extkeys
  • 15:46:38 <denis-fluid> Ok I got one question. Does the folder name of the folder that contains the extension matter or is it only the "\FluidTYPO3\Flux\Core::registerProviderExtensionKey('<key>', 'Page');" that matters?
  • 15:54:30 <gbod> NIMIUS|johannes Except ascii characters ... hopefully ;)
  • 15:54:50 <bjo3rn> denis-fluid if you made some mistake here the extension wouldn't work at all so this should be fine (besides it is builder generated).
  • 16:00:31 <batjony> hello Feders
  • 16:01:54 <batjony> i want to use an image field in a custom CE, and i am wondering what should I use - flux:field.file or flux:field.inline.fal ?
  • 16:02:18 <batjony> what is the big difference between both helpers
  • 16:02:31 <batjony> as I see the second one could be used for unlimited files
  • 16:03:03 <batjony> but if I need only 1 file/image - what is the difference when using both helpers
  • 16:03:05 <denis-fluid> bjo3rn: Yeah. I changed the key now. It is without underscores now but the problem remains. :(
  • 16:06:26 <denis-fluid> bjo3rn and danilobuerger: What makes me wonder is that fluidbootstraptheme does use the "{v:variable.typoscript(path: 'plugin.tx_xyz.settings.foo')}" as well for their access to settings stuff.
  • 16:16:51 <jmverges> just for room consideration: there are a lot of extensions that don't work properly installed as global
  • 16:31:50 <mhmli> Are you aware that https://fluidtypo3.org/viewhelpers/vhs/master/Page/Menu/DirectoryViewHelper.html (and other pages=) always show the f:security.ifAuthenticated content?
  • 16:52:16 <denis-fluid> danilobuerger or bjo3rn: Is it required to set the extensionKey in the ts setup like here -> https://github.com/FluidTYPO3/fluidcontent_core/blob/development/Configuration/TypoScript/setup.txt
  • 16:52:35 <Akii> mhmli: yes
  • 16:59:18 <denis-fluid> Ok I give up for now I don't get the reason for the null settings in the backend :/
  • 16:59:52 <Akii> what backend
  • 17:00:07 <denis-fluid> Akii: The T3 backend :-)
  • 17:01:14 <denis-fluid> The Typoscript settings are only accessible with "{v:variable.typoscript(path: 'plugin.tx_xyz.settings.foo')}" when I try to use them in the <f:section name="Configuration"> e.g. as data source for a select field.
  • 17:01:15 <Akii> tried module.tx_yourext < plugin.tx_yourext?
  • 17:01:46 <denis-fluid> When I do something like {settings.foo} the value is always null
  • 17:02:11 <denis-fluid> But when I do that in <f:section name="Main"> {settings.foo} shows the correct value
  • 17:02:29 <Akii> hmm
  • 17:02:46 <denis-fluid> I have tried a lot. I looked in the examples of fluidcontent_core and fluidbootrstraptheme
  • 17:02:59 <denis-fluid> But nothing fixed the issue. :(
  • 17:03:50 <denis-fluid> And I got a absolutely basic setup. The extension generated by the normal fluidtypo3 builder
  • 17:05:16 <Akii> I don't see the problem.. why not use v:variable.typoscript then
  • 17:05:41 <denis-fluid> Well I just want to understand why the shortform does not work.
  • 17:05:54 <denis-fluid> (danilobuerger and bjo3rn said that it should work fine)
  • 17:07:09 <Akii> have you tried the module thing already?
  • 17:07:12 <denis-fluid> And in addition when I try to set the value not in the setup.txt but in the constants.txt it doesn't work at all. "{v:variable.typoscript(path: 'plugin.tx_xyz.settings.foo')}" leads to {$plugin.tx_xyz.settings.foo} as value. (it seems that the constants don't get parsed correctly)
  • 17:07:40 <denis-fluid> Akii: Nope that's something I haven't tried untill now. Lets check.
  • 17:09:34 <Akii> maybe flux could get rid of TS completely by introducing a way of configuring stuff with like yaml or smth :D
  • 17:09:55 <denis-fluid> Akii: Ok I added the "module.tx_yourext < plugin.tx_yourext" to my setup.txt but still the same behavior. Hmpf :D
  • 17:10:02 <Xatenev> https://justgetflux.com/
  • 17:10:19 <Akii> damn
  • 17:11:56 <denis-fluid> Akii: I have to give up for now. I will be back in a few minutes. :/
  • 17:33:37 <rosieres> Is there a way to write raw to the head section? IMHO Asset shout allow that
  • 17:43:22 <rosieres> got it
  • 17:46:35 <rosieres> just for the record:<v:asset name="foo" external="TRUE" standalone="TRUE" allowMoveToFooter="FALSE"><!--[if gte IE 9]><style type="text/css">foo</style><![endif]--></v:asset>
  • 19:41:43 <denis_droid> Good evening :-)
  • 19:56:00 <danilobuerger> denis_droid == denis_fluid?
  • 19:57:21 <denis_droid> danilobuerger: Correct. :-)
  • 19:58:09 <danilobuerger> denis_droid check out flux development, i think then {settings.bla} will work for you in the config section
  • 19:59:07 <denis_droid> The flux developement branch?
  • 19:59:12 <danilobuerger> yes
  • 19:59:16 <denis_droid> I will give it a try :-)
  • 20:04:29 <denis_droid> danilobuerger: Is the „extensionKey = fluidcontent_core“ in the setup.txt view section important?
  • 20:04:35 <danilobuerger> no
  • 20:04:45 <danilobuerger> did you try flux development branch?
  • 20:05:01 <denis_droid> I’m doing it right now.
  • 20:11:34 <denis_droid> danilobuerger: I have updated my test environment here at home to flux 7.1.2 (I had been at 7.1.1) and now it is working. (having it setup in the setup.txt)
  • 20:13:53 <danilobuerger> very good
  • 20:14:30 <denis_droid> danilobuerger: Ok great. The last step would be to define them as constants (but I don’t know if this is possible)
  • 20:15:32 <denis_droid> danilobuerger: I’ve tried that now and I’m still getting the {$plugin…..}
  • 20:15:47 <danilobuerger> yeah, thats probably not possible
  • 20:15:56 <denis_droid> Ok. But that’s ok.
  • 20:16:56 <denis_droid> Sometimes it’s better to try that stuff after having a break :-)
  • 20:19:38 <denis_droid> Thank you very much for your help and patience danilobuerger!
  • 21:33:48 <xaver> http://imgur.com/tZJQsKg you should always use a nice console :)
  • 21:44:27 <denis_droid> ahhhhhh :D
  • 21:45:05 <denis_droid> What is the best way to create sections inside a flux form sheet?
  • 22:07:58 <gbod> denis_droid: Take a look https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/development/Resources/Private/Templates/Content/Accordion.html
  • 22:08:13 <denis_droid> gbod: Thank you I will.
  • 22:51:51 <denis_droid> Does someone have an idea why I’m always getting a second „Fluid Content Area“ when creating a translation for a page and switching to the „Languages“ view. I got my column from the page layout and below there is always a Fluid Content Area
  • 22:54:46 <xaver> this are elements on 18118 (or similiar id)
  • 22:59:30 <denis_droid> xaver: Hmm. So it is normal to see the normal main column and below the same again in a fluid content area?
  • 23:48:25 <jmverges> hi there
  • 23:49:31 <jmverges> NamelessCoder, what was you bad experience with PageLayoutView?
  • 23:54:34 <jmverges> I'm seeing the code and is a messy class, a lot of ifs
  • 23:57:45 <jmverges> a 500lines function cannot be well done
  • 23:58:14 <jmverges> just in my imho