08:16:23 <jlumpe> danilobuerger: seems that using composer hooks isn't as easy as we thought. Since after typo3 has been installed, we need to go through the install process first before being able to actually installing dependencies
08:16:41 <jlumpe> checking right now if there is a way to do that from the cmd line
08:16:55 <jlumpe> i'm even thinking about curl'ing the script
09:39:13 <jlumpe> danilobuerger: maybe we can come up with something
09:40:25 <jlumpe> danilobuerger: maybe adding a config file to the root dir, which contains the DB config, then after the core is installed, we can curl the install tool, posting then ecessary info, so that it will set up the db etc.
09:40:48 <jlumpe> but i'm not sure if composer hooks wait for being completed before installing other dependencies
09:41:13 <jlumpe> also, we would not have any error reporting from the install tool, which is a bummer :/
09:41:24 <jlumpe> in case some permissions are off etc.
09:50:53 <jlumpe> danilobuerger: shouldn't we be able to do that with a simple insert query?
09:51:40 <jlumpe> randomresult: thinking about cooking up a script which will automatically install typo using composer and also activate all extensions you specify as dependencies
09:51:52 <jlumpe> so that in the end you only ave to do: composer install
09:52:03 <randomresult> something like a distribution?
09:53:06 <jlumpe> for a basic raw install with fluidpages, fluidcontent etc.
09:53:36 <jlumpe> it would be neat to just be able to edit the db config file, or a generic config file, since you also need to provide admin login data
09:53:43 <jlumpe> and then just type "composer install"
09:53:57 <jlumpe> lean back, and in the end have a fully installed system, with all extensions already activated
09:54:16 <jlumpe> not so much a distribution with demo pages etc.
09:54:19 <randomresult> why not using a bashscript?
09:54:38 <randomresult> which does both, dbstuff and composer?
09:55:21 <randomresult> well i didnt follow your conversation. so i quit telling stupid stuff :)
09:55:24 <jlumpe> well since composer gives you the ability to call back after each installed dependency i figured it might be nicer to do it this way, since you can install the extensions in order
09:55:56 <jlumpe> because composer will install dependencies bottom to top
09:56:05 <jlumpe> but of course a bash script would also work
09:56:15 <jlumpe> the real issue is that i do not want to go through the install tool process
09:56:21 <jlumpe> and figure out how to automate that
09:57:08 <jlumpe> but this might be error prone, since the tool might report some errors which you wouldn see if we were to skip the first info step and just post some form data using curl or something
09:57:55 <jlumpe> it was just an idea i had yesterday, so i'm not sure if that is really possible, since the install tool is kind of a bummer
10:12:59 <nimius|thephpjo> i made a custom element using flux. That element contains a flux:field.text with an RTE. However the frontend output is not formatted. For example: I have this in my RTE: https://www.dropbox.com/s/q7dnayzuy98byji/Screen%20Shot%202014-05-27%20at%2010.11.13.png but in my frontend i have the same thing without the linebreaks: https://www.dropbox.com/s/vob9ebmvjjbzls0/Screen%20Shot%202014-05-27%20at%2010.12.37.png
10:14:02 <nimius|thephpjo> the same thing with links
10:16:10 <jlumpe> nimius|thephpjo: did you use a formatting helper?
10:16:39 <nimius|thephpjo> yes, i just discovered, that i have to use the nl2br viewhelper
11:29:31 <randomresult> so the final answer is: 42
11:29:31 <xaver> randomresult: i have new case idears :)
11:30:16 <danilobuerger> xaver i guess we release once https://github.com/FluidTYPO3/fluidcontent_core/issues?state=open are all fixed and somebody peer reviewed all templates
11:31:49 <xaver> i ask because maybe here has somebody a problem if i use so new stuff in a dev branch. The release date of the site is in ~2 weeks.
11:33:05 <danilobuerger> xaver you could help ;-) all the open issues are straight forward to do
11:34:47 <xaver> danilobuerger: you don't stop until i'm involved?
11:35:07 <danilobuerger> well its the quickest way to get stuff done ;-)
12:09:52 <floxx> is the merge of hmspl fork finished?
13:03:55 <alex_schnitzler> So flux has been force pushed? danilobuerger
13:04:40 <danilobuerger> alex_schnitzler yes NamelessCoder did that yesterday, and earlier today i commited the conflicting commits so that the merge is all done
13:17:08 * randomresult has enough problems for all of ya
13:18:01 <jlumpe> so what do you guys think? for a custom project, which needs localization in the backend, having the ability to create different language versions of pages is enough?
13:18:29 <jlumpe> opposed to being able to create localized copies of a single element inside a page
13:20:49 <jlumpe> soee: not typo3 related, custom project. but yeah. I posted a query a bit further up for fetching a localized row for a given id or the default fallback
13:21:39 <soee> jlumpe: ah so you just want to get some content from t3 database ?
13:21:40 <jlumpe> but that method works only for a single rows (at least with teh current way i wrote the query) so i'm thinking about just having the abiltiy to translate a root node (page-like) instead of being able to translate each content item inside of a page
13:22:36 <jlumpe> i'm think thinking about the general way of allowing the user to easily translate stuff in the backend without getting overly complex :)
13:23:28 <Denyerec> I got 99 problems and the majority are Typo3 related.
13:23:31 <jlumpe> so just allowing pages to be translated and then just adding content elements to the localized child seems logical, but feedback is nicer :)
13:24:04 <soee> Denyerec: there is no problem we cant solve :)
13:24:43 <soee> Whets the problem with T3 in UK ?:)
13:25:52 <soee> jlumpe: i think you can do it several ways, depends what db structure you want, in backend its not so hard to program iterface to translate records
13:36:57 <jlumpe> [14:25] <soee> jlumpe: i think you can do it several ways, depends what db structure you want, in backend its not so hard to program iterface to translate records
13:37:08 <jlumpe> i'm aware of that soee :) I was asking about my specific query i posted above :D
13:37:31 <jlumpe> but right now i feel that having translatable pages seems to be "good enough" to begin with
13:37:53 <jlumpe> since i can always query for the same id, just with a different language and i will get the translated version back, so that's nice
13:39:45 <bjo3rn> it's raining cats and dogs here but the sun is shining out of my behind, cedricziel
13:39:55 <alex_schnitzler> randomresult: Now I know. I talked about the understatement of the talk and danilobuerger started a nice little speach about FluidTYPO3 being THE way, ever.
14:08:53 <randomresult> not what they call a coder in here
14:09:01 <danilobuerger> randomresult is a pixel schubse
14:09:03 <jlumpe> what do they call a coder in here? :9
14:09:17 <nimius|thephpjo> the text field is defined like this: <flux:field.text cols="150" rows="30" name="text" enableRichText="TRUE" validate="required" />
14:09:20 <randomresult> well unless u are nerd like danilobuerger is ... your not a coder
14:09:26 <cedricziel> nimius|thephpjo: did you play with the arguments at stage? https://github.com/FluidTYPO3/flux/blob/development/Classes/ViewHelpers/Field/TextViewHelper.php#L44
14:18:08 <danilobuerger> jlumpe what i like to play nowadays is tichu if i have little time or once a year i fly to vegas for a week and play as much texas NL as i can
14:18:13 <randomresult> dunno - was smoking to much that time
14:34:34 <nimius|thephpjo> OK… so now i configured the RTE to have the fields i want, but i can not add custom RTE styles using defaultExtras. (I want to add a "button" style, so the client can easily embed a button in his text)
14:35:42 <nimius|thephpjo> (sorry if i am asking a lot of dumb stuff, i am kind of noobish)
14:36:10 <randomresult> nimius|thephpjo where i look at sometimes for RTE related stuff is speciality ext
14:39:00 <randomresult> nimius|thephpjo https://github.com/Ecodev/speciality - may that helps
14:39:43 <danilobuerger> nimius|thephpjo i could gist you my RTE setup, but its weird
14:43:09 <randomresult> @danilobuerger just looking at the tasks in fcc
14:43:23 <danilobuerger> randomresult the first 3 should be straight forwar
15:00:25 <randomresult> let me get that clear. we dont think an element like the text-with-image element should be used like CSC makes it possible to use it AND it would be too much pain to rebuild it we skip it. BUT this means, fluidcontent-Core is not for existing but for new TYPO3 Websites.
18:39:27 <bjo3rn> do you have an idea re Tjark's issue?
18:40:30 <danilobuerger> well no, basically i have to overlay the form next week, so i am wondering as well... if it doesnt work, i need to fix it next week
18:40:39 <Tjark> dam, adding tx_fed_page_flexform did not work
18:41:09 <bjo3rn> the original issue is something else here. the flexform doesn't show up at all on the translated page.
18:41:33 <danilobuerger> Tjark when you add it to the overlay, you also need to add the field to the actual overlay table