Friday, 2015-09-11

*** rajatvig has quit IRC00:00
*** kzaitsev_mb has joined #openstack-horizon00:01
*** Sukhdev has quit IRC00:02
*** Sukhdev has joined #openstack-horizon00:03
*** linkedinyou has joined #openstack-horizon00:03
*** rhagarty__ has joined #openstack-horizon00:05
openstackgerritThai Tran proposed openstack/horizon: WIP Adding CREATE action to identity users panel  https://review.openstack.org/22229700:07
*** rhagarty__ has quit IRC00:07
david-lylegyee :/00:07
*** Sukhdev has quit IRC00:07
david-lylethat seems Falsey00:07
gyeeI don't think django-auth can handle anything other than username/password00:08
david-lyletheoretically you could add a different backend to d-o-a00:08
*** jingjing_ren has joined #openstack-horizon00:08
david-lylethere are auth plugins00:08
gyeecan I extend Horizon to accept, say, smart card reader?00:08
gyeeoh00:09
david-lylebut they are limited, but kerberos works00:09
david-lylethought you were talking no keystone00:09
gyeebut how do you get a token?00:10
gyeevia Federation?00:10
david-lylehttps://github.com/openstack/django-openstack-auth-kerberos00:10
david-lylethat was jamielennox00:11
*** tqtran has quit IRC00:11
david-lyleyou could abuse the format accordingly to most anything00:12
david-lyles/to/to do/00:12
*** jingjing_ren has quit IRC00:13
gyeedavid-lyle, thanks! let me readup the code. I am trying to figure out whether it can do smart card integration00:14
david-lyleshould be able to have the plugin provider code talk to whatever you want00:14
gyeeah, kerberos via federation looks like00:17
gyeeto get an unscoped token00:18
*** chlong has quit IRC00:19
david-lyleyes unscoped00:19
*** geoffarnold has quit IRC00:20
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107800:21
*** darrenc is now known as darrenc_afk00:22
r1chardj0n3slhcheng: would you like to discuss your -1 on the DOA patch?00:23
lhchengr1chardj0n3s: hey00:23
r1chardj0n3slhcheng: several other options were investigated and they either don't work or are infeasibly complex to implement00:23
r1chardj0n3sthey're mentioned on the bug report00:23
r1chardj0n3sthis 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 them00:24
*** bradjones is now known as bradjones|away00:24
r1chardj0n3s(apart from the user errors people receive)00:24
lhchenghaven't got the chance to catchup with the updated bug report, still have a lot of stuff in my plate. :(00:24
r1chardj0n3syep00:24
*** geoffarnold has joined #openstack-horizon00:25
lhchengmonkey patching a private method doesn't sound right00:25
r1chardj0n3sI'm aware of that: monkey-patching was my last resort00:25
r1chardj0n3sbut basically DOA breaks Django's User model00:26
r1chardj0n3sso we have to work around that somehow00:26
lhchengyeah, I agree we need to have a work around. I feel there is a better way00:26
r1chardj0n3s1) 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
r1chardj0n3s2) we can't implement our own User-compatible model as we'd have to then keep it in sync with Django00:28
r1chardj0n3s3) 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.id00:28
*** geoffarnold has quit IRC00:29
r1chardj0n3sso hence I ended up implementing #4, the monkey-patch (since DOA *already* monkey-patches Django)00:29
r1chardj0n3sif you can come up with #5 please do so, but this patch can't languish, please00:29
lhchengyeah monkey patching is bad, but monkey patching a private method is worst.00:29
*** clu_ has quit IRC00:29
david-lylelhcheng: didn't mrunge have a related fix that got lost00:30
david-lylesomething about AUTH_USER00:30
david-lyleor some such00:30
* david-lyle has no memory left00:30
lhchengyeah, setting the user model00:30
r1chardj0n3sAUTH_USER_MODEL you mean?00:30
r1chardj0n3syeah, that's option #2 above00:30
david-lylesure, let's go with that00:31
r1chardj0n3sum00:31
r1chardj0n3simplementing a User-compatible model? that's touching even more Django internal code than this monkey-patch :(00:31
david-lylelet me dig it up00:32
*** SimonChung has quit IRC00:33
david-lylehttps://review.openstack.org/#/c/167981/3..1/openstack_auth/user.py00:34
david-lylewhich looking at now, doesn't seem right00:35
r1chardj0n3sdavid-lyle: that doesn't appear to solve the problem00:35
david-lylejust remembered something about id manipulation00:36
r1chardj0n3sso the basic problem is that Django's base models.Model has an int() id00:36
r1chardj0n3swe are assigning a non-int to that in DOA00:36
r1chardj0n3swe 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-lylei did see the error on a token timeout too00:38
david-lylewhich was worse00:38
r1chardj0n3sthere's a number of ways to trigger this problem, yeah00:38
david-lyleright, just happy to be with the cool kids00:39
openstackgerritDiana Whitten proposed openstack/horizon: Horizon Login now inherits from Bootstrap Theme  https://review.openstack.org/21988100:39
r1chardj0n3s:)00:39
*** kzaitsev_mb has quit IRC00:42
*** btully has quit IRC00:44
*** crobertsrh is now known as _crobertsrh00:46
*** hurgleburgler has quit IRC00:47
r1chardj0n3sdavid-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 DOA00:49
r1chardj0n3sdavid-lyle, lhcheng: "user.id" appears 105 times in Horizon (by my simplistic grep)00:51
openstackgerritAllen proposed openstack/horizon: Fix alignment issue in project table inline edit  https://review.openstack.org/22204400:53
openstackgerritAllen proposed openstack/horizon: Improve error message for create QoS Spec  https://review.openstack.org/22206300:53
*** viks has quit IRC00:53
*** hurgleburgler has joined #openstack-horizon00:59
*** hurgleburgler has joined #openstack-horizon00:59
*** hurgleburgler has quit IRC01:00
*** shivrao has quit IRC01:02
*** chlong has joined #openstack-horizon01:02
*** mwhagedorn has joined #openstack-horizon01:05
*** davidmichaelkarr has quit IRC01:07
*** chlong has quit IRC01:08
*** zhenguo has joined #openstack-horizon01:09
*** lhcheng has left #openstack-horizon01:11
*** lhcheng has quit IRC01:11
openstackgerritJustin Pomeroy proposed openstack/horizon: Fix ng Launch Instance button in Network Topology  https://review.openstack.org/22242601:12
*** darrenc_afk is now known as darrenc01:12
stevemarso who wants to talk about pagination and users?!01:14
*** jwy has quit IRC01:19
*** chlong has joined #openstack-horizon01:20
*** btully has joined #openstack-horizon01:21
jpomeroystevemar, you mean adding paging to the users table?01:23
*** btully has quit IRC01:26
*** amotoki has joined #openstack-horizon01:26
jpomeroyif only keystone v3 supported paging01:26
*** alanf has quit IRC01:29
*** saksham has quit IRC01:30
*** jbell8 has quit IRC01:32
*** jbell8 has joined #openstack-horizon01:34
openstackgerritAllen proposed openstack/horizon: Improve error message for create QoS Spec  https://review.openstack.org/22206301:34
*** jwy has joined #openstack-horizon01:35
*** zhurong has joined #openstack-horizon01:35
*** Daisy has joined #openstack-horizon01:36
*** Drago1 has joined #openstack-horizon01:38
openstackgerritBrad Pokorny proposed openstack/horizon: Choose a server group when booting a VM  https://review.openstack.org/21761701:38
*** kzaitsev_mb has joined #openstack-horizon01:39
*** Drago1 has quit IRC01:40
*** asahlin has joined #openstack-horizon01:40
*** Drago1 has joined #openstack-horizon01:40
*** Daisy has quit IRC01:40
*** asahlin has quit IRC01:44
r1chardj0n3sis anyone here (awake) who understands the pre-angular modal dialog mechanisms in Horizon?01:53
*** zhurong_ has joined #openstack-horizon01:54
*** zhurong has quit IRC01:56
r1chardj0n3snvm, found the problem01:56
*** Daisy has joined #openstack-horizon01:57
*** Drago1 has quit IRC02:04
*** sqchen has left #openstack-horizon02:06
*** bpokorny has quit IRC02:06
*** kzaitsev_mb has quit IRC02:07
openstackgerritAllen proposed openstack/horizon: Project detail link result in user log out  https://review.openstack.org/22243702:07
*** shu has joined #openstack-horizon02:08
*** mwhagedorn has quit IRC02:08
stevemarjpomeroy: so, i was recently chatting about keystone and ldap integration with a bunch of folks who are customer facing02:13
stevemargiving them the low down on ldap and openstack, and all that02:13
stevemarwhen i showed them ldap, and how listing users doesn't work in horizon, they had a strange reation02:13
openstackgerritRichard Jones proposed openstack/horizon: Fix loading of angular in jquery modals  https://review.openstack.org/22243802:15
stevemaressentially 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
stevemar3) what they *really* want, is a view for role assignments, seeing which ldap groups they assigned roles to, would be much more helpful02:15
jpomeroyi think i remember something like that coming up recently, in a conversation about how to handle this in horizon02:17
r1chardj0n3sgrr. just spent effectviely a day trying to debug something that was being squashed by a try {...} catch {} :(02:17
jpomeroyi mean something like just showing role assignments02:17
jpomeroyright now viewing role assignment in horizon is not very friendly02:19
*** davidmichaelkarr has joined #openstack-horizon02:19
*** yamamoto has quit IRC02:24
jpomeroystevemar, so a table that just shows groups and roles assigned to those groups would make sense?02:26
jpomeroyany idea how big that could typically be?  i mean would we run into the same issue with not being able to page?02:27
stevemarjpomeroy: right, it would show group | role | project, as the header02:27
stevemarwell that's all stored in SQL02:27
stevemarit can get big, but we can optimize that02:27
stevemarkeystone exposes an API for this02:28
*** Daisy has quit IRC02:28
stevemari didn't know horizon even lists role assignments right now02:28
*** Daisy has joined #openstack-horizon02:28
jpomeroywell, for users you can view the roles they have on a project02:29
jpomeroybut only a single project at a time02:29
*** Daisy_ has joined #openstack-horizon02:30
*** Daisy has quit IRC02:30
*** KunalGandhi has quit IRC02:30
jpomeroyit might make sense to have another page just for the role assignments02:31
jpomeroystevemar, is this the API? http://developer.openstack.org/api-ref-identity-v3.html#listRoleAssignments02:32
stevemarjpomeroy: right, just list all the role assignments02:33
stevemarjpomeroy: heres the API: http://specs.openstack.org/openstack/keystone-specs/api/v3/identity-api-v3.html#list-effective-role-assignments02:33
stevemarunfortunately, it just lists IDs, not names02:34
stevemarwhich is mighty annoying02:34
jpomeroyyeah, that definitely makes things less friendly02:35
stevemari wonder if we can change the API to return names02:36
stevemarmorgan: ^02:37
jpomeroyso this would just be a big table of UUIDs02:37
jpomeroyyuck =]02:37
jpomeroybut 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 assignments02:40
jpomeroyi'm sure Piet would have some input on that02:42
*** kyleolivo has quit IRC02:50
*** ducttape_ has joined #openstack-horizon02:50
*** kyleolivo has joined #openstack-horizon02:50
morganstevemar: reading backscroll02:51
morganstevemar: project IDs there?02:51
morganstevemar: well, remember project names are not globally unique, IDs are. maybe we should be returning both?02:52
morganonly because it gets expensive to do a .get_project() on each one02:52
jpomeroyi would vote for both, id and name for each resource02:52
morganor a .list_projects() [hah, see pagination conversation] and extract detauls02:52
morgandetails*02:52
morganstevemar: ^ I could see adding project name to that result02:53
*** Daisy_ has quit IRC02:55
*** lhcheng has joined #openstack-horizon02:55
*** kyleolivo has quit IRC02:55
*** Daisy has joined #openstack-horizon02:55
jpomeroymorgan, for each role assignment i think we would want id and name for the group, user, role, project02:55
jpomeroyif we want to throw this all into a table02:55
lhchengr1chardj0n3s: sorry, have to step out awhile ago.02:55
lhchengr1chardj0n3s: option #3 sounds bad02:56
r1chardj0n3slhcheng: yea02:56
lhchengr1chardj0n3s: my devstack is busted atm,  fixing it right now02:56
morganjpomeroy: sure. we should ahve all that info when we build that list anyway02:56
lhchengr1chardj0n3s: will try to reproduce and find something02:56
lhchengr1chardj0n3s: if I can't find an alternative, let's go with the path02:56
lhcheng*patch02:56
*** SimonChung has joined #openstack-horizon02:57
*** gyee has quit IRC02:58
r1chardj0n3slhcheng: OK (sorry for slow response, was driving :-)02:59
lhchengr1chardj0n3s: don't text and drive :)02:59
*** kyleolivo has joined #openstack-horizon03:00
jpomeroystevemar, 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 names03:03
r1chardj0n3slhcheng: 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
lhchengr1chardj0n3s: 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
r1chardj0n3slhcheng: 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 red03:10
r1chardj0n3suntil they're voting, that is03:10
r1chardj0n3sall of the fixes I've been making to them have been patches breaking them in the last 6 months03:10
lhchengr1chardj0n3s: 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 merge03:12
*** bigjools has left #openstack-horizon03:12
r1chardj0n3sgotta get it green first tho, yep03:12
lhchenghopefully the cores will be more cautious on approving since we're on rc period03:12
r1chardj0n3shopefully not too much more whack-a-mole'ing to get it to green03:13
* lhcheng feeling pressured to +2 DOA soon 03:13
r1chardj0n3slhcheng: sorry!03:13
r1chardj0n3slhcheng: I know I shouldn't :)03:13
lhchenghaha03:13
lhchengno worries03:13
lhchengwill try to spend some time tonight03:13
lhchengmy devstack finally up03:14
*** KunalGandhi has joined #openstack-horizon03:15
*** kyleolivo has quit IRC03:15
stevemarjpomeroy: morgan we could easily make it project_name@domain_name03:15
morganstevemar: or just populate the json with the data and just let horizon ux-i-fy-it-up whatever way they deem is best03:16
jpomeroyyep, as long as the name is in there somewhere we can deal with it03:17
stevemarjpomeroy: exactly03:17
stevemarmorgan: right,03:17
stevemarmorgan: now i'm wondering how much of a performance impact that would be to the API call03:18
lhchengdavid-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
morganstevemar: probably zero03:18
morganstevemar: oh wait03:18
morganthat API call is sucktastic03:18
morganstevemar: sorry mis-read the wonderings.03:18
morganstevemar: that is a punitive API call to make03:18
*** SimonChung has quit IRC03:19
*** SimonChung has joined #openstack-horizon03:19
*** SimonChung has quit IRC03:19
*** SimonChung has joined #openstack-horizon03:19
* lhcheng got confused shortly which room he is - seeing stevemar and morgan03:19
morganlhcheng: I'll just switch each sentence between03:20
morganlhcheng: ^_^03:20
jpomeroywould it be that much worse to pull the name and id for each resource instead of just the name?03:21
*** Daisy has quit IRC03:21
jpomeroymaybe some performance testing is in order03:21
jpomeroy*instead of just the id that is03:22
*** Daisy has joined #openstack-horizon03:22
*** yamamoto has joined #openstack-horizon03:22
lhchengstevemar: thanks for the reviews on DOA :)03:23
*** SimonChung has quit IRC03:23
*** SimonChung has joined #openstack-horizon03:23
*** Daisy_ has joined #openstack-horizon03:23
*** Daisy has quit IRC03:24
*** SimonChung1 has joined #openstack-horizon03:24
*** jwy has quit IRC03:25
*** amotoki has quit IRC03:27
*** SimonChung has quit IRC03:28
*** Samos123 has quit IRC03:29
*** ryanpetrello has quit IRC03:29
*** masco has joined #openstack-horizon03:30
stevemarlhcheng: np dude ;)03:31
*** ryanpetrello has joined #openstack-horizon03:34
*** lhcheng has quit IRC03:35
openstackgerritJanet Yu proposed openstack/horizon: Refactor DataTable filtering functions into mixin  https://review.openstack.org/21702003:35
*** neelashah has joined #openstack-horizon03:36
*** Samos123 has joined #openstack-horizon03:38
*** shivrao has joined #openstack-horizon03:40
*** amotoki has joined #openstack-horizon03:45
*** Mzoorikh has joined #openstack-horizon03:45
*** Mzoorikh has quit IRC03:50
*** Mzoorikh has joined #openstack-horizon03:50
*** amotoki has quit IRC03:54
*** lhcheng has joined #openstack-horizon03:56
*** neelashah has quit IRC03:56
openstackgerritJanet Yu proposed openstack/horizon: Refactor DataTable filtering functions into mixin  https://review.openstack.org/21702003:56
*** amotoki has joined #openstack-horizon03:58
*** shivrao has quit IRC03:58
*** shivrao_ has joined #openstack-horizon03:58
lhchengr1chardj0n3s: when I click back on the browser to get back to the login screen, the "Connect" button is disabled.03:58
r1chardj0n3slhcheng: try chrome04:00
r1chardj0n3sFF disables the button04:00
lhchengr1chardj0n3s: gotcha04:01
r1chardj0n3sAnother option is to load the page in two tabs, use one and then the other04:02
r1chardj0n3sLogin page, that is04:02
*** KunalGandhi has quit IRC04:02
*** ducttape_ has quit IRC04:04
*** btully has joined #openstack-horizon04:04
*** ducttape_ has joined #openstack-horizon04:07
*** geoffarnold has joined #openstack-horizon04:11
*** stevemar has quit IRC04:11
*** stevemar has joined #openstack-horizon04:13
lhcheng\o/ finally04:13
*** geoffarnold has quit IRC04:14
MzoorikhHi, I want to register at Invision, horizon UX mocks website. Is there anybody to create an account there?04:14
*** kyleolivo has joined #openstack-horizon04:16
*** ducttape_ has quit IRC04:17
MzoorikhI found the channel #openstack-ux to ask there.04:17
*** amotoki has quit IRC04:18
*** vgridnev has joined #openstack-horizon04:22
*** amotoki has joined #openstack-horizon04:25
*** kyleolivo has quit IRC04:26
r1chardj0n3slhcheng: \o/04:28
lhchengr1chardj0n3s: just saw Timur's patch04:29
lhchengsetting the AUTH_USER_MODEL + something similar to Timur's patch might also work04:30
r1chardj0n3swhich patch?04:30
lhchengr1chardj0n3s: https://launchpadlibrarian.net/216922814/user.py.patch04:30
r1chardj0n3soh, the patch that doesn't work, and probably never will?04:30
*** Daisy_ has quit IRC04:30
*** Daisy has joined #openstack-horizon04:31
r1chardj0n3strying to change the type of that id property will require some seriously deep hacking into Django's core models.Model stuff04:31
lhchengr1chardj0n3s: I'm going to try something out, going to pull some code from mrunge's patch04:31
r1chardj0n3slhcheng: ok04:31
r1chardj0n3sI can't see how the complexity of such a patch could ever be preferable to a 4 line monkeypatch ;)04:32
lhchengr1chardj0n3s: 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 support04:33
r1chardj0n3slhcheng: to be clear: that approach of changing the type of the id property is *explicitly discouraged and protected against by Django*04:34
r1chardj0n3sI fail to see how taking that approach is any better than patching a private method04:34
lhchengsame here, but the other way around :P04:36
*** Daisy has quit IRC04:36
r1chardj0n3sthe Django ORM is built around fundamental assumptions about model subclasses that you're going to have to break to make it work04:37
lhchenglooking at django docs, it mentions we can specify any unique field, name, email04:38
lhchenghttps://docs.djangoproject.com/en/1.8/topics/auth/customizing/#specifying-a-custom-user-model04:38
lhchengam I missing something here04:38
r1chardj0n3syes, we are using the *id* field04:38
r1chardj0n3swe can't control that04:39
r1chardj0n3sto use another unique field (say, "token") we would have to change all the places in Horizon where we currently use user.id04:39
r1chardj0n3sand that's what I proposed as option #304:39
r1chardj0n3swhich involves 105 lines of code changed at a minimum04:39
r1chardj0n3sacross some 25 files, IIRC04:40
r1chardj0n3s(minimum because that doesn't count mocks that will need to be changed also)04:40
r1chardj0n3sso 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
lhchengwhy do they have to stop using user.id?04:42
lhchenguser.id is still user.id from keystone04:42
r1chardj0n3sbecause we can't set user.id to the token04:42
r1chardj0n3sno, it can't be. that's what04:42
r1chardj0n3swhat's breaking stuff04:42
lhchengI mean in the user model, change the pk to the token field.04:43
lhchenguser.id is still keystone's user id, that won't change04:43
r1chardj0n3soh, I get you04:43
lhchengI am just making things up, still have to try it out if that works :)04:44
lhchengmaybe in theory lol04:44
r1chardj0n3sso 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 id04:44
r1chardj0n3sand we could, if we wanted to, migrate over code to use token instead of id04:45
r1chardj0n3sI will look into it!04:45
lhchengI don't think we would even need to migrate anything, just need to tinker what pk django would use in the User model04:47
r1chardj0n3syep04:47
lhchengbut yeah, something like that :D04:47
lhchengyou got it04:47
*** lhcheng has quit IRC04:51
*** lhcheng has joined #openstack-horizon04:55
lhchengr1chardj0n3s: going to logoff now, 10pm here04:55
lhchengI'll try to find some time to try that out too tom.04:56
r1chardj0n3sgood evening lhcheng04:56
lhchengr1chardj0n3s: ttyl04:56
*** lhcheng has left #openstack-horizon04:57
*** lhcheng has quit IRC04:57
*** Daisy has joined #openstack-horizon05:05
*** TravT has quit IRC05:09
*** TravT has joined #openstack-horizon05:10
*** asahlin has joined #openstack-horizon05:13
*** Daisy has quit IRC05:15
*** Daisy has joined #openstack-horizon05:15
*** asahlin has quit IRC05:17
*** stevemar has quit IRC05:24
*** stevemar has joined #openstack-horizon05:25
r1chardj0n3slhcheng: didn't work. But I have an alternative, related idea.05:26
*** akanksha has quit IRC05:28
*** masco has quit IRC05:28
*** linkedinyou has quit IRC05:32
*** aortega has quit IRC05:38
*** jprovazn has joined #openstack-horizon05:45
*** masco has joined #openstack-horizon05:50
*** fedexo has joined #openstack-horizon05:54
*** stevemar has quit IRC05:55
*** vgridnev has quit IRC05:56
*** ankit_ag has joined #openstack-horizon06:00
*** Daisy has quit IRC06:02
*** Daisy has joined #openstack-horizon06:02
*** mrunge has joined #openstack-horizon06:02
*** mrunge has quit IRC06:03
*** aortega has joined #openstack-horizon06:03
*** aortega has quit IRC06:04
*** mrunge has joined #openstack-horizon06:05
*** peristeri has joined #openstack-horizon06:07
*** Daisy has quit IRC06:07
*** vgridnev has joined #openstack-horizon06:07
*** Daisy has joined #openstack-horizon06:14
*** mflobo has left #openstack-horizon06:15
openstackgerritRichard Jones proposed openstack/django_openstack_auth: Replace default User model PK  https://review.openstack.org/22247806:15
openstackgerritOpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/22040406:15
openstackgerritRichard Jones proposed openstack/horizon: Use the User model from d-o-a  https://review.openstack.org/22248006:17
openstackgerritAllen proposed openstack/horizon: Fix a bug in "Add Interface" form modal  https://review.openstack.org/22163006:17
*** Daisy has quit IRC06:18
*** Daisy has joined #openstack-horizon06:18
*** garthb has quit IRC06:24
*** fedexo has quit IRC06:25
*** Daisy_ has joined #openstack-horizon06:25
*** Daisy has quit IRC06:25
*** Daisy_ has quit IRC06:32
*** Daisy has joined #openstack-horizon06:32
*** vgridnev has quit IRC06:33
*** Daisy has quit IRC06:37
*** itisha has quit IRC06:39
*** btully has quit IRC06:42
*** romainh has joined #openstack-horizon06:45
openstackgerritMerged openstack/horizon: Nav checkbox placement fix  https://review.openstack.org/22153506:45
*** vgridnev has joined #openstack-horizon06:45
*** amotoki has quit IRC06:46
*** rdopiera has joined #openstack-horizon06:46
openstackgerritCraig Vyvial proposed openstack/horizon: Initial support for database clustering in Horizon  https://review.openstack.org/11041106:52
openstackgerritCraig Vyvial proposed openstack/horizon: Enable Redis database cluster support  https://review.openstack.org/20463006:52
openstackgerritCraig Vyvial proposed openstack/horizon: Adding support for trove new clustering datastore - percona cluster  https://review.openstack.org/22248906:52
*** jerrygb has quit IRC06:54
*** Daisy has joined #openstack-horizon06:55
*** jerrygb has joined #openstack-horizon06:55
*** zz_ttrifonov is now known as ttrifonov06:57
*** rajatvig has joined #openstack-horizon06:59
openstackgerritRajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel  https://review.openstack.org/21794907:00
openstackgerritRajat Vig proposed openstack/horizon: WIP: Adding multiple row actions for the Image table  https://review.openstack.org/21796407:00
openstackgerritRajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service  https://review.openstack.org/22021407:00
openstackgerritRajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel  https://review.openstack.org/21742207:00
openstackgerritRajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list  https://review.openstack.org/22249307:00
*** jerrygb has quit IRC07:00
*** shu has left #openstack-horizon07:00
openstackgerritRajat Vig proposed openstack/horizon: JSCS Cleanup - Rename launch instance model file  https://review.openstack.org/21792207:01
*** Daisy has quit IRC07:13
*** Daisy has joined #openstack-horizon07:14
*** josecastroleon has quit IRC07:15
*** davidmichaelkarr has quit IRC07:17
*** ducttape_ has joined #openstack-horizon07:17
openstackgerritRajat Vig proposed openstack/horizon: Detail-page directives (Angular/UX) with CSS  https://review.openstack.org/15888107:18
openstackgerritRajat Vig proposed openstack/horizon: Image Detail Redesign (Angular/UX)  https://review.openstack.org/17388507:18
*** Daisy has quit IRC07:20
*** shivrao_ has quit IRC07:20
*** jingjing_ren has joined #openstack-horizon07:21
*** ducttape_ has quit IRC07:22
*** rajatvig has quit IRC07:23
*** e0ne has joined #openstack-horizon07:25
*** e0ne has quit IRC07:26
*** jingjing_ren has quit IRC07:26
*** stevemar has joined #openstack-horizon07:26
*** lsmola has joined #openstack-horizon07:27
*** btully has joined #openstack-horizon07:28
*** lsmola has quit IRC07:29
*** stevemar has quit IRC07:29
*** Daisy has joined #openstack-horizon07:30
*** btully has quit IRC07:33
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107807:34
*** linkedinyou has joined #openstack-horizon07:35
*** vgridnev has quit IRC07:40
*** asahlin has joined #openstack-horizon07:41
*** asahlin has quit IRC07:46
*** bluex-pl has joined #openstack-horizon07:46
*** aortega has joined #openstack-horizon07:48
*** kzaitsev_mb has joined #openstack-horizon07:48
*** lsmola has joined #openstack-horizon07:49
*** JeanBriceCombebi has joined #openstack-horizon07:51
*** kyleolivo has joined #openstack-horizon07:52
*** kzaitsev_mb has quit IRC07:53
*** JeanBriceCombebi has quit IRC07:54
*** ygbo has joined #openstack-horizon07:55
*** kyleolivo has quit IRC07:57
*** sayali has quit IRC08:00
*** kzaitsev_mb has joined #openstack-horizon08:00
*** Mzoorikh has quit IRC08:02
*** sayali has joined #openstack-horizon08:03
r1chardj0n3smrunge: hi, you about?08:03
*** jcoufal has joined #openstack-horizon08:04
mrunger1chardj0n3s, yupp08:04
r1chardj0n3shi, I'm sorry but I don't follow your comment on my patch :)08:05
mrungeuhm, sorry about that08:05
r1chardj0n3swhich patch of Lin's are you referring to?08:05
r1chardj0n3sLin and I were discussing this just a couple of hours ago, and the result was the patch I've put up...08:05
r1chardj0n3sdid you see the alternative patch, which did the monkey-patch? Lin was dead against that one :)08:06
*** amotoki has joined #openstack-horizon08:06
mrunger1chardj0n3s, looking at your patch I was reminded at https://review.openstack.org/#/c/201734/08:06
mrunger1chardj0n3s, yes, I saw your monkey patch and found it more elegant08:06
mrungebut I wouldn't put any hands into fire for one of both patches, thoug08:07
mrunger1chardj0n3s, my comment was more: your patch currently misses AUTH_USER_MODEL in openstack_auth/tests/settings.py08:08
r1chardj0n3smrunge: that patch is just a small part of the picture (my patch has a related Horizon patch that makes that change)08:08
r1chardj0n3smrunge: no, it doesn't :)08:08
r1chardj0n3shang on08:08
mrungehow does your patch run tests on doa then?08:08
r1chardj0n3shttps://review.openstack.org/#/c/222480/ is the related Horizon patch08:09
r1chardj0n3ssorry, which tests?08:09
mrungeunit tests in doa itself08:09
r1chardj0n3sahhhh, I understand, sorry!08:09
r1chardj0n3sI misunderstood. OK, that's a valid concern.08:09
*** Ala has joined #openstack-horizon08:09
r1chardj0n3sI will look into that next week, yes.08:10
mrungeno worries08:10
mrungethank you for looking into this r1chardj0n3s08:10
mrungemakes me a bit more happy about not walking totally stupid paths myself08:10
r1chardj0n3sno worries :)08:11
mrunger1chardj0n3s, just to coordinate, we'd need to merge patches for this in horizon first08:11
mrungeor we'd break horizon gate08:11
r1chardj0n3smrunge: that won't work though because currently openstack_auth.User doesn't exist as a model08:11
r1chardj0n3sthe models.py rename needs to happen first08:11
r1chardj0n3sI think the DOA patch can land without breaking Horizon08:12
r1chardj0n3sI'm almost certain of it08:12
*** amotoki_ has joined #openstack-horizon08:12
mrungeah, that's something I missed08:12
mrungegreat!08:12
r1chardj0n3sok, I'm pouring myself some more Shiraz and going back to Kerbals :)08:13
r1chardj0n3s(it being 6:15pm on Friday ;)08:13
mrungecheers08:13
mrungeand have a great weekend08:13
*** e0ne has joined #openstack-horizon08:13
*** amotoki has quit IRC08:14
*** amotoki_ has quit IRC08:16
openstackgerritRomain Hardouin proposed openstack/horizon: TableTab now honors Table permissions  https://review.openstack.org/16364308:23
*** e0ne has quit IRC08:24
*** tnovacik has joined #openstack-horizon08:26
*** amotoki has joined #openstack-horizon08:26
*** Mzoorikh has joined #openstack-horizon08:27
*** e0ne has joined #openstack-horizon08:28
*** JeanBriceCombebi has joined #openstack-horizon08:32
*** kzaitsev_mb has quit IRC08:34
*** kzaitsev_mb has joined #openstack-horizon08:35
*** Daisy has quit IRC08:36
*** Daisy has joined #openstack-horizon08:36
*** JeanBriceCombebi has quit IRC08:37
*** vishwanathj_ has joined #openstack-horizon08:38
*** JeanBriceCombebi has joined #openstack-horizon08:39
*** mhickey has joined #openstack-horizon08:40
*** Daisy has quit IRC08:41
*** Daisy has joined #openstack-horizon08:51
*** JeanBriceCombebi has quit IRC08:52
*** kzaitsev_mb has quit IRC08:53
*** JeanBriceCombebi has joined #openstack-horizon08:54
*** sayan has joined #openstack-horizon08:56
*** sayan has joined #openstack-horizon08:56
*** vgridnev has joined #openstack-horizon08:57
*** zhurong_ has quit IRC08:59
*** Daisy has quit IRC09:02
*** Daisy has joined #openstack-horizon09:03
*** chlong has quit IRC09:16
*** Mzoorikh has quit IRC09:18
*** shu has joined #openstack-horizon09:24
*** shu has left #openstack-horizon09:24
*** bluex-pl has quit IRC09:28
*** bluex-pl has joined #openstack-horizon09:29
*** bluex-pl has quit IRC09:29
*** bluex-pl has joined #openstack-horizon09:29
*** tosky has joined #openstack-horizon09:35
*** zhenguo has quit IRC09:48
*** Daisy has quit IRC10:00
*** Daisy has joined #openstack-horizon10:00
*** Daisy has quit IRC10:01
*** Daisy has joined #openstack-horizon10:01
*** kzaitsev_mb has joined #openstack-horizon10:02
*** bluex-pl has quit IRC10:03
*** aix has joined #openstack-horizon10:08
openstackgerritKirill Zaitsev proposed openstack/django_openstack_auth: Use set comprehension instead of converting lists to sets  https://review.openstack.org/21644110:08
*** jprovazn has quit IRC10:09
*** akanksha has joined #openstack-horizon10:12
*** Mzoorikh has joined #openstack-horizon10:14
*** bluex-pl has joined #openstack-horizon10:17
*** romainh has quit IRC10:19
*** linkedinyou has quit IRC10:20
*** kiran-r has joined #openstack-horizon10:21
robcresswellmrunge: The bug list is somehow growing longer :p10:21
mrungerobcresswell, which bug list?10:24
robcresswellmrunge: https://launchpad.net/horizon/+milestone/liberty-rc110:24
robcresswellmrunge: I went through and sorted out out those that were untargeted etc. But we still have about 40 open bugs for rc110:25
mrungerobcresswell, awesome, thank you!10:25
robcresswell27 in progress, 15 not in progress.10:25
robcresswell:(10:25
mrungeesp. 2 xss bugs10:26
mrungeI mean, public xss issues10:26
mrungeI wonder how many of them are hidden10:26
mrungeyikes. good catch robcresswell on MANIFEST.in10:27
robcresswellmrunge: zigo pointed out that it was missing the SCSS files, so credit is not mine really.10:28
robcresswellmrunge: Thanks for approval :)10:32
mrungesure10:32
*** Daisy has quit IRC10:33
*** Daisy has joined #openstack-horizon10:34
*** yamamoto has quit IRC10:34
mrungeoh, just looking at keystoneclient leaving connections open.10:34
mrungethat's an issue, we will see more in the future10:34
mrungeI know, we had this with novaclient (and probably still have it)10:35
*** Daisy has quit IRC10:38
*** Daisy has joined #openstack-horizon10:42
vgridnevhey 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 merged10:43
*** masco_ has joined #openstack-horizon10:43
robcresswellHmm, recently in devstack I always get "Could not find default role "_member_" in Keystone" on the identity dashboard10:43
vgridnevI meant add "review" word after "please"10:43
*** kzaitsev_mb has quit IRC10:44
*** Daisy has quit IRC10:46
*** masco has quit IRC10:46
robcresswellvgridnev: Just approved two of them. One was reusing Davids approval after checking rebase, the other is fairly trivial anyway :)10:48
*** ZZelle has quit IRC10:49
*** jbell8 has quit IRC10:49
vgridnevrobcresswell, thanks!10:49
*** ZZelle has joined #openstack-horizon10:50
tsufievbradjones|away, hi! One more suggestion for your topology work (see gerrit)10:50
*** jcoufal has quit IRC10:59
*** bluex-pl has quit IRC11:00
*** ganeshna has joined #openstack-horizon11:00
*** mpavlase has joined #openstack-horizon11:00
*** jcoufal has joined #openstack-horizon11:01
ganeshnahi, have a git question related to lbaas UI patch, can someone please help11:03
robcresswellganeshna: Ha, ask the question first and then we will see :)11:04
*** bluex-pl has joined #openstack-horizon11:04
*** btully has joined #openstack-horizon11:05
ganeshnasure robcresswell :)11:05
ganeshnathis patch https://review.openstack.org/#/c/206797/ is adding LbaasV2 UI support11:05
ganeshnafor the lbaasv2 UI to work, we need to get this patch and manually copy the loadbalancersv2 folder in the local horizon repo11:06
ganeshnathere is one more missing file in enabled folder, I want to add that..11:06
ganeshnahow should I go about it, quite some things have changed since the patch is added in the horizon code11:06
ganeshnaI have mentioned the steps to get the UI to work in the link11:07
ganeshnanow I want to add the file openstack_dashboard/enabled/_1480_project_loadbalancersv2_panel.py in this patch11:08
*** btully has quit IRC11:09
robcresswellSo you need one file to enabled the dashboard, and then one for the panel11:10
robcresswellto enable*11:10
ganeshnaI want to add this file openstack_dashboard/enabled/_1480_project_loadbalancersv2_panel.py11:11
ganeshnawhen I do a git fetch, it creates a neutron_lbaas_dashboard folder11:12
ganeshnaneutron_lbaas_dashboard/enabled doesn't have any _..._panel.py files11:14
robcresswellYeah, that patch is incomplete11:14
robcresswellit needs enabled files to be copied to openstack_dashboard/enabled11:15
ganeshnacan 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 file11:17
robcresswellWhy would you need to git add it? It's not going to get pushed into Horizon11:20
robcresswellBut yes, manually copying the folder over will work fine11:20
robcresswellThat patch is also missing all of the python setup, unless its already in the repo11:20
openstackgerritMerged openstack/horizon: Display the project name in user detail page  https://review.openstack.org/20598311:21
*** kzaitsev_mb has joined #openstack-horizon11:21
*** yamamoto has joined #openstack-horizon11:21
ganeshnaok, I thought the Lbaasv2 UI will eventually be pushed into Horizon, may be I will discuss more with the submitter (Vivek) on this11:22
*** yamamoto_ has joined #openstack-horizon11:22
robcresswellganeshna: It looks like it is its own project.11:24
*** yamamoto has quit IRC11:25
ganeshnaok thanks robcresswell :) the above info is fine for me now to proceed...11:26
robcresswellSure thing11:26
robcresswellmrunge: If you get 10 mins to spare, this FFE is rather small :) https://review.openstack.org/#/c/220838/11:27
*** stevemar has joined #openstack-horizon11:28
openstackgerritMerged openstack/horizon: Update MANIFEST for SCSS  https://review.openstack.org/22176011:30
*** stevemar has quit IRC11:31
*** masco_ has quit IRC11:34
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107811:34
*** btully has joined #openstack-horizon11:39
*** romainh has joined #openstack-horizon11:43
*** btully has quit IRC11:47
*** zhurong has joined #openstack-horizon11:47
*** ducttape_ has joined #openstack-horizon11:53
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107811:54
*** kyleolivo has joined #openstack-horizon11:55
*** Mzoorikh has quit IRC11:58
*** zhurong has quit IRC11:59
*** kyleolivo has quit IRC12:00
*** asahlin has joined #openstack-horizon12:01
mrungerobcresswell, at a quick glance, integration tests are failing on that patch12:01
mrungescratch that12:02
*** ducttape_ has quit IRC12:04
tsufievmrunge, huh, where?12:05
*** jcoufal has quit IRC12:06
*** pauloewerton has joined #openstack-horizon12:07
openstackgerritMerged openstack/horizon: Allow multiple clusters creation  https://review.openstack.org/19884712:07
mrungetsufiev, https://review.openstack.org/#/c/22083812:07
mrungebut I believe, tests were executed before the last patch went in, right?12:08
mrungeI see nova keypair issues popping up there12:08
tsufievmrunge, yeah, seems to be related to Nova v2 issue12:08
openstackgerritTimur Sufiev proposed openstack/horizon: Enable compute shelve/unshelve commands  https://review.openstack.org/22083812:08
tsufievI've pressed Rebase button12:08
tsufievshall see12:08
mrungerobcresswell, I will be out for a bit and have a look at it afterwards12:09
*** bluex-pl has quit IRC12:11
*** bluex-pl has joined #openstack-horizon12:11
robcresswellmrunge: Sure, no rush, just thought I would mention it as a small review, trying to get through some of the rc-1 backlog12:12
*** JeanBriceCombebi has quit IRC12:12
*** jcoufal has joined #openstack-horizon12:12
mrungeyes, you're right!12:12
robcresswellBugs to review is now <40, thats nice.12:13
robcresswellbps, 5, but 2 of them have +212:14
*** JeanBriceCombebi has joined #openstack-horizon12:16
tsufievrobcresswell, have you not seen how a topology node escapes from under a pop-up :)?12:17
robcresswellooh nope, what happened?12:17
* robcresswell is reloading patch12:18
bradjones|awaytsufiev: I haven't seen that what do you mean?12:18
*** bradjones|away is now known as bradjones12:18
*** zhurong has joined #openstack-horizon12:19
tsufievbradjones, 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 away12:19
tsufievhow much it runs away depends on how much graph was already stabilized12:20
bradjonesoh ok I see what you mean12:20
tsufievthe effect looks funny :)12:20
robcresswelltsufiev: Oh, you mean the modal does not follow the node?12:20
bradjonesthat was why previously it was on mouse over so the modal was alway in line with the node12:20
tsufievrobcresswell, nope. But that's ok, it shouldn't IMO12:21
robcresswell:/ This only happens when you rapidly move the topology and then click a node while still moving :p12:21
tsufievbradjones, I think it's fine to pin node under its pop up is visible12:21
*** ganeshna has quit IRC12:21
tsufievrobcresswell, I have a smell for these corner cases ;)12:22
bradjonesif 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 place12:23
bradjonesI'm not sure that is much more desirable12:23
*** ganeshna has joined #openstack-horizon12:23
robcresswellYeah 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
robcresswellEven then, it moves a few mm on the screen.12:25
tsufievbradjones, 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 all12:26
*** kzaitsev_mb has quit IRC12:26
robcresswelltsufiev: Who is going to be trying to click a moving graph?12:27
tsufievI'd say that this is an expected outcome. If you're impatient, observe the node moving frantically12:27
*** JeanBriceCombebi has quit IRC12:27
tsufievrobcresswell, that's my point12:27
robcresswellI dont understand :/12:27
tsufievrobcresswell, on the other hand, the final stage of graph relaxing could take a significant time12:27
tsufievrobcresswell, it's a non-linear thing12:27
robcresswellSure12:28
robcresswellWell12:28
robcresswellits like a second or so12:28
robcresswellThis is like trying to climb into a moving car, and then blaming the car manufacturer.12:28
bradjonesrobcresswell: haha!12:28
robcresswellIf you drag a graph all over, and then click a moving node, then its still moving12:28
*** zhurong has quit IRC12:29
robcresswellThat should be pretty obvious to the user what has happened lol12:29
robcresswellI dunno, I feel that it is an overly nit pick edge case12:29
tsufievmy 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 big12:29
*** ganeshna has quit IRC12:30
* tsufiev afk for lunch12:30
*** asahlin has quit IRC12:31
*** asahlin has joined #openstack-horizon12:31
*** lblanchard has joined #openstack-horizon12:32
*** doug-fish has joined #openstack-horizon12:33
*** ganeshna has joined #openstack-horizon12:34
*** asahlin has quit IRC12:36
robcresswelltsufiev: 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
robcresswellI 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
tsufievrobcresswell, agree, it's a nitpick, but not huge :)12:49
tsufievrobcresswell, I can bear with it, but would love to hear ducttape's opinion12:51
*** vishwanathj_ has quit IRC12:51
robcresswelltsufiev: I think Brad has a fix, just going to pause animation on dialog12:52
*** kiran-r has quit IRC12:53
tsufievthat would be awesome, I could put +1 while having a good conscience12:53
bradjonestsufiev: 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 vm12:53
tsufievbradjones, makes much sense as well!12:54
robcresswellIndeed, thats a good fix bradjones12:54
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107812:55
bradjones^ robcresswell tsufiev there we go :)12:55
tsufievlooking...12:55
*** ducttape_ has joined #openstack-horizon12:59
*** _crobertsrh is now known as crobertsrh13:00
tsufievbradjones, looks good to me13:00
bradjonestsufiev: excellent, hopefully ducttape_ 's issues will have been solved too then we are good to go13:01
*** jtomasek has quit IRC13:01
ducttape_sweet, I love the smell of a fresh topology early in the morning13:02
bradjonesducttape_: :D13:02
*** zul has quit IRC13:05
*** cloudtrainme has joined #openstack-horizon13:05
*** cloudtrainme has quit IRC13:05
ducttape_bradjones :   http://cdn.meme.am/instances2/500x/1814351.jpg13:06
ducttape_aka it works / looks good13:06
robcresswell:o13:07
bradjonesYAYAYAY!13:07
*** ankit_ag has quit IRC13:07
*** zul has joined #openstack-horizon13: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 data13:07
robcresswellducttape_: That would be appreciated!13:08
robcresswellThanks :D13:08
bradjonesducttape_: sounds good I'll have a celebratory beer ready :)13:08
*** akanksha has quit IRC13:08
ducttape_yeah, go ahead and have one to get started, being Friday and all13:08
bradjonesit's 5o'clock somewhere right?13:09
*** mwhagedorn has joined #openstack-horizon13:10
*** TravT has quit IRC13:12
*** ducttape_ has quit IRC13:12
*** TravT has joined #openstack-horizon13:13
*** erlon has joined #openstack-horizon13:15
*** logan2 has quit IRC13:15
*** kyleolivo has joined #openstack-horizon13:15
*** kzaitsev_mb has joined #openstack-horizon13:21
*** ganeshna has quit IRC13:25
*** stevemar has joined #openstack-horizon13:28
*** asahlin has joined #openstack-horizon13:29
*** asahlin_ has joined #openstack-horizon13:30
*** asahlin_ has quit IRC13:30
*** asahlin_ has joined #openstack-horizon13:31
*** stevemar has quit IRC13:32
*** zhenguo has joined #openstack-horizon13:33
*** asahlin has quit IRC13:33
*** jroll is now known as jtroll13:33
*** jtroll is now known as Guest1373013:34
*** Guest13730 is now known as jroll13:34
*** jtriley has joined #openstack-horizon13:36
*** logan2 has joined #openstack-horizon13:43
*** Piet has quit IRC13:43
*** mpavlase has quit IRC13:44
*** tosky has quit IRC13:45
*** kyleolivo has quit IRC13:45
*** neelashah has joined #openstack-horizon13:48
*** peristeri has quit IRC13:51
*** ducttape_ has joined #openstack-horizon13:52
*** neelashah has quit IRC13:52
*** Daisy has joined #openstack-horizon13:53
*** asahlin has joined #openstack-horizon13:57
*** doug-fis_ has joined #openstack-horizon13:57
tsufievbradjones, 5 o'clock beer :)?13:57
*** tnovacik has quit IRC13:57
*** doug-fis_ has quit IRC13:58
*** doug-fis_ has joined #openstack-horizon13:58
*** asahlin__ has joined #openstack-horizon13:59
*** Mzoorikh has joined #openstack-horizon13:59
*** stevemar has joined #openstack-horizon14:00
*** doug-fish has quit IRC14:00
*** asahlin_ has quit IRC14:01
*** asahlin has quit IRC14:01
*** btully has joined #openstack-horizon14:01
*** cloudtrainme has joined #openstack-horizon14:03
*** Piet has joined #openstack-horizon14:03
*** ganeshna has joined #openstack-horizon14:04
*** ganeshna has quit IRC14:05
*** ganeshna has joined #openstack-horizon14:10
*** vijendar has joined #openstack-horizon14:11
openstackgerritMerged openstack/horizon: [Sahara] Adding ability to update missing fields  https://review.openstack.org/20789314:17
openstackgerritPaulo Ewerton Gomes Fragoso proposed openstack/horizon: Adding Identity NGProjects REST API  https://review.openstack.org/20858114: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 first14:24
*** mflobo1 has joined #openstack-horizon14:25
*** mflobo1 has left #openstack-horizon14:27
bradjonesducttape_: 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 necessary14: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_etc14:29
ducttape_doesn't have to be fancy14:29
bradjonesducttape_: yeah I could do that14: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 zoom14:30
*** tosky has joined #openstack-horizon14:31
openstackgerritPaulo Ewerton Gomes Fragoso proposed openstack/horizon: Adding Identity NGProjects Angular API  https://review.openstack.org/20907314:32
*** Mzoorikh has quit IRC14:33
bradjoneshow 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 window14:35
bradjonesah yeah I can see that14:35
bradjonesI'm trying to say it without saying scroll wheel!14:36
*** romainh has left #openstack-horizon14: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 stuff14: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 wheel14:37
bradjoneshow about just saying 'scroll with your mouse/keyboard'14:37
bradjonesit has to be a mouse event14:38
bradjonesdamn I meant 'scroll with your mouse/trackpad'14:38
bradjonesnot keyboard14:38
*** ganeshna has quit IRC14:38
*** morgan has quit IRC14:40
*** morganfainberg has joined #openstack-horizon14:40
*** clayton has joined #openstack-horizon14:42
*** kyleolivo has joined #openstack-horizon14:43
*** haypo has left #openstack-horizon14:44
ducttape_bradjones - the other thing....14:47
TravTbradjones: the zoom in / out14:47
ducttape_the current element that is displaying the graph, it does not consume vertical space with a percentage14:47
*** bluex-pl has quit IRC14:47
TravTmy mouse is an ergonomic one that doesn't have a middle scroll button14:48
openstackgerritYves-Gwenael Bourhis proposed openstack/horizon: Show external networks  https://review.openstack.org/19912714:48
TravTso 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 give14:48
*** vishwanathj_ has joined #openstack-horizon14:48
*** doug-fis_ has quit IRC14:49
bradjonesTravT: 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 accessible14:49
*** doug-fish has joined #openstack-horizon14:49
TravTbradjones: nope. already wear a wrist brace half the time...14:49
bradjonesTravT: 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 means14:50
bradjonesdoes your mouse not have something that emulates scrolling?14:50
ducttape_I think that's probably fine, heat has the same issue14:50
ducttape_but placing some text on the page helps people know they can have more interactivity with the graph14:51
TravTunfortunately no.  The help text at least alerts people to it i suppose.14:51
bradjoneshttp://pasteboard.co/yUjzXQW.png14:51
bradjoneshow about that ^ for the text14:51
TravTbut an overlay zoom in / zoom out  like google maps could be a nice addition.14:51
TravTin a follow on14:51
bradjonesTravT: absolutely then you could use that to zoom if you don't have a mouse that can14:52
ducttape_right, I think we are the same page for this14:52
*** lapalm has joined #openstack-horizon14:52
ducttape_how about making the display div (or whatever the element is) vertically scale a bit better???14:53
bradjonesducttape_: looking into that now14:53
*** doug-fish has quit IRC14:53
TravTducttape_: 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
TravTducttape_: that pasteboard looks a lot better.14:54
TravTthe one you just put up .14:54
TravTbradjones: do the colors actually have meaning?14:54
ducttape_yes, they are network memberships14:54
bradjonesducttape_: +114:54
*** doug-fish has joined #openstack-horizon14:54
TravTah, so, kind of a venn diagram14:55
ducttape_yep14:55
TravTducttape_: when you have the glob of instances is it still pretty difficult to see the labels when toggled on?14:55
*** e0ne has quit IRC14:56
*** hurgleburgler has joined #openstack-horizon14:56
*** morganfainberg has quit IRC14:56
TravTi've wondered if it would be helped by allowing toggle of a border around the labels with a white background14:56
ducttape_http://pasteboard.co/yV0crnG.png  is what I was saying  ;)14:57
*** morganfainberg has joined #openstack-horizon14:57
* ducttape_ has to switch networks14:57
*** morganfainberg has quit IRC14:59
*** Drago has joined #openstack-horizon15:00
openstackgerritValeriy Ponomaryov proposed openstack/manila-ui: Updated from global requirements  https://review.openstack.org/22265215:00
*** doug-fish has quit IRC15:00
*** jerrygb has joined #openstack-horizon15:01
*** doug-fish has joined #openstack-horizon15:01
*** Drago has quit IRC15:01
*** Drago has joined #openstack-horizon15:02
*** SimonChung1 has quit IRC15:02
*** kzaitsev1ws is now known as kzaitsev_ws15:03
*** morganfainberg has joined #openstack-horizon15:04
*** morganfainberg has quit IRC15:04
*** doug-fish has quit IRC15:05
*** sambetts is now known as tehsmash15:06
*** aortega has quit IRC15:06
*** neelashah has joined #openstack-horizon15:07
*** vgridnev has quit IRC15:07
*** geoffarnold has joined #openstack-horizon15:08
*** vgridnev has joined #openstack-horizon15:09
*** geoffarnold has quit IRC15:11
*** cloudtra_ has joined #openstack-horizon15:12
*** geoffarnold has joined #openstack-horizon15:12
*** doug-fish has joined #openstack-horizon15:12
*** garthb has joined #openstack-horizon15:13
*** cloudtrainme has quit IRC15:13
*** doug-fish has quit IRC15:14
*** doug-fish has joined #openstack-horizon15:16
*** kyleolivo has quit IRC15:16
*** davidmichaelkarr has joined #openstack-horizon15:17
*** bpokorny has joined #openstack-horizon15:20
*** morgan has joined #openstack-horizon15:23
*** garthb_ has joined #openstack-horizon15:24
*** garthb has quit IRC15:24
*** rdopiera has quit IRC15:24
*** morgan has quit IRC15:25
*** morgan has joined #openstack-horizon15:26
*** aortega has joined #openstack-horizon15:27
*** vgridnev has quit IRC15:28
*** vgridnev has joined #openstack-horizon15:28
*** morgan has quit IRC15:31
*** morgan has joined #openstack-horizon15:31
*** TravT has quit IRC15:32
*** TravT has joined #openstack-horizon15:33
*** AlexeyElagin has quit IRC15:33
*** morgan has quit IRC15:35
*** morgan has joined #openstack-horizon15:35
*** AlexeyElagin has joined #openstack-horizon15:35
*** mwhagedorn_ has joined #openstack-horizon15:37
bradjonesducttape_: I've got it so that the topology stretches out to use full browser space now15:37
ducttape_awesome15:37
ducttape_more space - more better  ;)15:37
bradjoneshad 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 date15:37
ducttape_or mo space, mo betta15:37
ducttape_hurgleburgler might have some css ninja tricks too15:38
*** mwhagedorn has quit IRC15:38
*** mwhagedorn_ is now known as mwhagedorn15:38
bradjonesyeah css is wizardry!15:39
hurgleburglerᕦ(ò_óˇ)ᕤ15:39
ducttape_she is the unofficial css ninja queen, according to me15:39
hurgleburglerwho needs a css ninja?15:39
hurgleburglerIts an svg?15:39
bradjonesyup15:40
hurgleburglerIs there a size on the container?15:40
hurgleburglerit shouldn't need one, just an internal grid side15:40
ducttape_its more of a div displaying a d3 graph, and we just need it to take up vertical space reasonably well15:40
hurgleburgleryup15:40
bradjoneslet me quickly push what I have then you can see15:40
openstackgerritBradley Jones proposed openstack/horizon: Add Curvature topology  https://review.openstack.org/14107815:41
ducttape_hurgleburgler - please add "css ninja queen" to linkedin too15:42
bradjonesI'm currently setting the height in JS by looking at the client height and subtracting the header space15:42
bradjoneswould be nicer to just say height = 100% then at least resize of window would work15:42
*** jbell8 has joined #openstack-horizon15:43
hurgleburglerHmmm, yeah, we might need to change that15:43
hurgleburglerhow does it respond to smaller screens?15:43
* tsufiev dreams about flexbox15:43
hurgleburglerlemme pull it and take a look15:43
hurgleburglerI have a meeting in 15, so I might disappear15:43
ducttape_this chart and super small screens, let's not set the bar too high  ;)15:43
hurgleburglerbut, i'll be back15:44
hurgleburglerPsh!  Pinch and zoom!15:44
*** Ala has quit IRC15:46
bradjonesit's not too bad at the moment on smaller screens because you can just zoom the topology right out15:46
*** aortega_ has joined #openstack-horizon15:47
*** aortega has quit IRC15:51
*** aix has quit IRC15:52
*** KunalGandhi has joined #openstack-horizon15:55
*** TravT has quit IRC15:55
tsufievdoug-fish, hi! this might be interesting to you: https://bugs.launchpad.net/horizon/+bug/149481915:56
openstackLaunchpad 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-horizon15:57
*** gyee has joined #openstack-horizon16:00
*** bluex-pl has joined #openstack-horizon16:01
*** zhenguo has quit IRC16:03
*** chlong has joined #openstack-horizon16:04
*** devlaps has joined #openstack-horizon16:06
*** clu_ has joined #openstack-horizon16:07
*** tqtran has joined #openstack-horizon16:07
*** bluex-pl has quit IRC16:08
*** rajatvig has joined #openstack-horizon16:10
*** ganeshna has joined #openstack-horizon16:10
*** lhcheng has joined #openstack-horizon16:11
*** TravT has quit IRC16:11
*** SimonChung has joined #openstack-horizon16:12
*** kiran-r has joined #openstack-horizon16:13
doug-fishtsufiev: it is. Thanks!16:14
openstackgerritDavid Lyle proposed openstack/horizon: Adding download for openrc file for keystone v3  https://review.openstack.org/18684616:15
lhcheng thought this patch already merged ^16:16
*** vgridnev has quit IRC16:17
david-lylelhcheng: not that I'm aware of16:17
lhchengyeah, I have seen it long time back, just thought it would have already merged by now since it is straight-forward16:18
*** ganeshna has quit IRC16:18
lhchengwasn't there a proposal to add os cloud config as well?16:18
david-lylethere were a couple of lingering nits that I finally came back to16:18
david-lyleI know mordred mentioned, not sure I've seen it16:19
*** TravT has joined #openstack-horizon16:19
lhchengthat's right16:19
david-lylehe doesn't appear to have a patch up yet16:20
kfox1111os cloud config?16:20
david-lylekfox1111: yeah16:20
kfox1111I don't follow.16:20
kfox1111what kind of config would users want to download for it?16:20
*** kiran-r has quit IRC16:21
david-lylecloud.yaml file16:21
mhickeylhcheng: 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-horizon16:22
*** cloudtra_ has quit IRC16:22
*** cloudtrainme has joined #openstack-horizon16:24
*** KunalGan_ has joined #openstack-horizon16:25
kfox1111hmm. I see. yeah, I could see how that could be useful too.16:26
*** kiran-r has quit IRC16:27
kfox1111though it almost looks like it might be better getting added to keystone somehow...16:27
*** KunalGandhi has quit IRC16:27
kfox1111because keystone knows about federations, and it can then build a cloud.yaml that contains all the regions it knows about.16:27
openstackgerritTimur Sufiev proposed openstack/horizon: Also look for volumev2 endpoints  https://review.openstack.org/15108116:29
lhchengmhickey: hey!16:29
lhchengmhickey: yeah, having the two action classes is the right way16:30
lhchengmhickey: 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 button16:31
lhchengmhickey: added code snippet in the patch16:34
*** tehsmash is now known as sambetts16:36
mhickeylhcheng: so by updating the allowed to allow/disallow then you fix the button on single row?16:37
mhickeylhcheng: just a small update on the current code committed?16:37
lhchengmhickey: yes!16:38
lhcheng:)16:38
lhchengat any instance only one of the button is rendered in the Row actions16:38
tsufievlhcheng, 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
lhchengtsufiev: sure, it is not really a big deal. Just something to think about since we're renaming it anyway.16:40
lhchengmight as well get it right16:40
mhickeylhcheng: Thanks for the "heads up". :) I will look to update in the next while.16:40
*** KunalGan_ has quit IRC16:40
*** sayan has quit IRC16:41
tsufievlhcheng, okay, just wanted you to know that it'll be discussed during your early morning16:41
*** asahlin__ has quit IRC16:42
*** lsmola has quit IRC16:42
tsufievdoes anybody know if it's possible to explicitly create new ports (neutron) in Horizon?16:43
tsufievor is it done always behind the scenes?16:43
*** asahlin has joined #openstack-horizon16:44
*** asahlin has quit IRC16:44
*** asahlin has joined #openstack-horizon16:44
ducttape_I think you can16:44
ducttape_in the network screen?16:44
david-lyleI'm not sure that was ever added. Port management. There was a BP a long time ago16:45
tsufievyep, I don't know any other screen that fits. But I just looked through it, no 'Create Port' button there16:45
ducttape_I'm not sure the value of creating the port, without declaring what to connect it to  :\16:46
tsufievaha! I was investigating whether it's possible to create Instances with SRIOV ports in current Horizon16:46
tsufievseems that some additional work is needed16:46
david-lyleJD had code at one point started16:47
ducttape_"seems that some additional work is needed" =>  always true16:47
david-lyleIIRC16:47
tsufievducttape_, 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 instance16:47
tsufievdavid-lyle, JD?16:48
david-lylesorry former HP person, from back in the day16:48
lhchengtsufiev: cool, thanks for the heads up!16:48
david-lyleducttape_: would know16:48
david-lyleI was trying to jog his memory16:48
lhchengmhickey: good luck, let me know if you hit a problem16:48
ducttape_some things are best left in the past david-lyle16:49
ducttape_I have plenty of opportunities today16: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 instances16:56
TravTok, i'll jump in.16:56
*** ygbo has quit IRC16:57
robcresswellducttape_: Joining16:57
*** T0m_ has joined #openstack-horizon16:57
bradjonesducttape_: also joining16:58
lhchengducttape_: can that be recorded?17:00
*** kyleolivo has joined #openstack-horizon17:00
robcresswelllhcheng: Hangouts, so dont think so17:01
*** kyleolivo has quit IRC17:01
* lhcheng cannot join the cool kids17:01
lhchengrobcresswell: bummer17:01
*** TravT_ has joined #openstack-horizon17:02
*** kyleolivo has joined #openstack-horizon17:02
*** jcoufal has quit IRC17:03
robcresswelllhcheng: Overall its looking much more solid, and looking about ready to go in according to david-lyle17:03
*** vgridnev has joined #openstack-horizon17:03
lhchengrobcresswell: nice!17:04
hurgleburglerhey ducttape_17:05
*** exploreshaifali has joined #openstack-horizon17:05
robcresswelllhcheng: 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 IRC17:05
hurgleburglercan you cherry-pick this guy ontop of network topology and see if that mostly fixes your problem?17:05
hurgleburgler21574517:05
*** lapalm has quit IRC17: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-horizon17:07
T0m_Oh, i tried another browser and it works.17:07
T0m_Cookie related maybe...17:07
lhchengrobcresswell: appreciate the update, yeah that makes sense17:10
*** amotoki has quit IRC17:10
lhchengT0m_: it is a known issue with horizon running in django 1.817:11
lhchengT0m_: it is currently being worked on17:11
lhchengT0m_: https://bugs.launchpad.net/django-openstack-auth/+bug/149111717:11
openstackLaunchpad 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, great17:11
openstackgerritCindy Lu proposed openstack/horizon: Angular Magic Search defaults for filterStrings  https://review.openstack.org/22271017:11
robcresswellT0m_: Yeah, delete your sessionid and it should fix itself I think17:11
T0m_Thanks - first time using OS so wasnt surpised if I had broke something!17:11
robcresswellha, nope you're all good :)17:12
T0m_Should I be able to install any sort of standard OS as an instance?17:13
openstackgerritMerged openstack/horizon: Fix ng Launch Instance button in Network Topology  https://review.openstack.org/22242617:13
robcresswellOpenStack/ operating system17: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
robcresswellT0m_: Sorry, this is when launching an instance? I'm lost17:15
*** kzaitsev_mb has quit IRC17:15
openstackgerritMartin Hickey proposed openstack/horizon: Adds button to disable more than one domain at a time  https://review.openstack.org/21319317:16
robcresswelllhcheng: High praise from ducttape_ - "No worse than the existing topology"17:16
*** alanf has joined #openstack-horizon17: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
lhchengcan get any better than having ducttape_'s stamp of approval17:18
lhchengrobcresswell: Hah17: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 there17:19
*** TravT_ is now known as TravT17: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 :P17:20
robcresswellTravT: 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
robcresswellT0m_: Could ask on #openstack-nova17:20
TravTfunny statement coming from ducttape_  ;-)17:20
robcresswellTravT: 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
robcresswellT0m_: No problem17:21
ducttape_when the person named "ducttape_" is telling you to put a little more polish on something, you might have a problem :P17:21
TravTthe 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 IRC17:22
robcresswellT0m_: Usually Devstack17:22
mhickeylhcheng: 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 laptop17:23
robcresswellT0m_: Indeed17: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 enough17:24
*** shivrao has joined #openstack-horizon17:24
*** kyleolivo has quit IRC17:24
*** garthb_ has quit IRC17:25
*** garthb has joined #openstack-horizon17:25
*** kyleolivo has joined #openstack-horizon17:26
*** sayan has joined #openstack-horizon17:27
robcresswellWeekend time. Have a good one everybody.17:28
robcresswellTravT: 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
TravTrobcresswell: thanks... i've held off on doing some this week allowing the people working on it to make more progress.17:30
TravTbut, i think some more reviews are in order.17:30
*** jbell8 has joined #openstack-horizon17:31
*** chlong has quit IRC17:34
*** tosky has quit IRC17:36
*** SimonChung1 has joined #openstack-horizon17:36
*** SimonChung1 has quit IRC17:37
*** SimonChung has quit IRC17:37
*** SimonChung2 has joined #openstack-horizon17:37
*** SimonChung2 has quit IRC17:38
*** SimonChung has joined #openstack-horizon17:38
*** doug-fish has quit IRC17:38
*** doug-fish has joined #openstack-horizon17:41
*** jbell8 has quit IRC17:42
*** mhickey has quit IRC17:48
*** T0m_ has left #openstack-horizon17:52
*** saksham has joined #openstack-horizon17:53
*** mrunge has quit IRC17:53
*** jwy has joined #openstack-horizon17:58
jpomeroyclu_, you around?17:58
clu_hi jpomeroy, yup17:58
jpomeroyclu_, hey, was just wondering if you intend to continue this work: https://review.openstack.org/#/c/174640/17:59
jpomeroyi'm looking at possibly adding another tab to that page to show role assignments, but it might make sense to depend on those changes17:59
*** jbell8 has joined #openstack-horizon18:00
*** linkedinyou has joined #openstack-horizon18:03
openstackgerritRajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list  https://review.openstack.org/22249318:04
openstackgerritRajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel  https://review.openstack.org/21794918:04
*** bpokorny has quit IRC18:04
openstackgerritRajat Vig proposed openstack/horizon: Adding multiple row actions for the Image table  https://review.openstack.org/21796418:04
openstackgerritRajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service  https://review.openstack.org/22021418:04
openstackgerritRajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel  https://review.openstack.org/21742218:04
*** ZZelle_ has joined #openstack-horizon18:06
*** bpokorny has joined #openstack-horizon18:06
*** jcoufal has joined #openstack-horizon18:06
*** ybathia has joined #openstack-horizon18:07
*** lapalm has joined #openstack-horizon18:08
*** Piet has quit IRC18:09
openstackgerritLin Hua Cheng proposed openstack/horizon: Integration tests - Instances tests  https://review.openstack.org/11709118:09
*** SimonChung has quit IRC18:10
*** SimonChung1 has joined #openstack-horizon18:10
*** Daisy has quit IRC18:11
*** vishwanathj_ has quit IRC18:11
*** kyleolivo has quit IRC18:18
*** kyleolivo has joined #openstack-horizon18:19
*** rajatvig has quit IRC18:20
*** kyleolivo has quit IRC18:21
*** kyleolivo has joined #openstack-horizon18:22
*** kyleolivo has quit IRC18:24
*** jerrygb_ has joined #openstack-horizon18:24
*** rajatvig has joined #openstack-horizon18:25
*** kzaitsev_mb has joined #openstack-horizon18:25
*** jerrygb has quit IRC18:28
*** kyleolivo has joined #openstack-horizon18:30
*** asahlin has quit IRC18:30
*** kiran-r has joined #openstack-horizon18:31
*** asahlin has joined #openstack-horizon18:31
*** kiran-r has quit IRC18:33
*** TravT has quit IRC18:36
tsufievdoug-fish, there is another patch for making integration tests even better: https://review.openstack.org/#/c/218301/18:37
*** TravT has joined #openstack-horizon18:37
doug-fishtsufiev: don't you sleep?!18:37
tsufievdoug-fish, it's only 9:38 pm in Moscow, pretty early18:38
doug-fishah ok18:38
doug-fishtsufiev: I just updated that missing RU translation bug you opened18:38
doug-fishI'm really surprised to see 4 pluralities for Russian18:38
doug-fishdoes that make sense to you?18:38
tsufievdoug-fish, plural forms of verbs or nouns18:40
tsufiev?18:40
*** ducttape_ has quit IRC18:40
tsufievor all of them?18:40
doug-fishit's actually both18:40
*** ducttape_ has joined #openstack-horizon18:40
tsufievdoug-fish, then it makes sense. It can be up to 6 forms for nouns and I don't know how many for verbs18:41
doug-fishoh, I see18:41
*** TravT_ has joined #openstack-horizon18:41
*** Piet has joined #openstack-horizon18:41
doug-fishI'm used to seeing python Babel claiming Russian should support 3 pluralities18:41
doug-fishso maybe this is a good clue18:42
*** kzaitsev_mb has quit IRC18:43
*** TravT has quit IRC18:43
tsufievdoug-fish, FYI, http://www.russianlessons.net/lessons/lesson11_main.php18:43
tsufiev'As the Russian language is based on the case system there are different plurals in each case.'18:44
tsufievand since it has 6 cases, I choose the maximum possible value18:45
tsufiev* 3 genders18:45
doug-fishI'm trying to reconcile that with https://translations.launchpad.net/+languages/ru and http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html18:45
doug-fishwhich matches more closely what I've seen in code18:46
*** emilyw has joined #openstack-horizon18:46
*** ttrifonov is now known as zz_ttrifonov18:47
tsufievdoug-fish, ah, now I understand better what these 'plurals' mean18:49
* tsufiev started scratching his head, trying to remember 4th form18:49
doug-fishyeah, confuses pretty much everybody18:49
*** Sukhdev_ has joined #openstack-horizon18:49
tsufievis there an example of some word we missed due to 3 plurals?18:50
*** mhickey has joined #openstack-horizon18:50
doug-fishnot 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-fishI'm wondering if parts of our app (like Django) have PO files with 3 forms and that function is getting used18:51
mhickeylhcheng: Hey, are you there?18:52
doug-fishand when it finds 4 plurals it jsut gives up18:52
tsufievdoug-fish, okay, I'll ask my wife, she graduated as a philolog :)18:53
doug-fishperfect!18:53
*** bpokorny has quit IRC18:54
*** bpokorny has joined #openstack-horizon18:54
tsufievokay, bye everybody18:57
doug-fishhave a good weekend tsufiev!18:57
*** jerrygb_ has quit IRC18:57
*** jerrygb has joined #openstack-horizon18:57
mhickeytsufiev: thanks for review18:58
mhickeyhave a good weekend18:58
mhickeyHey, can someone please check out my patch? https://review.openstack.org/#/c/213193/18:59
mhickeytrying to see if it can make it before I sign off with a beer for the weekend! :-)19:00
*** saksham has quit IRC19:05
*** exploreshaifali has quit IRC19:10
ducttape_mhickey if you have to choose between beer and waiting for reviews, choose beer - EVERY SINGLE TIME!19:10
mhickeyducttape_: sure! Getting a pass from wife and kids. Nothing going to stop me! :-)19:14
*** alanf has quit IRC19:16
*** gyee has quit IRC19:17
clu_jpomeroy: sorry, got carried away19:18
clu_yes, i plan to pick that up :)19:18
jpomeroyclu_, no worries19:18
mhickeyOk, weekend beckons. Have a good one everyone.19:22
*** asahlin has quit IRC19:23
mhickeybyr19:23
mhickeybye even :)19:23
jpomeroymhickey, have a good one19:27
*** mhickey has quit IRC19:29
*** kyleolivo has quit IRC19:33
*** aortega_ has quit IRC19:33
*** kyleolivo has joined #openstack-horizon19:34
*** kyleolivo has quit IRC19:35
*** TravT_ has quit IRC19:41
*** TravT has joined #openstack-horizon19:42
*** alanf has joined #openstack-horizon19:45
*** rajatvig has quit IRC19:45
*** Mzoorikh has joined #openstack-horizon19:52
doug-fishdo we have a bug open yet for the broken translations?19:53
doug-fishhttps://review.openstack.org/#/c/220404/ keeps failing19:54
*** asahlin has joined #openstack-horizon19:56
*** yamamoto_ has quit IRC19:57
*** gyee has joined #openstack-horizon19:57
*** Piet has quit IRC19:59
*** SimonChung has joined #openstack-horizon20:01
*** SimonChung1 has quit IRC20:01
*** kyleolivo has joined #openstack-horizon20:02
*** yamamoto has joined #openstack-horizon20:03
*** yamamoto has quit IRC20:03
doug-fishwe do now https://bugs.launchpad.net/openstack-i18n/+bug/149491420:06
openstackLaunchpad bug 1494914 in OpenStack Dashboard (Horizon) "PO file import keeps failing" [High,New]20:06
*** mpavlase has joined #openstack-horizon20:07
*** rajatvig has joined #openstack-horizon20:08
*** erlon has quit IRC20:08
*** Mzoorikh has quit IRC20:14
*** jbell8 has quit IRC20:15
*** asahlin has quit IRC20:17
*** asahlin has joined #openstack-horizon20:17
*** jwy has quit IRC20:18
*** kyleolivo has quit IRC20:19
*** mpavlase has quit IRC20:21
rajatvigTravT: Hi, would you've some time now?20:22
*** pauloewerton has quit IRC20:30
*** jwy has joined #openstack-horizon20:32
*** bradjones is now known as bradjones|away20:33
*** crobertsrh is now known as _crobertsrh20:33
*** kyleolivo has joined #openstack-horizon20:41
*** mpavlase has joined #openstack-horizon20:43
*** pauloewerton has joined #openstack-horizon20:43
*** Sukhdev_ has quit IRC20:49
*** mpavlase has quit IRC20:54
*** pauloewerton has quit IRC20:54
openstackgerritBrad Pokorny proposed openstack/horizon: Choose a server group when booting a VM  https://review.openstack.org/21761721:01
*** yamamoto has joined #openstack-horizon21:03
*** davidmichaelkarr has quit IRC21:07
*** rajatvig has quit IRC21:08
*** Piet has joined #openstack-horizon21:08
*** yamamoto has quit IRC21:09
*** doug-fish has quit IRC21:09
*** lapalm has quit IRC21:12
*** lblanchard has quit IRC21:12
*** jcoufal has quit IRC21:13
*** gyee has quit IRC21:19
*** kzaitsev_mb has joined #openstack-horizon21:19
*** jtriley has quit IRC21:19
*** jcoufal has joined #openstack-horizon21:22
openstackgerritMerged openstack/horizon: Enable compute shelve/unshelve commands  https://review.openstack.org/22083821:26
*** garthb has quit IRC21:29
*** Sukhdev_ has joined #openstack-horizon21:31
*** stevemar has quit IRC21:32
*** stevemar has joined #openstack-horizon21:33
*** TravT has quit IRC21:33
openstackgerritDiana Whitten proposed openstack/horizon: Default Sidebar should grow with page height  https://review.openstack.org/21574521:34
*** rajatvig has joined #openstack-horizon21:35
*** stevemar has quit IRC21:36
*** aix has joined #openstack-horizon21:37
*** neelashah has quit IRC21:37
openstackgerritDiana Whitten proposed openstack/horizon: Default Sidebar should grow with page height  https://review.openstack.org/21574521:37
*** cbader has quit IRC21:40
*** stevemar has joined #openstack-horizon21:40
*** stevemar has quit IRC21:42
*** stevemar has joined #openstack-horizon21:43
*** rajatvig has quit IRC21:44
*** stevemar has quit IRC21:46
*** aix has quit IRC21:46
*** rajatvig has joined #openstack-horizon21:46
*** garthb has joined #openstack-horizon21:48
*** garthb_ has joined #openstack-horizon21:48
*** garthb_ has quit IRC21:48
*** TravT has joined #openstack-horizon21:49
*** vgridnev has quit IRC21:50
r1chardj0n3shi folks21:53
*** ducttape_ has quit IRC21:53
*** vijendar has quit IRC21:54
hurgleburglerMorning r1chardj0n3s21:59
*** emw has joined #openstack-horizon22:09
*** emilyw has quit IRC22:09
*** saksham has joined #openstack-horizon22:10
*** emilyw has joined #openstack-horizon22:12
*** emw has quit IRC22:14
*** gyee has joined #openstack-horizon22:19
openstackgerritMerged openstack/horizon: Moving translation to HTML for launch-instance configuration step  https://review.openstack.org/21661122:19
*** kyleolivo has quit IRC22:20
*** TravT has quit IRC22:22
*** gyee has quit IRC22: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.html22:31
*** gyee has joined #openstack-horizon22:33
*** TravT has joined #openstack-horizon22:39
*** alanf has quit IRC22:48
*** alanf has joined #openstack-horizon22:52
*** SimonChung has quit IRC22:52
openstackgerritRajat Vig proposed openstack/horizon: ContextActions directive for dynmaic action list  https://review.openstack.org/22249322:54
openstackgerritRajat Vig proposed openstack/horizon: Adding row action to delete single image to angular images panel  https://review.openstack.org/21794922:54
openstackgerritRajat Vig proposed openstack/horizon: Adding multiple row actions for the Image table  https://review.openstack.org/21796422:54
openstackgerritRajat Vig proposed openstack/horizon: Launch Instance Modal should be exist as a Service  https://review.openstack.org/22021422:55
openstackgerritRajat Vig proposed openstack/horizon: Adding action to delete multiple images to angular images panel  https://review.openstack.org/21742222:55
*** cloudtrainme has quit IRC23: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.html23: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-horizon23:02
*** mhorban has quit IRC23:02
*** rajatvig_ has joined #openstack-horizon23:03
*** xnox has quit IRC23:03
*** mhorban has joined #openstack-horizon23:03
*** garann has quit IRC23:03
*** SimonChung has joined #openstack-horizon23:03
*** asahlin has quit IRC23:04
*** hurgleburgler has quit IRC23:05
*** jcoufal has quit IRC23:05
*** xnox has joined #openstack-horizon23:05
*** rajatvig_ has quit IRC23:08
*** jbell8 has joined #openstack-horizon23:09
*** garann has joined #openstack-horizon23:11
*** gyee has quit IRC23:16
*** kyleolivo has joined #openstack-horizon23:16
*** kyleolivo has quit IRC23:21
*** gyee has joined #openstack-horizon23:23
*** gyee has quit IRC23:23
*** jbell8 has quit IRC23:27
*** kzaitsev_mb has quit IRC23:29
*** Sukhdev_ has quit IRC23:31
*** kzaitsev_mb has joined #openstack-horizon23:33
*** Sukhdev_ has joined #openstack-horizon23:33
*** SimonChung1 has joined #openstack-horizon23:34
*** SimonChung has quit IRC23:34
*** rajatvig has quit IRC23:35
*** ducttape_ has joined #openstack-horizon23:35
*** ChanServ changes topic to "OpenStack Horizon"23:39
*** shivrao has quit IRC23:39
lhchengducttape_:  the context selector have a problem again: https://bugs.launchpad.net/horizon/+bug/149498823:40
openstackLaunchpad bug 1494988 in OpenStack Dashboard (Horizon) "Context selector is broken" [High,New]23:40
ducttape_say WHAT!23:41
lhchengnot sure if its just my local, reported the bug anyway so other folks can validate it23:41
ducttape_did you redo all your static content ?23:41
lhchengyeah23:42
ducttape_so we have deployed a version as of about 8 am today, and do not have that issue23:42
ducttape_8 am MST23:42
ducttape_MDT23:42
*** geoffarnold is now known as geoffarnoldX23:42
lhchengremoved the static folder again23:42
lhchenghmm I wonder if its only for keystone v323:43
lhchenggoing to switch to v223:43
ducttape_keystone v2: it just works®™23:44
morganducttape_ :(23:44
ducttape_haha23:45
ducttape_you should take that as a compliment morgan23:45
morganno23:45
morgannot in the slightest23:45
ducttape_lol23:45
lhchengyeah, it works when horizon is setup with v2 :(23:45
lhchengthe 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 gem23:46
*** openstackgerrit has quit IRC23:46
ducttape_;)23:46
*** openstackgerrit has joined #openstack-horizon23:47
kfox1111can I get a quick workflow on this one: https://review.openstack.org/#/c/220676/23:47
kfox1111the migration finished and the url is live.23:47
*** linkedinyou has quit IRC23:48
lhchengducttape_: whoever is that, he's doing a great job laying out those traps23:51
ducttape_I know, right?  this person is a keystone v2 ninja, determined to kill keystone v323:51
lhchengkfox1111: cool, approved23:52
kfox1111thx.23:52
lhchengducttape_: haha he got skillz23:52
*** Daisy has joined #openstack-horizon23:54
*** linkedinyou has joined #openstack-horizon23:55
*** SimonChung has joined #openstack-horizon23:57
*** SimonChung1 has quit IRC23:57
*** Daisy has quit IRC23:59
*** SimonChung has quit IRC23:59
*** SimonChung1 has joined #openstack-horizon23:59

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!