Tuesday, 2014-12-09

*** woodm19791 has quit IRC00:02
*** Sukhdev has quit IRC00:02
*** Sukhdev has joined #openstack-horizon00:03
*** e0ne has quit IRC00:07
*** ericpeterson has quit IRC00:08
*** e0ne has joined #openstack-horizon00:11
tqtranr1chardj0n3s: got an angular question for you00:14
r1chardj0n3stqtran: fire away00:14
guglping tqtran regarding review https://review.openstack.org/#/c/117053/ not sure how to combine them...can you advise? thanks.00:15
tqtranr1chardj0n3s: im trying to put identity users into a different module, but i want to load it only when i need it, basically, i dont want to preload it as a dependency in hz app.00:16
r1chardj0n3swhy?00:16
r1chardj0n3s(given that it'll all be loaded in a single JS file anyway)00:17
tqtranr1chardj0n3s: hm... not sure if theres much to be gain here, but the idea is to load only what we need, this of course will include the angular modules as well00:18
tqtrangugl: i'll leave a comment in the patch00:19
r1chardj0n3sindeed I question what the gain is given the complication it introduces :)00:19
gugltqtran, sounds good, thanks.00:19
tqtranr1chardj0n3s: well if you think about it, lets say we have 20 different panels, each panel requiring its own JS module00:20
r1chardj0n3syou can use require.js to load js stuff on demand, but it overly-complicates your application and again since we're compiling all the JS down to a single file, I don't see any benefit00:20
tqtranr1chardj0n3s: thats 20 different modules we are loading upfront, when we only need 100:20
tqtranr1chardj0n3s: right, so the compression will take care of it, and might be easier to do. just wanted a different opinion00:21
r1chardj0n3stqtran: the way I see it is that the angular app is a single-page app which has a bunch of JS behind it. trying to do partial loads would be like writing a Python application that only executed code imports when functions inside the modules are executed. lots of complexity for little gain.00:23
r1chardj0n3sangular app development is not like old-school JS spaghetti development where the page changes constantly and the JS is re-executed every time00:23
r1chardj0n3s(well, it'll be *kinda* like that, but less and less so as we migrate)00:24
r1chardj0n3sthe more stuff in the angular app, the fewer transitions in and out of the single-page angular app :)00:24
tqtranr1chardj0n3s: ok, good talk lol, i think i'll keep it simple00:24
r1chardj0n3sI like simple :)00:25
r1chardj0n3s(which is why I'm currently reading horizon/exceptions.py and dying a little on the inside)00:25
r1chardj0n3s... which also contains this comment:00:26
r1chardj0n3s    # TODO(gabriel): This bugfix is cribbed from Django's code. When 1.4.100:26
r1chardj0n3s    # is available we can remove this code.00:26
*** colinmcnamara has quit IRC00:27
*** sbfox has quit IRC00:27
tqtrangugl: try this: <div id="{% if resize_instance %} quota_resize_instance {%else%} quota_instances {% endif %}" ....></div>00:29
*** ongk has quit IRC00:29
tqtrangulg: not the prettiest thing, but it should do the trick00:29
openstackgerritKevin Benton proposed openstack/horizon: Provide tenant_id in Neutron create requests  https://review.openstack.org/13388400:33
*** Sukhdev_ has joined #openstack-horizon00:34
jamielennoxis django_openstack_auth ever called back into from horizon? i realize the user and token objects are used but are the interfaces contained with DOA public?00:34
*** Sukhdev_ has quit IRC00:35
*** Sukhdev has quit IRC00:36
gugltqtran, will try, tks.00:36
*** Sukhdev has joined #openstack-horizon00:40
tqtranjamielennox: from my understanding, you are redirected to DOA when you hit the /auth/... url. from there, the form you submit is generated by DOA and the user object is injected into the request object. From there horizon is able to use this user object to obtain the token and use it to make various API calls00:40
jamielennoxtqtran: how does it handle multiple tokens / user?00:41
jamielennoxok - so that means i should be able to change the function interfaces within DOA that aren't part of the user object00:42
tqtranjamielennox: not sure i understand, the request object is on a per user basis00:42
jamielennoxtqtran: i was thinking rescoping to other projects00:42
openstackgerritShaoquan Chen proposed openstack/horizon: Create a reusable angular based wizard  https://review.openstack.org/13741700:43
tqtranjamielennox: https://github.com/openstack/django_openstack_auth/blob/master/openstack_auth/views.py#L156 allows switching of one project to another.00:45
*** aix has quit IRC00:49
gugltqtran, the combined code doesn't seem to work correctly...it only picks up quota_resize_instance...ignors quota_instances sort of messed up the launch instance...looks like can not combine them00:53
openstackgerritCindy Lu proposed openstack/horizon: add missing icons for Project > Images filter  https://review.openstack.org/12023700:54
tqtrangugl: let me give it a try00:54
gugltqtran, k00:54
*** e0ne has quit IRC01:02
*** Sukhdev_ has joined #openstack-horizon01:03
*** Sukhdev has quit IRC01:04
tqtrangulg: <div id="{% if resize_instance %}quota_resize_instance{% else %}quota_instances{% endif %}" class="quota_bar" data-progress-indicator-flavor data-quota-limit="{{ usages.maxTotalInstances }}" data-quota-used="{{usages.totalInstancesUsed}}"></div>01:05
tqtrangulg: that is what i have, and it works for me01:05
*** e0ne has joined #openstack-horizon01:06
*** Sukhdev_ has quit IRC01:06
gugltqtran, have you tried launch instance as well...the instance number stops increase for that dialog01:06
*** Sukhdev has joined #openstack-horizon01:06
gugltqtran, it works for resize...but has issue for launch instance01:06
*** Piet has joined #openstack-horizon01:07
*** kumartin has joined #openstack-horizon01:08
tqtranyeah, looking into that01:08
tqtranbut not sure how thats related to the change01:08
*** Sukhdev_ has joined #openstack-horizon01:08
*** ZZelle_ has quit IRC01:09
*** dboik has quit IRC01:09
guglwell, for launch instance, it uses the id=quota_instance, for resize it uses id=quota_resize_instance...based on different id, it calcs diff numbers01:10
tqtrangulg: ok so i just tested it, it works for me01:10
tqtrangulg: when i increase instance count, the bar moves upward01:10
*** Sukhdev has quit IRC01:11
gugltqtran, assume you tested both resize and luanch...ok, will try again. thanks01:11
tqtrangugl: yep, i tested both01:11
tqtrangugl: if you dont like encompassing it all in the string, can also do <div {% if cond %}id="something1"{% else %}id="something2".....01:13
*** ongk has joined #openstack-horizon01:13
gugltqtran, ok, that is more readable...will try. thanks for the help!01:13
tqtrangugl: np, i'll help bug lin to reapprove as well once you upload latest01:15
gugltqtran, thanks so much!01:15
gugltqtran, it works, many thanks again! Will upload new patch, ping you when Jenkins is happy.01:28
tqtrangugl: ok =)01:29
*** cbader has quit IRC01:29
*** Sukhdev_ has quit IRC01:30
*** raildo has joined #openstack-horizon01:35
*** tnovacik has quit IRC01:35
openstackgerritGloria Gu proposed openstack/horizon: Fixed issue of progress bars in resize instance  https://review.openstack.org/11705301:35
*** e0ne has quit IRC01:37
*** e0ne has joined #openstack-horizon01:41
*** kumartin has quit IRC01:41
*** alexpilotti has joined #openstack-horizon01:43
*** raildo has quit IRC01:46
*** lhcheng has quit IRC01:47
*** colinmcnamara has joined #openstack-horizon01:55
openstackgerritLi Yingjun proposed openstack/horizon: Replace set_id_as_name_if_empty with name_or_id  https://review.openstack.org/12237202:01
*** alexpilotti has quit IRC02:06
openstackgerritGloria Gu proposed openstack/horizon: No delete volume action for volume with snapshots  https://review.openstack.org/13643102:10
openstackgerritJamie Lennox proposed openstack/django_openstack_auth: Use standard test loading features  https://review.openstack.org/14020002:11
*** ayoung has joined #openstack-horizon02:17
*** e0ne has quit IRC02:20
*** julim has quit IRC02:27
openstackgerritKelly Domico proposed openstack/horizon: WIP Styling identity tables  https://review.openstack.org/13859802:28
*** clu_ has quit IRC02:31
*** jacalcat has joined #openstack-horizon02:31
gugltqtran, https://review.openstack.org/117053 is done. whenever you get a chance, please rereview. Thanks.02:31
*** jacalcat has quit IRC02:36
*** tom_lkn1 has quit IRC02:41
*** nlahouti has quit IRC02:41
tqtrangugl: done!02:42
gugltqtran, great! Thanks!02:43
tqtrangugl: np, you're very welcome02:43
gugltqtran, :)02:43
tqtranr1chardj0n3s: https://review.openstack.org/#/c/139532/2/openstack_dashboard/api/rest/keystone.py02:44
tqtranr1chardj0n3s: im thinking that return object should also follow the same format we discussed02:44
tqtranr1chardj0n3s: that way, its flexible enough to allow us to attach other things in the future, like has_more, etc....02:45
r1chardj0n3soh, I was going to ask you about that comment; am happy to change it :)02:45
tqtranr1chardj0n3s: awesome =)02:45
*** tom_lkn1 has joined #openstack-horizon02:46
r1chardj0n3sI keep getting distracted from trying to figure out what horizon/exceptions.py is doing and whether I can leverage it; I welcome the distraction to keep not thinking about that ;)02:46
tqtranr1chardj0n3s: lol02:46
tqtranr1chardj0n3s: yeah i do that a lot too, was trying to figure out the best way to do password confirmation validation. i think the form is in good shape now.... so now its all about testing your API02:47
*** dboik has joined #openstack-horizon02:57
openstackgerritRichard Jones proposed openstack/horizon: REST API for angular front end.  https://review.openstack.org/13667603:01
openstackgerritRichard Jones proposed openstack/horizon: Keystone REST API for angular front end.  https://review.openstack.org/13953203:01
r1chardj0n3stqtran: updated API now in gerrit03:01
tqtranr1chardj0n3s: so im doing a bit of digging, looks like API can fail when attempting to add roles for user03:02
r1chardj0n3sfail how?03:03
tqtranr1chardj0n3s: right now, REST API isnt returning some form of http error so client doesn't know what error to show user03:03
*** vijendar has quit IRC03:03
*** dsneddon has quit IRC03:03
r1chardj0n3swhat is it returning? a django 500 HTML page?03:03
tqtranr1chardj0n3s: https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/identity/users/forms.py#L14303:04
*** dsneddon has joined #openstack-horizon03:04
tqtranr1chardj0n3s: yours doesnt return anything, it assumes that a role will be added and returns the newUser object03:04
r1chardj0n3swhat do you mean "doesnt return anything"? what specifically isn't returning anything, and is it the complete absence of return data, or is it not returning anything sensible (eg the django 500 page)?  is anything being logged (ie. is the rest/utils.py Exception handler path being used?)03:06
r1chardj0n3sor is it returning a 204?03:07
tqtranr1chardj0n3s: so im basically just following the flow of your code. i havent gotten it to error out, but suppose it does, how are exceptions caught right now?03:07
*** tom_lkn1 has quit IRC03:08
r1chardj0n3swhat specific bit of code? :) the various REST endpoints are wrapped in the rest/utils.py wrapper which catches exceptions and returns an AJAX error, even in "except Exception" cases.03:08
r1chardj0n3sif it's an error in *the wrapper* though, you should still get a django 500 HTML error page returned03:10
*** vijendar has joined #openstack-horizon03:11
tqtranr1chardj0n3s: so lets say i invoke the create user REST API, and the REST API then invokes 1. api.keystone.user_create and 2. api.keystone.roles_for_user03:11
r1chardj0n3sif api.keystone.add_tenant_user_role fails by throwing an exception, you should see that as an AJAX result to the call on the client03:11
r1chardj0n3syep03:11
tqtranr1chardj0n3s: right now, if 1 or 2 fails, i get a 500 regardless03:11
tqtranr1chardj0n3s: but the error needs to be more specific so i can display an error message to the user03:12
tqtranr1chardj0n3s: ah ok, so if add_tenant_user_role fails, then am i getting a specific error code? or just 500?03:13
r1chardj0n3sah, ok, so you are getting the 500 response (not "nothing") but you want to customise the error03:13
tqtranr1chardj0n3s: yes, it would be best if you can just forward the API error code to the client03:13
tqtranr1chardj0n3s: that way, we can avoid having our own custom exception handler, let client decide what message is appropriate for what error03:14
r1chardj0n3sthat *is* the error code from the client, if the client returns a useful one (see the special HTTPClientError branch in rest/utils.py)03:14
r1chardj0n3sin this case, the client is apparently not returning a useful error03:14
r1chardj0n3swould it be feasible for me to reproduce this error?03:15
tqtranhttps://review.openstack.org/#/c/133767/15/openstack_dashboard/static/dashboard/js/hz.identity.users.js L38, basically i want to catch the status code and display custom error message depending on status code03:15
tqtranr1chardj0n3s: not sure how you would reproduce the error, im just doing this all on theory03:15
r1chardj0n3ssure, and you can. my point is that apparently the underlying service API is not giving you one03:15
r1chardj0n3s*if* the underlying service API throws a sensible HTTP status code back at us, I pass that up to the REST API caller (you). Otherwise, you get a 500.03:16
*** jacalcat has joined #openstack-horizon03:16
r1chardj0n3sGIGO :)03:16
tqtranr1chardj0n3s: i see, so thats how it works today03:16
r1chardj0n3sthere is no other data for me to pass up, AFAICT03:16
r1chardj0n3sno other error information03:16
r1chardj0n3sthere *is* the context information from inside the REST API code itself (ie. which service API is being invoked)03:17
*** gary-smith_ has joined #openstack-horizon03:17
*** Poornima has joined #openstack-horizon03:17
*** gary-smith_ has quit IRC03:17
r1chardj0n3sbut adding cruft around that is one of the reasons I *don't* want to see such complexity in the REST API code03:17
r1chardj0n3sthe multiple calls should be performed *on the client* so it can do sensible things, not needing additional logic coded into the03:18
r1chardj0n3sREST API03:18
r1chardj0n3sie. your client should be calling user_create, roles_for_user and add_tenant_for_role itself, and doing sensible things in response to failures itself03:19
tqtranr1chardj0n3s: im fine with doing it that way. i think the only action that should be batch are deletes03:20
r1chardj0n3s\o/03:20
r1chardj0n3sI'll be happy to clean up that POST to remove that extra logic ;)03:21
r1chardj0n3sI will need to add new REST API endpoints for roles_for_user and add_tenant_for_role03:21
r1chardj0n3sno biggie03:21
tqtranr1chardj0n3s: well, its not like you can batch create users, doesnt make sense03:21
r1chardj0n3sindeed03:22
tqtranr1chardj0n3s: lets handle it case by case, because i know that for instances, you can batch create, but we can deal with it then03:22
r1chardj0n3sok, so I'll look at re-working the REST API to split out those calls. any thoughts about what they should look like in a REST API?03:23
tqtranr1chardj0n3s: and i have a feeling its probably still ok to do it the way we do it now anyway, because of the async nature, the amount of time we lost is fairly negibile up to a point03:23
tqtranr1chardj0n3s: thats up to you =) i'll comment when you're done03:23
r1chardj0n3shaha, thanks :)03:23
*** dsneddon has quit IRC03:24
tqtranr1chardj0n3s: it will make handling error messages easier to deal with going forward as well03:24
tqtranr1chardj0n3s: because we know exactly which API failed03:24
r1chardj0n3syep!03:24
tqtranr1chardj0n3s: and if the API error message is too vague, client can easily step in to produce a more readible message03:24
*** david-lyle is now known as david-lyle_afk03:24
r1chardj0n3syep03:25
*** dsneddon has joined #openstack-horizon03:26
*** ongk has quit IRC03:38
*** tqtran is now known as tqtran_afk03:39
PietWhat is the min and max number of security groups in Horizon?  I'm looking for an estimate.03:39
*** colinmcnamara has quit IRC03:43
*** dsneddon has quit IRC03:46
rbertramtqtran_afk: yep, I have not forgotten https://review.openstack.org/#/c/112654/ - I will update/rebase again if a core somewhere is paying attention ;-)03:46
*** dsneddon has joined #openstack-horizon03:48
*** bradjones has quit IRC03:51
*** colinmcnamara has joined #openstack-horizon03:59
*** dsneddon has quit IRC04:07
*** dsneddon has joined #openstack-horizon04:08
*** ericpeterson has joined #openstack-horizon04:12
*** sayan has quit IRC04:15
openstackgerritNikunj Aggarwal proposed openstack/horizon: Adding missing cancel button in create & edit subnet  https://review.openstack.org/13192804:17
*** Sukhdev has joined #openstack-horizon04:22
*** dboik has quit IRC04:25
*** nikunj2512 has joined #openstack-horizon04:27
*** colinmcnamara has quit IRC04:28
*** dsneddon has quit IRC04:28
*** dsneddon has joined #openstack-horizon04:29
*** sbfox has joined #openstack-horizon04:42
*** vkmc has quit IRC04:43
*** lhcheng has joined #openstack-horizon04:47
*** jacalcat has quit IRC04:48
*** dsneddon has quit IRC04:49
*** sayan has joined #openstack-horizon04:49
*** dsneddon has joined #openstack-horizon04:50
openstackgerritRichard Jones proposed openstack/horizon: Keystone REST API for angular front end.  https://review.openstack.org/13953204:54
*** Sukhdev has quit IRC04:58
*** tzumainn has quit IRC05:07
*** ericpeterson has quit IRC05:08
*** dsneddon has quit IRC05:10
*** dsneddon has joined #openstack-horizon05:11
*** sayan has quit IRC05:12
*** sbfox has quit IRC05:20
*** dsneddon has quit IRC05:30
*** dsneddon has joined #openstack-horizon05:31
*** sbfox has joined #openstack-horizon05:38
*** tqtran_afk is now known as tqtran05:51
*** dsneddon has quit IRC05:51
tqtranr1chardj0n3s: might need to move utils.py to this patch https://review.openstack.org/#/c/136676/30 instead05:51
tqtranrbertram: i'm paying attention =)05:52
r1chardj0n3stqtran: why? I think it belongs in the base patch so others can build their APIs using it...05:52
r1chardj0n3stqtran: also, why u not asleep? :)05:52
*** dsneddon has joined #openstack-horizon05:52
tqtranr1chardj0n3s: precisely, utils.py should be in the 1st patch, not the REST identity patch05:53
tqtranr1chardj0n3s: lol i'm cooking a very late dinner05:53
r1chardj0n3swait. it's *in* the 1st patch. oh, I see, it also appears to be in the second patch... um05:53
r1chardj0n3sclearly I don't git05:53
r1chardj0n3sno, wait05:54
r1chardj0n3shttps://review.openstack.org/#/c/136676/ is the base patch providing the core for REST APIs to build on, it has utils.py05:54
r1chardj0n3shttps://review.openstack.org/#/c/139532/ is the dependent patch building on that for keystone/identity05:55
tqtranr1chardj0n3s: so "git checkout <2nd patch>", then "git rebase -i <1s patch>", then "git review"05:55
tqtranr1chardj0n3s: yes, utils should appear in the 1st patch, not the 2nd05:56
r1chardj0n3soh, crap, I've been rebasing on master for the 2nd patch :P05:56
r1chardj0n3sas I said, I clearly don't git :)05:56
r1chardj0n3sI'll fix that in a bit, got some in-flight stuff on the 1st patch I need to clear up05:56
tqtranr1chardj0n3s: ok05:56
*** Poornima has quit IRC05:59
r1chardj0n3swhen I "git rebase -i rest-api" I get two commits - should I squash those into one?06:00
r1chardj0n3sif I don't then the rebase fails with just "could not apply <the first commit>"06:00
r1chardj0n3sI've merged the first branch into the second06:01
*** masco has joined #openstack-horizon06:01
sambettsr1chardj0n3s: you should have 2 commits I belive, andthen when you push gerrit understands its a depenant06:02
r1chardj0n3sweird, there's a 3rd commit in the git log, but rebase doesn't offer me the ability to remove it in rebase06:02
r1chardj0n3sand it has its own change-id which is baaad06:02
openstackgerritOpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/14023906:03
r1chardj0n3soh, man, this log is messed up now :(06:03
r1chardj0n3stqtran: http://paste.openstack.org/show/147644/06:04
r1chardj0n3stqtran: so the base change now appears twice in the log \o/06:04
r1chardj0n3son either side of the actual change for this branch \o/06:04
r1chardj0n3sARGH :)06:05
tqtranr1chardj0n3s: haha, i'll rebase i for you06:07
tqtranr1chardj0n3s: but yeah, sam is right. you actually commiting 2, and gerrit will understand and create dependency06:08
*** freyes has quit IRC06:12
*** dsneddon has quit IRC06:12
*** Ephur has quit IRC06:13
*** Ephur has joined #openstack-horizon06:13
*** dsneddon has joined #openstack-horizon06:13
*** freyes has joined #openstack-horizon06:13
*** nlahouti has joined #openstack-horizon06:15
*** nlahouti has quit IRC06:17
*** nlahouti has joined #openstack-horizon06:18
r1chardj0n3ssam?06:19
r1chardj0n3soh sambetts :_06:19
r1chardj0n3s:)06:19
r1chardj0n3sso that 2 commit thing is what I've had all along, rebasing on master06:19
r1chardj0n3sif I try to rebase on the rest-api it tells me to sod off06:20
openstackgerritThai Tran proposed openstack/horizon: REST API for angular front end.  https://review.openstack.org/13667606:20
r1chardj0n3stqtran: what did your push ^^ just do?06:22
openstackgerritThai Tran proposed openstack/horizon: Keystone REST API for angular front end.  https://review.openstack.org/13953206:23
tqtranr1chardj0n3s: ok all done06:23
r1chardj0n3sdone what?! :)06:23
tqtranr1chardj0n3s: i moved the utils.py from identity to rest06:24
tqtranr1chardj0n3s: just take a look at your patch, you will understand06:24
r1chardj0n3soh, there was an edit to utils.py that had snuck into the keystone patch, I see06:25
r1chardj0n3sok, I coulda fixed that if I knew that was the problem06:25
r1chardj0n3sI was all confused because I thought I'd screwed up some git thing :/06:25
tqtranr1chardj0n3s: haha thats what i was trying to tell you the entire time06:25
r1chardj0n3sbut you were all rebase is wrong and stuff and then I screwed up my local git big time and I've been undoing that mess for the last 30 minutes :(06:26
r1chardj0n3sI'm gonna see if I can just get my work from this afternoon into the review and be done for the day06:26
r1chardj0n3sand now the version up on gerrit is ahead of my local branch and I have local changes to commit to the change06:27
r1chardj0n3sI *think* if I "git pull ssh://richard@review.openstack.org:29418/openstack/horizon refs/changes/32/139532/5" I can merge from that06:28
tqtranr1chardj0n3s: lol ok, i'm gonna log off for the night then. since my patch depends on yours, i'll have to wait until you sort it all out06:29
tqtrannite richard and sam06:29
*** tqtran has quit IRC06:29
r1chardj0n3snight!06:30
openstackgerritMerged openstack/horizon: Improving more projects link in context selection  https://review.openstack.org/13850106:40
*** russellb has quit IRC06:43
*** russellb has joined #openstack-horizon06:44
openstackgerritRichard Jones proposed openstack/horizon: REST API for angular front end.  https://review.openstack.org/13667606:46
*** rdobosz has joined #openstack-horizon06:54
*** rdobosz is now known as _gryf06:55
*** dsneddon has quit IRC06:55
*** _gryf has quit IRC06:55
*** dsneddon has joined #openstack-horizon06:55
*** lhcheng has quit IRC06:56
*** _gryf has joined #openstack-horizon06:56
*** Longgeek has joined #openstack-horizon06:57
*** k4n0 has joined #openstack-horizon07:15
*** dsneddon has quit IRC07:15
*** dsneddon has joined #openstack-horizon07:17
*** e0ne has joined #openstack-horizon07:27
*** den9ie has quit IRC07:31
*** den9ie has joined #openstack-horizon07:31
*** mrunge has joined #openstack-horizon07:33
*** sayan has joined #openstack-horizon07:45
*** jtomasek has joined #openstack-horizon07:52
*** tnovacik has joined #openstack-horizon07:58
*** jprovazn has joined #openstack-horizon08:04
*** qba73 has joined #openstack-horizon08:07
*** wuhg has joined #openstack-horizon08:09
*** nlahouti has quit IRC08:09
*** dkorn has joined #openstack-horizon08:16
*** aberezin has quit IRC08:32
openstackgerritJiri Tomasek proposed openstack/horizon: Reorganized scss imports  https://review.openstack.org/13370308:32
*** jcoufal has joined #openstack-horizon08:33
*** akrivoka has joined #openstack-horizon08:39
nikunj2512jtomasek: Hi.. This related to the bug you filed- https://bugs.launchpad.net/horizon/+bug/139912608:43
*** MaxV has joined #openstack-horizon08:44
*** den9ie has quit IRC08:45
*** markus_z has joined #openstack-horizon08:47
openstackgerritRichard Jones proposed openstack/horizon: REST API for angular front end.  https://review.openstack.org/13667608:48
openstackgerritRichard Jones proposed openstack/horizon: Keystone REST API for angular front end.  https://review.openstack.org/13953208:50
*** ala_ has joined #openstack-horizon08:51
jtomaseknikunj2512: Hi, great that you're looking at that issue08:52
nikunj2512jtomasek: Can you tell which identity link you are talking about08:52
nikunj2512?08:52
*** e0ne has quit IRC08:53
jtomaseknikunj2512: it is in header - sorry for the missinformation in the bug summary08:54
jtomaseknikunj2512: /home/stack/horizon/openstack_dashboard/templates/_header.html line 2008:54
openstackgerritRichard Jones proposed openstack/horizon: Keystone REST API for angular front end.  https://review.openstack.org/13953208:55
nikunj2512jtomasek: Ok08:55
*** jcoufal_ has joined #openstack-horizon08:55
nikunj2512jtomasek: But in the UI, when you open the horizon the browser, where it comes>?? Can u tell me that?/08:56
*** sayan has quit IRC08:56
jtomaseknikunj2512: in the topbar - project dropdown at the bottom below the line08:57
jtomaseknikunj2512: it says "More Projects"08:58
nikunj2512Yes08:58
nikunj2512jtomasek: Got it08:58
nikunj2512jtomasek: Thank you08:58
jtomaseknp!08:58
nikunj2512jtomasek: will it be possible for you to include this info in the bug details08:58
nikunj2512?08:58
*** jcoufal has quit IRC08:59
jtomaseknikunj2512: ok, I'll add it there08:59
*** romainh has joined #openstack-horizon09:02
*** den9ie has joined #openstack-horizon09:05
*** aberezin has joined #openstack-horizon09:08
*** ygbo has joined #openstack-horizon09:12
openstackgerritMerged openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/14023909:19
*** gerchardon has joined #openstack-horizon09:24
*** athomas has joined #openstack-horizon09:28
*** Longgeek has quit IRC09:32
*** oro has joined #openstack-horizon09:34
*** Longgeek has joined #openstack-horizon09:35
*** aix has joined #openstack-horizon09:35
openstackgerritMerged openstack/horizon: wrong message while deleting non empty pseudo folder  https://review.openstack.org/12075509:37
*** sbfox has quit IRC09:39
*** e0ne has joined #openstack-horizon09:44
*** openstack295 has joined #openstack-horizon09:49
*** openstack295 has quit IRC09:50
*** cedrics has joined #openstack-horizon09:52
*** cedrics has quit IRC09:59
*** cedrics has joined #openstack-horizon10:02
*** katyafervent has left #openstack-horizon10:06
openstackgerritVlad Okhrimenko proposed openstack/horizon: Update project list in the header bar.  https://review.openstack.org/13736910:20
*** MaxV has quit IRC10:26
*** MaxV has joined #openstack-horizon10:26
*** MaxV has quit IRC10:33
*** MaxV has joined #openstack-horizon10:33
*** MaxV has quit IRC10:33
*** MaxV has joined #openstack-horizon10:33
openstackgerritLIU Yulong proposed openstack/horizon: Add help text to BatchAction  https://review.openstack.org/13990810:35
*** den9ie has quit IRC10:38
*** john-davidge has joined #openstack-horizon10:39
*** cedrics has quit IRC10:44
openstackgerritVlad Okhrimenko proposed openstack/horizon: Update project list in the header bar.  https://review.openstack.org/13736910:46
*** NikitaKonovalov has quit IRC10:48
*** NikitaKonovalov has joined #openstack-horizon10:49
*** den9ie has joined #openstack-horizon10:50
openstackgerritAna Krivokapic proposed openstack/tuskar-ui: Add a scale-out dialog  https://review.openstack.org/13558310:53
*** Longgeek has quit IRC10:54
*** Longgeek has joined #openstack-horizon10:56
*** ZZelle has quit IRC10:57
sambettsnight tqtran10:57
*** ZZelle has joined #openstack-horizon10:57
*** MaxV has quit IRC11:10
*** romainh has quit IRC11:16
*** alexpilotti has joined #openstack-horizon11:17
openstackgerritMerged openstack/tuskar-ui: Add a scale-out dialog  https://review.openstack.org/13558311:19
*** aix has quit IRC11:19
*** MaxV has joined #openstack-horizon11:22
*** tosky has joined #openstack-horizon11:27
*** aix has joined #openstack-horizon11:32
*** yingjun has joined #openstack-horizon11:33
*** yingjun has quit IRC11:34
*** htruta has joined #openstack-horizon11:41
*** MaxV has quit IRC11:44
nikunj2512Is anyone knows how to get to know if a panel is disabled or not?11:45
*** vkmc has joined #openstack-horizon11:47
*** vkmc has quit IRC11:47
*** vkmc has joined #openstack-horizon11:47
*** e0ne has quit IRC11:49
*** cedrics has joined #openstack-horizon11:52
*** romainh has joined #openstack-horizon11:53
*** jtomasek has quit IRC11:54
*** e0ne has joined #openstack-horizon11:55
*** qba73 has quit IRC11:57
openstackgerritJamie Lennox proposed openstack/django_openstack_auth: Use standard test loading features  https://review.openstack.org/14020011:58
openstackgerritJamie Lennox proposed openstack/django_openstack_auth: Use keystone auth plugins  https://review.openstack.org/14030811:58
*** tnovacik has quit IRC11:58
*** nikunj2512 has quit IRC11:58
*** MaxV has joined #openstack-horizon12:00
*** colinmcnamara has joined #openstack-horizon12:05
*** cedricss has joined #openstack-horizon12:06
*** cedrics has quit IRC12:09
*** bradjones has joined #openstack-horizon12:20
*** raildo has joined #openstack-horizon12:25
*** colinmcnamara has quit IRC12:25
*** jamielennox is now known as jamielennox|away12:29
*** akrivoka_ has joined #openstack-horizon12:30
*** e0ne has quit IRC12:31
*** akrivoka has quit IRC12:32
*** colinmcnamara has joined #openstack-horizon12:38
*** e0ne has joined #openstack-horizon12:40
*** romainh has left #openstack-horizon12:41
*** alexpilotti has quit IRC12:46
*** colinmcnamara has quit IRC12:51
*** Longgeek has quit IRC12:58
*** Longgeek has joined #openstack-horizon13:04
openstackgerritNikita Konovalov proposed openstack/horizon: [Data_processing] fix job_executions table  https://review.openstack.org/12592713:07
*** _crobertsrh is now known as crobertsrh13:07
*** jtomasek has joined #openstack-horizon13:08
*** john-davidge has quit IRC13:10
*** jtomasek has quit IRC13:10
*** jtomasek has joined #openstack-horizon13:11
*** radez_g0n3 is now known as radez13:18
*** doug-fish has joined #openstack-horizon13:18
*** alexpilotti has joined #openstack-horizon13:25
*** tnovacik has joined #openstack-horizon13:48
*** tnovacik has quit IRC13:48
*** tnovacik has joined #openstack-horizon13:48
*** jacalcat has joined #openstack-horizon13:49
*** tzumainn has joined #openstack-horizon13:49
*** Longgeek_ has joined #openstack-horizon13:52
*** Longgeek has quit IRC13:52
*** oro has quit IRC13:58
*** julim has joined #openstack-horizon13:58
*** nikunj2512_ has joined #openstack-horizon13:58
*** Sukhdev has joined #openstack-horizon13:59
nikunj2512_Does anyone knows how to find out where a panel is disabled or not?13:59
openstackgerritTimur Sufiev proposed openstack/horizon: Prevent user from disabling her current project  https://review.openstack.org/13838314:06
*** oro has joined #openstack-horizon14:10
*** peristeri has joined #openstack-horizon14:10
*** cedricss has quit IRC14:11
*** dkorn has quit IRC14:15
*** tnovacik has quit IRC14:19
*** k4n0 has quit IRC14:21
*** Longgeek_ has quit IRC14:22
*** nikunj2512_ has quit IRC14:26
*** jacalcat has quit IRC14:28
*** Longgeek has joined #openstack-horizon14:29
openstackgerritNikita Konovalov proposed openstack/horizon: [Data_processing] fix job_executions table  https://review.openstack.org/12592714:29
openstackgerritNikita Konovalov proposed openstack/horizon: [Data_processing] fix job_executions table  https://review.openstack.org/12592714:29
*** mattfarina has joined #openstack-horizon14:33
*** tnovacik has joined #openstack-horizon14:37
*** yingjun has joined #openstack-horizon14:39
*** Longgeek has quit IRC14:39
*** athomas has quit IRC14:39
*** jtomasek has quit IRC14:41
openstackgerritChad Roberts proposed openstack/horizon: [WIP]Allowing editing of node group templates  https://review.openstack.org/13970514:43
*** akrivoka_ has quit IRC14:44
*** Longgeek has joined #openstack-horizon14:44
*** jtomasek has joined #openstack-horizon14:44
*** jtomasek has quit IRC14:46
*** jtomasek has joined #openstack-horizon14:46
*** athomas has joined #openstack-horizon14:47
*** e0ne has quit IRC14:49
*** e0ne has joined #openstack-horizon14:51
*** ericpeterson has joined #openstack-horizon14:51
ericpetersonhi14:51
*** nikunj2512_ has joined #openstack-horizon14:52
*** yingjun has quit IRC14:54
*** alexpilotti_ has joined #openstack-horizon14:54
*** yingjun has joined #openstack-horizon14:54
*** lhcheng has joined #openstack-horizon14:55
*** tnovacik has quit IRC14:56
*** alexpilotti has quit IRC14:57
*** alexpilotti_ is now known as alexpilotti14:57
*** yingjun has quit IRC14:59
openstackgerritEric Peterson proposed openstack/django_openstack_auth: Horizon login page contains DOS attack mechanism  https://review.openstack.org/14035214:59
openstackgerritEric Peterson proposed openstack/horizon: Horizon login page contains DOS attack mechanism  https://review.openstack.org/14035315:00
*** dboik has joined #openstack-horizon15:00
*** k4n0 has joined #openstack-horizon15:01
*** jprovazn has quit IRC15:06
*** yingjun has joined #openstack-horizon15:08
*** tnovacik has joined #openstack-horizon15:09
*** vijendar has quit IRC15:10
*** woodm1979 has joined #openstack-horizon15:11
*** yingjun has quit IRC15:11
*** yingjun has joined #openstack-horizon15:11
*** david-lyle has joined #openstack-horizon15:21
*** gokrokve has joined #openstack-horizon15:21
*** Sukhdev has quit IRC15:22
*** yingjun has quit IRC15:23
*** gokrokve has quit IRC15:32
*** gokrokve has joined #openstack-horizon15:33
*** wuhg has quit IRC15:33
*** ericpeterson has quit IRC15:34
*** trown has quit IRC15:35
*** trown has joined #openstack-horizon15:36
*** tnovacik has quit IRC15:37
*** ericpeterson has joined #openstack-horizon15:37
*** rebelagentm has joined #openstack-horizon15:37
*** tnovacik has joined #openstack-horizon15:38
*** jpomero has joined #openstack-horizon15:38
*** sayan has joined #openstack-horizon15:41
*** dboik has quit IRC15:41
*** vijendar has joined #openstack-horizon15:42
*** ongk has joined #openstack-horizon15:45
openstackgerritLIU Yulong proposed openstack/horizon: Add Content-Length to swift object upload header  https://review.openstack.org/14037615:45
*** neelashah has joined #openstack-horizon15:46
*** jprovazn has joined #openstack-horizon15:50
*** lhcheng_ has joined #openstack-horizon15:50
*** lhcheng_ has quit IRC15:50
*** lhcheng_ has joined #openstack-horizon15:51
*** lhcheng has quit IRC15:53
openstackgerritBrianna Poulos proposed openstack/horizon: Add volume type encryption delete  https://review.openstack.org/14005515:53
*** sivy has joined #openstack-horizon15:56
sivymornin all15:56
sivyanyone ever tried to make cross-region api calls within horizon?15:56
sivyi'm trying to auto-create a failover server during create instance, in a different region to the current region15:58
*** sayan has quit IRC15:58
sivymost api calls within horizon take the already-authentcated request as the basis15:58
*** rebelagentm has quit IRC15:59
sivywhich already has the region set15:59
*** tqtran has joined #openstack-horizon16:00
*** jcoufal_ has quit IRC16:02
david-lylesivy, yes16:02
*** rebelagentm has joined #openstack-horizon16:02
david-lylethere is a patch you'll be interested in16:02
david-lylelet me dig it up, just a sec16:03
sivyhit me16:03
sivythanks16:03
*** masco has quit IRC16:03
david-lylehttps://review.openstack.org/11185416:03
*** Sukhdev has joined #openstack-horizon16:03
david-lylethat makes cross region calls16:04
david-lyleI foresee more cross region calls in the future16:05
david-lyleso either we need to add the region parameter to a lot more api calls, or come up with a cleaner mechanism16:06
david-lyleI prefer the latter, but haven't had time to come up with anything yet16:06
sivyyeah16:07
*** dboik has joined #openstack-horizon16:08
david-lylesivy, so I'm open to ideas :)16:08
sivyreally, i feel like the project should be the top-level concept, with regions unde that16:08
*** oro has quit IRC16:08
sivywe should be able to see all instances for a project, across regions16:09
david-lylesivy, the reason we only show one region is due to response time16:09
sivyso fix response time :P16:10
david-lylepage loads are already slow, making those same API calls by X regions, ugh16:10
sivyyeah i know16:10
david-lylesivy, ideally this will be helped by moving the data load to the client side and doing it asynchronously16:10
david-lylethen we can try to fetch more data, but not block the page load on it16:11
*** regebro has joined #openstack-horizon16:12
openstackgerritKevin Benton proposed openstack/horizon: Provide tenant_id in Neutron create requests  https://review.openstack.org/13388416:12
*** ttrifonow is now known as zz_ttrifonow16:13
david-lylesivy, in the mean time, as general rule, we need to be judicious with how much data we attempt to load at once16:14
sivyunderstood.16:14
*** colinmcnamara has joined #openstack-horizon16:14
*** cbader has joined #openstack-horizon16:15
sivywhoa that's a hella patch16:15
openstackgerritChad Roberts proposed openstack/horizon: [WIP]Allowing editing of cluster templates  https://review.openstack.org/13970716:15
sivybit more than i can easily integrate16:15
david-lyleI was just pointing to it for the mechanism16:15
david-lylethat's for cross region instance search16:16
sivygotcha16:16
sivyi'll review it. I'd be happy right now to have an easy-ish way to fire off api calls for a diff region16:16
david-lylethe api/nova.py is something we have for other api calls already16:17
david-lylepassing the region value as a param is going to be the easiest right now16:17
*** nlahouti has joined #openstack-horizon16:17
*** david-lyle has quit IRC16:20
openstackgerritMerged openstack/django_openstack_auth: Horizon login page contains DOS attack mechanism  https://review.openstack.org/14035216:21
*** tnovacik has joined #openstack-horizon16:25
tristanCHello folks, just to inform you we are about to send an advisory for https://launchpad.net/bugs/1394370, and only stable/icehouse is missing a +2 ( https://review.openstack.org/140356 )16:28
sivydavid-lyle: is there a sample patch for that pass-region-to-the-api thing16:28
*** Piet has quit IRC16:29
*** k4n0 has quit IRC16:34
*** gokrokve has quit IRC16:36
sivyhuh, that has to patch all the clients and client calls16:40
sivylooks like I can construct the client with request.user, request.tokenid16:42
sivyand the correct region16:42
sivyin the authurl16:42
*** devlaps has joined #openstack-horizon16:42
*** ayoung has quit IRC16:44
*** ayoung has joined #openstack-horizon16:44
*** markus_z has quit IRC16:46
*** tosky has quit IRC16:47
openstackgerritMerged openstack/horizon: Horizon login page contains DOS attack mechanism  https://review.openstack.org/14035316:47
* ericpeterson has used up all his attempts at getting gates to pass on the first try for this decade16:48
*** bpokorny has joined #openstack-horizon16:51
*** jacalcat has joined #openstack-horizon16:54
*** lhcheng_ has quit IRC16:58
*** crobertsrh has quit IRC17:06
*** MaxV_ has joined #openstack-horizon17:09
*** MaxV has quit IRC17:09
*** dboik has quit IRC17:10
*** ala_ has quit IRC17:10
*** masco has joined #openstack-horizon17:13
*** dboik has joined #openstack-horizon17:17
*** jacalcat has quit IRC17:19
*** lhcheng has joined #openstack-horizon17:21
*** sayan has joined #openstack-horizon17:21
*** woodm1979 has quit IRC17:23
*** gokrokve has joined #openstack-horizon17:25
*** MaxV_ has quit IRC17:26
*** MaxV has joined #openstack-horizon17:27
*** MaxV has quit IRC17:27
*** MaxV has joined #openstack-horizon17:27
*** MaxV has quit IRC17:30
*** ygbo has quit IRC17:31
*** e0ne has quit IRC17:31
*** nikunj2512_ has quit IRC17:31
*** nikunj2512_ has joined #openstack-horizon17:31
*** ayoung is now known as ayoung-lunch17:35
openstackgerritGary W. Smith proposed openstack/horizon: Add horizon support for multi-attached volumes  https://review.openstack.org/10816517:48
*** aberezin has quit IRC17:48
*** nikunj2512_ has quit IRC17:50
*** dboik has quit IRC17:52
*** sbfox has joined #openstack-horizon17:52
*** gokrokve has quit IRC17:52
*** gokrokve has joined #openstack-horizon17:53
*** cedrics has joined #openstack-horizon17:54
*** david-lyle_afk is now known as david-lyle17:58
*** packet has joined #openstack-horizon17:59
*** Piet has joined #openstack-horizon18:00
*** Sukhdev has quit IRC18:03
*** masco has quit IRC18:07
*** jamielennox|away is now known as jamielennox18:09
*** clu_ has joined #openstack-horizon18:11
*** athomas has quit IRC18:13
openstackgerritGloria Gu proposed openstack/horizon: No delete volume action for volume with snapshots  https://review.openstack.org/13643118:14
*** sivy has quit IRC18:15
*** crobertsrh has joined #openstack-horizon18:16
*** jamielennox is now known as jamielennox|away18:16
*** radez is now known as radez_g0n318:24
openstackgerritShilla Saebi proposed openstack/horizon: changes to settings.rst file in dev docs  https://review.openstack.org/14042518:28
*** bpokorny_ has joined #openstack-horizon18:31
*** cedrics has quit IRC18:31
*** mrunge has quit IRC18:31
*** cedrics has joined #openstack-horizon18:32
*** bpokorn__ has joined #openstack-horizon18:33
*** bpokorny has quit IRC18:34
*** dkorn has joined #openstack-horizon18:35
*** kumartin has joined #openstack-horizon18:36
*** bpokorny_ has quit IRC18:36
*** dboik has joined #openstack-horizon18:37
*** Sukhdev has joined #openstack-horizon18:39
*** cedricss has joined #openstack-horizon18:40
*** bpokorny has joined #openstack-horizon18:41
*** cedrics has quit IRC18:42
*** e0ne has joined #openstack-horizon18:43
*** dkorn has quit IRC18:44
*** bpokorn__ has quit IRC18:44
*** ZZelle_ has joined #openstack-horizon18:45
*** sbfox has quit IRC18:45
*** dkorn has joined #openstack-horizon18:46
*** dkorn has joined #openstack-horizon18:49
*** sbfox has joined #openstack-horizon18:55
*** cedricss has quit IRC18:59
*** vijendar has quit IRC19:01
*** radez_g0n3 is now known as radez19:03
*** dkorn has quit IRC19:08
*** jprovazn has quit IRC19:08
*** bpokorny has quit IRC19:12
*** bradjones has quit IRC19:16
*** bpokorny has joined #openstack-horizon19:17
*** aix has quit IRC19:20
*** Longgeek has quit IRC19:20
*** vkmc has quit IRC19:20
*** fischerw has joined #openstack-horizon19:24
*** dkorn has joined #openstack-horizon19:26
*** bradjones has joined #openstack-horizon19:29
*** zul has quit IRC19:31
*** dkorn has quit IRC19:31
*** jacalcat has joined #openstack-horizon19:34
*** zul has joined #openstack-horizon19:34
*** zul has quit IRC19:35
*** cedrics has joined #openstack-horizon19:35
*** zul has joined #openstack-horizon19:37
*** vkmc has joined #openstack-horizon19:41
*** vkmc has quit IRC19:41
*** vkmc has joined #openstack-horizon19:41
*** MaxV has joined #openstack-horizon19:41
*** kumartin has quit IRC19:41
openstackgerritGloria Gu proposed openstack/horizon: Fixed issue of progress bars in resize instance  https://review.openstack.org/11705319:45
*** exploreshaifali has joined #openstack-horizon19:47
*** cedrics has quit IRC19:51
*** dkorn has joined #openstack-horizon19:52
*** vijendar has joined #openstack-horizon19:54
*** vijendar has quit IRC19:55
*** vijendar has joined #openstack-horizon19:55
*** ayoung-lunch is now known as ayoung20:00
*** dkorn has quit IRC20:02
r1chardj0n3smorning20:03
*** colinmcnamara has quit IRC20:06
openstackgerritAmogh proposed openstack/horizon: Integration tests - Instances tests  https://review.openstack.org/11709120:07
*** jtomasek has quit IRC20:09
*** ericpeterson has quit IRC20:12
*** jrist has quit IRC20:14
*** colinmcnamara has joined #openstack-horizon20:14
*** MaxV has quit IRC20:15
*** Longgeek has joined #openstack-horizon20:20
*** MaxV has joined #openstack-horizon20:23
openstackgerritAmogh proposed openstack/horizon: Integration tests - 3 new form fields  https://review.openstack.org/13309520:23
openstackgerritAmogh proposed openstack/horizon: Add navigation among pages  https://review.openstack.org/11042520:23
openstackgerritAmogh proposed openstack/horizon: Integration tests - Instances tests  https://review.openstack.org/11709120:23
openstackgerritAmogh proposed openstack/horizon: Add TabbedFormRegion to Integration tests  https://review.openstack.org/12647820:23
*** colinmcnamara has quit IRC20:23
*** Piet has quit IRC20:24
*** jpomero_ has joined #openstack-horizon20:25
openstackgerritMerged openstack/horizon: Change arrow transparent borders to inset borders  https://review.openstack.org/13809820:26
*** jrist has joined #openstack-horizon20:26
*** Longgeek has quit IRC20:26
*** jpomero has quit IRC20:27
*** dkorn has joined #openstack-horizon20:32
*** Sukhdev has quit IRC20:38
openstackgerritRandy Bertram proposed openstack/horizon: With angular hz module, use strict & avoid globals  https://review.openstack.org/11265420:40
rbertramtqtran: rebased as requested: https://review.openstack.org/#/c/112654/20:42
*** dsneddon has quit IRC20:48
*** dsneddon has joined #openstack-horizon20:49
*** dkorn has quit IRC20:49
*** bradjones has quit IRC20:52
*** Piet has joined #openstack-horizon20:53
PietThere is an update to the "Select a Flavor" step in the Launch Instance workflow.  Feel free to leave comments. http://invis.io/EF1UDBY6M20:56
*** Sukhdev has joined #openstack-horizon20:56
*** bpokorny_ has joined #openstack-horizon20:58
*** sbfox has quit IRC20:59
*** jamielennox|away is now known as jamielennox20:59
*** bpokorny has quit IRC21:00
tqtranrbertram: done!21:00
SlickNikwould appreciate some eyeballs on https://review.openstack.org/#/c/122939/ when folks get a chance. Thanks!21:01
*** akrivoka has joined #openstack-horizon21:02
tqtranPiet: i like the circles at the top, looks really nice21:05
*** sayan has quit IRC21:06
PietYeah I know!  Chris gets credit for that!21:06
openstackgerritAndrew Lazarev proposed openstack/horizon: [Sahara] Fixed display of nodegroup template service parameters  https://review.openstack.org/14047621:07
*** dkorn has joined #openstack-horizon21:11
PietJust a heads-up, we're getting ready to run a large sample card sort starting next week.  Looking for both operator/admins and end users (both horizon and non-horizon users)  HP will be giving away three tablets as a sweepstakes.21:12
*** akrivoka has quit IRC21:12
openstackgerritGeorge Peristerakis proposed openstack/horizon: Generating a rdp file for a windows instance  https://review.openstack.org/9139421:15
*** dkorn has quit IRC21:16
*** MaxV has quit IRC21:16
*** MaxV has joined #openstack-horizon21:17
lhchengPiet: Is there an invite I can forward to our folks here that might be interested.21:17
*** julim has quit IRC21:18
PietI'm hoping to send something to the group next week21:18
openstackgerritNeill Cox proposed openstack/horizon: WIP - Single page navigation - angular  https://review.openstack.org/13798021:18
lhchengPiet: cool, thanks for that21:19
*** colinmcnamara has joined #openstack-horizon21:19
PietYup - no problem!  It will be cool to see the results.  Melissa Meingast will be doing the analysis for us.21:20
PietMelissa is a Human Factors Engineer with HP and very good with stats.21:20
*** Longgeek has joined #openstack-horizon21:22
r1chardj0n3sPiet: that sounds like a Good Thing, great to see!21:22
ekarlso-Piet: card sort ? :p21:23
PietHere's an example of a card sort - http://www.optimalworkshop.com/optimalsort-demo21:24
PietWe're running one to understand the information architecture in Horizon21:25
*** colinmcnamara has quit IRC21:25
*** TravT has quit IRC21:25
*** Longgeek has quit IRC21:26
*** colinmcnamara has joined #openstack-horizon21:30
openstackgerritGeorge Peristerakis proposed openstack/horizon: Attach a floating ip to an created instance  https://review.openstack.org/13248621:31
*** alexpilotti has quit IRC21:35
openstackgerritGeorge Peristerakis proposed openstack/horizon: [WIP] Standardize the exception handling thrown by services.  https://review.openstack.org/13405821:35
openstackgerritAndrew Lazarev proposed openstack/horizon: [Sahara] Moved security options to separate tab of ng template  https://review.openstack.org/14048521:38
*** Sukhdev_ has joined #openstack-horizon21:39
*** Sukhdev has quit IRC21:39
david-lyleSlickNik: is there a bug to link that too?21:40
david-lyles/too/to/21:40
SlickNikdavid-lyle: Let me check. I'll create one if it doesn't already exist.21:41
david-lylethanks, otherwise, LGTM21:41
*** TravT has joined #openstack-horizon21:42
*** TravT has quit IRC21:42
*** TravT has joined #openstack-horizon21:43
*** dkorn has joined #openstack-horizon21:44
*** peristeri has quit IRC21:44
*** EmilyW has joined #openstack-horizon21:44
*** neelashah has quit IRC21:45
*** dboik has quit IRC21:46
*** jrist is now known as knowncitizen21:54
*** knowncitizen is now known as jrist21:55
*** jpomero_ has quit IRC21:55
*** dkorn1 has joined #openstack-horizon21:56
*** dkorn has quit IRC21:58
*** crobertsrh has quit IRC21:58
*** exploreshaifali has quit IRC22:06
*** mattfarina has quit IRC22:06
*** dkorn1 has quit IRC22:07
*** alexpilotti has joined #openstack-horizon22:11
*** dboik has joined #openstack-horizon22:12
*** kumartin has joined #openstack-horizon22:13
*** dboik_ has joined #openstack-horizon22:14
*** dboik has quit IRC22:16
*** KurtMartin is now known as kmartin22:17
*** neelashah has joined #openstack-horizon22:21
*** dkorn has joined #openstack-horizon22:26
*** colinmcnamara has quit IRC22:37
*** colinmcnamara has joined #openstack-horizon22:39
PietWe are also planning to run a usability test on the proposed Launch Instance design.22:44
PietIn that case, we are looking for ~12 people that can spare 1.5 hrs for a remote study.22:44
*** bpokorny has joined #openstack-horizon22:45
PietHP will be giving a away away one tablet as a sweepstakes to the participants.22:45
r1chardj0n3stqtran: nice catch on the keystone API, thanks!22:46
PietWe are looking for end users (not operators or administrators) who are cloud devs - do not necessarily need to have experience with OpenStack.22:46
openstackgerritThai Tran proposed openstack/horizon: WIP angularize identity users. Most things are broken.  https://review.openstack.org/13376722:47
PietLet me know if you know of anyone that would be interested in participating.22:47
*** bpokorny_ has quit IRC22:48
r1chardj0n3sPiet: I'll ask around!22:48
tqtranPiet: ooo tablet, too bad im not cloud devs22:49
r1chardj0n3stqtran: I'm seriously considering splitting the four classes in the keystone api into eight, and have the /id/ path stuff go to a separate class so the path element isn't optional (and silliness like the delete "if id is none" branch goes away)22:50
openstackgerritGloria Gu proposed openstack/horizon: Fixed issue of progress bars in resize instance  https://review.openstack.org/11705322:51
r1chardj0n3stqtran: on the {data: []} return from the GET methods, how would {items: []} sound as a slightly clearer noun?22:53
tqtrani like data more, since its more generic22:53
tqtranthere might be times where we are not sending items back22:53
r1chardj0n3shang on, this is setting the specific pattern from GET-returning-list-of-things22:54
r1chardj0n3sI'm not wrapping GET-a-single-thing in {data: object}22:54
r1chardj0n3sand I loathe too-generic names :)22:54
tqtranwell... you might need to22:54
tqtransay your API has paging22:55
tqtranhow does client know there are more data it needs to fetch?22:55
tqtranif all you're returning is a list of items?22:55
r1chardj0n3show does that apply to GET-a-single-thing?22:55
r1chardj0n3sno, I agree that GET-a-list-of-things must return {items: []} with the option of a has_more if it's supported22:55
*** ongk has quit IRC22:55
tqtrani like having a consistent data format. makes client code a bit easier to write.22:56
tqtranbut im fine either way, you can decide.22:56
tqtrani dont think there are ever instances were we get only a single item?22:57
r1chardj0n3sGET /users/<id>22:57
r1chardj0n3sGET /users/current22:57
r1chardj0n3setc22:57
*** devlaps has quit IRC22:58
*** gokrokve has quit IRC22:58
tqtranok, im fine with it.22:59
*** gokrokve has joined #openstack-horizon22:59
tqtranas for splitting the classes, not sure how that will help? the amount of code will be roughly the same, and its already pretty simple to follow23:00
*** kumartin has quit IRC23:00
*** freyes has quit IRC23:00
tqtranbut again, its up to you, i'm sure we'll get feedback once you put it up23:00
*** dkorn has quit IRC23:01
*** colinmcnamara has quit IRC23:01
r1chardj0n3sI don't like the overloading of the methods, and I don't like the confusion in the docstrings.23:01
*** freyes has joined #openstack-horizon23:02
tqtranok SGTM23:02
*** lhcheng has quit IRC23:02
*** alexpilotti has quit IRC23:02
*** lhcheng_ has joined #openstack-horizon23:02
*** jamielennox is now known as jamielennox|away23:05
*** neelashah has quit IRC23:06
*** rebelagentm has quit IRC23:06
*** Longgeek has joined #openstack-horizon23:10
openstackgerritAndrew Lazarev proposed openstack/horizon: [Sahara] Added links to security groups  https://review.openstack.org/14051823:11
*** e0ne has quit IRC23:14
*** e0ne has joined #openstack-horizon23:15
*** Longgeek has quit IRC23:15
*** mikedillion has joined #openstack-horizon23:16
*** jacalcat has quit IRC23:17
*** bpokorny has quit IRC23:18
*** Piet has quit IRC23:19
*** fischerw has quit IRC23:19
*** mikedillion has quit IRC23:23
*** dkorn has joined #openstack-horizon23:23
*** mikedillion has joined #openstack-horizon23:23
*** jamielennox|away is now known as jamielennox23:24
*** e0ne has quit IRC23:26
*** dkorn has quit IRC23:31
*** bpokorny has joined #openstack-horizon23:33
*** aberezin has joined #openstack-horizon23:33
*** lhcheng_ has quit IRC23:36
*** sbfox has joined #openstack-horizon23:36
*** lhcheng has joined #openstack-horizon23:37
*** lhcheng_ has joined #openstack-horizon23:39
*** lhcheng_ has quit IRC23:39
*** Sukhdev_ has quit IRC23:39
*** lhcheng_ has joined #openstack-horizon23:40
*** kumartin has joined #openstack-horizon23:41
*** lhcheng has quit IRC23:41
*** rebrego has joined #openstack-horizon23:41
*** regebro has quit IRC23:41
*** rebrego is now known as regebro23:41
*** lhcheng has joined #openstack-horizon23:42
*** dboik_ has quit IRC23:43
*** lhcheng_ has quit IRC23:44
*** MaxV has quit IRC23:47
*** jrist is now known as knowncitizen23:48
*** knowncitizen is now known as jrist_23:49
*** jrist_ is now known as jrist23:50
*** dkorn has joined #openstack-horizon23:50
*** jrist is now known as jrist_23:50
*** jrist_ is now known as jrist23:51
*** raildo_ has joined #openstack-horizon23:53
*** aberezin has quit IRC23:55
*** dkorn has quit IRC23:59

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