IRC log for #flow3 on 20120410

05:09.43*** join/#flow3 avalarion (~bbnetz.eu@2a01:4f8:120:9045::4f)
05:41.21*** join/#flow3 sewo (~sewo@aako63.neoplus.adsl.tpnet.pl)
06:02.39*** part/#flow3 sewo (~sewo@aako63.neoplus.adsl.tpnet.pl)
06:03.48*** join/#flow3 sewo (~sewo@aako63.neoplus.adsl.tpnet.pl)
06:03.53sewogood morning
06:04.04*** join/#flow3 pgampe (~phil@pptp-212-201-71-7.pptp.stw-bonn.de)
06:04.45*** part/#flow3 pgampe (~phil@pptp-212-201-71-7.pptp.stw-bonn.de)
06:05.28*** join/#flow3 SpareParts (~ondriq_h@195.168.42.50)
06:13.34sewocan a viewhelper use a template file ? (I want to render a lot of html on each input-row of a form, but I think I don't need it to be a 'widget' with a controller)
06:19.15*** join/#flow3 fb|michael (~tuerk@mail.flagbit.de)
06:23.52*** join/#flow3 wittem (~wittem@mail.techdivision.com)
06:24.25*** join/#flow3 Chacky (~Sascha@dslb-094-217-129-216.pools.arcor-ip.net)
06:24.59*** join/#flow3 afoeder (~afoeder@p4FD64778.dip0.t-ipconnect.de)
06:26.27*** part/#flow3 Chacky (~Sascha@dslb-094-217-129-216.pools.arcor-ip.net)
06:30.07afoedermorning morning
06:43.18sewomorning
06:43.47sewoafoeder: do you know if a viewhelper (simple viewhelper, not a widget) can use a template file
06:44.24afoederout of the box, no. What exactly do you want to do?
06:45.06sewoI have inputs in a form that I want to wrap with lots of html so the form itself stays readable
06:45.45sewowrap with validationResults also and the usual wrappers one wants to use around nicely styled input fields
06:49.07sewoand it seems kind of strange for me to use widgets with controllers and actions, i'm not sure about the exact definition of a widget, but I feel that it's not for just wrapping lots of often reused html into one space or is it ? I mean it works with widgets, it just feels odd
06:50.15afoederif it's just "lots of often reused HTML", you should go for a *Partial*
06:50.49sewowell, can I pass parameters to a partial ?
06:50.54afoederabsolutely.
06:51.14afoederits "arguments" iirc
06:51.25afoedercheck the `render` VH
06:51.35sewook
06:51.58*** join/#flow3 magnetux (~magneto@p5DC274E5.dip.t-dialin.net)
06:53.15sewoyeah, I think that's the perfect way, thx
06:53.34afoederfine :)
07:02.46sewocan I also do <f:render partial="xyz"><f:form.textfield property="specialFied" /></f:render> and use some kind of magical variable name to place/render this "child" inside the partial ?
07:04.39afoedernice idea, but that's also not possible afaik...
07:04.52afoederbut of course you can pass that as argument.
07:05.06*** join/#flow3 Kirab (~kira.back@b2b-46-252-131-198.unitymedia.biz)
07:05.07afoedernot that beautiful then, but would work.
07:12.01sewohow does one assign the output of a viewhelper to a variable, so one can feed this as an argument to another viewhelper ?
07:13.28afoederyou can't assign variables in Fluid; that's for good reasons
07:14.05afoederyou can only "wrap" stuff or use the output of a VH as argument for an "outer" VH
07:14.32afoederi.e. you can only *nest* ViewHelpers
07:17.46*** join/#flow3 Conic (~conic@HSI-KBW-046-005-135-253.hsi8.kabel-badenwuerttemberg.de)
07:18.50sewoso I can only do it this way <f:render partial="xzy" arguments="child: {f:form.textfield(property:'specialField')}"/>
07:19.24afoederkind of, yeah
07:19.46afoeder(at least you have to wrap "arguments" in {}
07:23.17sewookay
07:29.02*** join/#flow3 foertel (~foertel@217.19.187.106)
07:33.27*** join/#flow3 andreaswolf (~aw@port-87-234-226-234.static.qsc.de)
07:40.16*** join/#flow3 mvta (~mvta@83.173.164.186.dyn.user.ono.com)
07:43.38*** join/#flow3 nd__ (~nd@mnhm-4d006f3f.pool.mediaWays.net)
08:04.07*** join/#flow3 cubert__ (~cubert@p5080675B.dip.t-dialin.net)
08:04.33*** join/#flow3 stacatoo (~daniel@p5080675B.dip.t-dialin.net)
08:24.49*** join/#flow3 farconada (~fernando@195.55.164.15)
08:29.59*** join/#flow3 ger^kallisti (~kyrill@188-194-191-15-dynip.superkabel.de)
08:30.02*** join/#flow3 wittem_ (~wittem@mail.techdivision.com)
08:31.18*** join/#flow3 Kollode (~patrick@designnet.work.de)
08:33.24*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
08:40.51sewoif there is a call like $this->viewHelperVariableContainer->add() inside a view helper, can I then access this added variable from within the view helper somehow?
08:42.24afoederwell, yes, it's assigned as variable then
08:42.34afoedercheck the "for" ViewHelper for example
08:43.54afoederthe ForViewHelper uses $renderingContext->getTemplateVariableContainer()->add()
08:43.57afoederyou might use this one
08:44.19afoederthis assures that your added variable is not used outside or destroys existing variables outside
08:44.50afoederbecause, changing Fluid variables inside a VH is pretty likely to result in bad side effects
08:47.17sewo$this->viewHelperVariableContainer->add('TYPO3\Fluid\ViewHelpers\FormViewHelper', 'formObjectName', $formObjectName);
08:47.17sewothis is used inside the form view helper
08:47.17sewoand I'd like to get the formObjectName inside the template to inject it into my partial, where it should be injected into the validationResults view helper
08:47.37sewobut I can't access formObjectName, at least as I tried to just output it, it was empty
08:48.03afoederno sewo, the For ViewHelper
08:48.06afoeder-m ;-)
08:48.12afoederf:for each...
08:48.57sewoyes you speak of the For ViewHelper, but I need the formObjectName that is set in the Form ViewHelper
08:49.15afoederah yes sorry; I thought you were mistaken me
08:52.06*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
08:53.54sewoafoeder: I don't know how to apply what you said to my problem
08:54.16afoederso, you are inside a <f:form> tag, right?
08:54.30afoederand you want to get the form name there?
08:56.08sewoyes
08:57.16afoederand, maybe {formObjectName} is not present there?
08:57.42sewoyes
08:58.40afoederah, I see, the variable is bound to the ViewHelper (in this case the FormViewHelper, in order not to mix something up)
08:59.59*** join/#flow3 jocrau (~jocrau@109.125.64.216.dynamic.cablesurf.de)
09:04.34sewoargh, ok, thought so, just hoped I was wrong, thanks again
09:08.41*** join/#flow3 stacatoo (~daniel@p5080675B.dip.t-dialin.net)
09:09.33stacatoohi, how to get the path to the file that is outside resources folder?
09:10.32afoederstacatoo, how do you "know" of that file? i.e. "what" file?
09:10.54afoederusually there's no need to handle files that are not Resources
09:11.54*** join/#flow3 acidspit (~combman@188-195-147-150-dynip.superkabel.de)
09:11.55stacatooBecause I have tne xml files that are outside th resources folder, and i have to import them to database
09:12.14afoederyes, well, where are they?
09:12.41stacatooI create the new folder called Import inside the package
09:13.03stacatooPackage -> Import
09:13.22afoederok, that's a hint. You're able to achieve a package's directory
09:14.02stacatoohow to do that?
09:14.15afoederpackageManager->getPackage->getPackagePath
09:14.43stacatooso I need to call packageManager class?
09:14.50afoederconcrete: $this->packageManager->getPackage('Your.Key')->getPackagePath()
09:15.04afoederyou need to dependency-inject the PackageManagerInterface
09:15.11stacatoook
09:15.27stacatooi will try it
09:15.48afoeder...and keep in mind to use the File utility class to concatenate the path ;-)
09:16.22stacatoook thx
09:16.49afoeder\TYPO3\FLOW3\Utility\Files::concatenatePaths()
09:17.46afoederbtw I would not recommend to store "working data" inside your package folder
09:18.42afoederyou should consider your package folder "read only"
09:18.51*** join/#flow3 Denyerec (~Never@cpc4-shep11-2-0-cust49.8-3.cable.virginmedia.com)
09:18.59afoederDenyerec!
09:19.20DenyerecGuten morgen ;)
09:19.32afoederEbenfalls ;-)
09:19.35stacatoook Afoeder
09:20.03afoedermaybe you want to  evaluate to use the "Data" folder
09:20.35stacatooso u mean I should store my xml files inside Data folder?
09:21.00afoederwell, am I right that these XML files will change, per design?
09:21.08afoederinherently...
09:21.25stacatooyes
09:21.34*** join/#flow3 Kirab (~kira.back@b2b-46-252-131-198.unitymedia.biz)
09:21.38afoederso, maybe users will put files there and your program fetches and processes them?
09:22.24stacatoono, User cannot upload the new xml files, user only can read and edit the files
09:22.44afoederand how do the XMLs get into your system?
09:24.50stacatoothis is just dummy and all the files already put in that folder, actually I just told to read the files from that folder, I dont need to create the file uploader
09:25.22afoederyes, but will the amount of xml files change, per logic?
09:25.29afoederor are they "deployed"
09:25.37afoederand won't change during runtime?
09:27.09afoederthat's the basic question: if it's burned to your package and won't change during runtime; your package folder is fine.
09:27.28*** join/#flow3 TripleJ (~Jonny@e182221172.adsl.alicedsl.de)
09:27.45afoederif it changes during runtime, and the files get deleted or new files are added, then Data (for example) would be a fine place
09:27.54stacatooNo, the amount of the files wont be change per logic
09:37.53*** join/#flow3 kevinmo (~kevinmo@home.3digit.de)
09:38.00stacatooIt works, but is the file can be read if I use those path?
09:38.28afoederhuh? sorry I didn't get that
09:40.48stacatooEmm, wait a minute, I made a mistake I think
09:43.59stacatoook, I mean is the file can be accessed using the path that is given? (Do u understand my question? I just dont know how to explain it properly)
09:44.29afoeder"can be accessed" by what exactly? By PHP? of course.
09:44.42afoederby web browser? Not.
09:45.08stacatooah, ok
09:45.51afoederIf there are no security concerns, and everybody may see the file, you could store it in <PAckage>\Resources\Public
09:45.58afoeder(like CSS and JS files are)
09:46.18stacatoook, I get it, thank you very much
09:46.50*** part/#flow3 magnetux (~magneto@p5DC274E5.dip.t-dialin.net)
09:50.23cubert__what was the release date for 1.1?
09:50.57cubert__or is there some road map www site for flow3?
10:08.17*** join/#flow3 sewo (~sewo@aako63.neoplus.adsl.tpnet.pl)
10:11.46*** join/#flow3 fb|micha (~tuerk@mail.flagbit.de)
10:39.56stacatooIs XML reader class from TYPO3 capable of reading xlf files?
10:40.10afoederabsolutely, it is used for it :)
10:40.39stacatoook
10:41.02afoedersee i18n\AbstractXmlParser
10:41.33afoederah sorry
10:41.45afoederdidn't read carefully enough... you wrote "TYPO3"
10:41.56afoederand I read FLOW3 :-P
10:42.09stacatoooh u mean i can readxml using abstractxmlparser?
10:42.35afoederwell, in FLOW3 you even can use i18n\Xliff\XliffParser
10:42.49stacatoook thats what i need, thx :)
10:44.55stacatooshould I inject the XliffParser Class ?
10:45.45afoederyep
10:46.48stacatoook
11:09.16*** join/#flow3 boonkerz (~boonkerz@p4FC303F8.dip.t-dialin.net)
11:12.53boonkerzhow can i define an One-To-Many, Self-referencing in flow3
11:12.59boonkerzbecause i have an error
11:13.20boonkerzFatal error: Doctrine\ORM\Proxy\ProxyFactory::getProxy() [function.require]: Failed opening required '/var/www/taketv/Data/Temporary/Development/Doctrine/Proxies/__CG__TYPO3TYPO3CRDomainModelNode.php' (include_path='.:/usr/local/lib/php/') in /var/www/taketv/Packages/Framework/Doctrine.ORM/Classes/Proxy/ProxyFactory.php on line 93
11:14.10*** join/#flow3 andreaswolf1 (~aw@109.125.64.216.dynamic.cablesurf.de)
11:21.26*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
11:29.27*** join/#flow3 jocrau (~jocrau@109.125.64.216.dynamic.cablesurf.de)
11:49.57boonkerzthis should be work or?
11:50.17boonkerzhttp://pastebin.com/rb6Td5k1
11:50.57afoederhm good question
11:51.07afoederI think there was an issue with that...
11:51.51*** join/#flow3 sewo (~sewo@aalc84.neoplus.adsl.tpnet.pl)
11:53.36boonkerzthis is the page on doctrine http://docs.doctrine-project.org/projects/doctrine-orm/en/2.0.x/reference/association-mapping.html#one-to-many-self-referencing
11:57.27*** join/#flow3 sewo1 (~sewo@aakt83.neoplus.adsl.tpnet.pl)
11:57.54*** join/#flow3 sewo1 (~sewo@aakt83.neoplus.adsl.tpnet.pl)
12:28.41*** join/#flow3 jocrau (~jocrau@109.125.64.216.dynamic.cablesurf.de)
12:35.00sewo1I have this <f:form.checkbox property="{property}" name="{property}" value="yes"/> which is inside a partial which is inside a <form> tag
12:35.00sewo1and this line causes an exception because in the CheckboxViewHelper $this->getPropertyValue() is called, which calls $this->viewHelperVariableContainer->get('TYPO3\Fluid\ViewHelpers\FormViewHelper', 'formObject');  and 'formObject' does not exist, could it be that this is a bug and that it should say 'formObjectName' ?
12:35.00sewo1I have to leave now, but maybe someone can verify this or give me a hint on what to do
12:35.36*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
12:40.29*** join/#flow3 andreaswolf1 (~aw@109.125.64.216.dynamic.cablesurf.de)
12:43.06boonkerzok i not know whats going wrong :)
12:44.43*** join/#flow3 sewo (~sewo@aala43.neoplus.adsl.tpnet.pl)
12:47.50boonkerz@kdambekalns any hint?
12:53.44*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
13:18.10*** join/#flow3 sagittarii (4d02bcca@gateway/web/freenode/ip.77.2.188.202)
13:31.13*** join/#flow3 wittem (~wittem@mail.techdivision.com)
14:07.28*** join/#flow3 mgoldbeck1 (~Adium@109.125.64.216.dynamic.cablesurf.de)
14:12.35*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
14:14.21*** join/#flow3 mgoldbeck2 (~Adium@109.125.64.216.dynamic.cablesurf.de)
14:15.09*** join/#flow3 jocrau_ (~jocrau@109.125.64.216.dynamic.cablesurf.de)
14:15.28*** join/#flow3 mgoldbeck1 (~Adium@109.125.64.216.dynamic.cablesurf.de)
14:23.01*** join/#flow3 ciczach (~zach@c-98-246-167-102.hsd1.or.comcast.net)
14:27.23*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
14:31.13*** join/#flow3 jocrau (~jocrau@109.125.64.216.dynamic.cablesurf.de)
14:31.29*** join/#flow3 andreaswolf1 (~aw@109.125.64.216.dynamic.cablesurf.de)
14:48.18*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
14:52.09ChristianMsewo1, sewo this should be correct, you need a formObjectName (the string that defines the variable name for the argument to your action) and a formObject which is the actual object (think in terms of reintegrating values into your new form after a validation error
14:57.37afoederChristianM, how's the location? :)
14:58.59ChristianMlooks nice so far, wifi troubles but that is normal
14:59.12afoeder+
14:59.59afoederalthough I was a bit unsure about my opinion regarding the Sursee location then; I'm meanwhile sure that kind of location was really cool and almost unbeatable
15:00.20afoederhaving such a large Campus where you can roam where you want to is hard to beat...
15:00.50afoederbut I'm looking forward to what MACE will offer ;-)
15:00.53ChristianMthat seems not to be the case here
15:00.58ChristianMbut we will see
15:01.08afoederyep, I expected that
15:01.40ChristianMI don't know yet on how many buildings the DD will be spread
15:01.40afoederok
15:04.34*** part/#flow3 TripleJ (~Jonny@e182221172.adsl.alicedsl.de)
15:05.54boonkerzmy model do not work
15:05.55boonkerz:(
15:17.09*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
15:18.00*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
15:18.49*** join/#flow3 jocrau (~jocrau@109.125.64.216.dynamic.cablesurf.de)
15:20.38ChristianMboonkerz anything we can help with?
15:21.11boonkerzhttp://docs.doctrine-project.org/projects/doctrine-orm/en/2.0.x/reference/association-mapping.html#one-to-many-self-referencing
15:21.17boonkerzthis is what i will do
15:21.23boonkerzhttp://pastebin.com/rb6Td5k1
15:21.30boonkerzbut it dosent work
15:21.43boonkerzbecause it not generates any proxy class
15:28.57afoederChristianM, are you a bit into PropertyMapping / TypeConverting?
15:30.07ChristianMwell, a bit sure
15:30.37afoederbecause... I need to implement an own (to)Doctrine Collection converter
15:31.18afoederor, wait a sec
15:31.18ChristianM<PROTECTED>
15:32.32afoederChristianM, kindly have a look at this please: http://forge.typo3.org/projects/package-opengraph/repository/entry/trunk/Classes/Domain/Model/AbstractObject.php
15:32.36afoederline50
15:33.15ChristianMprotected $image; ?
15:33.26afoederthe native, original property mapper would work if I passed the Image`s data as an array
15:33.36afoeder(a flat, indexed array with the Image data each)
15:33.46ChristianMyes, should
15:33.51afoederit does.
15:34.01*** join/#flow3 boonkerz_ (~boonkerz@pd95c8e64.dip0.t-ipconnect.de)
15:34.28boonkerz_it will not work :(
15:37.55afoederhttps://gist.github.com/717e336c155e250e61dd
15:38.12afoederso, if I pass the "stack" of Images, it's fine.
15:38.41afoederbut, it can occur that, in case there's only one image, that "stack" array level is not there
15:39.20afoedergenerally, the solution is simple: just "wrap" an additional array with one index
15:40.09afoedermy main problem lies in the property mapper itself; the canConvertFrom method provides two arguments, $source and $targetTYpe
15:40.36afoederunfortunately, $targetType is only `Doctrine\Common\Collections\Collection`
15:40.44afoederwithout the concrete <...> part
15:42.37ChristianMafoeder for me you need to either provide it already in the form the way you want it (eg. collection) or accept the image seperately and add it by hand
15:44.07*** join/#flow3 andreaswolf (~aw@109.125.64.216.dynamic.cablesurf.de)
15:44.23afoederthe reason for that ugliness is this: http://ogp.me/#array
15:44.47afoederthere could either be one image or multiple ones
15:45.17afoederif there are multiple ones, my parser correctly establishes an array for each image
15:47.01afoederif not, the parser doesn't, because of course not every property should always be an array
15:47.35afoederI wanted to decide that by annotation
15:55.32*** join/#flow3 sewo (~sewo@aalj168.neoplus.adsl.tpnet.pl)
16:23.28*** join/#flow3 smux (~smux@APoitiers-157-1-32-73.w83-193.abo.wanadoo.fr)
17:04.42*** join/#flow3 Kollode (~Kollode@f054055040.adsl.alicedsl.de)
17:04.59*** join/#flow3 wouterw90 (~wouterw90@181.sub196.ddfr.nl)
17:16.07*** join/#flow3 foertel (~foertel@80.187.201.77)
17:25.03boonkerzok works :D
17:25.05boonkerznice
17:39.41*** join/#flow3 thasmo (~thasmo@d86-33-68-126.cust.tele2.at)
17:41.00*** join/#flow3 mgoldbeck (~Adium@109.125.64.216.dynamic.cablesurf.de)
17:45.39*** join/#flow3 Kirab (~kira.back@b2b-46-252-131-198.unitymedia.biz)
17:48.15*** join/#flow3 sewo (~sewo@aalj168.neoplus.adsl.tpnet.pl)
17:49.48*** join/#flow3 beberlei (~twitter@koln-5d814b3a.pool.mediaWays.net)
17:54.13*** join/#flow3 afoeder (~afoeder@dslb-094-216-009-049.pools.arcor-ip.net)
17:54.34*** part/#flow3 afoeder (~afoeder@dslb-094-216-009-049.pools.arcor-ip.net)
18:09.59*** join/#flow3 pgampe (~phil@pptp-212-201-71-7.pptp.stw-bonn.de)
18:11.13KirabHi guys :)
18:11.26*** part/#flow3 pgampe (~phil@pptp-212-201-71-7.pptp.stw-bonn.de)
18:11.34KirabDoes anyone know when the published resources symlinks are removed (automatically)
18:11.44KirabOr 'cleaned up' maybe
18:19.59KirabOh I found it, yet another bug
18:20.00Kirab:3
18:22.59*** join/#flow3 sewo1 (~sewo@aakg162.neoplus.adsl.tpnet.pl)
18:25.55jwait's not a bug, it's a missing feature ;)
18:26.57boonkerzanyone have an clean forum style found or seen
18:26.59boonkerz:)
18:27.08boonkerzcss style
18:27.30Kirabjwa: It’s a bug
18:28.00KirabDue to that bug all symlinks get removed, nice one :)
18:28.57*** join/#flow3 sewo (~sewo@aakg162.neoplus.adsl.tpnet.pl)
18:29.27*** part/#flow3 sewo (~sewo@aakg162.neoplus.adsl.tpnet.pl)
18:31.08jwaboonkerz: yes
18:31.18jwaboonkerz: but I always forget the guy's name Q_Q
18:32.25boonkerzok :)
18:33.54jwaI hate it when this happens
18:34.01jwahe just recently released a very slick forum
18:34.22jwaboonkerz: got it: http://forum.camendesign.com/
18:34.59boonkerzthx :)
19:07.29*** join/#flow3 zachdavis (~zachdavis@069-064-227-254.pdx.net)
19:07.45zachdavisgood morning
19:09.39*** join/#flow3 mgoldbeck (~Adium@dslb-088-065-041-203.pools.arcor-ip.net)
19:10.31boonkerzmoin
19:10.37boonkerz:)
19:13.49*** join/#flow3 andreaswolf (~aw@port-87-234-226-234.static.qsc.de)
19:17.53*** join/#flow3 jocrau (~jocrau@vpn13.hotsplots.net)
19:27.33*** join/#flow3 mgoldbeck (~Adium@dslb-088-065-041-203.pools.arcor-ip.net)
19:35.17*** join/#flow3 Kirab (~kira.back@b2b-46-252-131-198.unitymedia.biz)
19:37.04*** join/#flow3 franzkugelmann (~franzkuge@85.183.84.119)
19:59.09*** join/#flow3 mgoldbeck (~Adium@dslb-088-065-041-203.pools.arcor-ip.net)
20:28.19*** part/#flow3 franzkugelmann (~franzkuge@85.183.84.119)
20:32.30boonkerzmy forge login dosent work
20:32.34boonkerzwith Passwort reset :(
20:32.51boonkerzi will add an future wish to fluid
20:32.55boonkerz:)
20:41.31boonkerzi need in an selectbox an empty option
20:42.40*** join/#flow3 boonkerz (~boonkerz@pd95c8e64.dip0.t-ipconnect.de)
20:43.43boonkerz<f:form.select property="parent" options="{parentForums}" addEmptyOption="true" />
20:44.53jwaapparently Web/_Resources/ is not writable even with 777 and root on ubuntu? what am I missing?
20:45.24jwaboonkerz: already under review iirc, but there's definitely already an issue for itg
20:45.30*** join/#flow3 Wrack (~eric@f052235166.adsl.alicedsl.de)
20:45.31jwas/itg/it
20:48.15boonkerzin review nice
20:51.16jwaI'
20:51.18jwam not sure
20:52.17boonkerzhttps://review.typo3.org/#/q/status:open+project:FLOW3/Packages/TYPO3.Fluid,n,z
20:52.21boonkerznot yet i think
20:59.43jwaHOLY ****! Production context is insanely fast!
21:00.34boonkerzyea
21:00.56jwait's still 10 times slower than serving a static html file but.. yeah :P
21:07.36jwa:) https://twitter.com/#!/julianwachholz/status/189821655818842114
21:08.27beberleijwa, whats the average ms you get?
21:08.42jwa200
21:09.04beberleithats good :)
21:09.07jwajust a simple get, no operations
21:09.13boonkerzfollow :)
21:26.14jwasomeone know where that example was on how to login a user after registration?
22:12.14*** join/#flow3 kevin_ (~kevin@76.14.75.242)
22:43.00*** join/#flow3 boonkerz (~boonkerz@p4FC30792.dip.t-dialin.net)
22:44.31boonkerzok why my form not validate

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.