11:15:30 <Guest|88637> for magentos api i have to create an access user with password... i already have too much users for this project ;) nobody could manage them all ;)
11:16:13 <Guest|88637> the other way, i dont know if its possible, is to get the author-id from typoscript after my extension was loaded with the current author
11:16:20 <ad_on_is> i have a question about <v:render.request
11:17:59 <Guest|88637> my last idea is to get the data with jquery :D but i dont like it :P
11:19:31 <Romm> Hey there, in case someone does have some time to help a lost soul... http://forum.typo3.org/index.php/m/715387/#msg_715387 :)
11:19:44 <featdd> hm dont understand it completely yet but sounds to me like you're making it unecessary complicated
11:21:28 <featdd> if you render the author id on a template it has to available in a variable on the template
11:22:13 <Guest|88637> i have two databases, typo3 and magento, in typo3 i have authors with a shopproducts field, if this field is filled, i want to call a userfunc to get magento shop results by inserted shopproduct-skus
11:22:48 <Guest|88637> it is available, but how can i call a typo3-userfunc from the template?
11:23:34 <featdd> then I think you shouldnt render the shopproducts field on the template, an fetch the products in the controller
11:25:16 <featdd> may write some service who gets the authors products and deliver them as a model to the controller, which can be rendered smoothly :-)
11:27:43 <Guest|88637> hmm maybe its the better way to handle it
11:28:57 <Guest|88637> thank you, i will try to code it :D
11:30:18 <ad_on_is> can someone please explain me how to use <v:render.request correctly with arguments and how to access the arguments in my controller?
11:51:40 <Cash2m> Okay.. Sounds like I'll be digging in the code now. :D brb
11:58:56 <Cash2m> @ad_on_is yup. you we're right :( https://github.com/FluidTYPO3/fluidcontent/blob/development/Classes/Service/ConfigurationService.php#L278
11:59:38 <Cash2m> but why isn't this handled by flux?
12:04:45 <NamelessCoder> wizardTab is only supported on FCEs
12:05:32 <NamelessCoder> for plugins you have the existing way of setting this value
12:07:36 <Cash2m> Any chance this will be handled by flux in the near future?
12:10:06 <NamelessCoder> since we plan on removing the wizardTab argument - no, not likely. What's your objection to using the traditional way?
12:15:00 <Cash2m> There is non. But since the argument is there i thought it can be used in flux. That would be a cool feature, because flux can render the preview and the flexform but creating the element can't be configured.
12:16:10 <NamelessCoder> yeah, one reason for removing the wizardTab argument is exactly that it has no place to be on the flux:form tag since it only works for fluidcontent
12:16:44 <NamelessCoder> well, you still cannot define the plugin itself. You still need ext_localconf.php instructions and those can contain the desired wizardTab, icon, label etc.
12:19:08 <Cash2m> yup. correct. Nevermind, writing the flexforms is easy enugh with flux. I will get over the 10 lines PHP code ;)
14:08:18 <soee> how can i merge dev branch with master both localy and remte ?
18:55:32 <moger_xx> hey there. this is an extbase question, i hope thats ok. i have products m:n categories. sorting of products happens in relation to the category (sorting is stored in mm_table). now i want to find products by category, sorted by their relation to it. anyone know an example how to do that in the repository?
18:56:58 <moger_xx> of course i know how to retrieve products by category. but i don't get it how to make extbase use the mm-table based sorting for it.