11:29:07 <justcasoer> i just updated vhs and after i updated all namespaces i get a new errormsg: Could not analyse class:FluidTYPO3\Vhs\ViewHelpers\Var\SetViewHelper maybe not loaded or no autoloader?
11:29:17 <justcasoer> can someone help mich with this one?
11:32:42 <NamelessCoder> replace v:var.set with v:variable.set (and check the change log, there are others!)
11:43:23 <justcasoer> Thank you very much! You saved my day!
11:58:57 <NamelessCoder> but that's not what you should do. Check the typolink reference what it requires as type of the "ATagParams" configuration array member then make sure you pass that format
11:59:21 <NamelessCoder> if it wants an array, you need to pass ATagParams: {class: 'button', onClick: 'something();'}
11:59:48 <NamelessCoder> if it wants a string, that string likely needs a custom format for those properties, for example 'class=button onclick=something();'
12:01:04 <Guest|65234> in doc it is said to do it like this:
12:02:26 <NamelessCoder> multiple things tell me it's not official docs, for one thing the formatting. We always put spaces between array keys and previous values
12:02:53 <NamelessCoder> the code you gave does not appear on that page
12:04:08 <Guest|65234> please could you just give me an example how to generate a vhs link with class and onclick
12:04:11 <NamelessCoder> the docs really do not say to do it that way. They say that "configuration" is supposed to be an array, can be defined inline if you wish, or come from a variable. How that array must be structured is noted in the docs the main text links to, on the official TYPO3 docs site (since we do not document that array - it is entirely TYPO3 core and also applies many other places than Fluid)
12:05:11 <NamelessCoder> that depends on how you defined that link - the TCA of buttonListObject.item.link.
12:05:28 <NamelessCoder> if it contains an URL I would just use simple <a href=""> tags.
12:06:21 <NamelessCoder> if it is a link wizard then you do need this v:link.typolink but may consider plain <a href=""> combined with the URI version https://fluidtypo3.org/viewhelpers/vhs/master/Uri/TypolinkViewHelper.html and put your onclick stuff in the a-tag properties as normal
12:06:21 <Guest|65234> no it is coming form link wizard
12:06:59 <NamelessCoder> use the URI version of the ViewHelper as value of the "href" attribute of your <a> tag
12:10:50 <NamelessCoder> you should take a closer look at the fluid syntax documentation (or you will have a pretty hard time in the future after I give you the facit on this one)
12:12:03 <NamelessCoder> it'll be very hard to solve many use cases unless you know about such alternative versions of viewhelpers as well as how to use inline syntax
12:14:31 <justcasoer> NamelessCoder: can i ask you one more questen, when you are finished?
12:14:40 <Guest|65234> : Argument "parameter" was not registered.
12:17:52 <NamelessCoder> I wouldn't expect you to catch that one - but it would have been more likely if you were comfortable with the inline syntax instead of just copy/pasting ;)
12:18:13 <NamelessCoder> justcasoer don't ask to ask, just ask
12:26:02 <justcasoer> i dont really understand what you mean. i just updated from 6.1.x to 6.2.x . before the update everything worked
12:27:21 <NamelessCoder> justcasoer is the "Content type" set to "Fluidcontent" and do you see the field "Fluid content type" when editing the content and does the selector have any values?
12:29:53 <NamelessCoder> justcasoer you are looking for this field: http://i.imgur.com/ZEJNpAy.png
12:30:39 <Guest|65234> thank you, you made my day. and yes you are right i have to know more about the correct syntax. i am still in learning process.
12:30:45 <NamelessCoder> when "Type" (which is CType in database) is set to "fluidcontent_content" (the value behind the label "Fluid Content" in the left selector), then you should see the right selector listing all your templates
12:33:36 <NamelessCoder> justcasoer if the selector has no values then my comment from 18:25 applies - you probably have a parsing error in the template
12:33:47 <NamelessCoder> (which would cause it to be excluded from configuration)
12:34:15 <NamelessCoder> that, or you have additional migrations to perform after updating one or more extensions (vhs, flux) - see changelogs of each to know what to migrate
12:35:06 <justcasoer> i updated an activated everything like before. thank you for the hint. i will try to find the error tomorrow.
04:59:30 <mddz> There is the flux:field.file viewhelper which can have a upload folder specified, but I can't get multiple file selection to work, despite it having attributes suggesting it should be possible.
04:59:50 <cweiske> I cannot explain why I think something. I just do.
05:06:16 <mddz> I don't want to know why you are thinking it, but why it is not possible ;)
05:07:09 <mddz> I can't quite understand the reasoning for all these different File-related viewhelpers with vastly different capabilites, but I guess it is caused by TYPO3
05:08:56 <cweiske> it is currently not possible because the view helper does not have an uploadfolder attribute, see https://fluidtypo3.org/viewhelpers/flux/master/Field/InlineViewHelper.html
05:11:47 <mddz> yeah, I saw thad (and got a PHP error when trying if it was possible anyways)
05:12:36 <mddz> so is there any 'best practive' for multiple file upload with defined upload folder?
05:13:05 <mddz> I don't want to get the userupload folder get messed up by dozens of content elements which use images
05:13:47 <cweiske> you could disable the upload button at the inline fal element
05:13:53 <cweiske> so users are forced to upload through the file list
05:16:29 <mddz> I am not quite sure which file list you mean?
05:16:58 <cweiske> on the left side of your typo3 backend
05:17:38 <mddz> ah I see, but I wanted to use a upload folder which is outside of the users reach
05:18:58 <mddz> but it works with flux:field.file and uploads/tx_myext/...
05:19:32 <cweiske> ah ok, so you don't mean fileadmin/
05:43:43 <mikeMM> hey.. i use v:content.render with vhs 2.4.. when a page is not translated my content-elements are not rendered... i found this link... but it does not help me further.. is there allready a fix for this issue?
05:44:36 <mikeMM> oh.. can not paste link... Issue: FluidTYPO3/vhs/issues/761
05:45:01 <cweiske> no, the issue represents the current state of affairs
05:46:11 <mikeMM> ok.. the github issue says the problem is only there when the page is translated but not the content elements... in my case it's not working when there is no translation for the page at all
05:46:40 <cweiske> then please add your observation as comment to the issue
05:46:49 <cweiske> should be the same underlying problem
06:37:46 <fka> i have a custom ce with the following field in the configuration: <flux:field.relation name="settings.dummy" size="5" minItems="1" maxItems="99" table="mymodel" />. Now, in the main part, i want to display the selected records. transform="array" works as expected, but i still only got the uids. transform="ObjectStorage" and "mymodel" seem to do not
06:37:46 <fka> hing in my case, i still get a string with comma-separated uids. any hint what i am doing wrong? :) thx
06:48:38 <cweiske> there is a difference between storing the selected records in the database, which is done as CSV
06:48:48 <cweiske> and the other side is actually reading those values
06:49:53 <cweiske> in your main section, you need to "expand" the csv values to a list of objects
06:53:29 <fka> thx for your answer. which viewhelper can do this for me? or must i use a userfunc/own vh for this?
06:53:50 <cweiske> I thought that one could use one of the view helpers in https://fluidtypo3.org/viewhelpers/vhs/master/Resource/RecordViewHelper.html
06:54:03 <cweiske> but there does not seem to be one that supports CSV values
07:06:44 <fka> no, i mean not in combination with csv values. when i set transform="array" i can iterate over the selected pids.
07:07:37 <fka> but as i want the whole model object and not only a field associated to resources i think it is the wrong vh for my usecase
07:30:59 <fka> ok i was using transform wrong, ObjectStorage needs the Modeltype as written in the docu and instead of mymodel i have to set the full namespace, ofc *facepalm*
07:31:18 <fka> it is still not working tho, but i think im heading in the right direction
08:01:12 <fka> the problem is, my classes don't get autoloaded (they are not listed by get_declared_classes())... i built my extension with the extension builder, so i thought all naming conventions should be fine...
08:18:07 <fka> ok after fixing my extension everything works like a charm. sorry for wasting your time... the problem was i used the tablename as value for the transform attribute, not the classname
08:18:15 <fka> this is the code: <flux:field.relation transform="ObjectStorage<Vendor\Extkey\Domain\Model\MyModel>" name="settings.dummy" size="5" minItems="1" maxItems="5" table="mymodel_table" />
12:38:04 <fka> i've got a problem with custom content controller... the Actio-method for my contentelement is not called... however, the initialization methods (initializeProvider, initializeSettings...) are correctly called...
12:38:15 <fka> any ideas what the problem might be?
12:55:53 <fka> ok i changed the namespace of my ContentController from 'FluidTYPO3\Fluidcontent\Controller' to the namespace used in my extension. now the action methods are called, but the initialization methods no longer work :(
03:26:57 <Guest|91866> Hi guys, is there any way to show in Backend all content elements in some custom defined order? Now I have 55 different panels and they are shown as follows: Panel 55, Panel 34, Panel 2, Panel 27 etc.
03:31:11 <cweiske2> do you mean in the new content element wizard?
03:32:42 <Guest|91866> yes, in the New content element wizard
12:05:39 <NamelessCoder_> you may have found a bug drlimbo - with that code the {limbo} variable should absolutely be filled. Maybe v:iterator.explode doesn't use the TemplateVaribleViewHelperTrait correctly
07:04:09 <moger> I have a multidomain TYPO3 instance with 4 trees (root levels) and 4 provider extensions. I'm trying to limit the availability of the page template sets to the respective trees.
07:09:58 <moger> yes, if i keep all providers enabled, of course i have all of them available everywhere.
07:10:49 <moger> but once i disable some, but only in subtrees, the configuration which is read by flux differs from the typoscript configuration which can be seen in the backend (template analyzer / object manager)
07:25:27 <moger> I debugged some more. the wrong pageId is determined by \TYPO3\CMS\Extbase\Configuration\BackendConfigurationManager::getTypoScriptSetup
12:11:41 <drlimbo> does someone has an idea why image-croping works well in the install tool, but on my website f:image and v:uri.image doesn't resize my pictures?
15:29:00 <Obiwan> Hi, somehow i can't render the output of an ext base-plugin (t3sheaderslider) with typoscriptObjectPath=... within fluid pages. But I see the output if i append it in e.g. page.10. Any suggestions?
02:21:09 <cweiske> is it possible to make a fluidcontent element aware of the container it is located in?
02:21:32 <cweiske> I thought I could pass a variable in <v:content.render>, but that does not appear to be the case
05:46:55 <haki> hi, since i updated from typo 6.1.x to 6.2.19 ( also the fluid extensions ) i dont get any content. i just get a yellow box with the text "Fluid Content type not selected - edit this element in the TYPO3 backend to fix this!
05:46:56 <haki> Content uid: [135] " can you help me with this one?
05:51:43 <cweiske> are the fluid extensions from TER or from git?
05:52:18 <haki> i took over the project so i dont know. i updated them with the update manager in the backend.
06:10:04 <cweiske> I want to know if you know what fluidcontent does, and how to use it
06:10:42 <haki> not really, i overtook the project and have to handle it now :/
06:10:58 <cweiske> please come back after reading up what fluidcontent actually does
06:12:32 <haki> https://fluidtypo3.org/documentation/templating-manual/introduction.html i just start reading this now.
08:54:34 <haki> cweiske so the problem is that i didnt define a fluid contetn type right?
08:58:51 <haki> or does anybody else have experience with the "Fluid Content type not selected - edit this element in the TYPO3 backend to fix this! " error?
09:02:37 <drlimbo> is there a way to set the "lifetime" of _processed_ images with fluid?
16:54:11 <Guest|28325> everytime i try to install fluidcontent 4.4.0 i get the error: Could not access remote resource http://repositories.typo3.org/mirrors.xml.gz.
16:54:19 <Guest|28325> can anyone help me with this one?
02:57:57 <mdddz> from time to time, but only when I am logged out of the Backend, and only until I log in again TYPO3 forgets my TS config, which is included via \FluidTYPO3\Flux\Core::addStaticTypoScript(...);
03:00:52 <mdddz> I looked for some minutes, but not at every issue of every extension
03:03:35 <cweiske> can you reproduce the problem again and again, or does it really only happen now and then?
03:06:51 <de_macrocom> Hi there. I posted a question concerning controller arguments in FluidTYPO3 on http://stackoverflow.com/questions/36505001/how-to-pass-argument-to-controller-action-with-fluidtypo3
03:07:17 <de_macrocom> Seems nobody can help there. Can you?
03:43:37 <mdddz> cweiske: sorry, there was a meeting I had to attend to
03:51:08 <mdddz> and then some fluid powered basics, like overriding ContentCore template paths
03:51:22 <cweiske> does it work when you use typo3's default method to include static typoscript?
03:52:44 <mdddz> I tried Option 1 and 2 ( https://fluidtypo3.org/documentation/templating-manual/templating/provider-extension/configuration-files.html ) but could'nt make it work
03:53:16 <mdddz> the TS just did not produce any effect like it was not read afterall
03:53:37 <cweiske> for option 1 you need a setup.txt in the folder you add via "addstaticfile"
03:53:58 <cweiske> *and* you need to include it in you main typoscript template in the database
03:53:58 <mdddz> yes, there is one named exactly that way
06:44:48 <haki> everytime i try to install fluidcontent 4.4.0 i get the error: Could not access remote resource http://repositories.typo3.org/mirrors.xml.gz. can someone help me with this one?
06:47:06 <cweiske> that's a general typo3 problem, not a fluid specific one
06:47:19 <cweiske> fix your network connectivity problems on your server
06:47:27 <cweiske> ssh into it and curl or wget this file
06:47:34 <cweiske> you'll probably get more information that way
06:47:47 <haki> its not the server. i can install the newer versions, but not the 4.4.0
07:15:21 <de_macrocom> Good afternoon. How do I pass arguments to a flux-enabled controller? It just doesn't work out for me as detailed here: http://stackoverflow.com/questions/36505001/how-to-pass-argument-to-controller-action-with-fluidtypo3 Any hints?
07:39:39 <drlimbo> i just created an extbase extension - is there a way to use the current page as storagePid if there is nothing set in the plugin?
07:42:56 <cweiske> current page is at $GLOBALS['TSFE']->id
07:50:35 <grimmcreative> Hello @all, how can i get my data from a flux:field (from page template) inside my v:page.menu? just {name} does nothing {pageRecord.name} too :( (all newest TER Versions of extensions) — THANKS
07:53:33 <bjo3rn> grimmcreative there's flux:form.data to extract a flexform's values.
07:54:45 <grimmcreative> Ok - will try it :) thanks
07:57:51 <haki> one more question, any idea for: Fatal error: Call to undefined method FluidTYPO3\Fluidcontent\Service\ConfigurationService::getTypoScriptSubConfiguration() in ?
08:03:26 <drlimbo> thanks cweiske, i just tried something like that:
10:06:29 <drlimbo> crazy... i have an extbase extension and in the list view in fluid i debug v:page info {v:page.info() -> f:debug()} BUT this returns me an incorrect UID of the actual page, but the correct content
10:06:45 <drlimbo> and i have only one list element on this page, but i get the debug two times
10:11:54 <de_macrocom> I also see that multiple debug rather often. So would also be interested what causes it.
10:13:39 <drlimbo> mhh, i think realurl messed something around, i just saw in the table that i have two pages with the same name
10:17:02 <drlimbo> yes, it was realurl, so everything ok with debug, sorry de_macrocom
04:50:32 <Fluidrules> Hi room. I have an f:image element, which gets its information from a flux:field.inline.fal field. The TYPO3 backend offers a "link" field for the editor, too. How do I get the entered information? I want the image to be wrapped with the link. No need for lengthy explanation, I think I can work with a working example I can copy off.
09:37:22 <Fluidrules> so there's two problems - 1. What do you write instead of [mixed] and 2. how do you wrap the case around the switches if it's all inline?
10:24:24 <Fluidrules> Are you still there, drlimbo?
10:31:50 <drlimbo> but it would be interesting to find a solution for nested switch-case =)
10:50:57 <Fluidrules> agreed, drlimbo. the examples database on fluidtypo3.org is extremely helpful, but non-devs like us need many more examples to grasp it. Maybe you have an idea how to solve my problem?
10:51:16 <Fluidrules> I have an f:image element, which gets its information from a flux:field.inline.fal field. The TYPO3 backend offers a "link" field for the editor, too. How do I get the entered information? I want the image to be wrapped with the link.
10:52:44 <drlimbo> where do u have the FAL field? in your extension Fluidrules?
11:20:58 <drlimbo> for example: {v:resource.record.fal(record: page, field: 'media', table: 'pages') -> v:variable.set(name: 'pageMedia')} to get the "Ressources" Images from Page
11:21:33 <drlimbo> and dont forget the "treatIdAsReference: 1" setting in the image viewhelper
11:21:34 <Fluidrules> I get the src, title and alt from {v:content.resources.fal(field: 'settings.image1') -> v:iterator.first() -> v:variable.set(name: 'image')}
11:22:27 <Fluidrules> v:resource.record.fal vs v:content.resources.fal
11:23:07 <drlimbo> ah, and dont use FAL-Images in a section - this wont work
11:23:39 <Fluidrules> it works I just need the link
11:25:02 <Fluidrules> I use e.g. <flux:field.inline.fal name="settings.image2" label="Image large" /> in the form and {v:content.resources.fal(field: 'settings.image2') -> v:iterator.first() -> v:variable.set(name: 'image')}
11:25:02 <Fluidrules> <f:image src="{image.id}" title="{image.title}" alt="{image.alternative}" /> in the section.
11:27:36 <Fluidrules> what would really help is an example of how to get a single FAL image with the link wrapped around.
11:28:37 <drlimbo> there's a viewhelper to get the image url (resource.url something..)
11:30:36 <Fluidrules> are you sure that's not just the path to the image?
11:31:10 <Fluidrules> ... that would be the src...
11:33:24 <Fluidrules> Maybe I'm explaining it badly. I know how to output the image.
11:34:22 <Fluidrules> in the backend there is a field where you can assign a link to an image. That means, the image should be 'linked' with a URL, e.g. google.com.
11:34:37 <Fluidrules> But I don't know how I can use this link in my frontend.
11:44:03 <Fluidrules> it's not in <f:debug>{settings}</f:debug>
12:02:53 <Fluidrules> can't find it in <f:debug>{all}</f:debug> either.
09:19:07 <de_macrocom> Hello. I still can't pass arguments to a flux-enabled controller action. And I can't see any reason why it doesn't work. Any help?
11:20:40 <Fluidrules> Hi room, I'm building a HTML newsletter, and I want the CSS file to be rendered in the page header, if a certain page template is selected. With v:asset I can link to an external file, that works fine, but is there a viewhelper that can render the content of a file into my page header? Example: <style type="text/css">body {font-size:10px}</style>
11:21:29 <Fluidrules> I know how to do it with TS, but I want the included CSS to be determined by the selected FLUID template.
03:48:37 <mdddz> hi there, I am using option #2 from https://fluidtypo3.org/documentation/templating-manual/templating/provider-extension/configuration-files.html to include my TS Setup and page object config, but it only takes effect when I am logged in.
03:57:21 <de_macrocom> I can't pass arguments to a flux-enabled controller. Is that a bug? Or is it intended behaviour?
04:15:53 <cweiske> de_macrocom, you're asking the same question for days now.
04:16:19 <cweiske> I think it's time for you to dig into flux and follow the function stack, and find out yourself why it does not work
04:21:03 <de_macrocom> Right. I'm asking for days. Because there was not even the slightest reaction on the question. A simple "should work, please inspect yourself" would have been enough.
04:42:23 <cweiske> did you expect that reaction from all of the people in the room?
04:42:39 <cweiske> in irc it's general that only people speak if they think they can contribute something
04:43:05 <cweiske> if all 16 people in here said "I don't know" to every question, noise level would rise considerably
04:43:35 <de_macrocom> I opened an issue on github now and will provide you with any information that I might raise on my way through the flux stack.
04:49:26 <mdddz> hi cweiske, I investigated my problem from before some more.
04:49:51 <mdddz> I am using option 2 from https://fluidtypo3.org/documentation/templating-manual/templating/provider-extension/configuration-files.html
04:50:29 <mdddz> and now my TS included with that method reliably has no effect when I am not logged in
04:51:35 <mdddz> Could it be that the ts is anyhow addes as UserTSConfig instead of 'general' SetupTS?
04:57:54 <cweiske> if it's only when you're not logged in to the backend, it's because you put that in ext_tables.php
04:58:12 <cweiske> ext_tables.php only gets loaded when a backend user is logged in, or rather only in the backend
04:58:29 <cweiske> ext_localconf.php always gets loaded - for backend and frontend accesses
04:59:01 <cweiske> but if you correctly followed option 2 instructions, this should not be the problem
05:00:00 <mdddz> ah, I see. Thank you very much, that was the hint I needed.
05:02:52 <mdddz> I just now noted that there is even comments in the documentation telling the file names. Now I feel stupid for not seeing it. Sry to have bothered you with thtat.
05:03:32 <cweiske> sometimes it's the small things that are easily overlooked and have big effects
05:14:20 <Guest|3195> hi guys, I found an Issue: I'm using an FCE with an Input field: <flux:field.input ... when I enter an alpahanumeric string - evertything is fine, when I enter only a Number I get a validation error in the backedn in TYPO3-7.6.5 can someone confirm this behavior ?! TIA
05:14:34 <Guest|3195> hi guys, I found an Issue: I'm using an FCE with an Input field: <flux:field.input ... when I enter an alpahanumeric string - evertything is fine, when I enter only a Number I get a validation error in the backend (in TYPO3-7.6.5) can someone confirm this behavior ?! TIA
05:19:37 <cweiske> how does your flux field attributes look like?
08:09:40 <NamelessCoder_> cweiske can't thank you enough for all the help you give other users!
12:19:17 <mikemm> hey.. since I updated to 7.6.5 (from 7.6.2) Typo3 does not allow me to save flux:field.input fields with only numbers in (e.g. "123" does not work but "123a" works). anyone else had the same problem?
04:03:32 <mdddz> cweiske: the bug (extension TS not loaded when not logged in) is back D:
04:06:52 <mdddz> I thought it was working when I moved the ts include commands to the ext_localconf.php, but this morning, when not logged in, the TS was not applied
04:11:31 <mdddz> I think it has something to do with caching, because when I log out again it still works
09:39:59 <Guest|7781> hi all, after updating TYPO3 from 7.6.4 to 7.6.5 the flux:field.input for setting settings in my fluidpage-template doesn't accept any numerious values. This is a javascript validation-error. Seems that in ...class="form-control t3js-clearable hasDefaultValue"> the part 'type="text"' is missing. Is there any known workaround?
09:41:50 <NamelessCoder> hi Guest|7781 - fix is pending, you can use Flux from github development branch until then
09:47:09 <Guest|7781> Great news, thank's a lot. I love the fedext-stack.
10:55:10 <grimmcreative> Hello @all. Just forgot it. How can i use the Standard Header Field inside an FCE? just {header} will not work {data.header} too. THANKS
07:43:34 <drlimbo> can someone tell me, why the hell the "Edit Icons in top left corner" are hidden on all my Fluid FCE Elements? screenshot: https://goo.gl/3bw133
07:45:30 <drlimbo> cweiske: maybe you have another good idea?
08:07:13 <drlimbo> it looks like, it takes the same icon as defined in flux:form options as icon, after clearing the cache multiple times
08:07:46 <drlimbo> i can show the icon now with <flux:form options="{group: 'Infoscreen', icon:'{f:uri.resource(path:\'Icons/favicon-32x32.png\')}'}
08:08:43 <drlimbo> it works locally, but on the remote hosts f:uri.resource display's a wrong path to the where the icon is stored, it doesn't show the path to the webroot, is there a way to set the web-root somewhere?
09:48:30 <6JTAABJ03> [flux] NamelessCoder pushed 1 new commit to development: https://github.com/FluidTYPO3/flux/commit/fd8a9e955234318a17d8bf0d65f6859b79db577e
11:35:58 <Lovefluid> Hi everyone, I'm using FSC and a grid widget and I am trying to hide / overwrite rendering of default headers in the frontend. When I set up "tt_content.fluidcontent_content.10 >" it does nothing - the headlines are still being rendered.
11:36:43 <Lovefluid> Why does this work for everyone but me?
11:37:04 <Lovefluid> Newest TER version plus TYPO3 7.6.5
11:45:01 <Lovefluid> Got it. Apparently, this works with <f:layout name="Content"/> but not <f:layout name="ContentCore"/>
12:07:17 <thierry2> Hi, is it possible to style a page backend layout with: 2 columns
12:08:35 <thierry2> oups, to quick ... I wanted to say: 2 columns, the left one 75%, the right one 25% ? And in the right one, there must be 3 "colPols" under each other. I've tried what's explained on https://fluidtypo3.org/documentation/templating-manual/templating/creating-templates/page-template.html but ...
12:09:23 <thierry2> When I say "column", I speak of it visually: in this case they are 4 "colPos": one on the left, and 3 on the right
13:33:10 <RotesOHM> is anyone here who can help me with fluid pages and a multidomain setup?
13:34:15 <RotesOHM> i created a template extension with builder for each domain
13:36:29 <RotesOHM> but when i open the Page Layouts tab on one of the domain pages i always see all Layouts of all packages, and i cannot find a solution to assign a provider extension to a specific domain tree
11:18:07 <fger> hi guys, my flux:form.object entries in a flux:form.section entry in configuration section inside a fluidcontent element dont show up anymore in TYPO3 7.6.5
11:18:38 <fger> upgraded from 6.2 and changed syntaxes accordingly, also adding inherit=0 to all flux:form.object and child tags
11:19:29 <fger> the debuggerUtility shows, that the child-objects described by flux:form.object are there in the delivered data-set and i can access them in frontend and preview setion
11:19:44 <fger> is this a bug in flux ? no saving involved
09:42:30 <drlimbo> if i add a youtube video to FAL, there will the URL (https://www.youtube.com/watch?v=S5ep2vUMJt0) be saved, but the v:media.youtube viewhelper likes to get the Video-ID
09:45:45 <cweiske> I don't think that v:media.youtube was made with the FAL remote source in mind
13:12:45 <haki> after updating my typo3 from 6.1.7 to 6.2.19 and my fluidcontent from 3.1.0 to 4.0.0 i have some bugs on my page. where can i get a changelog for this versions?
03:16:38 <drlimbo> is there a way to add some new fields to the flux:field.inline.fal in an FCE? I'd really like to use FAL instead of Sections with Input-File-Fields, but i need another setting for each file =(
04:26:38 <Marc2016> Hi. I'm running into trouble with a flux-FAL-construct, which should allow 999 files, but only allows 100 files (no matter if they are chosen at once or not). Is there any known restriction and how may I allow more than 100 files in a flux-FAL-field?
04:29:34 <cweiske> did you try if you can select more files in e.g. page -> media?
04:39:11 <Marc2016> yes, x-checked this right now. In "Images" I can choose 104 images...
04:46:37 <cweiske> i'd look into flux' FalViewHelper.php and check which configuration is actually used in getComponent
04:47:34 <Marc2016> ok, thanks. I'll go digging... :-)
04:52:04 <cweiske> maybe the 100 limit is in there somehow
04:53:13 <Marc2016> there is no maxItems-configuration at all. I'll try to add it, waiting for a proper dev system to test this out...
04:55:38 <cweiske> in falviewhelper::getComponent(), just before the return $component, add a var_dump($component). do you see a maxItems in the output?
04:57:27 <Marc2016> I'll try this as soon I have a dev system to play with. :)
04:57:47 <cweiske> the maxitems configuration comes from a parent class
05:14:51 <drlimbo> is there a way to add some new fields to the flux:field.inline.fal in an FCE? I'd really like to use FAL instead of Sections with Input-File-Fields, but i need another setting for each file like "show Title on left or right" =(
07:47:34 <cweiske> that displays all pages in a dropdown, which is not usable for large pages
08:01:51 <fresskoma_> Hi everyone. Does fluidcontent/fluidpages influence the copying/pasting behaviour of TYPO3 in any way? I’m having a weird problem where the content elements I’m trying to copy are indeed copied, but _also_ moved to the location where the element is copied to ~.~
08:01:51 <cweiske> what I want is this: http://fotos.cweiske.de/screenshots/2016-04-27%20typo3%20select%20page.png
09:37:07 <drlimbo> i'd like to position some bullets on an image in an FCE, is there a way to display an Image in Backend AND visually select some points (coordinates) to display the Bullets?
15:32:07 <haki> Hi, i really could need the changelog from 3.1.0 to 4.0.0. Can someone help me?
15:50:48 <haki> is it possible that {data.header} does not work with 4.0.0?
07:59:51 <s-andersen> Hi, I have made a theme with flux,fluidpages and vhs. In the "Page Configuration" the editor can choose a logo for the website, and a background image, field.file viewhelpers. The images inherited from the frontpage, but for some reason the inheritance doesn't work right, which leads to broken images in the frontend. Does anyone have an idea what's
05:14:00 <fresskom1_> Hmm, does css_styled_content still have to be installed when using fluidcontent? When uninstalling it, I can’t get any content elements to render.
05:30:37 <x3ro> Hmm, never mind me. This seems to have been caused by the wrong TypoScript includes being set in the root template /o\
05:37:12 <x3ro> NamelessCoder: Regarding https://github.com/FluidTYPO3/flux/pull/1126 – I’m doing some work with fluidcontent at the moment, and it seems like we’ll be switching to it for future projects. So I definitely have an interest in contributing :D I find that its documentation is much better than for most other TYPO3 related projects (kudos).
07:21:02 <Guest55270> Hello, I try to use <flux:form.option.translation> in a page layout. I added a field <flux:field.input name="settings.subtitle" label="Seiten-Untertitel" enabled="1" inherit="1" inheritEmpty="1" />, which works in standard page settings. There I can enter values in tab "Page configuration". But in language specific page settings, this tab is comple
07:33:54 <Guest55270> I installed compatibility6, but I still get the same behaviour.
09:07:24 <NamelessCoder> sounds good x3ro - looking forward to it, and thanks for the contributions so far!
09:37:35 <x3ro> NamelessCoder: I’d still like to start a discussion of how to best document flux in context of fluidcontent, though :D wouldn’t this best be done in a github issue?
09:38:28 <x3ro> Because I feel that right now it is somewhat lacking, I suppose due to the issue of keeping the Flux documentation clean of references to fluidcontent
09:41:45 <NamelessCoder> we can discuss it briefly here then follow up with a github issue - just to avoid having to cover more than necessary in the github issue
09:42:13 <NamelessCoder> it is indeed lacking and speaking of viewhelper docs it is lacking for the reason you describe
09:44:05 <NamelessCoder> I've been thinking about how to solve that one and the only sensible solution I can think of (until this point) is some sort of pingback tracking where we are able to link internal doc resources that link *TO* docs. So we can track that for example fluidcontent's docs about icons links to flux's icon viewhelper docs, but without having to include that information in flux itself (because there it will inevitably become outdated or wrong at some
09:44:05 <NamelessCoder> point, or we risk documenting dozens of extensions via flux)
09:45:01 <NamelessCoder> (that pattern would apply quite well to other viewhelpers too, if I'm not mistaken - tracking all doc places that link to a VH doc)
09:45:29 <NamelessCoder> challenges in that regard would be that we document every version and won't necessarily know if/how something applies to previous versions
09:45:33 <x3ro> That would be done in the typo3 that powers fluidtypo3.org?
09:46:09 <NamelessCoder> yes that would be part of the docs rendering, likely achieved with a custom template + VH for schemaker's FE plugin
09:46:50 <NamelessCoder> we could design a rule that says, for example, "VH links in docs are ALWAYS to 'master' version of any VH"
09:47:46 <NamelessCoder> so our docs only link to master VH refs but VH refs link back to that resource from every version of VH refs
09:49:36 <NamelessCoder> few things would need to happen for that to be a good approach... most importantly we'd need to add the VH doc links in various documentation that gets rendered on fluidtypo3.org. A plain "these viewhelpers are used in this example: <markdown-list>" would suffice, imho.
09:51:26 <NamelessCoder> there's more, actually... we could parse out example blocks when displayed in docs and parse as Fluid (not render, just parse) where possible, extracting viewhelpers that are used (see live fluid example on site for how that works) and listing those. But that doesn't have to be there for it to work initially
09:52:15 <x3ro> So, lets say I’m looking at the Flux\Form\Option\GroupViewHelper. That page would contain the list you’re speaking of, linking to where the GroupViewHelper is used in the fluidcontent docs?
09:52:24 <x3ro> Just to make sure I understand you correctly :D
09:52:33 <NamelessCoder> this makes the relationships between VH docs and other docs more human friendly, I think. But it doesn't really solve the other problem, that our current structure is a bit hard on the brain
09:53:08 <NamelessCoder> yep, exactly - when looking at any VH you would also get a list of all places in other docs where that VH is used (read: where there is a link to that VH)
09:54:50 <x3ro> I’m just trying to figure out where I would put those docs that link to Flux
09:55:09 <NamelessCoder> it's fine to document how Flux components work in each other extension, but the main docs should be in Flux. E.g. you can explain how "group" renders this and that type of field, but don't begin to list supported arguments and perspectives about how it renders as TCA - that's a job for Flux docs
09:56:41 <x3ro> Yeah, I think I get that. But lets take https://github.com/FluidTYPO3/flux/pull/1126 as an example. Lets say the mechanism that links references in the Flux docs is in place, and I would put the documentation from the PR in fluidcontent instead. Where would that be?
09:56:48 <NamelessCoder> my vision is a set of docs that explain exactly how Flux works in details - without using fluidcontent etc. as examples. It does make sense as a general library for integration even when you don't use any of the other exts and I think that fact tends to get missed.
09:56:51 <x3ro> that is, where in fluidcontent would I put the stuff I’ve written there? :D
09:57:25 <NamelessCoder> if that existed it would be pretty easy to write the fluidcontent/fluidpages docs because it would mostly be about explaining how those patterns apply in that extension
09:58:20 <NamelessCoder> re: your question, currently fluidcontent etc. has no viewhelpers which means you can't put it in viewhelper docs. The only place it can be put currently is in the "documentation" repository that gets rendered as a page tree on the site
09:59:25 <NamelessCoder> but that's not optimal and that's my point... this central documentation seems to be a pretty bad idea unless it's to write guides about how to use the framework as a whole. Individual guides should be in each extension's docs, probably. With relationships to Flux docs when there is a relation.
09:59:55 <NamelessCoder> we've had some efforts in that direction but it's a seriously tough job
10:00:36 <NamelessCoder> (gotta go in around 10 minutes, pre-warning :))
10:01:54 <x3ro> yeah, I guess its nothing that’ll be done in a day. I’ll give it some thought as well. one more question. you’ve mentioned schemaker, and I did get it running locally after some trouble w/ vhs versions. Is the stuff rendered at https://fluidtypo3.org/viewhelpers.html done by schemaker, or is that something else?
10:03:47 <NamelessCoder> we're only limited by PHP in this regard :)
10:05:26 <x3ro> I think I’ll take another look at schemaker and maybe play around a bit. I’ll also try to summarize this discussion in a GitHub issue. Would that go in Flux?
10:05:42 <NamelessCoder> to sum things up from my end, I'd aim for the following:
10:06:18 <NamelessCoder> 1 - independent Flux docs that can be read as a beginner (without requisite TCA knowledge) but with links to official resources to make it clear that Flux *IS* primarily a shell for TCA/TCEForms
10:06:56 <NamelessCoder> 2 - independent tutorial-style docs for each extension (fluidpages, fluidcontent etc.) to show how those work, without explaining Flux in detail - but linking to the Flux docs from step one
10:07:16 <NamelessCoder> 3 - manual or automatic extraction of "trackback" links from docs to VH refs
10:07:48 <NamelessCoder> 4 - refitting fluidtypo3.org docs section to reflect the divided docs - where now it's more of one big pile
10:08:14 <x3ro> Is the thing that renders the templating manual also in schemaker?
10:08:22 <NamelessCoder> I guess that's several weeks of work, depending on how fast one can type and how much one has ready in memory
10:08:37 <NamelessCoder> no, that's part of the fluidtypo3org extension (github repo)
10:08:40 <x3ro> yeah, but it doesn’t have to be one big “whoop"
10:08:51 <x3ro> step by step is also an option, I suppose
10:08:56 <NamelessCoder> definitely not and that's a good thing - each step can be done by its own
10:09:12 <NamelessCoder> but it won't be the golden solution until all is in place
10:10:05 <NamelessCoder> if that's something you want to tackle we'll support you every way we can. We've no budget this year :/
10:10:58 <x3ro> Yeah, I’ll check w/ my employer as well. I certainly wont get time to work on this full time, but lets see what can be done :)
10:11:24 <NamelessCoder> we also had InvisibleKind writing something (higher level tutorial style) that might be good as a replacement for the current big pile and then complemented by the individual ext tutorials
10:11:36 <NamelessCoder> it's along the lines of "how to use the framework, for beginners"
10:12:08 <x3ro> Well, the current templating manual is not bad, even though it could benefit from a little work
10:12:26 <NamelessCoder> fingers crossed you can get some time for this ;) if you do we can invite you into the team and you/co can use that as reference
10:12:45 <NamelessCoder> not much else we can offer except of course the knowledge ;)
10:31:00 <Guest|19175> Fatal error: Call to a member function resolvePrimaryConfigurationProvider() on a non-object in /kunden/123103_73765/rp-hosting/5007132/6007132/typo3cms/cm4all_live/public_html/typo3conf/ext/flux/Classes/Service/FluxService.php on line 363" with the newsest fluidcontent for 6.2.
15:58:20 <Guest|3161> hi, after updating fluid content i get a problem with this line: class Tx_CmagWebsite_Controller_ContentController extends Tx_Fluidcontent_Controller_AbstractContentController {