*** kei-ichi has quit IRC | 00:02 | |
*** kei-ichi has joined #openstack-horizon | 00:02 | |
*** jtriley has joined #openstack-horizon | 00:07 | |
*** jtriley has quit IRC | 00:13 | |
*** germs has quit IRC | 00:15 | |
*** jtriley has joined #openstack-horizon | 00:15 | |
*** germs has joined #openstack-horizon | 00:17 | |
*** gyee has quit IRC | 00:20 | |
*** jtriley has quit IRC | 00:20 | |
*** jtriley has joined #openstack-horizon | 00:24 | |
*** jtriley has quit IRC | 00:29 | |
*** felipemonteiro has joined #openstack-horizon | 00:32 | |
*** germs has quit IRC | 00:32 | |
*** jtriley has joined #openstack-horizon | 00:39 | |
*** germs has joined #openstack-horizon | 00:42 | |
*** germs has quit IRC | 00:42 | |
*** germs has joined #openstack-horizon | 00:42 | |
*** jtriley has quit IRC | 00:44 | |
*** germs has quit IRC | 00:48 | |
*** germs has joined #openstack-horizon | 00:49 | |
*** jtriley has joined #openstack-horizon | 00:51 | |
*** germs has quit IRC | 00:53 | |
*** wolverineav has quit IRC | 00:56 | |
*** jtriley has quit IRC | 00:57 | |
*** wolverineav has joined #openstack-horizon | 00:57 | |
*** wolverineav has quit IRC | 01:02 | |
*** r-daneel has quit IRC | 01:02 | |
*** jtriley has joined #openstack-horizon | 01:06 | |
*** jtriley has quit IRC | 01:11 | |
*** itlinux has quit IRC | 01:12 | |
*** jtriley has joined #openstack-horizon | 01:14 | |
*** harlowja has quit IRC | 01:20 | |
*** jtriley has quit IRC | 01:20 | |
*** jtriley has joined #openstack-horizon | 01:28 | |
*** jtriley has quit IRC | 01:35 | |
*** lblanchard has quit IRC | 01:38 | |
*** jtriley has joined #openstack-horizon | 01:42 | |
*** jtriley has quit IRC | 01:48 | |
*** jtriley has joined #openstack-horizon | 01:50 | |
*** jtriley has quit IRC | 01:55 | |
*** jtriley has joined #openstack-horizon | 01:59 | |
*** jtriley has quit IRC | 02:05 | |
*** jtriley has joined #openstack-horizon | 02:09 | |
*** jtriley has quit IRC | 02:19 | |
*** germs has joined #openstack-horizon | 02:20 | |
*** germs has quit IRC | 02:20 | |
*** germs has joined #openstack-horizon | 02:20 | |
*** r-daneel has joined #openstack-horizon | 02:26 | |
*** gugl has quit IRC | 02:38 | |
*** jtriley has joined #openstack-horizon | 02:40 | |
*** germs has quit IRC | 02:43 | |
*** germs has joined #openstack-horizon | 02:43 | |
*** germs has quit IRC | 02:43 | |
*** germs has joined #openstack-horizon | 02:43 | |
*** jtriley has quit IRC | 02:47 | |
*** germs has quit IRC | 02:48 | |
*** jtriley has joined #openstack-horizon | 02:48 | |
*** jtriley has quit IRC | 02:54 | |
*** jtriley has joined #openstack-horizon | 03:05 | |
*** shu-mutou has joined #openstack-horizon | 03:13 | |
*** david-lyle has joined #openstack-horizon | 03:55 | |
*** ChanServ sets mode: +o david-lyle | 03:55 | |
*** namnh has joined #openstack-horizon | 04:09 | |
*** harlowja has joined #openstack-horizon | 04:12 | |
*** ianychoi_ has joined #openstack-horizon | 04:12 | |
*** ianychoi has quit IRC | 04:15 | |
*** wolverineav has joined #openstack-horizon | 04:17 | |
*** dave-mccowan has quit IRC | 04:17 | |
*** wolverineav has quit IRC | 04:21 | |
*** btully has joined #openstack-horizon | 04:32 | |
*** btully has quit IRC | 04:36 | |
*** harlowja has quit IRC | 04:40 | |
openstackgerrit | Xinni Ge proposed openstack/horizon master: Add plugin xstatic modules support https://review.openstack.org/552259 | 04:52 |
---|---|---|
openstackgerrit | Xinni Ge proposed openstack/horizon master: Add plugin xstatic modules support https://review.openstack.org/552259 | 05:13 |
*** shu-mutou is now known as shu-mutow | 05:16 | |
adriant | Is horizon compressing ALL non-inline js? | 05:20 |
adriant | Because I'm trying to move some panel specific js out of inline into a file and that JS is now also being run on the login page... | 05:21 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements https://review.openstack.org/552326 | 05:30 |
*** jtriley has quit IRC | 05:52 | |
*** e0ne has joined #openstack-horizon | 06:04 | |
*** ChanServ sets mode: +o e0ne | 06:04 | |
openstackgerrit | Shu Muto proposed openstack/horizon master: Fix Angular errors in openstack_auth https://review.openstack.org/552789 | 06:08 |
adriant | Ok, yeah, that is weird and terrifying. All the js files in horizon are compressed. | 06:14 |
adriant | The login page appears to include random JS from everywhere because of it. | 06:14 |
adriant | I've got a custom panel that has some js for rendering a QR code, and some onclick stuff, which we originally did in inline js, but I was trying to properly move it to js files but... I now have to check "is the thing I'm trying to bind to not null" and such. Which is find but is terrifying because that means ALL the js on the whole site is loading | 06:17 |
adriant | at once and if there are any generic IDs or class stuff... then things just go weird. | 06:17 |
adriant | Is something I'm doing broken or is this true? | 06:17 |
adriant | robcresswell, ying_zuo, amotoki: ^ for when any of you are in and about. | 06:17 |
*** jtriley has joined #openstack-horizon | 06:19 | |
adriant | I'm just terrified because it means that plugins which don't carefully make their ids and such unique in the JS will end up conflicting and attaching stuff to things in places that aren't expected. Not to mention we're then loading a hell of a load of extra JS in places that really really don't need all that JS evaluated and loaded because it isn't | 06:19 |
adriant | related to that specific page... :/ | 06:19 |
adriant | Is this common practice? i'm not a frontend/webdev so I honestly have no clue, but this sounds like madness to me. | 06:20 |
*** lajoskatona has joined #openstack-horizon | 06:23 | |
*** jtriley has quit IRC | 06:24 | |
*** jtriley has joined #openstack-horizon | 06:33 | |
*** jtriley has quit IRC | 06:40 | |
*** dims has quit IRC | 06:41 | |
adriant | oh, and because of how that works I've been technically importing one of my libraries twice... once in the html itself, and then again in the compressed js file because the horizon js compression does so based on the list of static files django returns... interesting. | 06:41 |
adriant | I mean that is kind of handy. Just throw stuff into the static folder, and horizon will compress it, but that's also kind of messy and unclear :/ | 06:42 |
*** dims has joined #openstack-horizon | 06:43 | |
*** ianychoi__ has joined #openstack-horizon | 06:43 | |
*** gary-smith_ has joined #openstack-horizon | 06:44 | |
*** ianychoi_ has quit IRC | 06:46 | |
*** gary-smith has quit IRC | 06:46 | |
*** dims has quit IRC | 06:48 | |
*** dims has joined #openstack-horizon | 06:49 | |
adriant | OH, it gets worse... and if I'm then rely on just the compressed js, I have no control over eval order other than alphabetical in my plugin. So I have to import/instantiate the damn thing twice. | 06:50 |
adriant | relying* on | 06:50 |
*** ianychoi__ is now known as ianychoi | 06:51 | |
adriant | which is why we have addHorizonLoadEvent :/ | 06:58 |
adriant | I'm both terrified and impressed right now. All of this feels awful, and yet really clever at the same time. Mostly like some really clever people have written tooling around something that is heavily flawed, but also in it's own flawed way quite clever. | 07:00 |
* adriant is very conflicted right now | 07:00 | |
*** pcaruana has joined #openstack-horizon | 07:04 | |
*** jtriley has joined #openstack-horizon | 07:05 | |
adriant | for the curious, the change I'm currently working on that spurred this: https://github.com/catalyst-cloud/adjutant-mfa/compare/new/no_inline_js | 07:11 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Imported Translations from Zanata https://review.openstack.org/552820 | 07:40 |
*** masco has quit IRC | 07:50 | |
*** masco has joined #openstack-horizon | 08:02 | |
*** tesseract has joined #openstack-horizon | 08:14 | |
robcresswell | adriant: o/ In old school jQuery land, loading everything up front like that is fairly common, which is one of the reasons it has a reputation for spaghetti code :) | 08:23 |
*** btully has joined #openstack-horizon | 08:27 | |
*** hoonetorg has quit IRC | 08:30 | |
*** xinni9e has joined #openstack-horizon | 08:30 | |
adriant | robcresswell: what just surprised me is that in the compressed js even on the login page is well... it looks like everything! including all the angular code :P | 08:30 |
robcresswell | Yeah, we've never done any splitting of that loading. It's all done up front. | 08:31 |
robcresswell | I'm actually not working on Horizon any more fyi, so my knowledge will become increasingly out of date. I just have IRC running in case people want to ping me directly :) | 08:31 |
*** vladiskuz has joined #openstack-horizon | 08:32 | |
*** xinni9e has quit IRC | 08:32 | |
adriant | I mean it works, just feels weird to deal with from the perspective of a plugin :P | 08:35 |
adriant | robcresswell: and bah! You will be missed, shan't ping you anymore then regarding horizon | 08:35 |
adriant | didn't realise you left horizon entirely | 08:35 |
*** jtriley has quit IRC | 08:35 | |
robcresswell | adriant: I'm happy to answer questions. Yeah I reduced my time a great deal a few months back, but then official dropped core duties about a month ago perhaps. | 08:36 |
robcresswell | But yeah, feel free to ping; I'll still help however I can | 08:37 |
*** e0ne has quit IRC | 08:37 | |
openstackgerrit | Shu Muto proposed openstack/horizon master: Fix Angular errors in openstack_auth https://review.openstack.org/552789 | 08:40 |
*** hoonetorg has joined #openstack-horizon | 08:44 | |
openstackgerrit | Merged openstack/horizon master: Imported Translations from Zanata https://review.openstack.org/552820 | 08:45 |
*** btully has quit IRC | 08:47 | |
*** darland has joined #openstack-horizon | 08:51 | |
*** jtriley has joined #openstack-horizon | 09:01 | |
*** jpich has joined #openstack-horizon | 09:04 | |
*** shu-mutow has quit IRC | 09:14 | |
*** yamamoto_ has joined #openstack-horizon | 09:18 | |
*** yamamoto has quit IRC | 09:22 | |
*** jtriley has quit IRC | 09:32 | |
*** jtriley has joined #openstack-horizon | 09:37 | |
*** tosky has joined #openstack-horizon | 09:41 | |
*** jtriley has quit IRC | 09:45 | |
*** jtriley has joined #openstack-horizon | 09:50 | |
*** jtriley has quit IRC | 09:57 | |
*** namnh has quit IRC | 10:00 | |
*** jtriley has joined #openstack-horizon | 10:04 | |
*** jtriley has quit IRC | 10:12 | |
*** rcernin has quit IRC | 10:13 | |
*** jtriley has joined #openstack-horizon | 10:15 | |
*** jtriley has quit IRC | 10:23 | |
*** watanabe_isao has joined #openstack-horizon | 10:23 | |
*** priteau has joined #openstack-horizon | 10:26 | |
*** jtriley has joined #openstack-horizon | 10:28 | |
*** btully has joined #openstack-horizon | 10:33 | |
*** jtriley has quit IRC | 10:35 | |
*** btully has quit IRC | 10:38 | |
*** jtriley has joined #openstack-horizon | 10:39 | |
*** jtriley has quit IRC | 10:46 | |
*** jtriley has joined #openstack-horizon | 10:50 | |
*** belmoreira has joined #openstack-horizon | 10:56 | |
*** jtriley has quit IRC | 10:57 | |
*** jtriley has joined #openstack-horizon | 10:58 | |
*** vladiskuz has quit IRC | 11:03 | |
*** jtriley has quit IRC | 11:05 | |
*** ianychoi has quit IRC | 11:07 | |
*** jtriley has joined #openstack-horizon | 11:13 | |
*** ianychoi has joined #openstack-horizon | 11:13 | |
*** watanabe_isao has quit IRC | 11:14 | |
*** jtriley has quit IRC | 11:20 | |
*** lblanchard has joined #openstack-horizon | 11:21 | |
*** jtriley has joined #openstack-horizon | 11:26 | |
*** e0ne has joined #openstack-horizon | 12:01 | |
*** ChanServ sets mode: +o e0ne | 12:01 | |
*** masco has quit IRC | 12:03 | |
*** kei-ichi has quit IRC | 12:08 | |
*** kei-ichi has joined #openstack-horizon | 12:09 | |
*** yamamoto_ has quit IRC | 12:17 | |
*** yamamoto has joined #openstack-horizon | 12:18 | |
*** dave-mccowan has joined #openstack-horizon | 12:32 | |
*** yamamoto has quit IRC | 12:38 | |
*** yamamoto has joined #openstack-horizon | 12:39 | |
*** yamamoto has quit IRC | 12:44 | |
*** jtriley has quit IRC | 12:50 | |
*** jtriley has joined #openstack-horizon | 12:51 | |
*** r-daneel has quit IRC | 12:53 | |
*** yamamoto has joined #openstack-horizon | 12:55 | |
*** jtriley has quit IRC | 12:58 | |
*** yamamoto has quit IRC | 12:59 | |
*** jtriley has joined #openstack-horizon | 13:01 | |
openstackgerrit | Matt Riedemann proposed openstack/horizon master: Use microversion 2.60 when attaching a multiattach volume https://review.openstack.org/547856 | 13:07 |
*** jtriley has quit IRC | 13:08 | |
*** jtriley has joined #openstack-horizon | 13:08 | |
*** yamamoto has joined #openstack-horizon | 13:10 | |
*** yamamoto has quit IRC | 13:15 | |
*** jtriley has quit IRC | 13:17 | |
*** felipemonteiro_ has joined #openstack-horizon | 13:23 | |
*** yamamoto has joined #openstack-horizon | 13:25 | |
*** e0ne has quit IRC | 13:25 | |
*** yamamoto has quit IRC | 13:29 | |
*** yamamoto has joined #openstack-horizon | 13:40 | |
*** yamamoto has quit IRC | 13:44 | |
*** felipemonteiro_ has quit IRC | 13:51 | |
*** jtriley has joined #openstack-horizon | 13:52 | |
*** yamamoto has joined #openstack-horizon | 13:54 | |
*** yamamoto has quit IRC | 13:55 | |
*** yamamoto has joined #openstack-horizon | 13:55 | |
*** yamamoto has quit IRC | 13:55 | |
*** germs has joined #openstack-horizon | 14:35 | |
*** germs has quit IRC | 14:35 | |
*** germs has joined #openstack-horizon | 14:35 | |
*** jtriley has quit IRC | 14:36 | |
*** mvk has quit IRC | 14:40 | |
*** felipemonteiro_ has joined #openstack-horizon | 14:49 | |
*** felipemonteiro__ has joined #openstack-horizon | 14:51 | |
amotoki | zigo: you around? | 14:53 |
*** jtriley has joined #openstack-horizon | 14:53 | |
*** germs has quit IRC | 14:55 | |
*** felipemonteiro_ has quit IRC | 14:55 | |
*** yamamoto has joined #openstack-horizon | 14:55 | |
*** mvk has joined #openstack-horizon | 14:55 | |
*** e0ne has joined #openstack-horizon | 14:58 | |
*** ChanServ sets mode: +o e0ne | 14:58 | |
*** yamamoto has quit IRC | 15:02 | |
*** itlinux has joined #openstack-horizon | 15:12 | |
*** germs has joined #openstack-horizon | 15:13 | |
*** germs has quit IRC | 15:14 | |
*** germs has joined #openstack-horizon | 15:15 | |
*** germs has quit IRC | 15:15 | |
*** germs has joined #openstack-horizon | 15:15 | |
*** felipemonteiro__ has quit IRC | 15:34 | |
*** felipemonteiro__ has joined #openstack-horizon | 15:35 | |
*** e0ne has quit IRC | 15:43 | |
*** jtriley has quit IRC | 15:47 | |
*** jtriley has joined #openstack-horizon | 15:55 | |
*** yamamoto has joined #openstack-horizon | 15:58 | |
*** e0ne has joined #openstack-horizon | 15:58 | |
*** ChanServ sets mode: +o e0ne | 15:58 | |
*** lajoskatona has quit IRC | 16:00 | |
*** felipemonteiro_ has joined #openstack-horizon | 16:01 | |
openstackgerrit | Ivan Kolodyazhny proposed openstack/horizon master: Remove deprecated fix_auth_url_version function https://review.openstack.org/552432 | 16:01 |
*** felipemonteiro_ has quit IRC | 16:02 | |
*** felipemonteiro_ has joined #openstack-horizon | 16:03 | |
*** yamamoto has quit IRC | 16:04 | |
*** felipemonteiro__ has quit IRC | 16:04 | |
*** felipemonteiro__ has joined #openstack-horizon | 16:06 | |
*** felipemonteiro_ has quit IRC | 16:09 | |
*** r-daneel has joined #openstack-horizon | 16:15 | |
*** felipemonteiro__ has quit IRC | 16:20 | |
*** vladiskuz has joined #openstack-horizon | 16:48 | |
*** tosky has quit IRC | 16:53 | |
*** vladiskuz has quit IRC | 16:55 | |
*** yamamoto has joined #openstack-horizon | 16:59 | |
*** sapd_ has joined #openstack-horizon | 17:01 | |
*** vladiskuz has joined #openstack-horizon | 17:04 | |
*** sapd has quit IRC | 17:05 | |
*** yamamoto has quit IRC | 17:05 | |
*** jpich has quit IRC | 17:14 | |
*** pcaruana has quit IRC | 17:18 | |
*** e0ne has quit IRC | 17:20 | |
openstackgerrit | Akihiro Motoki proposed openstack/horizon master: Switch project/admin routers tests to mock https://review.openstack.org/531725 | 17:46 |
*** lblanchard has quit IRC | 17:47 | |
*** itlinux has quit IRC | 17:50 | |
*** e0ne has joined #openstack-horizon | 17:53 | |
*** ChanServ sets mode: +o e0ne | 17:53 | |
*** wolverineav has joined #openstack-horizon | 17:57 | |
*** itlinux has joined #openstack-horizon | 17:58 | |
openstackgerrit | Akihiro Motoki proposed openstack/horizon master: Refactor futurist calls https://review.openstack.org/522556 | 18:00 |
*** yamamoto has joined #openstack-horizon | 18:01 | |
*** wolverineav has quit IRC | 18:03 | |
*** gyee has joined #openstack-horizon | 18:05 | |
*** jtriley has quit IRC | 18:05 | |
*** yamamoto has quit IRC | 18:06 | |
*** wolverineav has joined #openstack-horizon | 18:09 | |
*** harlowja has joined #openstack-horizon | 18:11 | |
*** felipemonteiro_ has joined #openstack-horizon | 18:12 | |
*** wolverineav has quit IRC | 18:14 | |
*** felipemonteiro__ has joined #openstack-horizon | 18:15 | |
*** e0ne has quit IRC | 18:16 | |
*** felipemonteiro_ has quit IRC | 18:19 | |
*** felipemonteiro__ has quit IRC | 18:30 | |
*** felipemonteiro__ has joined #openstack-horizon | 18:30 | |
*** jtriley has joined #openstack-horizon | 18:31 | |
*** jtriley has quit IRC | 18:36 | |
*** mvk has quit IRC | 18:41 | |
*** wolverineav has joined #openstack-horizon | 18:43 | |
*** jtriley has joined #openstack-horizon | 18:53 | |
*** e0ne has joined #openstack-horizon | 18:54 | |
*** ChanServ sets mode: +o e0ne | 18:54 | |
*** itlinux_ has joined #openstack-horizon | 18:57 | |
*** itlinux has quit IRC | 18:57 | |
*** jtriley has quit IRC | 19:00 | |
*** yamamoto has joined #openstack-horizon | 19:02 | |
*** jtriley has joined #openstack-horizon | 19:02 | |
*** yamamoto has quit IRC | 19:07 | |
*** mvk has joined #openstack-horizon | 19:09 | |
*** idlemind has joined #openstack-horizon | 19:14 | |
openstackgerrit | Ivan Kolodyazhny proposed openstack/horizon master: Refactor futurist calls https://review.openstack.org/522556 | 19:16 |
e0ne | amotoki: ^^ I just changed comment a bit according devstack config | 19:16 |
*** jtriley has quit IRC | 19:19 | |
*** tesseract has quit IRC | 19:20 | |
openstackgerrit | Merged openstack/horizon master: Updated from global requirements https://review.openstack.org/552326 | 19:30 |
*** jtriley has joined #openstack-horizon | 19:35 | |
*** e0ne has quit IRC | 19:36 | |
*** itlinux_ has quit IRC | 19:40 | |
*** e0ne has joined #openstack-horizon | 19:48 | |
*** ChanServ sets mode: +o e0ne | 19:48 | |
*** itlinux has joined #openstack-horizon | 19:52 | |
*** yamamoto has joined #openstack-horizon | 20:03 | |
*** yamamoto has quit IRC | 20:08 | |
*** vladiskuz has quit IRC | 20:24 | |
*** e0ne has quit IRC | 20:27 | |
*** idlemind_ has joined #openstack-horizon | 20:44 | |
*** idlemind_ has quit IRC | 20:44 | |
*** idlemind has quit IRC | 20:44 | |
openstackgerrit | Akihiro Motoki proposed openstack/horizon master: Move default settings to a separate module https://review.openstack.org/552054 | 20:59 |
openstackgerrit | Akihiro Motoki proposed openstack/horizon master: Improve mocking in REST API tests (test_glance) https://review.openstack.org/551962 | 20:59 |
*** yamamoto has joined #openstack-horizon | 21:04 | |
*** rcernin has joined #openstack-horizon | 21:08 | |
*** yamamoto has quit IRC | 21:10 | |
*** btully has joined #openstack-horizon | 21:26 | |
*** dave-mccowan has quit IRC | 21:26 | |
*** btully has quit IRC | 21:31 | |
*** dave-mccowan has joined #openstack-horizon | 21:33 | |
*** itlinux has quit IRC | 21:40 | |
*** belmoreira has quit IRC | 21:45 | |
*** jtriley has quit IRC | 21:46 | |
*** Matias has quit IRC | 21:57 | |
*** Matias has joined #openstack-horizon | 21:59 | |
*** wolverineav has quit IRC | 21:59 | |
*** wolverineav has joined #openstack-horizon | 22:00 | |
*** wolverineav has quit IRC | 22:01 | |
*** wolverin_ has joined #openstack-horizon | 22:01 | |
*** Matias has quit IRC | 22:04 | |
*** yamamoto has joined #openstack-horizon | 22:06 | |
*** yamamoto has quit IRC | 22:12 | |
*** priteau has quit IRC | 22:15 | |
*** felipemonteiro_ has joined #openstack-horizon | 22:20 | |
*** e0ne has joined #openstack-horizon | 22:21 | |
*** ChanServ sets mode: +o e0ne | 22:21 | |
*** e0ne has quit IRC | 22:22 | |
*** felipemonteiro__ has quit IRC | 22:23 | |
*** isao_watanabe has joined #openstack-horizon | 22:28 | |
*** marlinc has quit IRC | 22:44 | |
*** dave-mccowan has quit IRC | 22:47 | |
*** felipemonteiro_ has quit IRC | 22:49 | |
*** yamamoto has joined #openstack-horizon | 23:07 | |
*** wolverin_ has quit IRC | 23:09 | |
*** wolverineav has joined #openstack-horizon | 23:10 | |
*** wolverineav has quit IRC | 23:11 | |
*** wolverin_ has joined #openstack-horizon | 23:11 | |
*** yamamoto has quit IRC | 23:12 | |
*** btully has joined #openstack-horizon | 23:14 | |
*** btully has quit IRC | 23:19 | |
*** david-lyle has quit IRC | 23:21 | |
*** david-lyle has joined #openstack-horizon | 23:26 | |
*** ChanServ sets mode: +o david-lyle | 23:26 | |
*** david-lyle has quit IRC | 23:28 | |
*** marlinc has joined #openstack-horizon | 23:30 | |
*** david-lyle has joined #openstack-horizon | 23:30 | |
*** ChanServ sets mode: +o david-lyle | 23:30 | |
*** Matias has joined #openstack-horizon | 23:43 | |
*** watanabe_isao has joined #openstack-horizon | 23:46 | |
*** isao_watanabe has quit IRC | 23:46 | |
*** itlinux has joined #openstack-horizon | 23:47 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!