*** rajatvig has quit IRC | 00:00 | |
*** kzaitsev_mb has joined #openstack-horizon | 00:01 | |
*** Sukhdev has quit IRC | 00:02 | |
*** Sukhdev has joined #openstack-horizon | 00:03 | |
*** linkedinyou has joined #openstack-horizon | 00:03 | |
*** rhagarty__ has joined #openstack-horizon | 00:05 | |
openstackgerrit | Thai Tran proposed openstack/horizon: WIP Adding CREATE action to identity users panel https://review.openstack.org/222297 | 00:07 |
---|---|---|
*** rhagarty__ has quit IRC | 00:07 | |
david-lyle | gyee :/ | 00:07 |
*** Sukhdev has quit IRC | 00:07 | |
david-lyle | that seems Falsey | 00:07 |
gyee | I don't think django-auth can handle anything other than username/password | 00:08 |
david-lyle | theoretically you could add a different backend to d-o-a | 00:08 |
*** jingjing_ren has joined #openstack-horizon | 00:08 | |
david-lyle | there are auth plugins | 00:08 |
gyee | can I extend Horizon to accept, say, smart card reader? | 00:08 |
gyee | oh | 00:09 |
david-lyle | but they are limited, but kerberos works | 00:09 |
david-lyle | thought you were talking no keystone | 00:09 |
gyee | but how do you get a token? | 00:10 |
gyee | via Federation? | 00:10 |
david-lyle | https://github.com/openstack/django-openstack-auth-kerberos | 00:10 |
david-lyle | that was jamielennox | 00:11 |
*** tqtran has quit IRC | 00:11 | |
david-lyle | you could abuse the format accordingly to most anything | 00:12 |
david-lyle | s/to/to do/ | 00:12 |
*** jingjing_ren has quit IRC | 00:13 | |
gyee | david-lyle, thanks! let me readup the code. I am trying to figure out whether it can do smart card integration | 00:14 |
david-lyle | should be able to have the plugin provider code talk to whatever you want | 00:14 |
gyee | ah, kerberos via federation looks like | 00:17 |
gyee | to get an unscoped token | 00:18 |
*** chlong has quit IRC | 00:19 | |
david-lyle | yes unscoped | 00:19 |
*** geoffarnold has quit IRC | 00:20 | |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 00:21 |
*** darrenc is now known as darrenc_afk | 00:22 | |
r1chardj0n3s | lhcheng: would you like to discuss your -1 on the DOA patch? | 00:23 |
lhcheng | r1chardj0n3s: hey | 00:23 |
r1chardj0n3s | lhcheng: several other options were investigated and they either don't work or are infeasibly complex to implement | 00:23 |
r1chardj0n3s | they're mentioned on the bug report | 00:23 |
r1chardj0n3s | this bug is currently causing selenium failures, which is annoying because it means we *still* can't have people pay attention to selenium and they keep breaking things and I have to keep fixing them | 00:24 |
*** bradjones is now known as bradjones|away | 00:24 | |
r1chardj0n3s | (apart from the user errors people receive) | 00:24 |
lhcheng | haven't got the chance to catchup with the updated bug report, still have a lot of stuff in my plate. :( | 00:24 |
r1chardj0n3s | yep | 00:24 |
*** geoffarnold has joined #openstack-horizon | 00:25 | |
lhcheng | monkey patching a private method doesn't sound right | 00:25 |
r1chardj0n3s | I'm aware of that: monkey-patching was my last resort | 00:25 |
r1chardj0n3s | but basically DOA breaks Django's User model | 00:26 |
r1chardj0n3s | so we have to work around that somehow | 00:26 |
lhcheng | yeah, I agree we need to have a work around. I feel there is a better way | 00:26 |
r1chardj0n3s | 1) we can't just patch the type of the id field on the User model since Django doesn't allow mutation of models. That would be the ideal option, but we just can't do it. | 00:27 |
r1chardj0n3s | 2) we can't implement our own User-compatible model as we'd have to then keep it in sync with Django | 00:28 |
r1chardj0n3s | 3) we *could* move the token off of the id attribute, but that would require significant edits to Horizon to alter all the uses of user.id | 00:28 |
*** geoffarnold has quit IRC | 00:29 | |
r1chardj0n3s | so hence I ended up implementing #4, the monkey-patch (since DOA *already* monkey-patches Django) | 00:29 |
r1chardj0n3s | if you can come up with #5 please do so, but this patch can't languish, please | 00:29 |
lhcheng | yeah monkey patching is bad, but monkey patching a private method is worst. | 00:29 |
*** clu_ has quit IRC | 00:29 | |
david-lyle | lhcheng: didn't mrunge have a related fix that got lost | 00:30 |
david-lyle | something about AUTH_USER | 00:30 |
david-lyle | or some such | 00:30 |
* david-lyle has no memory left | 00:30 | |
lhcheng | yeah, setting the user model | 00:30 |
r1chardj0n3s | AUTH_USER_MODEL you mean? | 00:30 |
r1chardj0n3s | yeah, that's option #2 above | 00:30 |
david-lyle | sure, let's go with that | 00:31 |
r1chardj0n3s | um | 00:31 |
r1chardj0n3s | implementing a User-compatible model? that's touching even more Django internal code than this monkey-patch :( | 00:31 |
david-lyle | let me dig it up | 00:32 |
*** SimonChung has quit IRC | 00:33 | |
david-lyle | https://review.openstack.org/#/c/167981/3..1/openstack_auth/user.py | 00:34 |
david-lyle | which looking at now, doesn't seem right | 00:35 |
r1chardj0n3s | david-lyle: that doesn't appear to solve the problem | 00:35 |
david-lyle | just remembered something about id manipulation | 00:36 |
r1chardj0n3s | so the basic problem is that Django's base models.Model has an int() id | 00:36 |
r1chardj0n3s | we are assigning a non-int to that in DOA | 00:36 |
r1chardj0n3s | we can't change that int type id attribute without implementing a User class from the ground up (ie. no model.Model base class) | 00:36 |
david-lyle | i did see the error on a token timeout too | 00:38 |
david-lyle | which was worse | 00:38 |
r1chardj0n3s | there's a number of ways to trigger this problem, yeah | 00:38 |
david-lyle | right, just happy to be with the cool kids | 00:39 |
openstackgerrit | Diana Whitten proposed openstack/horizon: Horizon Login now inherits from Bootstrap Theme https://review.openstack.org/219881 | 00:39 |
r1chardj0n3s | :) | 00:39 |
*** kzaitsev_mb has quit IRC | 00:42 | |
*** btully has quit IRC | 00:44 | |
*** crobertsrh is now known as _crobertsrh | 00:46 | |
*** hurgleburgler has quit IRC | 00:47 | |
r1chardj0n3s | david-lyle, lhcheng: OK, so the *correct* fix is to implement #3 I describe above, but it's a big edit to Horizon, will require developer re-education and we'll have to figure out some method of faking a user id value in DOA | 00:49 |
r1chardj0n3s | david-lyle, lhcheng: "user.id" appears 105 times in Horizon (by my simplistic grep) | 00:51 |
openstackgerrit | Allen proposed openstack/horizon: Fix alignment issue in project table inline edit https://review.openstack.org/222044 | 00:53 |
openstackgerrit | Allen proposed openstack/horizon: Improve error message for create QoS Spec https://review.openstack.org/222063 | 00:53 |
*** viks has quit IRC | 00:53 | |
*** hurgleburgler has joined #openstack-horizon | 00:59 | |
*** hurgleburgler has joined #openstack-horizon | 00:59 | |
*** hurgleburgler has quit IRC | 01:00 | |
*** shivrao has quit IRC | 01:02 | |
*** chlong has joined #openstack-horizon | 01:02 | |
*** mwhagedorn has joined #openstack-horizon | 01:05 | |
*** davidmichaelkarr has quit IRC | 01:07 | |
*** chlong has quit IRC | 01:08 | |
*** zhenguo has joined #openstack-horizon | 01:09 | |
*** lhcheng has left #openstack-horizon | 01:11 | |
*** lhcheng has quit IRC | 01:11 | |
openstackgerrit | Justin Pomeroy proposed openstack/horizon: Fix ng Launch Instance button in Network Topology https://review.openstack.org/222426 | 01:12 |
*** darrenc_afk is now known as darrenc | 01:12 | |
stevemar | so who wants to talk about pagination and users?! | 01:14 |
*** jwy has quit IRC | 01:19 | |
*** chlong has joined #openstack-horizon | 01:20 | |
*** btully has joined #openstack-horizon | 01:21 | |
jpomeroy | stevemar, you mean adding paging to the users table? | 01:23 |
*** btully has quit IRC | 01:26 | |
*** amotoki has joined #openstack-horizon | 01:26 | |
jpomeroy | if only keystone v3 supported paging | 01:26 |
*** alanf has quit IRC | 01:29 | |
*** saksham has quit IRC | 01:30 | |
*** jbell8 has quit IRC | 01:32 | |
*** jbell8 has joined #openstack-horizon | 01:34 | |
openstackgerrit | Allen proposed openstack/horizon: Improve error message for create QoS Spec https://review.openstack.org/222063 | 01:34 |
*** jwy has joined #openstack-horizon | 01:35 | |
*** zhurong has joined #openstack-horizon | 01:35 | |
*** Daisy has joined #openstack-horizon | 01:36 | |
*** Drago1 has joined #openstack-horizon | 01:38 | |
openstackgerrit | Brad Pokorny proposed openstack/horizon: Choose a server group when booting a VM https://review.openstack.org/217617 | 01:38 |
*** kzaitsev_mb has joined #openstack-horizon | 01:39 | |
*** Drago1 has quit IRC | 01:40 | |
*** asahlin has joined #openstack-horizon | 01:40 | |
*** Drago1 has joined #openstack-horizon | 01:40 | |
*** Daisy has quit IRC | 01:40 | |
*** asahlin has quit IRC | 01:44 | |
r1chardj0n3s | is anyone here (awake) who understands the pre-angular modal dialog mechanisms in Horizon? | 01:53 |
*** zhurong_ has joined #openstack-horizon | 01:54 | |
*** zhurong has quit IRC | 01:56 | |
r1chardj0n3s | nvm, found the problem | 01:56 |
*** Daisy has joined #openstack-horizon | 01:57 | |
*** Drago1 has quit IRC | 02:04 | |
*** sqchen has left #openstack-horizon | 02:06 | |
*** bpokorny has quit IRC | 02:06 | |
*** kzaitsev_mb has quit IRC | 02:07 | |
openstackgerrit | Allen proposed openstack/horizon: Project detail link result in user log out https://review.openstack.org/222437 | 02:07 |
*** shu has joined #openstack-horizon | 02:08 | |
*** mwhagedorn has quit IRC | 02:08 | |
stevemar | jpomeroy: so, i was recently chatting about keystone and ldap integration with a bunch of folks who are customer facing | 02:13 |
stevemar | giving them the low down on ldap and openstack, and all that | 02:13 |
stevemar | when i showed them ldap, and how listing users doesn't work in horizon, they had a strange reation | 02:13 |
openstackgerrit | Richard Jones proposed openstack/horizon: Fix loading of angular in jquery modals https://review.openstack.org/222438 | 02:15 |
stevemar | essentially it was: 1) they totally understand not being able to page through ldap, as some ldaps may not allow this, 2) searching for a user would be nice, but the point was: "why do I want to see things if I cant manage them" | 02:15 |
stevemar | 3) what they *really* want, is a view for role assignments, seeing which ldap groups they assigned roles to, would be much more helpful | 02:15 |
jpomeroy | i think i remember something like that coming up recently, in a conversation about how to handle this in horizon | 02:17 |
r1chardj0n3s | grr. just spent effectviely a day trying to debug something that was being squashed by a try {...} catch {} :( | 02:17 |
jpomeroy | i mean something like just showing role assignments | 02:17 |
jpomeroy | right now viewing role assignment in horizon is not very friendly | 02:19 |
*** davidmichaelkarr has joined #openstack-horizon | 02:19 | |
*** yamamoto has quit IRC | 02:24 | |
jpomeroy | stevemar, so a table that just shows groups and roles assigned to those groups would make sense? | 02:26 |
jpomeroy | any idea how big that could typically be? i mean would we run into the same issue with not being able to page? | 02:27 |
stevemar | jpomeroy: right, it would show group | role | project, as the header | 02:27 |
stevemar | well that's all stored in SQL | 02:27 |
stevemar | it can get big, but we can optimize that | 02:27 |
stevemar | keystone exposes an API for this | 02:28 |
*** Daisy has quit IRC | 02:28 | |
stevemar | i didn't know horizon even lists role assignments right now | 02:28 |
*** Daisy has joined #openstack-horizon | 02:28 | |
jpomeroy | well, for users you can view the roles they have on a project | 02:29 |
jpomeroy | but only a single project at a time | 02:29 |
*** Daisy_ has joined #openstack-horizon | 02:30 | |
*** Daisy has quit IRC | 02:30 | |
*** KunalGandhi has quit IRC | 02:30 | |
jpomeroy | it might make sense to have another page just for the role assignments | 02:31 |
jpomeroy | stevemar, is this the API? http://developer.openstack.org/api-ref-identity-v3.html#listRoleAssignments | 02:32 |
stevemar | jpomeroy: right, just list all the role assignments | 02:33 |
stevemar | jpomeroy: heres the API: http://specs.openstack.org/openstack/keystone-specs/api/v3/identity-api-v3.html#list-effective-role-assignments | 02:33 |
stevemar | unfortunately, it just lists IDs, not names | 02:34 |
stevemar | which is mighty annoying | 02:34 |
jpomeroy | yeah, that definitely makes things less friendly | 02:35 |
stevemar | i wonder if we can change the API to return names | 02:36 |
stevemar | morgan: ^ | 02:37 |
jpomeroy | so this would just be a big table of UUIDs | 02:37 |
jpomeroy | yuck =] | 02:37 |
jpomeroy | but otherwise it seems reasonable to me that we could add a new page for this, or possibly a second tab on the existing Roles page to show the assignments | 02:40 |
jpomeroy | i'm sure Piet would have some input on that | 02:42 |
*** kyleolivo has quit IRC | 02:50 | |
*** ducttape_ has joined #openstack-horizon | 02:50 | |
*** kyleolivo has joined #openstack-horizon | 02:50 | |
morgan | stevemar: reading backscroll | 02:51 |
morgan | stevemar: project IDs there? | 02:51 |
morgan | stevemar: well, remember project names are not globally unique, IDs are. maybe we should be returning both? | 02:52 |
morgan | only because it gets expensive to do a .get_project() on each one | 02:52 |
jpomeroy | i would vote for both, id and name for each resource | 02:52 |
morgan | or a .list_projects() [hah, see pagination conversation] and extract detauls | 02:52 |
morgan | details* | 02:52 |
morgan | stevemar: ^ I could see adding project name to that result | 02:53 |
*** Daisy_ has quit IRC | 02:55 | |
*** lhcheng has joined #openstack-horizon | 02:55 | |
*** kyleolivo has quit IRC | 02:55 | |
*** Daisy has joined #openstack-horizon | 02:55 | |
jpomeroy | morgan, for each role assignment i think we would want id and name for the group, user, role, project | 02:55 |
jpomeroy | if we want to throw this all into a table | 02:55 |
lhcheng | r1chardj0n3s: sorry, have to step out awhile ago. | 02:55 |
lhcheng | r1chardj0n3s: option #3 sounds bad | 02:56 |
r1chardj0n3s | lhcheng: yea | 02:56 |
lhcheng | r1chardj0n3s: my devstack is busted atm, fixing it right now | 02:56 |
morgan | jpomeroy: sure. we should ahve all that info when we build that list anyway | 02:56 |
lhcheng | r1chardj0n3s: will try to reproduce and find something | 02:56 |
lhcheng | r1chardj0n3s: if I can't find an alternative, let's go with the path | 02:56 |
lhcheng | *patch | 02:56 |
*** SimonChung has joined #openstack-horizon | 02:57 | |
*** gyee has quit IRC | 02:58 | |
r1chardj0n3s | lhcheng: OK (sorry for slow response, was driving :-) | 02:59 |
lhcheng | r1chardj0n3s: don't text and drive :) | 02:59 |
*** kyleolivo has joined #openstack-horizon | 03:00 | |
jpomeroy | stevemar, morgan: i can look at writing up a blueprint to add the role assignments view to horizon, but i think we would want it to depend on the API being updated to include the names | 03:03 |
r1chardj0n3s | lhcheng: the good news is I just figured out the other failure in the selenium suite, so once we get DOA fixed that will hopefully be selenium green again (until the next person breaks it without caring ;) | 03:07 |
lhcheng | r1chardj0n3s: doug sent an email out to ML to -1 patches that fails the integration tests. Hopefully that will reduce the chances of merging code that will break it. | 03:09 |
r1chardj0n3s | lhcheng: selenium trsts were green for a very short amount of time - once they're green again we need to treat them like the integration tests and actually care when a patch makes them go red | 03:10 |
r1chardj0n3s | until they're voting, that is | 03:10 |
r1chardj0n3s | all of the fixes I've been making to them have been patches breaking them in the last 6 months | 03:10 |
lhcheng | r1chardj0n3s: yup, so for now we have to keep an eye on those (even if it is not voting) . don't let any patch that fails selenium merge | 03:12 |
*** bigjools has left #openstack-horizon | 03:12 | |
r1chardj0n3s | gotta get it green first tho, yep | 03:12 |
lhcheng | hopefully the cores will be more cautious on approving since we're on rc period | 03:12 |
r1chardj0n3s | hopefully not too much more whack-a-mole'ing to get it to green | 03:13 |
* lhcheng feeling pressured to +2 DOA soon | 03:13 | |
r1chardj0n3s | lhcheng: sorry! | 03:13 |
r1chardj0n3s | lhcheng: I know I shouldn't :) | 03:13 |
lhcheng | haha | 03:13 |
lhcheng | no worries | 03:13 |
lhcheng | will try to spend some time tonight | 03:13 |
lhcheng | my devstack finally up | 03:14 |
*** KunalGandhi has joined #openstack-horizon | 03:15 | |
*** kyleolivo has quit IRC | 03:15 | |
stevemar | jpomeroy: morgan we could easily make it project_name@domain_name | 03:15 |
morgan | stevemar: or just populate the json with the data and just let horizon ux-i-fy-it-up whatever way they deem is best | 03:16 |
jpomeroy | yep, as long as the name is in there somewhere we can deal with it | 03:17 |
stevemar | jpomeroy: exactly | 03:17 |
stevemar | morgan: right, | 03:17 |
stevemar | morgan: now i'm wondering how much of a performance impact that would be to the API call | 03:18 |
lhcheng | david-lyle: Horizon can also support external authentication, aside from WebSSO. we did it by using apache module, and bridged the gap with DOA using middleware, it just works. :) | 03:18 |
morgan | stevemar: probably zero | 03:18 |
morgan | stevemar: oh wait | 03:18 |
morgan | that API call is sucktastic | 03:18 |
morgan | stevemar: sorry mis-read the wonderings. | 03:18 |
morgan | stevemar: that is a punitive API call to make | 03:18 |
*** SimonChung has quit IRC | 03:19 | |
*** SimonChung has joined #openstack-horizon | 03:19 | |
*** SimonChung has quit IRC | 03:19 | |
*** SimonChung has joined #openstack-horizon | 03:19 | |
* lhcheng got confused shortly which room he is - seeing stevemar and morgan | 03:19 | |
morgan | lhcheng: I'll just switch each sentence between | 03:20 |
morgan | lhcheng: ^_^ | 03:20 |
jpomeroy | would it be that much worse to pull the name and id for each resource instead of just the name? | 03:21 |
*** Daisy has quit IRC | 03:21 | |
jpomeroy | maybe some performance testing is in order | 03:21 |
jpomeroy | *instead of just the id that is | 03:22 |
*** Daisy has joined #openstack-horizon | 03:22 | |
*** yamamoto has joined #openstack-horizon | 03:22 | |
lhcheng | stevemar: thanks for the reviews on DOA :) | 03:23 |
*** SimonChung has quit IRC | 03:23 | |
*** SimonChung has joined #openstack-horizon | 03:23 | |
*** Daisy_ has joined #openstack-horizon | 03:23 | |
*** Daisy has quit IRC | 03:24 | |
*** SimonChung1 has joined #openstack-horizon | 03:24 | |
*** jwy has quit IRC | 03:25 | |
*** amotoki has quit IRC | 03:27 | |
*** SimonChung has quit IRC | 03:28 | |
*** Samos123 has quit IRC | 03:29 | |
*** ryanpetrello has quit IRC | 03:29 | |
*** masco has joined #openstack-horizon | 03:30 | |
stevemar | lhcheng: np dude ;) | 03:31 |
*** ryanpetrello has joined #openstack-horizon | 03:34 | |
*** lhcheng has quit IRC | 03:35 | |
openstackgerrit | Janet Yu proposed openstack/horizon: Refactor DataTable filtering functions into mixin https://review.openstack.org/217020 | 03:35 |
*** neelashah has joined #openstack-horizon | 03:36 | |
*** Samos123 has joined #openstack-horizon | 03:38 | |
*** shivrao has joined #openstack-horizon | 03:40 | |
*** amotoki has joined #openstack-horizon | 03:45 | |
*** Mzoorikh has joined #openstack-horizon | 03:45 | |
*** Mzoorikh has quit IRC | 03:50 | |
*** Mzoorikh has joined #openstack-horizon | 03:50 | |
*** amotoki has quit IRC | 03:54 | |
*** lhcheng has joined #openstack-horizon | 03:56 | |
*** neelashah has quit IRC | 03:56 | |
openstackgerrit | Janet Yu proposed openstack/horizon: Refactor DataTable filtering functions into mixin https://review.openstack.org/217020 | 03:56 |
*** amotoki has joined #openstack-horizon | 03:58 | |
*** shivrao has quit IRC | 03:58 | |
*** shivrao_ has joined #openstack-horizon | 03:58 | |
lhcheng | r1chardj0n3s: when I click back on the browser to get back to the login screen, the "Connect" button is disabled. | 03:58 |
r1chardj0n3s | lhcheng: try chrome | 04:00 |
r1chardj0n3s | FF disables the button | 04:00 |
lhcheng | r1chardj0n3s: gotcha | 04:01 |
r1chardj0n3s | Another option is to load the page in two tabs, use one and then the other | 04:02 |
r1chardj0n3s | Login page, that is | 04:02 |
*** KunalGandhi has quit IRC | 04:02 | |
*** ducttape_ has quit IRC | 04:04 | |
*** btully has joined #openstack-horizon | 04:04 | |
*** ducttape_ has joined #openstack-horizon | 04:07 | |
*** geoffarnold has joined #openstack-horizon | 04:11 | |
*** stevemar has quit IRC | 04:11 | |
*** stevemar has joined #openstack-horizon | 04:13 | |
lhcheng | \o/ finally | 04:13 |
*** geoffarnold has quit IRC | 04:14 | |
Mzoorikh | Hi, I want to register at Invision, horizon UX mocks website. Is there anybody to create an account there? | 04:14 |
*** kyleolivo has joined #openstack-horizon | 04:16 | |
*** ducttape_ has quit IRC | 04:17 | |
Mzoorikh | I found the channel #openstack-ux to ask there. | 04:17 |
*** amotoki has quit IRC | 04:18 | |
*** vgridnev has joined #openstack-horizon | 04:22 | |
*** amotoki has joined #openstack-horizon | 04:25 | |
*** kyleolivo has quit IRC | 04:26 | |
r1chardj0n3s | lhcheng: \o/ | 04:28 |
lhcheng | r1chardj0n3s: just saw Timur's patch | 04:29 |
lhcheng | setting the AUTH_USER_MODEL + something similar to Timur's patch might also work | 04:30 |
r1chardj0n3s | which patch? | 04:30 |
lhcheng | r1chardj0n3s: https://launchpadlibrarian.net/216922814/user.py.patch | 04:30 |
r1chardj0n3s | oh, the patch that doesn't work, and probably never will? | 04:30 |
*** Daisy_ has quit IRC | 04:30 | |
*** Daisy has joined #openstack-horizon | 04:31 | |
r1chardj0n3s | trying to change the type of that id property will require some seriously deep hacking into Django's core models.Model stuff | 04:31 |
lhcheng | r1chardj0n3s: I'm going to try something out, going to pull some code from mrunge's patch | 04:31 |
r1chardj0n3s | lhcheng: ok | 04:31 |
r1chardj0n3s | I can't see how the complexity of such a patch could ever be preferable to a 4 line monkeypatch ;) | 04:32 |
lhcheng | r1chardj0n3s: yeah, but monkeypatch the private method worries me. Django exposes a way to have a custom user model, that might be better for long term support | 04:33 |
r1chardj0n3s | lhcheng: to be clear: that approach of changing the type of the id property is *explicitly discouraged and protected against by Django* | 04:34 |
r1chardj0n3s | I fail to see how taking that approach is any better than patching a private method | 04:34 |
lhcheng | same here, but the other way around :P | 04:36 |
*** Daisy has quit IRC | 04:36 | |
r1chardj0n3s | the Django ORM is built around fundamental assumptions about model subclasses that you're going to have to break to make it work | 04:37 |
lhcheng | looking at django docs, it mentions we can specify any unique field, name, email | 04:38 |
lhcheng | https://docs.djangoproject.com/en/1.8/topics/auth/customizing/#specifying-a-custom-user-model | 04:38 |
lhcheng | am I missing something here | 04:38 |
r1chardj0n3s | yes, we are using the *id* field | 04:38 |
r1chardj0n3s | we can't control that | 04:39 |
r1chardj0n3s | to use another unique field (say, "token") we would have to change all the places in Horizon where we currently use user.id | 04:39 |
r1chardj0n3s | and that's what I proposed as option #3 | 04:39 |
r1chardj0n3s | which involves 105 lines of code changed at a minimum | 04:39 |
r1chardj0n3s | across some 25 files, IIRC | 04:40 |
r1chardj0n3s | (minimum because that doesn't count mocks that will need to be changed also) | 04:40 |
r1chardj0n3s | so yes, an OpenStackUser class could be defined that had a unique field of token, absolutely, but we would need to make significant changes to Horizon to support that change (and re-educate Horizon devs to stop using user.id ;-=) | 04:41 |
lhcheng | why do they have to stop using user.id? | 04:42 |
lhcheng | user.id is still user.id from keystone | 04:42 |
r1chardj0n3s | because we can't set user.id to the token | 04:42 |
r1chardj0n3s | no, it can't be. that's what | 04:42 |
r1chardj0n3s | what's breaking stuff | 04:42 |
lhcheng | I mean in the user model, change the pk to the token field. | 04:43 |
lhcheng | user.id is still keystone's user id, that won't change | 04:43 |
r1chardj0n3s | oh, I get you | 04:43 |
lhcheng | I am just making things up, still have to try it out if that works :) | 04:44 |
lhcheng | maybe in theory lol | 04:44 |
r1chardj0n3s | so we'd have the id and "token" (it can't be "token" exaclty 'cos we already have one of those) would both have the horizon token, and we'd delcare the latter to be the PK and Django wouldn't even look at the id | 04:44 |
r1chardj0n3s | and we could, if we wanted to, migrate over code to use token instead of id | 04:45 |
r1chardj0n3s | I will look into it! | 04:45 |
lhcheng | I don't think we would even need to migrate anything, just need to tinker what pk django would use in the User model | 04:47 |
r1chardj0n3s | yep | 04:47 |
lhcheng | but yeah, something like that :D | 04:47 |
lhcheng | you got it | 04:47 |
*** lhcheng has quit IRC | 04:51 | |
*** lhcheng has joined #openstack-horizon | 04:55 | |
lhcheng | r1chardj0n3s: going to logoff now, 10pm here | 04:55 |
lhcheng | I'll try to find some time to try that out too tom. | 04:56 |
r1chardj0n3s | good evening lhcheng | 04:56 |
lhcheng | r1chardj0n3s: ttyl | 04:56 |
*** lhcheng has left #openstack-horizon | 04:57 | |
*** lhcheng has quit IRC | 04:57 | |
*** Daisy has joined #openstack-horizon | 05:05 | |
*** TravT has quit IRC | 05:09 | |
*** TravT has joined #openstack-horizon | 05:10 | |
*** asahlin has joined #openstack-horizon | 05:13 | |
*** Daisy has quit IRC | 05:15 | |
*** Daisy has joined #openstack-horizon | 05:15 | |
*** asahlin has quit IRC | 05:17 | |
*** stevemar has quit IRC | 05:24 | |
*** stevemar has joined #openstack-horizon | 05:25 | |
r1chardj0n3s | lhcheng: didn't work. But I have an alternative, related idea. | 05:26 |
*** akanksha has quit IRC | 05:28 | |
*** masco has quit IRC | 05:28 | |
*** linkedinyou has quit IRC | 05:32 | |
*** aortega has quit IRC | 05:38 | |
*** jprovazn has joined #openstack-horizon | 05:45 | |
*** masco has joined #openstack-horizon | 05:50 | |
*** fedexo has joined #openstack-horizon | 05:54 | |
*** stevemar has quit IRC | 05:55 | |
*** vgridnev has quit IRC | 05:56 | |
*** ankit_ag has joined #openstack-horizon | 06:00 | |
*** Daisy has quit IRC | 06:02 | |
*** Daisy has joined #openstack-horizon | 06:02 | |
*** mrunge has joined #openstack-horizon | 06:02 | |
*** mrunge has quit IRC | 06:03 | |
*** aortega has joined #openstack-horizon | 06:03 | |
*** aortega has quit IRC | 06:04 | |
*** mrunge has joined #openstack-horizon | 06:05 | |
*** peristeri has joined #openstack-horizon | 06:07 | |
*** Daisy has quit IRC | 06:07 | |
*** vgridnev has joined #openstack-horizon | 06:07 | |
*** Daisy has joined #openstack-horizon | 06:14 | |
*** mflobo has left #openstack-horizon | 06:15 | |
openstackgerrit | Richard Jones proposed openstack/django_openstack_auth: Replace default User model PK https://review.openstack.org/222478 | 06:15 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex https://review.openstack.org/220404 | 06:15 |
openstackgerrit | Richard Jones proposed openstack/horizon: Use the User model from d-o-a https://review.openstack.org/222480 | 06:17 |
openstackgerrit | Allen proposed openstack/horizon: Fix a bug in "Add Interface" form modal https://review.openstack.org/221630 | 06:17 |
*** Daisy has quit IRC | 06:18 | |
*** Daisy has joined #openstack-horizon | 06:18 | |
*** garthb has quit IRC | 06:24 | |
*** fedexo has quit IRC | 06:25 | |
*** Daisy_ has joined #openstack-horizon | 06:25 | |
*** Daisy has quit IRC | 06:25 | |
*** Daisy_ has quit IRC | 06:32 | |
*** Daisy has joined #openstack-horizon | 06:32 | |
*** vgridnev has quit IRC | 06:33 | |
*** Daisy has quit IRC | 06:37 | |
*** itisha has quit IRC | 06:39 | |
*** btully has quit IRC | 06:42 | |
*** romainh has joined #openstack-horizon | 06:45 | |
openstackgerrit | Merged openstack/horizon: Nav checkbox placement fix https://review.openstack.org/221535 | 06:45 |
*** vgridnev has joined #openstack-horizon | 06:45 | |
*** amotoki has quit IRC | 06:46 | |
*** rdopiera has joined #openstack-horizon | 06:46 | |
openstackgerrit | Craig Vyvial proposed openstack/horizon: Initial support for database clustering in Horizon https://review.openstack.org/110411 | 06:52 |
openstackgerrit | Craig Vyvial proposed openstack/horizon: Enable Redis database cluster support https://review.openstack.org/204630 | 06:52 |
openstackgerrit | Craig Vyvial proposed openstack/horizon: Adding support for trove new clustering datastore - percona cluster https://review.openstack.org/222489 | 06:52 |
*** jerrygb has quit IRC | 06:54 | |
*** Daisy has joined #openstack-horizon | 06:55 | |
*** jerrygb has joined #openstack-horizon | 06:55 | |
*** zz_ttrifonov is now known as ttrifonov | 06:57 | |
*** rajatvig has joined #openstack-horizon | 06:59 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel https://review.openstack.org/217949 | 07:00 |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP: Adding multiple row actions for the Image table https://review.openstack.org/217964 | 07:00 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service https://review.openstack.org/220214 | 07:00 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel https://review.openstack.org/217422 | 07:00 |
openstackgerrit | Rajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list https://review.openstack.org/222493 | 07:00 |
*** jerrygb has quit IRC | 07:00 | |
*** shu has left #openstack-horizon | 07:00 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: JSCS Cleanup - Rename launch instance model file https://review.openstack.org/217922 | 07:01 |
*** Daisy has quit IRC | 07:13 | |
*** Daisy has joined #openstack-horizon | 07:14 | |
*** josecastroleon has quit IRC | 07:15 | |
*** davidmichaelkarr has quit IRC | 07:17 | |
*** ducttape_ has joined #openstack-horizon | 07:17 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: Detail-page directives (Angular/UX) with CSS https://review.openstack.org/158881 | 07:18 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Image Detail Redesign (Angular/UX) https://review.openstack.org/173885 | 07:18 |
*** Daisy has quit IRC | 07:20 | |
*** shivrao_ has quit IRC | 07:20 | |
*** jingjing_ren has joined #openstack-horizon | 07:21 | |
*** ducttape_ has quit IRC | 07:22 | |
*** rajatvig has quit IRC | 07:23 | |
*** e0ne has joined #openstack-horizon | 07:25 | |
*** e0ne has quit IRC | 07:26 | |
*** jingjing_ren has quit IRC | 07:26 | |
*** stevemar has joined #openstack-horizon | 07:26 | |
*** lsmola has joined #openstack-horizon | 07:27 | |
*** btully has joined #openstack-horizon | 07:28 | |
*** lsmola has quit IRC | 07:29 | |
*** stevemar has quit IRC | 07:29 | |
*** Daisy has joined #openstack-horizon | 07:30 | |
*** btully has quit IRC | 07:33 | |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 07:34 |
*** linkedinyou has joined #openstack-horizon | 07:35 | |
*** vgridnev has quit IRC | 07:40 | |
*** asahlin has joined #openstack-horizon | 07:41 | |
*** asahlin has quit IRC | 07:46 | |
*** bluex-pl has joined #openstack-horizon | 07:46 | |
*** aortega has joined #openstack-horizon | 07:48 | |
*** kzaitsev_mb has joined #openstack-horizon | 07:48 | |
*** lsmola has joined #openstack-horizon | 07:49 | |
*** JeanBriceCombebi has joined #openstack-horizon | 07:51 | |
*** kyleolivo has joined #openstack-horizon | 07:52 | |
*** kzaitsev_mb has quit IRC | 07:53 | |
*** JeanBriceCombebi has quit IRC | 07:54 | |
*** ygbo has joined #openstack-horizon | 07:55 | |
*** kyleolivo has quit IRC | 07:57 | |
*** sayali has quit IRC | 08:00 | |
*** kzaitsev_mb has joined #openstack-horizon | 08:00 | |
*** Mzoorikh has quit IRC | 08:02 | |
*** sayali has joined #openstack-horizon | 08:03 | |
r1chardj0n3s | mrunge: hi, you about? | 08:03 |
*** jcoufal has joined #openstack-horizon | 08:04 | |
mrunge | r1chardj0n3s, yupp | 08:04 |
r1chardj0n3s | hi, I'm sorry but I don't follow your comment on my patch :) | 08:05 |
mrunge | uhm, sorry about that | 08:05 |
r1chardj0n3s | which patch of Lin's are you referring to? | 08:05 |
r1chardj0n3s | Lin and I were discussing this just a couple of hours ago, and the result was the patch I've put up... | 08:05 |
r1chardj0n3s | did you see the alternative patch, which did the monkey-patch? Lin was dead against that one :) | 08:06 |
*** amotoki has joined #openstack-horizon | 08:06 | |
mrunge | r1chardj0n3s, looking at your patch I was reminded at https://review.openstack.org/#/c/201734/ | 08:06 |
mrunge | r1chardj0n3s, yes, I saw your monkey patch and found it more elegant | 08:06 |
mrunge | but I wouldn't put any hands into fire for one of both patches, thoug | 08:07 |
mrunge | r1chardj0n3s, my comment was more: your patch currently misses AUTH_USER_MODEL in openstack_auth/tests/settings.py | 08:08 |
r1chardj0n3s | mrunge: that patch is just a small part of the picture (my patch has a related Horizon patch that makes that change) | 08:08 |
r1chardj0n3s | mrunge: no, it doesn't :) | 08:08 |
r1chardj0n3s | hang on | 08:08 |
mrunge | how does your patch run tests on doa then? | 08:08 |
r1chardj0n3s | https://review.openstack.org/#/c/222480/ is the related Horizon patch | 08:09 |
r1chardj0n3s | sorry, which tests? | 08:09 |
mrunge | unit tests in doa itself | 08:09 |
r1chardj0n3s | ahhhh, I understand, sorry! | 08:09 |
r1chardj0n3s | I misunderstood. OK, that's a valid concern. | 08:09 |
*** Ala has joined #openstack-horizon | 08:09 | |
r1chardj0n3s | I will look into that next week, yes. | 08:10 |
mrunge | no worries | 08:10 |
mrunge | thank you for looking into this r1chardj0n3s | 08:10 |
mrunge | makes me a bit more happy about not walking totally stupid paths myself | 08:10 |
r1chardj0n3s | no worries :) | 08:11 |
mrunge | r1chardj0n3s, just to coordinate, we'd need to merge patches for this in horizon first | 08:11 |
mrunge | or we'd break horizon gate | 08:11 |
r1chardj0n3s | mrunge: that won't work though because currently openstack_auth.User doesn't exist as a model | 08:11 |
r1chardj0n3s | the models.py rename needs to happen first | 08:11 |
r1chardj0n3s | I think the DOA patch can land without breaking Horizon | 08:12 |
r1chardj0n3s | I'm almost certain of it | 08:12 |
*** amotoki_ has joined #openstack-horizon | 08:12 | |
mrunge | ah, that's something I missed | 08:12 |
mrunge | great! | 08:12 |
r1chardj0n3s | ok, I'm pouring myself some more Shiraz and going back to Kerbals :) | 08:13 |
r1chardj0n3s | (it being 6:15pm on Friday ;) | 08:13 |
mrunge | cheers | 08:13 |
mrunge | and have a great weekend | 08:13 |
*** e0ne has joined #openstack-horizon | 08:13 | |
*** amotoki has quit IRC | 08:14 | |
*** amotoki_ has quit IRC | 08:16 | |
openstackgerrit | Romain Hardouin proposed openstack/horizon: TableTab now honors Table permissions https://review.openstack.org/163643 | 08:23 |
*** e0ne has quit IRC | 08:24 | |
*** tnovacik has joined #openstack-horizon | 08:26 | |
*** amotoki has joined #openstack-horizon | 08:26 | |
*** Mzoorikh has joined #openstack-horizon | 08:27 | |
*** e0ne has joined #openstack-horizon | 08:28 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:32 | |
*** kzaitsev_mb has quit IRC | 08:34 | |
*** kzaitsev_mb has joined #openstack-horizon | 08:35 | |
*** Daisy has quit IRC | 08:36 | |
*** Daisy has joined #openstack-horizon | 08:36 | |
*** JeanBriceCombebi has quit IRC | 08:37 | |
*** vishwanathj_ has joined #openstack-horizon | 08:38 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:39 | |
*** mhickey has joined #openstack-horizon | 08:40 | |
*** Daisy has quit IRC | 08:41 | |
*** Daisy has joined #openstack-horizon | 08:51 | |
*** JeanBriceCombebi has quit IRC | 08:52 | |
*** kzaitsev_mb has quit IRC | 08:53 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:54 | |
*** sayan has joined #openstack-horizon | 08:56 | |
*** sayan has joined #openstack-horizon | 08:56 | |
*** vgridnev has joined #openstack-horizon | 08:57 | |
*** zhurong_ has quit IRC | 08:59 | |
*** Daisy has quit IRC | 09:02 | |
*** Daisy has joined #openstack-horizon | 09:03 | |
*** chlong has quit IRC | 09:16 | |
*** Mzoorikh has quit IRC | 09:18 | |
*** shu has joined #openstack-horizon | 09:24 | |
*** shu has left #openstack-horizon | 09:24 | |
*** bluex-pl has quit IRC | 09:28 | |
*** bluex-pl has joined #openstack-horizon | 09:29 | |
*** bluex-pl has quit IRC | 09:29 | |
*** bluex-pl has joined #openstack-horizon | 09:29 | |
*** tosky has joined #openstack-horizon | 09:35 | |
*** zhenguo has quit IRC | 09:48 | |
*** Daisy has quit IRC | 10:00 | |
*** Daisy has joined #openstack-horizon | 10:00 | |
*** Daisy has quit IRC | 10:01 | |
*** Daisy has joined #openstack-horizon | 10:01 | |
*** kzaitsev_mb has joined #openstack-horizon | 10:02 | |
*** bluex-pl has quit IRC | 10:03 | |
*** aix has joined #openstack-horizon | 10:08 | |
openstackgerrit | Kirill Zaitsev proposed openstack/django_openstack_auth: Use set comprehension instead of converting lists to sets https://review.openstack.org/216441 | 10:08 |
*** jprovazn has quit IRC | 10:09 | |
*** akanksha has joined #openstack-horizon | 10:12 | |
*** Mzoorikh has joined #openstack-horizon | 10:14 | |
*** bluex-pl has joined #openstack-horizon | 10:17 | |
*** romainh has quit IRC | 10:19 | |
*** linkedinyou has quit IRC | 10:20 | |
*** kiran-r has joined #openstack-horizon | 10:21 | |
robcresswell | mrunge: The bug list is somehow growing longer :p | 10:21 |
mrunge | robcresswell, which bug list? | 10:24 |
robcresswell | mrunge: https://launchpad.net/horizon/+milestone/liberty-rc1 | 10:24 |
robcresswell | mrunge: I went through and sorted out out those that were untargeted etc. But we still have about 40 open bugs for rc1 | 10:25 |
mrunge | robcresswell, awesome, thank you! | 10:25 |
robcresswell | 27 in progress, 15 not in progress. | 10:25 |
robcresswell | :( | 10:25 |
mrunge | esp. 2 xss bugs | 10:26 |
mrunge | I mean, public xss issues | 10:26 |
mrunge | I wonder how many of them are hidden | 10:26 |
mrunge | yikes. good catch robcresswell on MANIFEST.in | 10:27 |
robcresswell | mrunge: zigo pointed out that it was missing the SCSS files, so credit is not mine really. | 10:28 |
robcresswell | mrunge: Thanks for approval :) | 10:32 |
mrunge | sure | 10:32 |
*** Daisy has quit IRC | 10:33 | |
*** Daisy has joined #openstack-horizon | 10:34 | |
*** yamamoto has quit IRC | 10:34 | |
mrunge | oh, just looking at keystoneclient leaving connections open. | 10:34 |
mrunge | that's an issue, we will see more in the future | 10:34 |
mrunge | I know, we had this with novaclient (and probably still have it) | 10:35 |
*** Daisy has quit IRC | 10:38 | |
*** Daisy has joined #openstack-horizon | 10:42 | |
vgridnev | hey folks! could you please if it possible several changes: https://review.openstack.org/#/c/207893/ https://review.openstack.org/#/c/187711/8 https://review.openstack.org/#/c/198847/ This changes was already approved, but due merge conflicts that were not merged | 10:43 |
*** masco_ has joined #openstack-horizon | 10:43 | |
robcresswell | Hmm, recently in devstack I always get "Could not find default role "_member_" in Keystone" on the identity dashboard | 10:43 |
vgridnev | I meant add "review" word after "please" | 10:43 |
*** kzaitsev_mb has quit IRC | 10:44 | |
*** Daisy has quit IRC | 10:46 | |
*** masco has quit IRC | 10:46 | |
robcresswell | vgridnev: Just approved two of them. One was reusing Davids approval after checking rebase, the other is fairly trivial anyway :) | 10:48 |
*** ZZelle has quit IRC | 10:49 | |
*** jbell8 has quit IRC | 10:49 | |
vgridnev | robcresswell, thanks! | 10:49 |
*** ZZelle has joined #openstack-horizon | 10:50 | |
tsufiev | bradjones|away, hi! One more suggestion for your topology work (see gerrit) | 10:50 |
*** jcoufal has quit IRC | 10:59 | |
*** bluex-pl has quit IRC | 11:00 | |
*** ganeshna has joined #openstack-horizon | 11:00 | |
*** mpavlase has joined #openstack-horizon | 11:00 | |
*** jcoufal has joined #openstack-horizon | 11:01 | |
ganeshna | hi, have a git question related to lbaas UI patch, can someone please help | 11:03 |
robcresswell | ganeshna: Ha, ask the question first and then we will see :) | 11:04 |
*** bluex-pl has joined #openstack-horizon | 11:04 | |
*** btully has joined #openstack-horizon | 11:05 | |
ganeshna | sure robcresswell :) | 11:05 |
ganeshna | this patch https://review.openstack.org/#/c/206797/ is adding LbaasV2 UI support | 11:05 |
ganeshna | for the lbaasv2 UI to work, we need to get this patch and manually copy the loadbalancersv2 folder in the local horizon repo | 11:06 |
ganeshna | there is one more missing file in enabled folder, I want to add that.. | 11:06 |
ganeshna | how should I go about it, quite some things have changed since the patch is added in the horizon code | 11:06 |
ganeshna | I have mentioned the steps to get the UI to work in the link | 11:07 |
ganeshna | now I want to add the file openstack_dashboard/enabled/_1480_project_loadbalancersv2_panel.py in this patch | 11:08 |
*** btully has quit IRC | 11:09 | |
robcresswell | So you need one file to enabled the dashboard, and then one for the panel | 11:10 |
robcresswell | to enable* | 11:10 |
ganeshna | I want to add this file openstack_dashboard/enabled/_1480_project_loadbalancersv2_panel.py | 11:11 |
ganeshna | when I do a git fetch, it creates a neutron_lbaas_dashboard folder | 11:12 |
ganeshna | neutron_lbaas_dashboard/enabled doesn't have any _..._panel.py files | 11:14 |
robcresswell | Yeah, that patch is incomplete | 11:14 |
robcresswell | it needs enabled files to be copied to openstack_dashboard/enabled | 11:15 |
ganeshna | can I do this ? 1. get the latest horizon code 2. manually copy the loadbalancersv2 folder into /opt/stack/horizon/openstack_dashboard/dashboards/project 3. git add <folder> 4. add the _1480_project_loadbalancersv2_panel.py file | 11:17 |
robcresswell | Why would you need to git add it? It's not going to get pushed into Horizon | 11:20 |
robcresswell | But yes, manually copying the folder over will work fine | 11:20 |
robcresswell | That patch is also missing all of the python setup, unless its already in the repo | 11:20 |
openstackgerrit | Merged openstack/horizon: Display the project name in user detail page https://review.openstack.org/205983 | 11:21 |
*** kzaitsev_mb has joined #openstack-horizon | 11:21 | |
*** yamamoto has joined #openstack-horizon | 11:21 | |
ganeshna | ok, I thought the Lbaasv2 UI will eventually be pushed into Horizon, may be I will discuss more with the submitter (Vivek) on this | 11:22 |
*** yamamoto_ has joined #openstack-horizon | 11:22 | |
robcresswell | ganeshna: It looks like it is its own project. | 11:24 |
*** yamamoto has quit IRC | 11:25 | |
ganeshna | ok thanks robcresswell :) the above info is fine for me now to proceed... | 11:26 |
robcresswell | Sure thing | 11:26 |
robcresswell | mrunge: If you get 10 mins to spare, this FFE is rather small :) https://review.openstack.org/#/c/220838/ | 11:27 |
*** stevemar has joined #openstack-horizon | 11:28 | |
openstackgerrit | Merged openstack/horizon: Update MANIFEST for SCSS https://review.openstack.org/221760 | 11:30 |
*** stevemar has quit IRC | 11:31 | |
*** masco_ has quit IRC | 11:34 | |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 11:34 |
*** btully has joined #openstack-horizon | 11:39 | |
*** romainh has joined #openstack-horizon | 11:43 | |
*** btully has quit IRC | 11:47 | |
*** zhurong has joined #openstack-horizon | 11:47 | |
*** ducttape_ has joined #openstack-horizon | 11:53 | |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 11:54 |
*** kyleolivo has joined #openstack-horizon | 11:55 | |
*** Mzoorikh has quit IRC | 11:58 | |
*** zhurong has quit IRC | 11:59 | |
*** kyleolivo has quit IRC | 12:00 | |
*** asahlin has joined #openstack-horizon | 12:01 | |
mrunge | robcresswell, at a quick glance, integration tests are failing on that patch | 12:01 |
mrunge | scratch that | 12:02 |
*** ducttape_ has quit IRC | 12:04 | |
tsufiev | mrunge, huh, where? | 12:05 |
*** jcoufal has quit IRC | 12:06 | |
*** pauloewerton has joined #openstack-horizon | 12:07 | |
openstackgerrit | Merged openstack/horizon: Allow multiple clusters creation https://review.openstack.org/198847 | 12:07 |
mrunge | tsufiev, https://review.openstack.org/#/c/220838 | 12:07 |
mrunge | but I believe, tests were executed before the last patch went in, right? | 12:08 |
mrunge | I see nova keypair issues popping up there | 12:08 |
tsufiev | mrunge, yeah, seems to be related to Nova v2 issue | 12:08 |
openstackgerrit | Timur Sufiev proposed openstack/horizon: Enable compute shelve/unshelve commands https://review.openstack.org/220838 | 12:08 |
tsufiev | I've pressed Rebase button | 12:08 |
tsufiev | shall see | 12:08 |
mrunge | robcresswell, I will be out for a bit and have a look at it afterwards | 12:09 |
*** bluex-pl has quit IRC | 12:11 | |
*** bluex-pl has joined #openstack-horizon | 12:11 | |
robcresswell | mrunge: Sure, no rush, just thought I would mention it as a small review, trying to get through some of the rc-1 backlog | 12:12 |
*** JeanBriceCombebi has quit IRC | 12:12 | |
*** jcoufal has joined #openstack-horizon | 12:12 | |
mrunge | yes, you're right! | 12:12 |
robcresswell | Bugs to review is now <40, thats nice. | 12:13 |
robcresswell | bps, 5, but 2 of them have +2 | 12:14 |
*** JeanBriceCombebi has joined #openstack-horizon | 12:16 | |
tsufiev | robcresswell, have you not seen how a topology node escapes from under a pop-up :)? | 12:17 |
robcresswell | ooh nope, what happened? | 12:17 |
* robcresswell is reloading patch | 12:18 | |
bradjones|away | tsufiev: I haven't seen that what do you mean? | 12:18 |
*** bradjones|away is now known as bradjones | 12:18 | |
*** zhurong has joined #openstack-horizon | 12:19 | |
tsufiev | bradjones, robcresswell: in case simulation is not over yet (still stabilizing, but slowly), the hover event causes node to be pinned, then once I click, it's released and runs away | 12:19 |
tsufiev | how much it runs away depends on how much graph was already stabilized | 12:20 |
bradjones | oh ok I see what you mean | 12:20 |
tsufiev | the effect looks funny :) | 12:20 |
robcresswell | tsufiev: Oh, you mean the modal does not follow the node? | 12:20 |
bradjones | that was why previously it was on mouse over so the modal was alway in line with the node | 12:20 |
tsufiev | robcresswell, nope. But that's ok, it shouldn't IMO | 12:21 |
robcresswell | :/ This only happens when you rapidly move the topology and then click a node while still moving :p | 12:21 |
tsufiev | bradjones, I think it's fine to pin node under its pop up is visible | 12:21 |
*** ganeshna has quit IRC | 12:21 | |
tsufiev | robcresswell, I have a smell for these corner cases ;) | 12:22 |
bradjones | if you pin the node under the modal and the rest of the graph settles when you close the modal and release the node it is going to go shooting all over the place | 12:23 |
bradjones | I'm not sure that is much more desirable | 12:23 |
*** ganeshna has joined #openstack-horizon | 12:23 | |
robcresswell | Yeah I'm not sure that really gains anything. The *only* time this occurs is when you drag around a graph, and then try and click on a moving object. | 12:24 |
robcresswell | Even then, it moves a few mm on the screen. | 12:25 |
tsufiev | bradjones, it's going to run a long distance in case one is able to click it really soon, when the graph was not relaxed at all | 12:26 |
*** kzaitsev_mb has quit IRC | 12:26 | |
robcresswell | tsufiev: Who is going to be trying to click a moving graph? | 12:27 |
tsufiev | I'd say that this is an expected outcome. If you're impatient, observe the node moving frantically | 12:27 |
*** JeanBriceCombebi has quit IRC | 12:27 | |
tsufiev | robcresswell, that's my point | 12:27 |
robcresswell | I dont understand :/ | 12:27 |
tsufiev | robcresswell, on the other hand, the final stage of graph relaxing could take a significant time | 12:27 |
tsufiev | robcresswell, it's a non-linear thing | 12:27 |
robcresswell | Sure | 12:28 |
robcresswell | Well | 12:28 |
robcresswell | its like a second or so | 12:28 |
robcresswell | This is like trying to climb into a moving car, and then blaming the car manufacturer. | 12:28 |
bradjones | robcresswell: haha! | 12:28 |
robcresswell | If you drag a graph all over, and then click a moving node, then its still moving | 12:28 |
*** zhurong has quit IRC | 12:29 | |
robcresswell | That should be pretty obvious to the user what has happened lol | 12:29 |
robcresswell | I dunno, I feel that it is an overly nit pick edge case | 12:29 |
tsufiev | my point is that keeping a node under pop-up to be pinned is okay if pop-up is shown at a late phase of force-directed simulation - because it may take long time and the additional movement once the pop-up goes away is not that big | 12:29 |
*** ganeshna has quit IRC | 12:30 | |
* tsufiev afk for lunch | 12:30 | |
*** asahlin has quit IRC | 12:31 | |
*** asahlin has joined #openstack-horizon | 12:31 | |
*** lblanchard has joined #openstack-horizon | 12:32 | |
*** doug-fish has joined #openstack-horizon | 12:33 | |
*** ganeshna has joined #openstack-horizon | 12:34 | |
*** asahlin has quit IRC | 12:36 | |
robcresswell | tsufiev: I'm still not sure how this would be fixed. Do you suggest freezing the animation on the node when it is clicked? | 12:37 |
robcresswell | I still think this is a huge nitpick. It is very obvious to a user if they click a moving graph, and the graph drifts another 3 mm on screen, what has happened. | 12:38 |
tsufiev | robcresswell, agree, it's a nitpick, but not huge :) | 12:49 |
tsufiev | robcresswell, I can bear with it, but would love to hear ducttape's opinion | 12:51 |
*** vishwanathj_ has quit IRC | 12:51 | |
robcresswell | tsufiev: I think Brad has a fix, just going to pause animation on dialog | 12:52 |
*** kiran-r has quit IRC | 12:53 | |
tsufiev | that would be awesome, I could put +1 while having a good conscience | 12:53 |
bradjones | tsufiev: Yeah, I'm going to pause animation on dialog open, as you suggest am also going to remove dialogs on zoom & pan so the modals can't ever be too far from the vm | 12:53 |
tsufiev | bradjones, makes much sense as well! | 12:54 |
robcresswell | Indeed, thats a good fix bradjones | 12:54 |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 12:55 |
bradjones | ^ robcresswell tsufiev there we go :) | 12:55 |
tsufiev | looking... | 12:55 |
*** ducttape_ has joined #openstack-horizon | 12:59 | |
*** _crobertsrh is now known as crobertsrh | 13:00 | |
tsufiev | bradjones, looks good to me | 13:00 |
bradjones | tsufiev: excellent, hopefully ducttape_ 's issues will have been solved too then we are good to go | 13:01 |
*** jtomasek has quit IRC | 13:01 | |
ducttape_ | sweet, I love the smell of a fresh topology early in the morning | 13:02 |
bradjones | ducttape_: :D | 13:02 |
*** zul has quit IRC | 13:05 | |
*** cloudtrainme has joined #openstack-horizon | 13:05 | |
*** cloudtrainme has quit IRC | 13:05 | |
ducttape_ | bradjones : http://cdn.meme.am/instances2/500x/1814351.jpg | 13:06 |
ducttape_ | aka it works / looks good | 13:06 |
robcresswell | :o | 13:07 |
bradjones | YAYAYAY! | 13:07 |
*** ankit_ag has quit IRC | 13:07 | |
*** zul has joined #openstack-horizon | 13:07 | |
ducttape_ | I'm going to try again a bit later today, right now I slimmed down my graph to like 20 total instances. I want to try once more with lots of data | 13:07 |
robcresswell | ducttape_: That would be appreciated! | 13:08 |
robcresswell | Thanks :D | 13:08 |
bradjones | ducttape_: sounds good I'll have a celebratory beer ready :) | 13:08 |
*** akanksha has quit IRC | 13:08 | |
ducttape_ | yeah, go ahead and have one to get started, being Friday and all | 13:08 |
bradjones | it's 5o'clock somewhere right? | 13:09 |
*** mwhagedorn has joined #openstack-horizon | 13:10 | |
*** TravT has quit IRC | 13:12 | |
*** ducttape_ has quit IRC | 13:12 | |
*** TravT has joined #openstack-horizon | 13:13 | |
*** erlon has joined #openstack-horizon | 13:15 | |
*** logan2 has quit IRC | 13:15 | |
*** kyleolivo has joined #openstack-horizon | 13:15 | |
*** kzaitsev_mb has joined #openstack-horizon | 13:21 | |
*** ganeshna has quit IRC | 13:25 | |
*** stevemar has joined #openstack-horizon | 13:28 | |
*** asahlin has joined #openstack-horizon | 13:29 | |
*** asahlin_ has joined #openstack-horizon | 13:30 | |
*** asahlin_ has quit IRC | 13:30 | |
*** asahlin_ has joined #openstack-horizon | 13:31 | |
*** stevemar has quit IRC | 13:32 | |
*** zhenguo has joined #openstack-horizon | 13:33 | |
*** asahlin has quit IRC | 13:33 | |
*** jroll is now known as jtroll | 13:33 | |
*** jtroll is now known as Guest13730 | 13:34 | |
*** Guest13730 is now known as jroll | 13:34 | |
*** jtriley has joined #openstack-horizon | 13:36 | |
*** logan2 has joined #openstack-horizon | 13:43 | |
*** Piet has quit IRC | 13:43 | |
*** mpavlase has quit IRC | 13:44 | |
*** tosky has quit IRC | 13:45 | |
*** kyleolivo has quit IRC | 13:45 | |
*** neelashah has joined #openstack-horizon | 13:48 | |
*** peristeri has quit IRC | 13:51 | |
*** ducttape_ has joined #openstack-horizon | 13:52 | |
*** neelashah has quit IRC | 13:52 | |
*** Daisy has joined #openstack-horizon | 13:53 | |
*** asahlin has joined #openstack-horizon | 13:57 | |
*** doug-fis_ has joined #openstack-horizon | 13:57 | |
tsufiev | bradjones, 5 o'clock beer :)? | 13:57 |
*** tnovacik has quit IRC | 13:57 | |
*** doug-fis_ has quit IRC | 13:58 | |
*** doug-fis_ has joined #openstack-horizon | 13:58 | |
*** asahlin__ has joined #openstack-horizon | 13:59 | |
*** Mzoorikh has joined #openstack-horizon | 13:59 | |
*** stevemar has joined #openstack-horizon | 14:00 | |
*** doug-fish has quit IRC | 14:00 | |
*** asahlin_ has quit IRC | 14:01 | |
*** asahlin has quit IRC | 14:01 | |
*** btully has joined #openstack-horizon | 14:01 | |
*** cloudtrainme has joined #openstack-horizon | 14:03 | |
*** Piet has joined #openstack-horizon | 14:03 | |
*** ganeshna has joined #openstack-horizon | 14:04 | |
*** ganeshna has quit IRC | 14:05 | |
*** ganeshna has joined #openstack-horizon | 14:10 | |
*** vijendar has joined #openstack-horizon | 14:11 | |
openstackgerrit | Merged openstack/horizon: [Sahara] Adding ability to update missing fields https://review.openstack.org/207893 | 14:17 |
openstackgerrit | Paulo Ewerton Gomes Fragoso proposed openstack/horizon: Adding Identity NGProjects REST API https://review.openstack.org/208581 | 14:17 |
ducttape_ | http://pasteboard.co/ySLERry.png bradjones - looking good so far ;) | 14:23 |
ducttape_ | although one idea might be some buttons / help text on how to zoom in / out and move the map around. it's not obvious at first | 14:24 |
*** mflobo1 has joined #openstack-horizon | 14:25 | |
*** mflobo1 has left #openstack-horizon | 14:27 | |
bradjones | ducttape_: yeah one thing I thought about was a bar to indicate the level of zoom, I think that might have to be part of a subsequent patch though, don't really want to add anything big that could affect getting into liberty unless absolutely necessary | 14:28 |
ducttape_ | even if you added text description: "zoom in by pressing x, zoom out by pressing y - drag the map with click +hold+drag" | 14:29 |
ducttape_ | etc | 14:29 |
ducttape_ | doesn't have to be fancy | 14:29 |
bradjones | ducttape_: yeah I could do that | 14:30 |
ducttape_ | like when I have a mouse with wheel I get zoom, when I don't have a mouse like that - I forget the combo to zoom | 14:30 |
*** tosky has joined #openstack-horizon | 14:31 | |
openstackgerrit | Paulo Ewerton Gomes Fragoso proposed openstack/horizon: Adding Identity NGProjects Angular API https://review.openstack.org/209073 | 14:32 |
*** Mzoorikh has quit IRC | 14:33 | |
bradjones | how about adding this "Resize the canvas by scrolling up/down on the topology. Pan around the canvas by clicking and dragging the space behind the topology" | 14:34 |
ducttape_ | I like the second sentence , but the first one makes me think of the scroll on the right hand of the browser window | 14:35 |
bradjones | ah yeah I can see that | 14:35 |
bradjones | I'm trying to say it without saying scroll wheel! | 14:36 |
*** romainh has left #openstack-horizon | 14:36 | |
ducttape_ | btw - both TravT and david-lyle also provided similar feedback on this navigation etc. they didn't know you could do all this stuff | 14:36 |
ducttape_ | what is the common keyboard method to get the same thing? | 14:36 |
ducttape_ | I think that would be more helpful, since not everyone has a scroll wheel | 14:37 |
bradjones | how about just saying 'scroll with your mouse/keyboard' | 14:37 |
bradjones | it has to be a mouse event | 14:38 |
bradjones | damn I meant 'scroll with your mouse/trackpad' | 14:38 |
bradjones | not keyboard | 14:38 |
*** ganeshna has quit IRC | 14:38 | |
*** morgan has quit IRC | 14:40 | |
*** morganfainberg has joined #openstack-horizon | 14:40 | |
*** clayton has joined #openstack-horizon | 14:42 | |
*** kyleolivo has joined #openstack-horizon | 14:43 | |
*** haypo has left #openstack-horizon | 14:44 | |
ducttape_ | bradjones - the other thing.... | 14:47 |
TravT | bradjones: the zoom in / out | 14:47 |
ducttape_ | the current element that is displaying the graph, it does not consume vertical space with a percentage | 14:47 |
*** bluex-pl has quit IRC | 14:47 | |
TravT | my mouse is an ergonomic one that doesn't have a middle scroll button | 14:48 |
openstackgerrit | Yves-Gwenael Bourhis proposed openstack/horizon: Show external networks https://review.openstack.org/199127 | 14:48 |
TravT | so how would I scroll? | 14:48 |
ducttape_ | so like looking at http://pasteboard.co/ySLERry.png the bottom of the graph is clipped, even though I have extra vertical space to give | 14:48 |
*** vishwanathj_ has joined #openstack-horizon | 14:48 | |
*** doug-fis_ has quit IRC | 14:49 | |
bradjones | TravT: buy a new mouse?! | 14:49 |
ducttape_ | TravT - yep, that's the feedback. it's not the end of the world at this point, b/c you can still drag the map around to navigate.... but it would be nice to have it be more accessible | 14:49 |
*** doug-fish has joined #openstack-horizon | 14:49 | |
TravT | bradjones: nope. already wear a wrist brace half the time... | 14:49 |
bradjones | TravT: at the moment it has to be a mouse event that triggers the zoom, whether that be pinch zoom on a trackpad or scroll wheel or some other means | 14:50 |
bradjones | does your mouse not have something that emulates scrolling? | 14:50 |
ducttape_ | I think that's probably fine, heat has the same issue | 14:50 |
ducttape_ | but placing some text on the page helps people know they can have more interactivity with the graph | 14:51 |
TravT | unfortunately no. The help text at least alerts people to it i suppose. | 14:51 |
bradjones | http://pasteboard.co/yUjzXQW.png | 14:51 |
bradjones | how about that ^ for the text | 14:51 |
TravT | but an overlay zoom in / zoom out like google maps could be a nice addition. | 14:51 |
TravT | in a follow on | 14:51 |
bradjones | TravT: absolutely then you could use that to zoom if you don't have a mouse that can | 14:52 |
ducttape_ | right, I think we are the same page for this | 14:52 |
*** lapalm has joined #openstack-horizon | 14:52 | |
ducttape_ | how about making the display div (or whatever the element is) vertically scale a bit better??? | 14:53 |
bradjones | ducttape_: looking into that now | 14:53 |
*** doug-fish has quit IRC | 14:53 | |
TravT | ducttape_: you mean how it feels like the canvas if for a 9000 x 6000 res screen no matter how large my viewport actually is? | 14:53 |
ducttape_ | btw, one of our engineers tried to stump me with his network topology with several multi homed instances - this thing did well ;) | 14:53 |
TravT | ducttape_: that pasteboard looks a lot better. | 14:54 |
TravT | the one you just put up . | 14:54 |
TravT | bradjones: do the colors actually have meaning? | 14:54 |
ducttape_ | yes, they are network memberships | 14:54 |
bradjones | ducttape_: +1 | 14:54 |
*** doug-fish has joined #openstack-horizon | 14:54 | |
TravT | ah, so, kind of a venn diagram | 14:55 |
ducttape_ | yep | 14:55 |
TravT | ducttape_: when you have the glob of instances is it still pretty difficult to see the labels when toggled on? | 14:55 |
*** e0ne has quit IRC | 14:56 | |
*** hurgleburgler has joined #openstack-horizon | 14:56 | |
*** morganfainberg has quit IRC | 14:56 | |
TravT | i've wondered if it would be helped by allowing toggle of a border around the labels with a white background | 14:56 |
ducttape_ | http://pasteboard.co/yV0crnG.png is what I was saying ;) | 14:57 |
*** morganfainberg has joined #openstack-horizon | 14:57 | |
* ducttape_ has to switch networks | 14:57 | |
*** morganfainberg has quit IRC | 14:59 | |
*** Drago has joined #openstack-horizon | 15:00 | |
openstackgerrit | Valeriy Ponomaryov proposed openstack/manila-ui: Updated from global requirements https://review.openstack.org/222652 | 15:00 |
*** doug-fish has quit IRC | 15:00 | |
*** jerrygb has joined #openstack-horizon | 15:01 | |
*** doug-fish has joined #openstack-horizon | 15:01 | |
*** Drago has quit IRC | 15:01 | |
*** Drago has joined #openstack-horizon | 15:02 | |
*** SimonChung1 has quit IRC | 15:02 | |
*** kzaitsev1ws is now known as kzaitsev_ws | 15:03 | |
*** morganfainberg has joined #openstack-horizon | 15:04 | |
*** morganfainberg has quit IRC | 15:04 | |
*** doug-fish has quit IRC | 15:05 | |
*** sambetts is now known as tehsmash | 15:06 | |
*** aortega has quit IRC | 15:06 | |
*** neelashah has joined #openstack-horizon | 15:07 | |
*** vgridnev has quit IRC | 15:07 | |
*** geoffarnold has joined #openstack-horizon | 15:08 | |
*** vgridnev has joined #openstack-horizon | 15:09 | |
*** geoffarnold has quit IRC | 15:11 | |
*** cloudtra_ has joined #openstack-horizon | 15:12 | |
*** geoffarnold has joined #openstack-horizon | 15:12 | |
*** doug-fish has joined #openstack-horizon | 15:12 | |
*** garthb has joined #openstack-horizon | 15:13 | |
*** cloudtrainme has quit IRC | 15:13 | |
*** doug-fish has quit IRC | 15:14 | |
*** doug-fish has joined #openstack-horizon | 15:16 | |
*** kyleolivo has quit IRC | 15:16 | |
*** davidmichaelkarr has joined #openstack-horizon | 15:17 | |
*** bpokorny has joined #openstack-horizon | 15:20 | |
*** morgan has joined #openstack-horizon | 15:23 | |
*** garthb_ has joined #openstack-horizon | 15:24 | |
*** garthb has quit IRC | 15:24 | |
*** rdopiera has quit IRC | 15:24 | |
*** morgan has quit IRC | 15:25 | |
*** morgan has joined #openstack-horizon | 15:26 | |
*** aortega has joined #openstack-horizon | 15:27 | |
*** vgridnev has quit IRC | 15:28 | |
*** vgridnev has joined #openstack-horizon | 15:28 | |
*** morgan has quit IRC | 15:31 | |
*** morgan has joined #openstack-horizon | 15:31 | |
*** TravT has quit IRC | 15:32 | |
*** TravT has joined #openstack-horizon | 15:33 | |
*** AlexeyElagin has quit IRC | 15:33 | |
*** morgan has quit IRC | 15:35 | |
*** morgan has joined #openstack-horizon | 15:35 | |
*** AlexeyElagin has joined #openstack-horizon | 15:35 | |
*** mwhagedorn_ has joined #openstack-horizon | 15:37 | |
bradjones | ducttape_: I've got it so that the topology stretches out to use full browser space now | 15:37 |
ducttape_ | awesome | 15:37 |
ducttape_ | more space - more better ;) | 15:37 |
bradjones | had a little bit of bother getting it to size down on window resize but if ok with you we can deal with that at a later date | 15:37 |
ducttape_ | or mo space, mo betta | 15:37 |
ducttape_ | hurgleburgler might have some css ninja tricks too | 15:38 |
*** mwhagedorn has quit IRC | 15:38 | |
*** mwhagedorn_ is now known as mwhagedorn | 15:38 | |
bradjones | yeah css is wizardry! | 15:39 |
hurgleburgler | ᕦ(ò_óˇ)ᕤ | 15:39 |
ducttape_ | she is the unofficial css ninja queen, according to me | 15:39 |
hurgleburgler | who needs a css ninja? | 15:39 |
hurgleburgler | Its an svg? | 15:39 |
bradjones | yup | 15:40 |
hurgleburgler | Is there a size on the container? | 15:40 |
hurgleburgler | it shouldn't need one, just an internal grid side | 15:40 |
ducttape_ | its more of a div displaying a d3 graph, and we just need it to take up vertical space reasonably well | 15:40 |
hurgleburgler | yup | 15:40 |
bradjones | let me quickly push what I have then you can see | 15:40 |
openstackgerrit | Bradley Jones proposed openstack/horizon: Add Curvature topology https://review.openstack.org/141078 | 15:41 |
ducttape_ | hurgleburgler - please add "css ninja queen" to linkedin too | 15:42 |
bradjones | I'm currently setting the height in JS by looking at the client height and subtracting the header space | 15:42 |
bradjones | would be nicer to just say height = 100% then at least resize of window would work | 15:42 |
*** jbell8 has joined #openstack-horizon | 15:43 | |
hurgleburgler | Hmmm, yeah, we might need to change that | 15:43 |
hurgleburgler | how does it respond to smaller screens? | 15:43 |
* tsufiev dreams about flexbox | 15:43 | |
hurgleburgler | lemme pull it and take a look | 15:43 |
hurgleburgler | I have a meeting in 15, so I might disappear | 15:43 |
ducttape_ | this chart and super small screens, let's not set the bar too high ;) | 15:43 |
hurgleburgler | but, i'll be back | 15:44 |
hurgleburgler | Psh! Pinch and zoom! | 15:44 |
*** Ala has quit IRC | 15:46 | |
bradjones | it's not too bad at the moment on smaller screens because you can just zoom the topology right out | 15:46 |
*** aortega_ has joined #openstack-horizon | 15:47 | |
*** aortega has quit IRC | 15:51 | |
*** aix has quit IRC | 15:52 | |
*** KunalGandhi has joined #openstack-horizon | 15:55 | |
*** TravT has quit IRC | 15:55 | |
tsufiev | doug-fish, hi! this might be interesting to you: https://bugs.launchpad.net/horizon/+bug/1494819 | 15:56 |
openstack | Launchpad bug 1494819 in OpenStack Dashboard (Horizon) "Russian strings for Actions within Project->Instances page 'More Actions' dropdown are missing" [Undecided,New] | 15:56 |
*** TravT has joined #openstack-horizon | 15:57 | |
*** gyee has joined #openstack-horizon | 16:00 | |
*** bluex-pl has joined #openstack-horizon | 16:01 | |
*** zhenguo has quit IRC | 16:03 | |
*** chlong has joined #openstack-horizon | 16:04 | |
*** devlaps has joined #openstack-horizon | 16:06 | |
*** clu_ has joined #openstack-horizon | 16:07 | |
*** tqtran has joined #openstack-horizon | 16:07 | |
*** bluex-pl has quit IRC | 16:08 | |
*** rajatvig has joined #openstack-horizon | 16:10 | |
*** ganeshna has joined #openstack-horizon | 16:10 | |
*** lhcheng has joined #openstack-horizon | 16:11 | |
*** TravT has quit IRC | 16:11 | |
*** SimonChung has joined #openstack-horizon | 16:12 | |
*** kiran-r has joined #openstack-horizon | 16:13 | |
doug-fish | tsufiev: it is. Thanks! | 16:14 |
openstackgerrit | David Lyle proposed openstack/horizon: Adding download for openrc file for keystone v3 https://review.openstack.org/186846 | 16:15 |
lhcheng | thought this patch already merged ^ | 16:16 |
*** vgridnev has quit IRC | 16:17 | |
david-lyle | lhcheng: not that I'm aware of | 16:17 |
lhcheng | yeah, I have seen it long time back, just thought it would have already merged by now since it is straight-forward | 16:18 |
*** ganeshna has quit IRC | 16:18 | |
lhcheng | wasn't there a proposal to add os cloud config as well? | 16:18 |
david-lyle | there were a couple of lingering nits that I finally came back to | 16:18 |
david-lyle | I know mordred mentioned, not sure I've seen it | 16:19 |
*** TravT has joined #openstack-horizon | 16:19 | |
lhcheng | that's right | 16:19 |
david-lyle | he doesn't appear to have a patch up yet | 16:20 |
kfox1111 | os cloud config? | 16:20 |
david-lyle | kfox1111: yeah | 16:20 |
kfox1111 | I don't follow. | 16:20 |
kfox1111 | what kind of config would users want to download for it? | 16:20 |
*** kiran-r has quit IRC | 16:21 | |
david-lyle | cloud.yaml file | 16:21 |
mhickey | lhcheng: Hi! Posted response to https://review.openstack.org/#/c/213193/. Note sure if I am misunderstanding feedback from you and Hossein? | 16:21 |
*** kiran-r has joined #openstack-horizon | 16:22 | |
*** cloudtra_ has quit IRC | 16:22 | |
*** cloudtrainme has joined #openstack-horizon | 16:24 | |
*** KunalGan_ has joined #openstack-horizon | 16:25 | |
kfox1111 | hmm. I see. yeah, I could see how that could be useful too. | 16:26 |
*** kiran-r has quit IRC | 16:27 | |
kfox1111 | though it almost looks like it might be better getting added to keystone somehow... | 16:27 |
*** KunalGandhi has quit IRC | 16:27 | |
kfox1111 | because keystone knows about federations, and it can then build a cloud.yaml that contains all the regions it knows about. | 16:27 |
openstackgerrit | Timur Sufiev proposed openstack/horizon: Also look for volumev2 endpoints https://review.openstack.org/151081 | 16:29 |
lhcheng | mhickey: hey! | 16:29 |
lhcheng | mhickey: yeah, having the two action classes is the right way | 16:30 |
lhcheng | mhickey: if you have one action that only shows up if the Domain is enabled, and the other action that only shows up when the Domain is disabled.. you'll have something that looks like a toggle button | 16:31 |
lhcheng | mhickey: added code snippet in the patch | 16:34 |
*** tehsmash is now known as sambetts | 16:36 | |
mhickey | lhcheng: so by updating the allowed to allow/disallow then you fix the button on single row? | 16:37 |
mhickey | lhcheng: just a small update on the current code committed? | 16:37 |
lhcheng | mhickey: yes! | 16:38 |
lhcheng | :) | 16:38 |
lhcheng | at any instance only one of the button is rendered in the Row actions | 16:38 |
tsufiev | lhcheng, hi! I've added an agenda item for choosing final name for AVAILABLE_REGIONS. Unfortunately the next meeting is 12:00UTC, and I'm not sure whether you'll be able to attend it. Would you mind state you opinion at https://wiki.openstack.org/wiki/Meetings/Horizon ? | 16:39 |
lhcheng | tsufiev: sure, it is not really a big deal. Just something to think about since we're renaming it anyway. | 16:40 |
lhcheng | might as well get it right | 16:40 |
mhickey | lhcheng: Thanks for the "heads up". :) I will look to update in the next while. | 16:40 |
*** KunalGan_ has quit IRC | 16:40 | |
*** sayan has quit IRC | 16:41 | |
tsufiev | lhcheng, okay, just wanted you to know that it'll be discussed during your early morning | 16:41 |
*** asahlin__ has quit IRC | 16:42 | |
*** lsmola has quit IRC | 16:42 | |
tsufiev | does anybody know if it's possible to explicitly create new ports (neutron) in Horizon? | 16:43 |
tsufiev | or is it done always behind the scenes? | 16:43 |
*** asahlin has joined #openstack-horizon | 16:44 | |
*** asahlin has quit IRC | 16:44 | |
*** asahlin has joined #openstack-horizon | 16:44 | |
ducttape_ | I think you can | 16:44 |
ducttape_ | in the network screen? | 16:44 |
david-lyle | I'm not sure that was ever added. Port management. There was a BP a long time ago | 16:45 |
tsufiev | yep, I don't know any other screen that fits. But I just looked through it, no 'Create Port' button there | 16:45 |
ducttape_ | I'm not sure the value of creating the port, without declaring what to connect it to :\ | 16:46 |
tsufiev | aha! I was investigating whether it's possible to create Instances with SRIOV ports in current Horizon | 16:46 |
tsufiev | seems that some additional work is needed | 16:46 |
david-lyle | JD had code at one point started | 16:47 |
ducttape_ | "seems that some additional work is needed" => always true | 16:47 |
david-lyle | IIRC | 16:47 |
tsufiev | ducttape_, sure, it doesn't have to be such low-level. It might have the form of 'what type of connection do you want?" when selecting a network for new instance | 16:47 |
tsufiev | david-lyle, JD? | 16:48 |
david-lyle | sorry former HP person, from back in the day | 16:48 |
lhcheng | tsufiev: cool, thanks for the heads up! | 16:48 |
david-lyle | ducttape_: would know | 16:48 |
david-lyle | I was trying to jog his memory | 16:48 |
lhcheng | mhickey: good luck, let me know if you hit a problem | 16:48 |
ducttape_ | some things are best left in the past david-lyle | 16:49 |
ducttape_ | I have plenty of opportunities today | 16:49 |
ducttape_ | https://talkgadget.google.com/hangouts/_/buz7avmplnuscgmtenxy3zezbea david-lyle / TravT / anyone else who would like to see the topo review from bradjones with more instances | 16:56 |
TravT | ok, i'll jump in. | 16:56 |
*** ygbo has quit IRC | 16:57 | |
robcresswell | ducttape_: Joining | 16:57 |
*** T0m_ has joined #openstack-horizon | 16:57 | |
bradjones | ducttape_: also joining | 16:58 |
lhcheng | ducttape_: can that be recorded? | 17:00 |
*** kyleolivo has joined #openstack-horizon | 17:00 | |
robcresswell | lhcheng: Hangouts, so dont think so | 17:01 |
*** kyleolivo has quit IRC | 17:01 | |
* lhcheng cannot join the cool kids | 17:01 | |
lhcheng | robcresswell: bummer | 17:01 |
*** TravT_ has joined #openstack-horizon | 17:02 | |
*** kyleolivo has joined #openstack-horizon | 17:02 | |
*** jcoufal has quit IRC | 17:03 | |
robcresswell | lhcheng: Overall its looking much more solid, and looking about ready to go in according to david-lyle | 17:03 |
*** vgridnev has joined #openstack-horizon | 17:03 | |
lhcheng | robcresswell: nice! | 17:04 |
hurgleburgler | hey ducttape_ | 17:05 |
*** exploreshaifali has joined #openstack-horizon | 17:05 | |
robcresswell | lhcheng: The current issue highlighted is that the zoom level should ideally be variable based on size of topology. It looks okay for smaller ones, but for largers one bits are cut off at first, until you zoom out. | 17:05 |
*** TravT has quit IRC | 17:05 | |
hurgleburgler | can you cherry-pick this guy ontop of network topology and see if that mostly fixes your problem? | 17:05 |
hurgleburgler | 215745 | 17:05 |
*** lapalm has quit IRC | 17:06 | |
T0m_ | I have installed devstack, tried to add the object storage and now the UI wont load. This is what I see: http://paste.openstack.org/show/457035/ Any ideas on what I have broke? | 17:06 |
*** KunalGandhi has joined #openstack-horizon | 17:07 | |
T0m_ | Oh, i tried another browser and it works. | 17:07 |
T0m_ | Cookie related maybe... | 17:07 |
lhcheng | robcresswell: appreciate the update, yeah that makes sense | 17:10 |
*** amotoki has quit IRC | 17:10 | |
lhcheng | T0m_: it is a known issue with horizon running in django 1.8 | 17:11 |
lhcheng | T0m_: it is currently being worked on | 17:11 |
lhcheng | T0m_: https://bugs.launchpad.net/django-openstack-auth/+bug/1491117 | 17:11 |
openstack | Launchpad bug 1491117 in django-openstack-auth "Error when logging back in after timeout" [High,In progress] - Assigned to Richard Jones (r1chardj0n3s) | 17:11 |
T0m_ | Ah ok, great | 17:11 |
openstackgerrit | Cindy Lu proposed openstack/horizon: Angular Magic Search defaults for filterStrings https://review.openstack.org/222710 | 17:11 |
robcresswell | T0m_: Yeah, delete your sessionid and it should fix itself I think | 17:11 |
T0m_ | Thanks - first time using OS so wasnt surpised if I had broke something! | 17:11 |
robcresswell | ha, nope you're all good :) | 17:12 |
T0m_ | Should I be able to install any sort of standard OS as an instance? | 17:13 |
openstackgerrit | Merged openstack/horizon: Fix ng Launch Instance button in Network Topology https://review.openstack.org/222426 | 17:13 |
robcresswell | OpenStack/ operating system | 17:14 |
robcresswell | :( | 17:14 |
T0m_ | What I mean is I have tried 2 Ubutnu ISOs but they wont fully install becase its mentioning a cd in the drive… | 17:14 |
robcresswell | T0m_: Sorry, this is when launching an instance? I'm lost | 17:15 |
*** kzaitsev_mb has quit IRC | 17:15 | |
openstackgerrit | Martin Hickey proposed openstack/horizon: Adds button to disable more than one domain at a time https://review.openstack.org/213193 | 17:16 |
robcresswell | lhcheng: High praise from ducttape_ - "No worse than the existing topology" | 17:16 |
*** alanf has joined #openstack-horizon | 17:17 | |
ducttape_ | ;) | 17:17 |
T0m_ | Yeah thats right. So I add the image to OS. Say an Ubutnu ISO. I go throuhg instlalling the OS, it asks me the language etc and then just says it cant use the CD in the drive. Its odd. I dont even have a CD drive. Just wondered if missing something obvious. Im trying to install an instance within OS , and OS is already running as a VM. Not sure if thats part of the issue… | 17:17 |
lhcheng | can get any better than having ducttape_'s stamp of approval | 17:18 |
lhcheng | robcresswell: Hah | 17:18 |
TravT_ | looking at it now, functionally it seems like it is worth replacing the current one. | 17:18 |
TravT_ | and if we can accept that perfection is the enemy of progress and put it in and iterate from there | 17:19 |
*** TravT_ is now known as TravT | 17:19 | |
ducttape_ | TravT and I have different versions of what is ok / good enough... but in this case I think we are close to the same page :P | 17:20 |
robcresswell | TravT: Yeah, I think its come a long way. A lot of the features are there, its kinda just little usability improvements, like the zoom, or +/- | 17:20 |
robcresswell | T0m_: Could ask on #openstack-nova | 17:20 |
TravT | funny statement coming from ducttape_ ;-) | 17:20 |
robcresswell | TravT: Heh, yeah I laughed. | 17:20 |
T0m_ | Ok sure - will give it another go and if fails will do. Thanks for taking the time to respond. | 17:20 |
robcresswell | T0m_: No problem | 17:21 |
ducttape_ | when the person named "ducttape_" is telling you to put a little more polish on something, you might have a problem :P | 17:21 |
TravT | the keyword above is "replace" | 17:21 |
T0m_ | To get more involved with OS, hows the best way based on getting a system up and running without needing alot of hardware? | 17:22 |
*** jbell8 has quit IRC | 17:22 | |
robcresswell | T0m_: Usually Devstack | 17:22 |
mhickey | lhcheng: I have committed the change for the row action. Let me know what you think? Hopefully, all confusion cleared up! :) | 17:22 |
T0m_ | Ha so i have started in the right place by installing that on my laptop | 17:23 |
robcresswell | T0m_: Indeed | 17:23 |
T0m_ | ok i think this image is failing, my laptop has 16gb and its all used… the OS VM has 8GB, thought that would be enough | 17:24 |
*** shivrao has joined #openstack-horizon | 17:24 | |
*** kyleolivo has quit IRC | 17:24 | |
*** garthb_ has quit IRC | 17:25 | |
*** garthb has joined #openstack-horizon | 17:25 | |
*** kyleolivo has joined #openstack-horizon | 17:26 | |
*** sayan has joined #openstack-horizon | 17:27 | |
robcresswell | Weekend time. Have a good one everybody. | 17:28 |
robcresswell | TravT: I will get round to some reviews on the angular FFE work on Monday. Bit behind on that and said I would help. | 17:29 |
TravT | robcresswell: thanks... i've held off on doing some this week allowing the people working on it to make more progress. | 17:30 |
TravT | but, i think some more reviews are in order. | 17:30 |
*** jbell8 has joined #openstack-horizon | 17:31 | |
*** chlong has quit IRC | 17:34 | |
*** tosky has quit IRC | 17:36 | |
*** SimonChung1 has joined #openstack-horizon | 17:36 | |
*** SimonChung1 has quit IRC | 17:37 | |
*** SimonChung has quit IRC | 17:37 | |
*** SimonChung2 has joined #openstack-horizon | 17:37 | |
*** SimonChung2 has quit IRC | 17:38 | |
*** SimonChung has joined #openstack-horizon | 17:38 | |
*** doug-fish has quit IRC | 17:38 | |
*** doug-fish has joined #openstack-horizon | 17:41 | |
*** jbell8 has quit IRC | 17:42 | |
*** mhickey has quit IRC | 17:48 | |
*** T0m_ has left #openstack-horizon | 17:52 | |
*** saksham has joined #openstack-horizon | 17:53 | |
*** mrunge has quit IRC | 17:53 | |
*** jwy has joined #openstack-horizon | 17:58 | |
jpomeroy | clu_, you around? | 17:58 |
clu_ | hi jpomeroy, yup | 17:58 |
jpomeroy | clu_, hey, was just wondering if you intend to continue this work: https://review.openstack.org/#/c/174640/ | 17:59 |
jpomeroy | i'm looking at possibly adding another tab to that page to show role assignments, but it might make sense to depend on those changes | 17:59 |
*** jbell8 has joined #openstack-horizon | 18:00 | |
*** linkedinyou has joined #openstack-horizon | 18:03 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list https://review.openstack.org/222493 | 18:04 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel https://review.openstack.org/217949 | 18:04 |
*** bpokorny has quit IRC | 18:04 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding multiple row actions for the Image table https://review.openstack.org/217964 | 18:04 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service https://review.openstack.org/220214 | 18:04 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel https://review.openstack.org/217422 | 18:04 |
*** ZZelle_ has joined #openstack-horizon | 18:06 | |
*** bpokorny has joined #openstack-horizon | 18:06 | |
*** jcoufal has joined #openstack-horizon | 18:06 | |
*** ybathia has joined #openstack-horizon | 18:07 | |
*** lapalm has joined #openstack-horizon | 18:08 | |
*** Piet has quit IRC | 18:09 | |
openstackgerrit | Lin Hua Cheng proposed openstack/horizon: Integration tests - Instances tests https://review.openstack.org/117091 | 18:09 |
*** SimonChung has quit IRC | 18:10 | |
*** SimonChung1 has joined #openstack-horizon | 18:10 | |
*** Daisy has quit IRC | 18:11 | |
*** vishwanathj_ has quit IRC | 18:11 | |
*** kyleolivo has quit IRC | 18:18 | |
*** kyleolivo has joined #openstack-horizon | 18:19 | |
*** rajatvig has quit IRC | 18:20 | |
*** kyleolivo has quit IRC | 18:21 | |
*** kyleolivo has joined #openstack-horizon | 18:22 | |
*** kyleolivo has quit IRC | 18:24 | |
*** jerrygb_ has joined #openstack-horizon | 18:24 | |
*** rajatvig has joined #openstack-horizon | 18:25 | |
*** kzaitsev_mb has joined #openstack-horizon | 18:25 | |
*** jerrygb has quit IRC | 18:28 | |
*** kyleolivo has joined #openstack-horizon | 18:30 | |
*** asahlin has quit IRC | 18:30 | |
*** kiran-r has joined #openstack-horizon | 18:31 | |
*** asahlin has joined #openstack-horizon | 18:31 | |
*** kiran-r has quit IRC | 18:33 | |
*** TravT has quit IRC | 18:36 | |
tsufiev | doug-fish, there is another patch for making integration tests even better: https://review.openstack.org/#/c/218301/ | 18:37 |
*** TravT has joined #openstack-horizon | 18:37 | |
doug-fish | tsufiev: don't you sleep?! | 18:37 |
tsufiev | doug-fish, it's only 9:38 pm in Moscow, pretty early | 18:38 |
doug-fish | ah ok | 18:38 |
doug-fish | tsufiev: I just updated that missing RU translation bug you opened | 18:38 |
doug-fish | I'm really surprised to see 4 pluralities for Russian | 18:38 |
doug-fish | does that make sense to you? | 18:38 |
tsufiev | doug-fish, plural forms of verbs or nouns | 18:40 |
tsufiev | ? | 18:40 |
*** ducttape_ has quit IRC | 18:40 | |
tsufiev | or all of them? | 18:40 |
doug-fish | it's actually both | 18:40 |
*** ducttape_ has joined #openstack-horizon | 18:40 | |
tsufiev | doug-fish, then it makes sense. It can be up to 6 forms for nouns and I don't know how many for verbs | 18:41 |
doug-fish | oh, I see | 18:41 |
*** TravT_ has joined #openstack-horizon | 18:41 | |
*** Piet has joined #openstack-horizon | 18:41 | |
doug-fish | I'm used to seeing python Babel claiming Russian should support 3 pluralities | 18:41 |
doug-fish | so maybe this is a good clue | 18:42 |
*** kzaitsev_mb has quit IRC | 18:43 | |
*** TravT has quit IRC | 18:43 | |
tsufiev | doug-fish, FYI, http://www.russianlessons.net/lessons/lesson11_main.php | 18:43 |
tsufiev | 'As the Russian language is based on the case system there are different plurals in each case.' | 18:44 |
tsufiev | and since it has 6 cases, I choose the maximum possible value | 18:45 |
tsufiev | * 3 genders | 18:45 |
doug-fish | I'm trying to reconcile that with https://translations.launchpad.net/+languages/ru and http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html | 18:45 |
doug-fish | which matches more closely what I've seen in code | 18:46 |
*** emilyw has joined #openstack-horizon | 18:46 | |
*** ttrifonov is now known as zz_ttrifonov | 18:47 | |
tsufiev | doug-fish, ah, now I understand better what these 'plurals' mean | 18:49 |
* tsufiev started scratching his head, trying to remember 4th form | 18:49 | |
doug-fish | yeah, confuses pretty much everybody | 18:49 |
*** Sukhdev_ has joined #openstack-horizon | 18:49 | |
tsufiev | is there an example of some word we missed due to 3 plurals? | 18:50 |
*** mhickey has joined #openstack-horizon | 18:50 | |
doug-fish | not that I'm aware of. I had a lot of trouble with internal translations of RU having only 2 forms, which resulted in _no_ translation being shown sometimes - even updating the function in the PO file didn't fix it ... | 18:51 |
doug-fish | I'm wondering if parts of our app (like Django) have PO files with 3 forms and that function is getting used | 18:51 |
mhickey | lhcheng: Hey, are you there? | 18:52 |
doug-fish | and when it finds 4 plurals it jsut gives up | 18:52 |
tsufiev | doug-fish, okay, I'll ask my wife, she graduated as a philolog :) | 18:53 |
doug-fish | perfect! | 18:53 |
*** bpokorny has quit IRC | 18:54 | |
*** bpokorny has joined #openstack-horizon | 18:54 | |
tsufiev | okay, bye everybody | 18:57 |
doug-fish | have a good weekend tsufiev! | 18:57 |
*** jerrygb_ has quit IRC | 18:57 | |
*** jerrygb has joined #openstack-horizon | 18:57 | |
mhickey | tsufiev: thanks for review | 18:58 |
mhickey | have a good weekend | 18:58 |
mhickey | Hey, can someone please check out my patch? https://review.openstack.org/#/c/213193/ | 18:59 |
mhickey | trying to see if it can make it before I sign off with a beer for the weekend! :-) | 19:00 |
*** saksham has quit IRC | 19:05 | |
*** exploreshaifali has quit IRC | 19:10 | |
ducttape_ | mhickey if you have to choose between beer and waiting for reviews, choose beer - EVERY SINGLE TIME! | 19:10 |
mhickey | ducttape_: sure! Getting a pass from wife and kids. Nothing going to stop me! :-) | 19:14 |
*** alanf has quit IRC | 19:16 | |
*** gyee has quit IRC | 19:17 | |
clu_ | jpomeroy: sorry, got carried away | 19:18 |
clu_ | yes, i plan to pick that up :) | 19:18 |
jpomeroy | clu_, no worries | 19:18 |
mhickey | Ok, weekend beckons. Have a good one everyone. | 19:22 |
*** asahlin has quit IRC | 19:23 | |
mhickey | byr | 19:23 |
mhickey | bye even :) | 19:23 |
jpomeroy | mhickey, have a good one | 19:27 |
*** mhickey has quit IRC | 19:29 | |
*** kyleolivo has quit IRC | 19:33 | |
*** aortega_ has quit IRC | 19:33 | |
*** kyleolivo has joined #openstack-horizon | 19:34 | |
*** kyleolivo has quit IRC | 19:35 | |
*** TravT_ has quit IRC | 19:41 | |
*** TravT has joined #openstack-horizon | 19:42 | |
*** alanf has joined #openstack-horizon | 19:45 | |
*** rajatvig has quit IRC | 19:45 | |
*** Mzoorikh has joined #openstack-horizon | 19:52 | |
doug-fish | do we have a bug open yet for the broken translations? | 19:53 |
doug-fish | https://review.openstack.org/#/c/220404/ keeps failing | 19:54 |
*** asahlin has joined #openstack-horizon | 19:56 | |
*** yamamoto_ has quit IRC | 19:57 | |
*** gyee has joined #openstack-horizon | 19:57 | |
*** Piet has quit IRC | 19:59 | |
*** SimonChung has joined #openstack-horizon | 20:01 | |
*** SimonChung1 has quit IRC | 20:01 | |
*** kyleolivo has joined #openstack-horizon | 20:02 | |
*** yamamoto has joined #openstack-horizon | 20:03 | |
*** yamamoto has quit IRC | 20:03 | |
doug-fish | we do now https://bugs.launchpad.net/openstack-i18n/+bug/1494914 | 20:06 |
openstack | Launchpad bug 1494914 in OpenStack Dashboard (Horizon) "PO file import keeps failing" [High,New] | 20:06 |
*** mpavlase has joined #openstack-horizon | 20:07 | |
*** rajatvig has joined #openstack-horizon | 20:08 | |
*** erlon has quit IRC | 20:08 | |
*** Mzoorikh has quit IRC | 20:14 | |
*** jbell8 has quit IRC | 20:15 | |
*** asahlin has quit IRC | 20:17 | |
*** asahlin has joined #openstack-horizon | 20:17 | |
*** jwy has quit IRC | 20:18 | |
*** kyleolivo has quit IRC | 20:19 | |
*** mpavlase has quit IRC | 20:21 | |
rajatvig | TravT: Hi, would you've some time now? | 20:22 |
*** pauloewerton has quit IRC | 20:30 | |
*** jwy has joined #openstack-horizon | 20:32 | |
*** bradjones is now known as bradjones|away | 20:33 | |
*** crobertsrh is now known as _crobertsrh | 20:33 | |
*** kyleolivo has joined #openstack-horizon | 20:41 | |
*** mpavlase has joined #openstack-horizon | 20:43 | |
*** pauloewerton has joined #openstack-horizon | 20:43 | |
*** Sukhdev_ has quit IRC | 20:49 | |
*** mpavlase has quit IRC | 20:54 | |
*** pauloewerton has quit IRC | 20:54 | |
openstackgerrit | Brad Pokorny proposed openstack/horizon: Choose a server group when booting a VM https://review.openstack.org/217617 | 21:01 |
*** yamamoto has joined #openstack-horizon | 21:03 | |
*** davidmichaelkarr has quit IRC | 21:07 | |
*** rajatvig has quit IRC | 21:08 | |
*** Piet has joined #openstack-horizon | 21:08 | |
*** yamamoto has quit IRC | 21:09 | |
*** doug-fish has quit IRC | 21:09 | |
*** lapalm has quit IRC | 21:12 | |
*** lblanchard has quit IRC | 21:12 | |
*** jcoufal has quit IRC | 21:13 | |
*** gyee has quit IRC | 21:19 | |
*** kzaitsev_mb has joined #openstack-horizon | 21:19 | |
*** jtriley has quit IRC | 21:19 | |
*** jcoufal has joined #openstack-horizon | 21:22 | |
openstackgerrit | Merged openstack/horizon: Enable compute shelve/unshelve commands https://review.openstack.org/220838 | 21:26 |
*** garthb has quit IRC | 21:29 | |
*** Sukhdev_ has joined #openstack-horizon | 21:31 | |
*** stevemar has quit IRC | 21:32 | |
*** stevemar has joined #openstack-horizon | 21:33 | |
*** TravT has quit IRC | 21:33 | |
openstackgerrit | Diana Whitten proposed openstack/horizon: Default Sidebar should grow with page height https://review.openstack.org/215745 | 21:34 |
*** rajatvig has joined #openstack-horizon | 21:35 | |
*** stevemar has quit IRC | 21:36 | |
*** aix has joined #openstack-horizon | 21:37 | |
*** neelashah has quit IRC | 21:37 | |
openstackgerrit | Diana Whitten proposed openstack/horizon: Default Sidebar should grow with page height https://review.openstack.org/215745 | 21:37 |
*** cbader has quit IRC | 21:40 | |
*** stevemar has joined #openstack-horizon | 21:40 | |
*** stevemar has quit IRC | 21:42 | |
*** stevemar has joined #openstack-horizon | 21:43 | |
*** rajatvig has quit IRC | 21:44 | |
*** stevemar has quit IRC | 21:46 | |
*** aix has quit IRC | 21:46 | |
*** rajatvig has joined #openstack-horizon | 21:46 | |
*** garthb has joined #openstack-horizon | 21:48 | |
*** garthb_ has joined #openstack-horizon | 21:48 | |
*** garthb_ has quit IRC | 21:48 | |
*** TravT has joined #openstack-horizon | 21:49 | |
*** vgridnev has quit IRC | 21:50 | |
r1chardj0n3s | hi folks | 21:53 |
*** ducttape_ has quit IRC | 21:53 | |
*** vijendar has quit IRC | 21:54 | |
hurgleburgler | Morning r1chardj0n3s | 21:59 |
*** emw has joined #openstack-horizon | 22:09 | |
*** emilyw has quit IRC | 22:09 | |
*** saksham has joined #openstack-horizon | 22:10 | |
*** emilyw has joined #openstack-horizon | 22:12 | |
*** emw has quit IRC | 22:14 | |
*** gyee has joined #openstack-horizon | 22:19 | |
openstackgerrit | Merged openstack/horizon: Moving translation to HTML for launch-instance configuration step https://review.openstack.org/216611 | 22:19 |
*** kyleolivo has quit IRC | 22:20 | |
*** TravT has quit IRC | 22:22 | |
*** gyee has quit IRC | 22:25 | |
-openstackstatus- NOTICE: 30 minute warning, Gerrit will be offline from 23:00 to 23:30 UTC while some projects are renamed http://lists.openstack.org/pipermail/openstack-dev/2015-September/074235.html | 22:31 | |
*** gyee has joined #openstack-horizon | 22:33 | |
*** TravT has joined #openstack-horizon | 22:39 | |
*** alanf has quit IRC | 22:48 | |
*** alanf has joined #openstack-horizon | 22:52 | |
*** SimonChung has quit IRC | 22:52 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list https://review.openstack.org/222493 | 22:54 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel https://review.openstack.org/217949 | 22:54 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding multiple row actions for the Image table https://review.openstack.org/217964 | 22:54 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service https://review.openstack.org/220214 | 22:55 |
openstackgerrit | Rajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel https://review.openstack.org/217422 | 22:55 |
*** cloudtrainme has quit IRC | 23:00 | |
-openstackstatus- NOTICE: Gerrit is offline from 23:00 to 23:30 UTC while some projects are renamed. http://lists.openstack.org/pipermail/openstack-dev/2015-September/074235.html | 23:02 | |
*** ChanServ changes topic to "Gerrit is offline from 23:00 to 23:30 UTC while some projects are renamed. http://lists.openstack.org/pipermail/openstack-dev/2015-September/074235.html" | 23:02 | |
*** asahlin_ has joined #openstack-horizon | 23:02 | |
*** mhorban has quit IRC | 23:02 | |
*** rajatvig_ has joined #openstack-horizon | 23:03 | |
*** xnox has quit IRC | 23:03 | |
*** mhorban has joined #openstack-horizon | 23:03 | |
*** garann has quit IRC | 23:03 | |
*** SimonChung has joined #openstack-horizon | 23:03 | |
*** asahlin has quit IRC | 23:04 | |
*** hurgleburgler has quit IRC | 23:05 | |
*** jcoufal has quit IRC | 23:05 | |
*** xnox has joined #openstack-horizon | 23:05 | |
*** rajatvig_ has quit IRC | 23:08 | |
*** jbell8 has joined #openstack-horizon | 23:09 | |
*** garann has joined #openstack-horizon | 23:11 | |
*** gyee has quit IRC | 23:16 | |
*** kyleolivo has joined #openstack-horizon | 23:16 | |
*** kyleolivo has quit IRC | 23:21 | |
*** gyee has joined #openstack-horizon | 23:23 | |
*** gyee has quit IRC | 23:23 | |
*** jbell8 has quit IRC | 23:27 | |
*** kzaitsev_mb has quit IRC | 23:29 | |
*** Sukhdev_ has quit IRC | 23:31 | |
*** kzaitsev_mb has joined #openstack-horizon | 23:33 | |
*** Sukhdev_ has joined #openstack-horizon | 23:33 | |
*** SimonChung1 has joined #openstack-horizon | 23:34 | |
*** SimonChung has quit IRC | 23:34 | |
*** rajatvig has quit IRC | 23:35 | |
*** ducttape_ has joined #openstack-horizon | 23:35 | |
*** ChanServ changes topic to "OpenStack Horizon" | 23:39 | |
*** shivrao has quit IRC | 23:39 | |
lhcheng | ducttape_: the context selector have a problem again: https://bugs.launchpad.net/horizon/+bug/1494988 | 23:40 |
openstack | Launchpad bug 1494988 in OpenStack Dashboard (Horizon) "Context selector is broken" [High,New] | 23:40 |
ducttape_ | say WHAT! | 23:41 |
lhcheng | not sure if its just my local, reported the bug anyway so other folks can validate it | 23:41 |
ducttape_ | did you redo all your static content ? | 23:41 |
lhcheng | yeah | 23:42 |
ducttape_ | so we have deployed a version as of about 8 am today, and do not have that issue | 23:42 |
ducttape_ | 8 am MST | 23:42 |
ducttape_ | MDT | 23:42 |
*** geoffarnold is now known as geoffarnoldX | 23:42 | |
lhcheng | removed the static folder again | 23:42 |
lhcheng | hmm I wonder if its only for keystone v3 | 23:43 |
lhcheng | going to switch to v2 | 23:43 |
ducttape_ | keystone v2: it just works®™ | 23:44 |
morgan | ducttape_ :( | 23:44 |
ducttape_ | haha | 23:45 |
ducttape_ | you should take that as a compliment morgan | 23:45 |
morgan | no | 23:45 |
morgan | not in the slightest | 23:45 |
ducttape_ | lol | 23:45 |
lhcheng | yeah, it works when horizon is setup with v2 :( | 23:45 |
lhcheng | the UI.. | 23:45 |
ducttape_ | so, how many more impediments can we build to slow down keystone v3 adoption? this one was extra tricky, kudos to whomever created this gem | 23:46 |
*** openstackgerrit has quit IRC | 23:46 | |
ducttape_ | ;) | 23:46 |
*** openstackgerrit has joined #openstack-horizon | 23:47 | |
kfox1111 | can I get a quick workflow on this one: https://review.openstack.org/#/c/220676/ | 23:47 |
kfox1111 | the migration finished and the url is live. | 23:47 |
*** linkedinyou has quit IRC | 23:48 | |
lhcheng | ducttape_: whoever is that, he's doing a great job laying out those traps | 23:51 |
ducttape_ | I know, right? this person is a keystone v2 ninja, determined to kill keystone v3 | 23:51 |
lhcheng | kfox1111: cool, approved | 23:52 |
kfox1111 | thx. | 23:52 |
lhcheng | ducttape_: haha he got skillz | 23:52 |
*** Daisy has joined #openstack-horizon | 23:54 | |
*** linkedinyou has joined #openstack-horizon | 23:55 | |
*** SimonChung has joined #openstack-horizon | 23:57 | |
*** SimonChung1 has quit IRC | 23:57 | |
*** Daisy has quit IRC | 23:59 | |
*** SimonChung has quit IRC | 23:59 | |
*** SimonChung1 has joined #openstack-horizon | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!