11:43:40 <BenjaminR> when you create a fresh provider extension id say its absolutely safe because what you need is what you test before you go in production
11:43:56 <BenjaminR> updating to dev on production... no one does that :) you have a staging for that..
11:44:12 <Denyerec> Just wondering if there's a reason to update if everything's wokring :)
11:44:59 <BenjaminR> if everything is working and you dont need additinal features from new versions and there is nothing critical (there were no security fixes in the last time) ... no
14:33:41 <bjo3rn> but it's in an early development stage.
14:38:05 <Guest|30612> I think that would be it. But for now I better think about my training methods once more. Punishments for disobidient editors or something like that. ;)
15:32:43 <randomresult> is there anyway to slide a contentarea?
15:33:23 <randomresult> i mean to put content in on f.ex. on the Homepage and then it displays on all subpages until it hits another page with content in it ...
17:05:59 <Denyerec> WHat would cause this kind of thing in my output (debug context)
17:06:00 <Denyerec> Flux View FluidTYPO3\Flux\View\ExposedTemplateView is able to read stored configuration from file /home/denyerec/htdocs/alba/typo3conf/ext/albatemplate/Resources/Private/Templates/Page/Frontpage.html
17:06:34 <bjo3rn> Denyerec setting flux debug level to 1 would
17:08:10 <mrboe> @bjo3rn you mean generally or explicit per substance?
17:08:44 <bjo3rn> ehm, I see. too sensible information ^^
17:12:41 <randomresult> but i smoke one last night... and will smoke a chig tonight
17:13:13 <randomresult> i will quit in the next holidays. but sitting here in the office with 5 persons smoking in front of my window... this is too hard.
17:13:28 <randomresult> well at least i mange not to smoke here...
21:42:50 <BenjaminR> hope its as good as fluid is :D
21:44:08 <BenjaminR> been afk a second - sending an email to a business partner asking for using sf2 instead of typo3 CMS for a non time critical project :)
21:44:17 <BenjaminR> telling him it would be the first one ^^
21:55:39 <bjo3rn> fx: you create one basic layout with some blocks containing defaults and you include/inherit from that template for different pages overriding those blocks where required
22:23:14 <cedricziel> play runs on top of netty webserver which is non-blocking and wires it to Akka which is an actor system and then allows non-blocking requests and promise like request processing in controller actions
22:31:18 <cedricziel> oh btw, the activator is not a strict requirement, so you could skip the ui if you wanted. but it is able to carry around tutorials and so on
22:59:42 <cedricziel> let's switch to github: https://github.com/playframework/playframework/tree/2.2.3/samples/java/zentasks
23:01:31 <cedricziel> this is a example ajax application with end to end testing including javascript testing, functional tests and unit tests with junit
23:02:32 <cedricziel> oh nice, they omitted the tests on github -.-
23:03:06 <cedricziel> oh man this turns into my personal nightmare and i'm more and more for showing you my very own code to show you the benefit ;)
23:03:27 <bjo3rn> but...but...where's the benefit of all that jazz?
23:11:23 <cedricziel> you can compile it into a jar, war or zip file
23:11:31 <cedricziel> i personally do it like that:
23:11:51 <cedricziel> i have a target host which has a private git repo over ssh
23:12:55 <cedricziel> on post-receive, i recompile the app, then stop 1 of 2 instances behind nginx->haproxy setup, upgrade it, run migrations, start it again and fo the same with the second instance
23:14:00 <cedricziel> here's my setup btw: https://gist.github.com/cedricziel/4ec91a5c594b1e8fc7d0
23:14:43 <cedricziel> the second option is a binary deployment as you can imagine via jar or war file
23:16:41 <cedricziel> which gives me clean api docs and almost fool-proof programming as the IDE knows the weak spots
23:17:24 <cedricziel> then there's the dependency management
23:17:36 <cedricziel> i use ivy/maven for anything
23:18:27 <cedricziel> i pull in webjars (webjars.org) for the libs i use in the frontend and it provides the libraries, a convenient requirejs setup out of the box and cdn integration on conext switching
23:19:50 <cedricziel> i can use js compilers like less and coffeescript to compile my assets as the jvm can run Rhino and Nashorn, which are NodeJS(JavaScript) runtimes
23:20:15 <cedricziel> all in one single (admittedly big in development) box
23:20:20 <bjo3rn> all of this sounds so much out of scope compared to what I do =)
23:21:58 <cedricziel> it may seem so, and i only scratch surface-but for me, as i needed a bazillion of toolchains in the last iteration, this is one box-i open it, "oh, i need this"-pull in the tool i need, and it just integrates.
23:22:49 <cedricziel> one nice thing i crafted these days is an actor which pulls in geonames.org stuff and synchronizes entities
23:22:57 <bjo3rn> then I'm really curious about the final result :)
23:23:35 <cedricziel> with php, this would have been a new (CLI) context. with play, i use the akka subsystem-tell it to run all 24h hours, and it will do so