09:32:43 <georg_t> yesterday I tested autoloading of viewhelpers via xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers" in TYPO3 6.2 and PhpStorm
09:34:15 <georg_t> as the xds files for flux do not include the new naming schema i tried to generate a new one with schemaker
09:34:49 <georg_t> but schemaker (master) can't handle viewhelpers with namespaces
09:37:48 <georg_t> adding support for namespaced viewhelpers shouldn't be hard work
09:40:46 <georg_t> this should be added to the development branch, right?
09:47:56 <georg_t> ahhh. finally found the correct guide: https://fedext.net/overview/contributing/contribution-guide.html
09:48:59 <georg_t> the links to 'Contribution Guide' on https://github.com/FluidTYPO3/documentation/blob/master/Contributing.md#making-pull-requests point to the flux git repo
10:35:03 <randomresult> mrboe just told me, that a user cli is missing
10:40:52 <randomresult> well... i now have a cli_lowleveluser (only a user with a randompassword and no rights at all) and use the following within the typo3folder: ./cli_dispatch.phpsh extbase builder:fluidsyntax t3pagebasics --verbose (where t3pagebasics is the folder AND ext-key of my extension)
10:41:01 <randomresult> but still it gives nothing back
11:30:57 <jkphl> hey claus! so here i am ... what can i do for you?
12:55:53 <randomresult> so now i copied an element from fluidcontent_bootstrap in my web. and also this element has the textfield at the bottom ... so it doesnt come with my own elements... so where to search for this misbehavior?
16:19:46 <Pete2> Hi guys, i am a beginner. how can i use your awesome fluid helpers? how can i download them for my flow project and install them?
16:53:33 <NamelessCoder> hi Pete2 - there's no Flow versions of the viewhelpers just yet, but many of them you can grab and just change the namespace and parent class name, then use in your own flow package.
16:56:45 <Pete2> thanks namelesscoder. could you give me a hint where to put them in my file structure? i am totally new to mvc..
16:57:11 <NamelessCoder> same as in the VHS extension; Classes/ViewHelpers/FooBarViewHelper.php
16:57:55 <NamelessCoder> then add your own namespace instead of the vhs one, e.g. {namespace v=YourVendor\YourPackage\ViewHelpers} (or choose another prefix than "v" if you like)