Friday, 2015-06-19

*** ZZelle_ has joined #openstack-horizon00:01
*** ZZelle_ has quit IRC00:01
*** Raildo has quit IRC00:02
*** nlahouti has quit IRC00:02
openstackgerritNeill Cox proposed openstack/horizon: Replace makemessages with babel  https://review.openstack.org/18866500:03
*** petertr7_away is now known as petertr700:03
neillcr1chardj0n3s: fixed :)00:04
r1chardj0n3sok, Imma wait for the gate to speak and then +1 :)00:04
r1chardj0n3sthanks for the name change00:04
*** tqtran_afk is now known as tqtran00:05
tqtrankfox1111: still there?00:05
tqtranwas busy earlier, i have some time now00:05
kfox1111yup.00:07
kfox1111I'm really close I think. just trying to figure out how to get the initial params from SelectTemplateView into TemplateForm.00:08
tqtranok cool, let me scroll up and read what you need and see if i can help00:09
kfox1111I'm not finding where the params from the get request are showing up.00:09
kfox1111and the heat stuff are not using workflow's so it doesn't just automatically happen.00:09
kfox1111so, in openstack_dashboard/dashboards/project/stacks/views.py:class SelectTemplateView(forms.ModalFormView)00:10
tqtranok got it00:10
tqtranlet me play with the code and see what i can find00:11
kfox1111I instrumented the TemplateForm __init__ but arn't seeing any of the get params in kwargs.00:11
kfox1111thanks. :)00:11
*** petertr7 is now known as petertr7_away00:12
*** kztsv_mbp has joined #openstack-horizon00:13
*** annashen has joined #openstack-horizon00:14
tqtrandamn i cant log in, dont have heat enabled00:14
tqtraner... ok meta code time00:14
tqtranso let me take a step back and get clarification. you want to pass a query param and you want the view to extract it?00:15
kfox1111yeah. so it can set the default in the dropdown/text box.00:16
kfox1111so I think SelectTemplateView needs a get_initial member maybe.00:17
kfox1111but its still not clear to me where to fetch the query params.00:17
tqtranok lets take it one step at a time00:17
tqtranso right now, you want to pass query param and extract from url in the view00:17
tqtranis that where we are at?00:18
kfox1111yeah. I think so.00:18
*** kztsv_mbp has quit IRC00:18
tqtranok gimme a sec to dig through code and see where we can extract the query param00:18
kfox1111k. thx.00:18
*** annashen has quit IRC00:19
*** ybathia has joined #openstack-horizon00:21
*** amotoki_ has joined #openstack-horizon00:23
*** ybathia has quit IRC00:24
*** yamamoto has joined #openstack-horizon00:24
tqtranok got it00:24
*** alexvictorchan has quit IRC00:25
tqtranim gonna use the identity users panel as an example00:26
kfox1111k.00:26
*** Piet has quit IRC00:26
tqtranbut it will work in your case as well00:26
tqtranhttps://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/identity/users/views.py#L15300:26
tqtranwhat you need is to add the get_initial method00:26
tqtranin that method, you have access to self.request object00:26
*** gyee has quit IRC00:27
kfox1111hmm.... ok.00:27
tqtranso to get the query param, it is: self.request.GET.get('SOME_KEY_HERE')00:27
tqtranor to see the entire query param, it is just self.request.GET00:27
tqtranit is a dict00:27
tqtranwhat you do next is return that object and it becomes incorporated as the initial object00:28
*** amotoki_ has quit IRC00:28
kfox1111ok. trying it...00:28
tqtranhttps://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/identity/users/forms.py#L10700:28
tqtranand then in your modalFormView, you add an init method00:28
tqtranthis will give you access to the kwargs object00:29
tqtranwhich will contain the initial object that you created in the view earlier00:29
tqtranfrom there, you can do whatever you want in terms of populating the choicefields00:29
tqtranhope that helps!00:29
kfox1111I think so. let me coder up real quick.00:29
*** yamamoto has quit IRC00:29
kfox1111yup. the inital thing passed through... let me see if I can get the init function hooked up now.00:30
tqtran:) nice00:30
kfox1111I think that may have done it.... testing end to end.00:33
kfox1111thats awesome. :)00:35
kfox1111totally worked. :)00:35
kfox1111thanks so much for the help. :)00:35
tqtran:) np!00:36
tqtranthats one crazy abstraction that hopefully angular will simplify00:37
kfox1111yeah. totally.00:38
kfox1111is there a class for making a link look like the button's ususally used in the rows?00:38
tqtranjust have to class it properly00:38
*** kcaj has joined #openstack-horizon00:39
kfox1111know offhand what it is?00:39
tqtranbtn btn-default btn-sm ajax-modal00:39
*** yingjun has joined #openstack-horizon00:39
tqtranis it the split button?00:39
tqtranor the button inside of the menu?00:39
kfox1111Split one. but I don't have any submenu needed at the moment.00:39
kfox1111That did the trick. :)00:40
tqtranok cool :)00:40
tqtranbtw, who are you? have we met before or are you new?00:41
kfox1111been around a while but not on any particular project.00:41
kfox1111more of an operator then a developer, but doing stuff on the app catalog right now.00:41
tqtrani see i see00:42
*** bpokorny_ has quit IRC00:43
kfox1111is it possible to use an angular panel merged into the Projects panel or does it need to be seperate for now?00:43
tqtranit is possible00:44
tqtranhttps://review.openstack.org/#/c/181253/00:44
tqtranshows an example of creating a dashboard, but it doesnt have to be in that dashboard00:45
tqtranyou can just hook it up to the project dashboard instead00:45
kfox1111that looks very familior. :)00:45
kfox1111thats the code I started with basically.00:45
tqtranjust move your files into dashboards/projects/MAI_PROJECT/**.....00:46
tqtranhahaha00:46
tqtranyeah i figured as much00:46
kfox1111do you rename hz.dashboard.demo to hz.dashboard.project then?00:46
tqtranmore like hz.dashboard.project.demo00:48
*** dsneddon has quit IRC00:48
tqtranthe demo patch hasn't been updated00:48
kfox1111oh. so do you move dashboards/demo to dashboards/projects/myproject?00:48
tqtranso fivecircle is basically your panel00:49
kfox1111yeah.00:49
tqtranwhile demo is your project00:49
tqtrani mean dashboard00:49
kfox1111There's "My Group" in there somewhere too.00:49
tqtranso if you want to have fivecircle under project, then yes, you need to move it into the /dashboards/projects/ folder00:50
kfox1111I'd kind of like to keep My Group, but have the group under Projects.00:50
*** jwy has quit IRC00:50
kfox1111k.00:50
tqtranand modify the dashboard.py and panel.py accordingly00:50
kfox1111perfect. thanks. :)00:50
tqtranalrighty, gotta head out, but feel free to shoot me an email if you have further questions00:51
tqtrantake it ez!00:51
kfox1111will do. thanks again for all the help. your a life saver. :)00:51
*** tqtran has quit IRC00:51
kfox1111you to.00:51
*** ducttape_ has joined #openstack-horizon00:52
*** sqchen has joined #openstack-horizon00:53
*** openstack has joined #openstack-horizon00:55
-cameron.freenode.net- [freenode-info] channel flooding and no channel staff around to help? Please check with freenode support: http://freenode.net/faq.shtml#gettinghelp00:55
*** akrivoka has quit IRC00:55
*** ducttape_ has quit IRC00:57
*** sqchen has joined #openstack-horizon00:58
*** bpokorny has joined #openstack-horizon00:59
*** sqchen has left #openstack-horizon01:07
*** sqchen has joined #openstack-horizon01:07
*** kfox1111 has quit IRC01:08
*** bpokorny has quit IRC01:10
*** bpokorny has joined #openstack-horizon01:11
*** bpokorny has quit IRC01:11
*** bpokorny has joined #openstack-horizon01:12
*** kztsv_mbp has joined #openstack-horizon01:14
*** ccrouch has quit IRC01:14
*** yamamoto has joined #openstack-horizon01:14
*** yingjun has quit IRC01:15
*** jwy has joined #openstack-horizon01:17
*** yamamoto has quit IRC01:18
*** kztsv_mbp has quit IRC01:19
*** ducttape_ has joined #openstack-horizon01:21
*** yingjun has joined #openstack-horizon01:27
*** Longgeek has joined #openstack-horizon01:31
*** bpokorny has quit IRC01:33
*** clu_ has quit IRC01:39
*** Longgeek has quit IRC01:50
*** tjones1 has joined #openstack-horizon01:54
*** ducttape_ has quit IRC01:55
*** tsufiev has quit IRC02:01
*** aix has quit IRC02:02
*** yamamoto has joined #openstack-horizon02:02
*** tsufiev has joined #openstack-horizon02:06
*** sqchen has left #openstack-horizon02:07
lifelessr1chardj0n3s: have you seen  https://review.openstack.org/#/c/121459/ ?02:10
r1chardj0n3slifeless: nope, I had not. neillc, tqtran and matt borland are the prime movers in the horizon i18n space02:12
lifelessr1chardj0n3s: I've seen you chatting about i18n stuff, so thought you should be looped in :)02:13
lifelessif its irrelevant toyou, thats fine too:)02:13
*** kztsv_mbp has joined #openstack-horizon02:14
r1chardj0n3slifeless: oslo's message extraction is very specifically aimed at gettext() in python code, we'd need to do significant work just to get it up to the level of the existing babel + babel-django02:15
lifelessr1chardj0n3s: should we be consolidating around babel?02:15
r1chardj0n3sit might make sense, not sure02:16
lifelessI'm not a deep i18n-head.02:16
lifelessok02:16
lifelesstanks02:16
neillclifeless: babel should be looked at, but there are likely to be some issues for oslo I suspect.02:16
neillcwe want/need it for angular02:17
r1chardj0n3sbabel was already in the Horizon suite, we're just using it for extraction also now. and adding angular support is a pretty simple exercise02:17
* r1chardj0n3s butts out and leaves it to the expert to discuss :)02:17
neillclol expert02:17
neillcas r1chardj0n3ssays we're just using it for extraction so it may be worth oslo looking at it for that02:18
lifelessso02:18
lifelessI'd love it if oslo.i18n weren't needed, or were super thin02:18
lifelessif babel has stuff that can help, cool02:18
neillcdjango's built in message compilation actually supports at least one locale that babel does not02:18
lifelessbut we're outside the django ecosystem for much of openstack [for better or worse]02:19
neillcI am a bit vague on exactly how compilation is done, beyond knowing it has something to do with transifex :)02:19
neillcandreas jaeger knows more about that02:20
*** Drago has quit IRC02:21
*** amotoki_ has joined #openstack-horizon02:24
*** yingjun has quit IRC02:25
*** bpokorny has joined #openstack-horizon02:26
*** yingjun has joined #openstack-horizon02:29
*** amotoki_ has quit IRC02:30
*** kztsv_mbp has quit IRC02:31
*** kiran-r has joined #openstack-horizon02:33
*** tjones1 has quit IRC02:39
*** ducttape_ has joined #openstack-horizon02:45
*** jamielennox is now known as jamielennox|away02:46
*** Longgeek has joined #openstack-horizon02:47
*** jamielennox|away is now known as jamielennox02:53
*** ducttape_ has quit IRC02:56
*** stevemar has joined #openstack-horizon03:01
*** ducttape_ has joined #openstack-horizon03:02
openstackgerritRichard Jones proposed openstack/horizon: Fix enabled/dependency relationship  https://review.openstack.org/19340103:03
*** wuhg has joined #openstack-horizon03:03
*** andrewbogott has joined #openstack-horizon03:04
*** jingjing_ren has quit IRC03:08
*** ducttape_ has quit IRC03:12
openstackgerritRichard Jones proposed openstack/horizon: Fix enabled/dependency relationship in enabled/_10_project.py  https://review.openstack.org/19340103:17
openstackgerritRichard Jones proposed openstack/horizon: Fix enabled/dependency relationship in project dashboard  https://review.openstack.org/19340103:17
*** annashen has joined #openstack-horizon03:17
openstackgerritRichard Jones proposed openstack/horizon: Fix enabled/dependency relationship in project dashboard  https://review.openstack.org/19340103:18
*** yingjun has quit IRC03:19
*** Longgeek has quit IRC03:19
*** stevemar has quit IRC03:22
*** annashen has quit IRC03:22
*** amotoki_ has joined #openstack-horizon03:25
*** stevemar has joined #openstack-horizon03:26
*** amotoki_ has quit IRC03:30
*** rm_work|away has joined #openstack-horizon03:31
*** rm_work|away is now known as rm_work03:31
*** rm_work has joined #openstack-horizon03:31
*** bpokorny has quit IRC03:40
*** jwy has quit IRC03:42
*** kiran-r has quit IRC03:44
*** andrewbogott has quit IRC03:45
*** alexvictorchan has joined #openstack-horizon03:46
*** Longgeek has joined #openstack-horizon04:00
*** Longgeek has quit IRC04:06
*** yingjun has joined #openstack-horizon04:07
*** Longgeek has joined #openstack-horizon04:08
*** yingjun has quit IRC04:11
*** Longgeek_ has joined #openstack-horizon04:12
*** fedexo has joined #openstack-horizon04:12
*** Longgeek has quit IRC04:15
*** amotoki_ has joined #openstack-horizon04:26
*** jbell8 has joined #openstack-horizon04:30
*** amotoki_ has quit IRC04:31
*** masco has joined #openstack-horizon04:36
*** andrewbogott has joined #openstack-horizon04:38
*** andrewbogott has joined #openstack-horizon04:38
*** andrewbogott has quit IRC04:39
*** jtomasek has joined #openstack-horizon04:42
*** hurgleburgler has quit IRC04:54
*** kztsv_mbp has joined #openstack-horizon04:57
*** alexvictorchan has quit IRC05:01
*** kztsv_mbp has quit IRC05:01
*** kztsv_mbp has joined #openstack-horizon05:07
*** dsneddon has joined #openstack-horizon05:14
*** jprovazn has joined #openstack-horizon05:16
*** jbell8 has quit IRC05:20
*** amotoki_ has joined #openstack-horizon05:27
*** Drago1 has joined #openstack-horizon05:28
*** amotoki_ has quit IRC05:31
*** kztsv_mbp has quit IRC05:34
*** Drago1 has quit IRC05:42
*** sayan has quit IRC05:48
*** belmoreira has joined #openstack-horizon05:57
*** absubram has joined #openstack-horizon06:01
*** absubram has quit IRC06:01
*** kiran-r has joined #openstack-horizon06:02
*** jbell8 has joined #openstack-horizon06:05
openstackgerritOpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/19341606:08
*** stevemar has quit IRC06:10
openstackgerritOpenStack Proposal Bot proposed openstack/django_openstack_auth: Imported Translations from Transifex  https://review.openstack.org/19342006:11
*** annashen has joined #openstack-horizon06:20
*** e0ne has joined #openstack-horizon06:25
*** annashen has quit IRC06:25
*** mrunge has joined #openstack-horizon06:25
*** e0ne has quit IRC06:31
*** jtomasek has quit IRC06:32
*** juggler has quit IRC06:43
*** MaxV has joined #openstack-horizon06:49
*** fedexo has quit IRC06:55
svashekamrunge, hi. there's one test failing in integration suit. is there a fast way to disable it while investigating, so it wouldn't -1 everyone?07:03
mrungesvasheka, I didn't saw it's back to voting07:04
mrunge(which is good!)07:04
svashekamrunge, yeah, did all required yesterday)07:04
svashekamrunge, but now its -1 every one :)07:04
mrungesvasheka, congrats!07:04
svashekamrunge, thanks!07:04
mrungesvasheka, I'd say: let's find the failing test quickly and just disable that one07:05
svashekamrunge, already found test, already investigating reasons, just don't know how to disable exact test07:05
mrungesvasheka, something like @skiptest?07:06
mrungesvasheka, we have some tests deactivated in horizon, for whatever reasons07:06
*** chlong has quit IRC07:06
svashekamrunge, ok, I'll look into it07:06
mrungesvasheka, I'd be mainly around here, but unfortunately quite busy with other stuff07:07
mrungesvasheka, if you have a patch, please ping me to review it07:07
svashekamrunge, sure, I'll just ping you if review will required07:07
mrungeyes please!07:07
mrungesvasheka, we'll find folks to review it quickly07:07
svashekamrunge, great.07:08
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:16
*** markus_z has joined #openstack-horizon07:16
mrungesvasheka, could you please open a bug on launchpad07:17
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:17
mrunge(to mark the bug fixed by your commit?)07:18
mrungesvasheka, that makes the whole thing a bit more trackable07:18
mrungethis might be an issue outside of horizon07:18
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:19
mrungeawesome, I just saw the updated commit message07:19
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:20
svashekamrunge, updated it again)07:21
mrungesvasheka, final nit: could you please add a TDOD(svasheka): .... to the patch?07:21
mrungeit's easy to find TODO items there07:22
mrungewhich marks it clearly as: there is work to do07:22
svashekamrunge, sure.07:22
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:23
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:23
svashekamrunge, mm is it TDOD or TODO, neither of it highlits. sorry I'm not familiar with the process :)07:24
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:24
mrungeah, I meant to add TODO to the python file07:24
svashekamrunge, oh that, sure07:24
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:25
mrungeit's TODO, and not TDOD (which was just due to my still sleeping fingers)07:25
mrungesorry about that07:25
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343807:26
mrungesvasheka, thank you. Now let's see, what jenkins thinks07:28
*** Ala has joined #openstack-horizon07:29
svashekamrunge, yeah, hopefully his on my side07:29
*** zz_ttrifonov is now known as ttrifonov07:33
*** bluex-pl has joined #openstack-horizon07:34
*** ygbo has joined #openstack-horizon07:45
*** romainh has joined #openstack-horizon07:46
*** jamielennox is now known as jamielennox|away08:00
*** ZZelle has quit IRC08:03
*** ZZelle has joined #openstack-horizon08:03
*** jcoufal has joined #openstack-horizon08:06
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343808:11
mrungesvasheka, you were faster than me :)08:13
svashekamrunge, :)08:13
openstackgerritsvasheka proposed openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343808:13
*** e0ne has joined #openstack-horizon08:18
*** rushiagr_away is now known as rushiagr08:18
*** e0ne has quit IRC08:25
*** amotoki_ has joined #openstack-horizon08:29
*** mpavlase has joined #openstack-horizon08:30
*** aix has joined #openstack-horizon08:32
*** alexpilotti has joined #openstack-horizon08:33
*** amotoki_ has quit IRC08:34
*** ankit_ag has joined #openstack-horizon08:41
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: Remove current consumer in QoS spec edit  https://review.openstack.org/19345608:43
*** Longgeek_ has quit IRC08:51
*** Longgeek has joined #openstack-horizon08:51
svashekamrunge, jenkins satisfied09:00
svashekamrunge, has to go afk for some time, though09:01
*** svasheka has quit IRC09:01
*** wznoinsk has quit IRC09:03
*** bluex-pl has quit IRC09:04
*** bluex-pl has joined #openstack-horizon09:04
*** wznoinsk has joined #openstack-horizon09:05
*** bluex-pl has quit IRC09:07
*** bluex-pl has joined #openstack-horizon09:08
*** kztsv_mbp has joined #openstack-horizon09:09
*** akrivoka has joined #openstack-horizon09:10
*** juggler has joined #openstack-horizon09:14
*** kztsv_mbp has quit IRC09:20
*** annashen has joined #openstack-horizon09:22
*** jbell8 has quit IRC09:26
*** annashen has quit IRC09:27
*** e0ne has joined #openstack-horizon09:28
*** hexlibris has joined #openstack-horizon09:28
*** amotoki_ has joined #openstack-horizon09:30
mascois the jenkins normal now?09:31
mascocan i do recheck now?09:31
*** amotoki_ has quit IRC09:34
*** jasondotstar has joined #openstack-horizon09:41
mrungemasco, it's not09:43
mrungemasco, https://review.openstack.org/#/c/193438/ needs to be merged09:43
mascomrunge, thanks :)09:43
mrungeany core here to ack https://review.openstack.org/#/c/193438/ ?09:43
mrungezhenguo, ? are you still available?09:45
*** tosky has joined #openstack-horizon09:45
*** dsneddon has quit IRC09:47
mascoless number of cores in this time zone :(09:48
mrungeyes09:48
mrungerobcresswell seems to be away09:48
mascoyes09:48
mrungeamotoki, are you still there and could have a look at https://review.openstack.org/#/c/193438/ ?09:49
mrungeit's currently blocking the gate for us09:49
*** e0ne is now known as e0ne_09:52
*** romainh has quit IRC09:53
*** e0ne_ is now known as e0ne09:54
*** bluex-pl has quit IRC10:04
*** bluex-pl has joined #openstack-horizon10:07
*** amotoki_ has joined #openstack-horizon10:07
*** romainh has joined #openstack-horizon10:08
*** kztsv_mbp has joined #openstack-horizon10:17
*** kztsv_mbp has quit IRC10:22
*** romainh has quit IRC10:24
*** dsneddon has joined #openstack-horizon10:40
*** svasheka has joined #openstack-horizon10:40
openstackgerritVlad Okhrimenko proposed openstack/horizon: Logout user if he has no valid tokens  https://review.openstack.org/14248110:42
*** bluex-pl has quit IRC11:01
*** wuhg has quit IRC11:04
robcresswellHey there. Timezones -.- I had to go to an internal thing all day yesterday11:08
robcresswellsqchen: asahlin: clu_: ^^11:08
robcresswellsqchen: asahlin: clu_: Any cleanup work youd like me to help out with?11:08
*** jprovazn has quit IRC11:10
*** jprovazn has joined #openstack-horizon11:12
robcresswellmrunge: I'm around now.11:14
mascorobcresswell, we were looking for you for your +2 on this patch https://review.openstack.org/#/c/193438/11:19
mascothanks11:19
*** e0ne is now known as e0ne_11:19
robcresswellHmm11:21
robcresswellI think today is going to be "review day"11:21
mascogood, i have four five patches for review, you can go through ;)11:23
*** ala_ has joined #openstack-horizon11:24
robcresswellmasco: Will do!11:24
mascorobcresswell, thank you!!11:25
*** akrivoka has quit IRC11:27
*** Ala has quit IRC11:27
mrungethanks robcresswell11:29
*** e0ne_ has quit IRC11:29
*** samueldmq has joined #openstack-horizon11:32
samueldmqhi guys, does Horizon support domain scoped tokens ?11:32
samueldmqI think it does not, I just want to confirm that info :)11:33
mrungesamueldmq, you're right, it does not11:35
samueldmqmrunge: thanks for your quick reply, have a nice day11:36
mrungesamueldmq, likewise!11:37
tsufieva question to the experts in Horizon's angular.js refactoring: if a controller resides in tech-debt/ folder, does it mean that I shouldn't add anything to it (e.g. to fix some bug)?11:40
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: Remove current QoS spec in volume type  https://review.openstack.org/19350411:42
tsufievrobcresswell, Rob, sorry for disturbing, but do you know the policies here ^^^ by chance?11:42
*** lblanchard has joined #openstack-horizon11:43
*** jasondotstar has quit IRC11:43
robcresswelltsufiev: If it's a bug, I think it should still be fixed11:44
robcresswelltsufiev: The tech-debt folder is just temporary while things are refactored/ moved around I believe, but the code may still be used11:45
tsufievrobcresswell, yes, sounds reasonable11:45
robcresswelltsufiev: :D11:45
*** mrunge has quit IRC11:54
zhenguomrunge: yes11:56
openstackgerritMerged openstack/horizon: Skip test_sahara_image_registry while investigating reasons  https://review.openstack.org/19343811:56
zhenguomrunge: ping back11:57
*** akrivoka has joined #openstack-horizon11:57
*** asahlin_away has quit IRC12:00
*** rbertram has quit IRC12:00
*** asahlin has joined #openstack-horizon12:01
*** rbertram has joined #openstack-horizon12:02
*** romainh has joined #openstack-horizon12:03
*** bluex-pl has joined #openstack-horizon12:07
*** e0ne has joined #openstack-horizon12:08
*** radez_g0n3 is now known as radez12:09
*** masco has quit IRC12:14
*** ducttape_ has joined #openstack-horizon12:16
*** yamamoto has quit IRC12:19
*** jbell8 has joined #openstack-horizon12:27
robcresswellgate should be alive again after that patch merged12:28
*** ducttape_ has quit IRC12:30
*** jbell8 has quit IRC12:31
*** raildo has joined #openstack-horizon12:41
*** Longgeek has quit IRC12:41
*** Longgeek has joined #openstack-horizon12:42
*** jasondotstar has joined #openstack-horizon12:43
*** mrunge has joined #openstack-horizon12:48
*** zhenguo has quit IRC12:51
*** ankit_ag has quit IRC12:51
*** kztsv_mbp has joined #openstack-horizon12:56
*** yamamoto has joined #openstack-horizon12:57
*** yamamoto has quit IRC12:57
*** yamamoto has joined #openstack-horizon12:57
*** Longgeek has quit IRC12:57
*** Longgeek has joined #openstack-horizon12:59
*** dboik has joined #openstack-horizon13:03
*** julim has joined #openstack-horizon13:05
*** HenryG has quit IRC13:05
*** dboik_ has joined #openstack-horizon13:05
*** HenryG has joined #openstack-horizon13:05
*** kztsv_mbp has quit IRC13:06
*** HenryG has quit IRC13:06
*** petertr7_away is now known as petertr713:06
*** julim has quit IRC13:07
*** HenryG has joined #openstack-horizon13:07
*** kztsv_mbp has joined #openstack-horizon13:07
*** julim has joined #openstack-horizon13:08
*** dboik has quit IRC13:08
*** kztsv_mbp has quit IRC13:12
*** yamamoto has quit IRC13:17
*** pauloewerton has joined #openstack-horizon13:19
openstackgerritPaulo Ewerton Gomes Fragoso proposed openstack/horizon: Fix function name reference in cinder.service.spec.js  https://review.openstack.org/19353413:22
*** dguerri` is now known as dguerri13:26
*** andrewbogott has joined #openstack-horizon13:27
*** ducttape_ has joined #openstack-horizon13:27
*** yamamoto has joined #openstack-horizon13:27
*** peristeri has joined #openstack-horizon13:30
*** kiran-r has quit IRC13:34
*** mpavlase has quit IRC13:34
*** jtriley has joined #openstack-horizon13:35
*** akrivoka has quit IRC13:36
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS Cleanup - style cleanup for Launch Instance Network Step  https://review.openstack.org/19354813:39
asahlinrobcresswell:  Hi Rob, Cindy and I have been walking through the Create Instance Steps.   So to avoid overlap, I would say anything outside of that I think is fair game.13:39
*** ducttape_ has quit IRC13:39
*** tvanderwiel has joined #openstack-horizon13:39
robcresswellasahlin: Sure thing, thanks13:40
robcresswellasahlin: On a review spree atm, anything need looking at?13:40
*** dguerri is now known as dguerri`13:40
*** andrewbogott has left #openstack-horizon13:40
asahlinrobcresswell:  Nothing particular...   Just have a couple of JP code shuffling patches up13:41
asahlinrobcresswell: clu_: ongk:  FYI starting to JP the Launch Instance Security group step.13:42
asahlinrobcresswell: clu_: ongk: Thinking it might be a good idea for us 4 to communicate what we are grabbing next so we dont step on each other.13:42
*** dguerri` is now known as dguerri13:45
openstackgerritMerged openstack/horizon: Removing unnecessary test setting of dashboards  https://review.openstack.org/19332913:45
*** Drago has joined #openstack-horizon13:47
*** yamamoto_ has joined #openstack-horizon13:47
*** Drago has quit IRC13:47
*** Drago has joined #openstack-horizon13:48
robcresswellasahlin: Agreed, although I can't stick around late today (Friday = Beer day). I'll see if I can hang around late on Monday to catch everyone in the US and r1chardj0n3s too13:48
*** yamamoto has quit IRC13:51
*** drupalmonkey has joined #openstack-horizon13:52
*** bluex-pl has quit IRC13:59
*** Piet has joined #openstack-horizon13:59
*** bluex-pl has joined #openstack-horizon14:00
*** akrivoka has joined #openstack-horizon14:04
*** morganfainberg is now known as morgan-devserver14:06
*** ducttape_ has joined #openstack-horizon14:07
openstackgerritMerged openstack/horizon: Revert "added a 'shared' column in FW policy table"  https://review.openstack.org/19330414:07
*** morgan-devserver is now known as CaptainMorgan14:08
*** bethelwell has joined #openstack-horizon14:10
*** bluex-pl has quit IRC14:12
*** stevemar has joined #openstack-horizon14:24
*** MaxV has quit IRC14:24
*** garthb_ has joined #openstack-horizon14:27
*** garthb has joined #openstack-horizon14:27
asahlinrobcresswell: and you can't be late for Beer day!!   I know I would never forgive myself14:27
*** archers has joined #openstack-horizon14:29
*** stevemar is now known as stevedoor14:29
*** sjmc7 has joined #openstack-horizon14:31
*** josecastroleon has quit IRC14:31
openstackgerritYves-Gwenael Bourhis proposed openstack/horizon: Do not use a mutable as default argument  https://review.openstack.org/19357514:32
*** dboik_ has quit IRC14:34
*** jasondotstar has quit IRC14:35
*** jasondotstar has joined #openstack-horizon14:37
*** tvanderwiel has quit IRC14:41
*** dguerri is now known as dguerri`14:44
*** yamamoto_ has quit IRC14:48
*** Piet has quit IRC14:49
*** archers has quit IRC14:50
*** dguerri` is now known as dguerri14:50
openstackgerritMerged openstack/horizon: JSCS cleanup - horizon/static/framework conf and util  https://review.openstack.org/18898714:51
*** MaxV has joined #openstack-horizon14:52
david-lylesamueldmq: there is a set of patches to support domain-scoped tokens, but they have not merge yet14:52
*** absubram has joined #openstack-horizon14:52
*** yamamoto has joined #openstack-horizon14:53
david-lylehttps://review.openstack.org/#/c/141153/ and https://review.openstack.org/#/c/148082/14:53
*** Longgeek has quit IRC14:53
*** absubram has quit IRC14:54
*** Longgeek has joined #openstack-horizon14:54
*** absubram has joined #openstack-horizon14:55
samueldmqdavid-lyle: nice thanks !14:55
*** clu_ has joined #openstack-horizon14:56
openstackgerritGeorge Peristerakis proposed openstack/horizon: Display event stream in the instance audit tab  https://review.openstack.org/18813414:58
*** Ephur has joined #openstack-horizon14:59
*** rushiagr is now known as rushiagr_away15:02
*** ala_ has quit IRC15:03
*** bpokorny has joined #openstack-horizon15:04
*** yamamoto has quit IRC15:06
*** jbell8 has joined #openstack-horizon15:06
*** jbell8 has quit IRC15:07
*** jbell8 has joined #openstack-horizon15:07
*** belmoreira has quit IRC15:08
*** dboik has joined #openstack-horizon15:10
*** yamamoto has joined #openstack-horizon15:13
toskysvasheka: hi, don't you mind if I try a patch to fix https://bugs.launchpad.net/horizon/+bug/1466744 (test_image_register_unregister failing)?15:14
openstackLaunchpad bug 1466744 in OpenStack Dashboard (Horizon) "Integration test test_image_register_unregister failing gate" [Undecided,In progress] - Assigned to svasheka (svasheka)15:14
*** mou has joined #openstack-horizon15:15
*** MaxV has quit IRC15:15
*** tvanderwiel has joined #openstack-horizon15:18
*** tyr has joined #openstack-horizon15:18
openstackgerritLuigi Toscano proposed openstack/horizon: wait until the image is registered in Sahara image test  https://review.openstack.org/19359215:19
svashekatosky, sure. working on it also. haven't done anything useful yet, just investigating.15:22
toskysvasheka: thanks; the patch is the one above, if it does not work... I'm out of ideas15:22
toskyalso because, *of course*, I can't reproduce it locally15:22
svashekatosky, same here.15:23
*** yamamoto has quit IRC15:23
*** petertr7 is now known as petertr7_away15:24
toskysvasheka: oh, interesting - what is the environment, if I can ask? I'm on Fedora 21 right now (dependencies from virtualenv/pip when testing, not system packages)15:24
svashekatosky, ubuntu 14.0415:24
toskysvasheka: like the gate15:25
toskygrrr15:25
svashekatosky, yeah I think something with performance of gate15:26
svashekatosky, beter/worse than mine15:26
*** jasondotstar has quit IRC15:26
svashekatosky, and that why it fails15:26
toskysvasheka: so let's hope that the dirty "active polling" hack solution I put on will work15:26
*** absubram has quit IRC15:26
svashekatosky, holding fingers :)15:27
*** annashen has joined #openstack-horizon15:27
*** jasondotstar has joined #openstack-horizon15:28
*** hurgleburgler has joined #openstack-horizon15:32
openstackgerritVlad Okhrimenko proposed openstack/horizon: Logout user if he has no valid tokens  https://review.openstack.org/14248115:32
*** annashen has quit IRC15:32
*** yamamoto has joined #openstack-horizon15:35
*** kztsv_mbp has joined #openstack-horizon15:41
*** jtriley has quit IRC15:47
*** gary-smith has quit IRC15:49
*** masco has joined #openstack-horizon15:50
*** sjmc7 has quit IRC15:50
*** kiran-r has joined #openstack-horizon15:51
*** hurgleburgler has quit IRC15:51
*** hurgleburgler has joined #openstack-horizon15:51
*** ygbo has quit IRC15:52
*** sjmc7 has joined #openstack-horizon15:53
openstackgerritTyr Johanson proposed openstack/horizon: Relocate launch-instance to project/workflows/  https://review.openstack.org/19244415:53
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS Cleanup - style cleanup for Launch Instance Security Groups Step  https://review.openstack.org/19360815:54
*** jtriley has joined #openstack-horizon15:54
asahlinrobcresswell: clu_: ongk:  FYI starting to JP the Launch Instance Sources step.15:56
clu_thanks asahlin!15:57
*** belmoreira has joined #openstack-horizon15:58
openstackgerritRomain Hardouin proposed openstack/horizon: Show datastores and versions for Trove  https://review.openstack.org/16319616:01
*** alexvictorchan has joined #openstack-horizon16:03
*** markus_z has quit IRC16:06
*** masco has quit IRC16:08
*** nlahouti has joined #openstack-horizon16:09
*** e0ne has quit IRC16:10
openstackgerritMerged openstack/horizon: Fix function name reference in cinder.service.spec.js  https://review.openstack.org/19353416:10
*** gyee has joined #openstack-horizon16:14
peristerirobcresswell, Hi Rob, do you have the time to look into https://review.openstack.org/#/c/173027/ ?16:15
openstackgerritLuigi Toscano proposed openstack/horizon: Wait until the image is registered in Sahara image test  https://review.openstack.org/19359216:15
romainhabramley: hi, I've uploaded a "policy checks" version of bp trove-list-datastores-and-versions  https://review.openstack.org/16319616:18
*** kiran-r has quit IRC16:21
*** jtriley has quit IRC16:21
*** jtriley has joined #openstack-horizon16:23
*** petertr7_away is now known as petertr716:28
*** raildo has quit IRC16:29
*** dguerri is now known as dguerri`16:29
*** raildo has joined #openstack-horizon16:30
*** kiran-r has joined #openstack-horizon16:32
*** fedexo has joined #openstack-horizon16:32
*** yamamoto has quit IRC16:36
*** rm_work is now known as rm_work|away16:37
*** asahlin is now known as asahlin_away16:38
*** dguerri` is now known as dguerri16:45
*** dguerri is now known as dguerri`16:46
*** jcoufal has quit IRC16:47
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - style guide cleanup for action-list  https://review.openstack.org/18899516:48
*** ZZelle_ has joined #openstack-horizon16:48
*** kztsv_mbp has quit IRC16:50
*** ZZelle__ has joined #openstack-horizon16:51
*** rm_work|away is now known as rm_work16:53
*** kztsv_mbp has joined #openstack-horizon16:55
*** hurgleburgler has quit IRC16:55
*** hurgleburgler has joined #openstack-horizon16:55
*** raildo has quit IRC16:55
*** raildo has joined #openstack-horizon16:56
*** bradjones has quit IRC16:58
*** bradjones has joined #openstack-horizon16:58
*** bradjones has quit IRC16:58
*** bradjones has joined #openstack-horizon16:58
*** bethelwell has quit IRC16:59
*** doug-fish has joined #openstack-horizon17:01
abramleyromainh - i asked dloi to take a look at it - I am working on other things right now17:01
romainhabramley: ok great, thank you17:02
*** belmoreira has quit IRC17:03
*** jingjing_ren has joined #openstack-horizon17:04
ducttape_I've had a horizon lbaas patch awaiting review for a while, is there something I could do to help it proceed?  Is having lbaas setup an impediment to getting horizon reviews?   We have more lbaas horizon work that will be coming along soon too.17:04
espdavid-lyle: MEH49NMCTP917:05
*** lblanchard has quit IRC17:06
*** tvanderwiel has quit IRC17:07
*** romainh has left #openstack-horizon17:09
*** jtomasek has joined #openstack-horizon17:11
*** bradjones has quit IRC17:11
*** klindgren has joined #openstack-horizon17:12
*** kfox1111 has joined #openstack-horizon17:12
*** bradjones has joined #openstack-horizon17:12
*** bradjones has quit IRC17:12
*** bradjones has joined #openstack-horizon17:12
*** jingjing_ren has quit IRC17:16
*** kztsv_mbp has quit IRC17:17
*** sqchen has joined #openstack-horizon17:20
dloiromainh: I am wrapping up a few things and hopefully will get to the review soon!17:21
*** zul has quit IRC17:25
*** zul has joined #openstack-horizon17:25
*** annashen has joined #openstack-horizon17:27
*** mrunge has quit IRC17:27
*** dscottsf has joined #openstack-horizon17:27
*** dscottsf has quit IRC17:28
*** ybathia has joined #openstack-horizon17:30
*** ZZelle_ has quit IRC17:32
*** ZZelle__ has quit IRC17:33
*** tqtran has joined #openstack-horizon17:35
*** crobertsrh has quit IRC17:36
*** yamamoto has joined #openstack-horizon17:37
*** e0ne has joined #openstack-horizon17:38
*** bpokorny_ has joined #openstack-horizon17:41
*** yamamoto has quit IRC17:42
kfox1111tqtran: https://www.youtube.com/watch?v=N3onNfjf4uY&feature=youtu.be :)17:42
*** jingjing_ren has joined #openstack-horizon17:43
*** crobertsrh has joined #openstack-horizon17:43
*** bpokorny has quit IRC17:43
*** lblanchard has joined #openstack-horizon17:44
tqtrankfox1111: :) ooooo nice17:44
tqtranlooks like your colspan for the detail section is off though17:44
*** Longgeek has quit IRC17:45
openstackgerritMerged openstack/horizon: Update version for Liberty  https://review.openstack.org/19240317:46
openstackgerritTimur Sufiev proposed openstack/horizon: Enable streaming while uploading images to Glance via Horizon  https://review.openstack.org/16696917:47
kfox1111yeah. I was planning on fixing that.17:47
kfox1111same with the description. its vcentered.17:47
kfox1111I figure those are all consmetic and easy to fix.17:48
*** tvanderwiel has joined #openstack-horizon17:48
david-lylekfox1111: nice17:49
tqtranyep, looks great! good job!17:49
kfox1111thanks again guys for all the help. :)17:49
openstackgerritCindy Lu proposed openstack/horizon: JSCS Cleanup - style guide cleanup for Keypair step  https://review.openstack.org/19365817:49
*** jwy has joined #openstack-horizon17:50
tqtranr1chardj0n3s, tyr, sqchen: ping pong guys17:50
kfox1111I'll try and submit a review for the few bits needed to make the dialog reusable. THen the rest can be a plugin I think.17:50
sqchenHi tqtran17:50
tqtranwanted to sit down with you guys have and a chat about file structure again....17:50
tqtranhttps://review.openstack.org/#/c/190852/17:50
sqchensure17:50
tqtranregarding richard's comments17:50
tqtranjust wanted to make sure we're all on the same page and that it still fits with the autodiscovery work you are doing sean17:51
sqchenYesterdat Tyr and me had a discussion on this topic, we have some idea, and tyr will put up a patch to resolve the issue.17:52
kfox1111thought that raises a question. Is it possible to have the ui like in the video where the Catalog group under Projects is in an external plugin?17:54
sqchenThe goal here is, if someone plugin some new dashboard, there should no need to change any other source code, it should be automatically integrated to the system after retart the server.17:54
*** jasondotstar has quit IRC17:56
tqtrankfox1111: it should be possible17:56
tqtrankfox1111: say you have some 3rd party service sitting on some port, you have 2 options to make that work: 1. a proxy or 2. enable CORS17:57
tqtranonce you have that set up, create a horizon API wrapper for it and you're gtg17:57
tqtransqchen: yes i agree17:58
tqtrani also have a proposition that i think will work, does tyr have something up already?17:58
sqchenlet me check.17:58
*** devananda has joined #openstack-horizon17:58
devanandadavid-lyle: ping17:59
*** jasondot_ has joined #openstack-horizon17:59
sqchenTyr’s change is up yet.18:00
*** jprovazn has quit IRC18:01
kfox1111tqtran: I've been talking with the other app-catalog folks to enable cors on apps.openstack.org.18:01
kfox1111so that sounds feasable.18:01
tqtran+1 nice!18:02
*** akrivoka has quit IRC18:03
kfox1111for a while though, since things are in quick development, it would be nice if you could upgrade the plugin code without needing to upgrade horizon. since right now we have just flat json, and are starting to look at things like elastic search.18:03
ducttape_TravT- ping18:05
tqtrankfox1111: not sure i follow. plugin code as in the demo code? or the horizon plugin mechanism for new angular dashboards?18:06
kfox1111as in the demo code.18:09
kfox1111but it should still show up under the Projects section.18:10
openstackgerritTimur Sufiev proposed openstack/horizon: Enable streaming while uploading images to Glance via Horizon  https://review.openstack.org/16696918:10
kfox1111is there a predefined class for a table cell to valign=top?18:10
*** tosky has quit IRC18:12
*** mrunge has joined #openstack-horizon18:12
david-lyleducttape_: TravT is on vacation18:13
david-lyledevananda: pong18:13
ducttape_thanks david-lyle18:13
david-lyleback on Tues or Wed I think18:13
kfox1111ugg... I just noticed the heat password dialog box is still there in Kilo. :/18:13
kfox1111Is there still no way to turn that off? :/18:13
kfox1111We've been using trusts for over a year, and its really lame to have to put a dummy value in the box every time.18:14
*** akrivoka has joined #openstack-horizon18:14
*** dscottsf has joined #openstack-horizon18:15
*** dscottsf_ has joined #openstack-horizon18:15
*** dscottsf_ has quit IRC18:15
*** akrivoka has quit IRC18:15
tqtrandavid-lyle, clu_ : can you guys help push this patch through? :D its kinda needed and sitting there for quite some time18:17
clu_tqtran: patch plz18:17
*** doug-fish has left #openstack-horizon18:18
*** alexpilotti has quit IRC18:18
tqtranhttps://review.openstack.org/#/c/185191/18:19
tqtranoh right... lol18:19
tqtrani forgot you guys dont read minds18:19
*** dscottsf has quit IRC18:19
openstackgerritThai Tran proposed openstack/horizon: Adding angular dashboard plugin mechanism  https://review.openstack.org/19367118:20
tqtransqchen, tyr, r1chardj0n3s: this patch is what i have in mind for fixing our problem, let me know your thoughts by commenting on the patch18:20
sqchenI am looking into right now…18:21
openstackgerritLuigi Toscano proposed openstack/horizon: Wait until the image is registered in Sahara image test  https://review.openstack.org/19359218:23
openstackgerritCindy Lu proposed openstack/horizon: JSCS Cleanup - style cleanup for Flavor Step  https://review.openstack.org/19282818:26
devanandadavid-lyle: have a few to chat about the ironic dashboard proposed by Niu Zhengguo?18:28
david-lyledevananda: sure18:29
*** kiran-r has quit IRC18:29
devanandadavid-lyle: there's been some discussion in -infra and the ML. tldr; I dont think I knew about it. I also didn't know Niu was a horizon core ...18:30
devanandadavid-lyle: were you aware of the work // if so, what's your opinion on it?18:31
*** mou has quit IRC18:31
david-lyleyeah, the two efforts started in isolation, once I discovered Niu was working on another implementation, I pointed him to krotscheck18:32
david-lyleI think neither effort was publicized and thus the duplication18:32
* krotscheck seems to recall talking about the ironic-webclient in vancouver, over mailing lists, in specs....18:32
david-lylekrotscheck: I know Niu wasn't in vancouver18:33
* krotscheck hasn't written a single line of code on that without the other teams knowing what's going on.18:33
devanandadavid-lyle: yea, as krotscheck says, ironic-core knew about his work months ago, and we dicussed it in YVR18:33
devanandadavid-lyle: whereas Niu proposed this to governance before I even knew about the project18:33
david-lylethere's a lot of that going on :/18:33
david-lylePTL = last to know18:33
devanandadavid-lyle: that's no justificatoin18:34
david-lyleI'm not trying to find fault, I'm just trying to explain how we got here18:34
david-lyleat least my understanding of it18:34
david-lyledevananda: I fully agree18:34
devanandadavid-lyle: *nod* i appreciate that. I'm not trying to point fingers -- just want to figure out how to move forward18:34
david-lylesure18:34
devanandaand to do that, I need to know where we are now18:35
devanandalike -- does this project have the support of horizon?18:35
devanandaor is it totally off in a corner?18:35
david-lyleso the first I had heard of the ironic work by Niu was the proposal to project-config18:35
david-lyleso it's been done in isolation18:35
devananda... great. at least you and I were both surprised at the same time18:35
david-lyleyes18:36
david-lylethat's less than ideal18:36
*** stevedoor has quit IRC18:40
devanandaas far as project alignment goes, aside from tripleo/tuskar, I haven't really seen much interest expressed in a horizon panel for ironic18:40
devanandait's not a user-facing project. ie, we expect users to just use nova -- only operators will need a panel for ironic18:41
openstackgerritGeorge Peristerakis proposed openstack/horizon: Add py34 env  https://review.openstack.org/17834218:41
*** jingjing_ren has quit IRC18:42
david-lyleI've had a few inquiries from different companies, but the use cases haven't always been clear18:42
devanandaditto - and when i've drilled down, it has usually been a misperception18:42
*** nlahouti has quit IRC18:43
david-lyleI certainly think going through nova can handle the majority of use cases18:43
david-lyleI really need to go through the proposed project and see what is being attempted to deliver18:44
devanandaditto18:44
david-lyleIf the use cases make sense, I would favor sharing a common library component for horizon and ironic-webclient use18:45
david-lylerather than a second implementation18:45
devanandaas far as which project team takes on the horizon panel (regardless of current proposal) do you have a strong preference if that's the horizon team or the ironic team?18:46
*** Longgeek has joined #openstack-horizon18:46
devanandasharing common libs +10018:46
*** clu_ has quit IRC18:46
david-lyleI've been advocating a stronger tie-in from the service teams, like ironic18:47
david-lylethe horizon scope is too large already18:47
david-lyleI have no issue with ironic owning it18:47
devanandaack18:48
david-lylewhat I have suggested in other instances is either a shared core or horizon attempting to provide reviews around UX and compatibility with Horizon18:48
devanandaif we accept it, i'll probably create a subteam with its own cores18:48
*** sqchen has quit IRC18:49
*** sqchen has joined #openstack-horizon18:49
devanandasince none of the current ironic core are UI/UX devs, or much a part of horizon community, that team could be seeded with horizon folks18:49
devananda*some horizon folks18:49
david-lyleI think that makes sense18:49
david-lylemy biggest goal is to not slow down progress on UI projects by just whole sale taking them into the horizon project18:50
tyrHi tqtran. I don't think your patch will be necessary.18:50
devanandamy main concern is that none of the current ironic cores take any interest in it18:50
devanandabut it gets dropped on us and we're left with the responsibility for it18:51
david-lylethat can be an issue too18:51
david-lyleif it needs a home, we can take it, but I would want cross-project core list for sure18:51
devananda*nod*18:51
devanandaif ya'll, like docs and qa, are moving to a more self-service model (which I think is great, as long as the APIs are clear and documented and stable)18:52
devanandathen the right place for it is, indeed, in ironic project team18:52
david-lylethat's really the goal, but I will admit we're still working on a lot of the documentation18:52
devanandaso are qa and docs :)18:53
david-lylesure18:53
*** ZZelle_ has joined #openstack-horizon18:54
david-lyledevananda: I think ironic should own it unless you feel like it won't get any attention, but we could determine that down the road18:55
david-lyleespecially due to the standalone goal as well18:55
tqtrantyr: what do you have in mind?18:56
david-lyleI'll provide feedback to Niu and hopefully he can help/work with krotscheck, and the two teams can contribute to reviews18:56
*** jtomasek has quit IRC18:57
*** nlahouti has joined #openstack-horizon18:57
tqtranr1chardj0n3s: you awake yet?18:57
david-lyletqtran: 5 am in Melbourne on Saturday18:59
tyrtqtran: working on posting a patch now that shows it. But with the auto-collection, enabled dashboards are simply included into dashboard-app.18:59
tyrtqtran: dashboard.module.js ends up having no purpose and goes away.18:59
tqtrandavid-lyle: oh right....19:00
tqtranits sat their time19:00
devanandadavid-lyle: thanks. if Niu works with the rest of the team, this could be very useful. if not, it may be short lived19:00
tqtrantyr:  thats what i dont think is right19:00
david-lyledevananda: hopefully the former19:00
tqtrantyr: https://review.openstack.org/#/c/193401/4/openstack_dashboard/enabled/_10_project.py19:00
david-lyle:)19:00
tqtrantyr: lets talk now, you and sqchen free?19:01
tqtrandavid-lyle: you're welcome to chime in19:01
tqtranand anyone else19:01
tqtrancould you post hat awesome tinyurl hp room again?19:01
david-lyletqtran: we talkin' software?19:01
*** clu_ has joined #openstack-horizon19:01
openstackgerritTyr Johanson proposed openstack/horizon: Extending Horizon's plug-in mechanism to scss  https://review.openstack.org/19250019:01
openstackgerritTyr Johanson proposed openstack/horizon: WIP Applying auto-file-discovery  https://review.openstack.org/19159219:01
openstackgerritTyr Johanson proposed openstack/horizon: [WIP] Reorganize openstack_dashboard  https://review.openstack.org/19368119:01
tyrtqtran: sqchen: Talking about openstack_dashboard structure https://plus.google.com/hangouts/_/hp.com/ng-527625ab-ee619:03
tqtrandavid-lyle: file structure for angular dashboard plugins19:03
*** petertr7 is now known as petertr7_away19:04
tqtranBAM! first! i call first!19:04
tqtrando you have to host it tyr?19:05
tqtranok hangout is online, anyone interested can join19:06
tqtranwe have going to talk about angular file structure for dashboard plugin19:06
*** jtomasek has joined #openstack-horizon19:07
*** hurgleburgler1 has joined #openstack-horizon19:09
*** hurgleburgler has quit IRC19:09
tqtranhttps://review.openstack.org/#/c/193401/4/openstack_dashboard/enabled/_10_project.py19:11
*** jingjing_ren has joined #openstack-horizon19:12
*** petertr7_away is now known as petertr719:15
*** jingjing_ren has quit IRC19:17
*** crobertsrh has quit IRC19:19
*** bradjones has quit IRC19:20
*** bradjones has joined #openstack-horizon19:22
*** bradjones has quit IRC19:22
*** bradjones has joined #openstack-horizon19:22
*** crobertsrh has joined #openstack-horizon19:24
*** Sukhdev has joined #openstack-horizon19:28
*** annashen has quit IRC19:35
*** jtomasek has quit IRC19:37
*** amotoki_ has quit IRC19:41
*** crobertsrh has quit IRC19:43
*** crobertsrh has joined #openstack-horizon19:44
*** petertr7 is now known as petertr7_away19:45
*** ttrifonov is now known as zz_ttrifonov19:47
*** annashen has joined #openstack-horizon19:53
*** belmoreira has joined #openstack-horizon19:57
*** petertr7_away is now known as petertr720:01
kfox1111tqtran: why abandon it?20:03
*** Piet has joined #openstack-horizon20:03
tqtrankfox1111: talked to david-lyle, tyr, sqchen  and we decided on a different path20:04
tyrtqtran: just a thought...perhaps your identity panel should go into static/dashboard/identity for now...so that all the angular related code is in the same area...then we can move it all to /dashboards/ at the same time20:05
kfox1111ah. ok.20:05
tyrtqtran: Otherwise we will have the identity angular code in the "new" good place (/dashboards), but the project angular code is the "old" bad place (static/dashboard)20:06
*** stevemar has joined #openstack-horizon20:07
*** peristeri has quit IRC20:10
*** e0ne has quit IRC20:11
Piettqtran: can we chat about Add/Edit User modals on Monday?  I have cycles to do UX work on them next week.20:13
*** belmoreira has quit IRC20:14
*** crobertsrh has left #openstack-horizon20:19
tqtranPiet: yes, can you give me like 30m?20:19
tqtranon a call atm20:20
Piettqtran: Let's do this on Monday20:20
*** annashen has quit IRC20:23
tqtranok that sounds fine, what time?20:23
tqtrantyr: im fine with that as well, either way, as long as it gets merge :)20:24
PietI have meetings from 10:30 - 12PM PST and 1PM PST.  Free any other time20:25
tqtran1pm PST will be good20:25
*** annashen has joined #openstack-horizon20:25
tqtranare you free at 1pm pst? or did i miss read that?20:26
PietAnyone else want to join the UX meeting for the Add/Edit User modal?20:26
PietYou did...I'm also busy from 1-2PM PST to discuss a Unified CLI study20:27
PietHow about 2PM PST?20:27
tqtransounds grand20:27
tqtrani'll block it out now20:27
Pietk20:27
PietAnyone else want to attend this meeting?  Domains may need to be part of the discussion (treading lightly...)20:29
PietTyr: You may want to attend20:30
tqtranTyr got drafted20:30
tqtranlol20:30
*** julim has quit IRC20:31
tyrvery interested, but stuck in another meeting atm20:31
PietMaybe have Mathew Wood attend?20:31
Pietdavid-lyle?20:32
* tqtran finds david-lyle ducking under the table.20:32
PietHeh - no worries20:33
tqtrani think it will be fine with just the 2 of us, no need to drag other folks in20:34
david-lylePiet: huh?20:34
Pietdavid-lyle: Do you want to join the meeting on Monday to discuss UX for the Add/Edit User modals20:35
openstackgerritShaoquan Chen proposed openstack/horizon: WIP Applying auto-file-discovery  https://review.openstack.org/19159220:35
david-lylePiet yes20:36
PietThats what I gigured20:36
Piet"figured"20:36
ducttape_are you making domains a real thing now Piet ?20:37
PietOK...who is ducttape?20:37
ducttape_Eric P :p20:37
PietAhhhhh20:37
PietDo you want to join?  Improving both Domain and Project selection is a priority for me in this modal20:38
ducttape_umm.... sure.20:38
* ducttape_ is not sure what he got himself into20:38
PietWas thinking the same thing...but you totally add value and glad to have you there20:39
* ducttape_ sees the clock on the wall says 20 minutes until beer o'clock20:39
david-lyleyeah, value20:39
david-lyle:P20:39
ducttape_we have worked around domains with project roles for our deployment, and reading between the lines from keystone in YVR, it seems like domains are not going to be a big area of focus going forward20:40
*** CaptainMorgan is now known as morgan20:41
ducttape_I'd think the project hierarchy would do that same thing, and would be more broadly useful / applicable.20:41
*** amotoki_ has joined #openstack-horizon20:42
ducttape_this not not what you want to hear, but it's my $.0220:42
* ducttape_ sees that he is still on track for beer o'clock20:42
*** kztsv_mbp has joined #openstack-horizon20:42
david-lyleI think we're just trading fantasies20:43
david-lyledomains, HMT, unicorn farts20:43
ducttape_HMT seems like it shouldn't be the complex to do (code wise), though management and implementation / deployment would melt peoples brains20:44
david-lyleas long as you don't really care about roles and quotas20:45
*** lblanchard has quit IRC20:45
david-lyleotherwise it's all good20:45
*** Piet has quit IRC20:45
ducttape_david-lyle - I can write a lot of that code like this   "# TODO - figure this out"20:46
ducttape_and see - it's totally easy!20:46
david-lylethat's my fear20:47
*** amotoki_ has quit IRC20:47
*** mrunge has quit IRC20:47
david-lyleor something so convoluted to be useless20:47
ducttape_anyway, point being that domains have been around for a long time, and they have partially been picked up (being generous here).   might as well try to go with the new hotness of HMT instead20:47
*** sqchen has quit IRC20:50
ducttape_http://adam.younglogic.com/2013/11/policy-enforcement-openstack/  ayoung's article is fairly old at this point, and those techniques still can get at some of the same stuff that many people want20:51
*** raildo has quit IRC20:53
*** jingjing_ren has joined #openstack-horizon20:55
*** jbell8 has quit IRC20:57
*** sqchen has joined #openstack-horizon21:05
*** petertr7 is now known as petertr7_away21:07
*** rushiagr_away is now known as rushiagr21:08
*** radez is now known as radez_g0n321:14
openstackgerritShaoquan Chen proposed openstack/horizon: WIP Applying auto-file-discovery  https://review.openstack.org/19159221:17
*** tvanderwiel has quit IRC21:18
sqchenHi tqtran:21:18
tqtranhi sqchen21:19
sqchenPls take a look at the patch above. JS files works easily with the new code org as David said. jasmine passed. but ...21:20
*** bradjones has quit IRC21:20
sqchenwuth run the production, scss failed for this error:SuspiciousFileOperation: Attempted access to 'dashboard/../../dashboards/project/static/launch-instance/_launch-instance.scss' denied.21:21
*** bradjones has joined #openstack-horizon21:22
*** bradjones has quit IRC21:22
*** bradjones has joined #openstack-horizon21:22
tqtranok, i'll take a look21:24
sqchenThe access get denied when trying to import a scss file from a folder out of the folder where doshboard.css resides.21:25
sqchenthx.21:25
*** Piet_ has joined #openstack-horizon21:26
*** annashen has quit IRC21:26
*** Sukhdev has quit IRC21:27
tqtranlol kthxbye21:28
Piet_ducttape: That's the kind of info I need during the meeting on Monday21:28
*** tqtran is now known as tqtran_afk21:29
Piet_david-lyle: Should I assume that default Domains and Projects should be part of the Add/Edit User modal?21:30
*** dboik has quit IRC21:33
david-lylePiet, I actually believe default project is going away21:34
david-lyleand I'm not sure what default domain is, other than the Domain "Default"21:34
openstackgerritCindy Lu proposed openstack/horizon: JSCS Cleanup - style guide cleanup for wizard  https://review.openstack.org/18998321:34
Piet_david-lyle:  I believe that you could select which domain a new user would be added to.21:37
*** tqtran_afk is now known as tqtran21:38
tqtranPiet_: i dont want to complicate the add/edit user modals too much for this iteration21:38
tqtranthe main purpose is to demonstrate that we can angularize these panels21:39
tqtranwe can definitely iterate and improve on it down the road21:40
*** jtriley has quit IRC21:41
*** annashen has joined #openstack-horizon21:41
*** jingjing_ren has quit IRC21:41
openstackgerritDiana Whitten proposed openstack/horizon: Create Project button for proper access only  https://review.openstack.org/19330721:42
openstackgerritDiana Whitten proposed openstack/horizon: Updated UX for project and region selector  https://review.openstack.org/18619321:42
openstackgerritDiana Whitten proposed openstack/horizon: Retrieve domain scoped token  https://review.openstack.org/14808221:42
*** dboik has joined #openstack-horizon21:43
tqtransqchen: for https://review.openstack.org/#/c/191592/ can we create a dependent patch for the renames?21:44
tqtranits really hard to focus on the content when there are a ton of other files in there for renaming21:44
tqtranwe can approve them both at the same time21:44
tqtranso there shouldnt be an issue21:44
sqchenCan we ignore the renaming part?21:45
sqchenI mean in the review?21:45
btullyanyone know if there’s a way to run ‘run_tests.sh’ more verbosely? I have a test that keeps hanging but I don’t know which test it is21:48
tqtranso the patch works with the new plugin with the exception of the scss?21:48
sqchenMaybe pull the patch down to your local machine makes it easier to see the structure of the code.21:48
sqchenyes.21:48
btullyin the output of the run_tests.sh command I see that it runs nosetests with an option of —verbosity=121:49
tqtranbtully: doesnt look like there is a verbose option21:49
tqtranthere should be a stack trace of the error?21:49
btullyis there a way to override that from the run_tests.sh command?21:49
tqtransqchen: can you remind me why the renaming has to happen in this patch again?21:50
btullythanks tqtran no i have to ctrl-c out of the hanging test in order to continue21:50
tqtrani dont remember the reason21:50
tqtranbtully: really? wow... it should time out after a while?21:51
sqchenI need to re-org the code to make the autodiscovery possible, and…21:51
sqchenwithout the auto-discovery, re-org the code is very hard. :)21:51
tqtranso my question is, can the renaming happen before the autodiscovery?21:52
*** stevemar has quit IRC21:52
sqchencan, but even harder then wihout the autodiscovery.21:52
tqtrangah.... i dont get it, let me just take a look at the patch21:52
tqtranpull it down an play with it21:53
*** dboik has quit IRC21:53
tqtrandavid-lyle: do you know if anyone is looking into this error? http://logs.openstack.org/65/188665/17/check/gate-horizon-dsvm-integration/3c246f0/console.html21:54
tqtranits blocking a bunch of patches atm21:54
david-lyletqtran: it's being skipped as of this morning21:54
tqtranok awesome21:54
david-lyleI believe there are people looking at it21:55
david-lyleI'd have to scroll back to remember who21:55
tqtrandavid-lyle, clu_: https://review.openstack.org/#/c/188665/ when you guys get a chance, i think its pretty solid and ready to go.21:56
*** rushiagr is now known as rushiagr_away22:01
*** drupalmonkey has quit IRC22:05
*** garthb has quit IRC22:11
*** garthb_ has quit IRC22:11
r1chardj0n3smorning22:16
r1chardj0n3stqtran: you pinged?22:16
r1chardj0n3s(it being Saturday, I felt an 8am sleep in was OK :)22:17
r1chardj0n3stqtran: I just saw https://review.openstack.org/#/c/193671 - at first glance, I don't know why we need it. we already have a mechanism for adding dependencies to the app, why do we need one to add dependencies deep in the app?22:18
r1chardj0n3stqtran: there's absolutely nothing wrong with two things declaring they have a dependency on a common third thing (ie two dashboard modules declaring they depdend on the common dashboard module)22:20
r1chardj0n3stqtran: angular's module structure doesn't require you to have all the sub-modules possible as dependencies of a module22:21
r1chardj0n3stqtran: see the structure of angular itself for a good example22:21
r1chardj0n3stqtran: the hz.dashboard module is doing two things: declaring a namespace (which isn't entirely necessary but is *neat*) and also declaring a constant22:22
*** jpomero has quit IRC22:30
*** jasondot_ has quit IRC22:32
*** ducttape_ has quit IRC22:37
*** gyee has quit IRC22:39
r1chardj0n3sI've moved my words over to the openstack-dev list22:43
*** amotoki_ has joined #openstack-horizon22:43
hurgleburgler1Does anyone know what might cause this error?22:45
hurgleburgler1Recoverable error: Invalid service catalog service: network22:45
r1chardj0n3sI reckon it might be an invalid service catalog. That'd be your problem22:45
* r1chardj0n3s ducks22:46
esplol22:46
hurgleburgler1ಠ_ಠ22:46
r1chardj0n3shas someone been hand-editing your service catalog?22:47
tqtranr1chardj0n3s: i think we are removing the hz.dashboard module22:47
r1chardj0n3sbut it defines that useful constant22:47
r1chardj0n3s"we"?22:47
r1chardj0n3s:)22:47
tqtranthat can move up to the app level22:47
r1chardj0n3sI think maybe I missed another conversation22:48
r1chardj0n3s;)22:48
tqtranyeah you did lol22:48
r1chardj0n3shmm22:48
tqtranhere is the outcome of the discussion22:48
r1chardj0n3sI actually like that the dashboard defines that constant22:48
tqtranand the reasons behind it22:48
r1chardj0n3scould you maybe reply to my mail?22:48
r1chardj0n3srather than in here please?22:48
tqtranhasnt shown up yet22:48
tqtranbut yeah i can do that there22:49
*** amotoki_ has quit IRC22:49
r1chardj0n3sthanks mate I think that'll help things be clearer :)22:49
tqtranyeah, theres quite a few things to consider because we want to keep the dashboards pluggable22:49
r1chardj0n3syep, that was tip-top in my mind when I was thinking this through yesterday22:50
tqtranso some of the static actually has to move out of the static folder and into /dashboards/static instead of /static/dashboards22:50
*** annashen has quit IRC22:50
r1chardj0n3sok, now I really want to read the full explanation, 'cos I don't see the point of that ;)22:50
tqtranhaha yeah, i'll explain it better in the email22:51
* r1chardj0n3s waits for email :)22:51
tqtranjust waiting for it to show up22:51
tqtranomg, you didnt prefix it with [horizon]22:51
tqtranit ended up in my junk22:51
r1chardj0n3sbugger. sorry!22:52
* r1chardj0n3s goes off to instruct daughter in pancake batter preparation22:53
openstackgerritBrianna Poulos proposed openstack/horizon: Add volume type encryption update  https://review.openstack.org/7202422:57
*** bpokorny has joined #openstack-horizon23:03
*** bpokorny_ has quit IRC23:03
*** jingjing_ren has joined #openstack-horizon23:04
*** dsneddon is now known as dsneddon_away23:05
*** bigjools has quit IRC23:05
*** zigo has quit IRC23:05
*** juggler has quit IRC23:06
r1chardj0n3stqtran (feel free to add [horizon] ;)23:06
tqtrani am haha, almost done with the email23:06
*** juggler has joined #openstack-horizon23:06
*** zigo has joined #openstack-horizon23:07
*** bigjools has joined #openstack-horizon23:08
*** jingjing_ren has quit IRC23:08
*** alexvictorchan has quit IRC23:09
*** r1chardj0n3s is now known as r1chardj0n3s_afk23:10
tqtranr1chardj0n3s_afk: ok replied in the email, hopefully its clear, if not, ping me and we can talk about it23:11
openstackgerritBrianna Poulos proposed openstack/horizon: Add volume type encryption update  https://review.openstack.org/7202423:14
*** juggler has quit IRC23:16
*** alexvictorchan has joined #openstack-horizon23:17
*** juggler has joined #openstack-horizon23:17
*** alexvictorchan has quit IRC23:19
*** bpokorny_ has joined #openstack-horizon23:21
*** bpokorny has quit IRC23:22
openstackgerritThai Tran proposed openstack/horizon: Adding Angular Identity Dashboard  https://review.openstack.org/19085223:22
openstackgerritThai Tran proposed openstack/horizon: Adding Angular Identity Dashboard  https://review.openstack.org/19085223:24
*** fedexo has quit IRC23:31
*** fedexo has joined #openstack-horizon23:32
openstackgerritShaoquan Chen proposed openstack/horizon: WIP Applying auto-file-discovery  https://review.openstack.org/19159223:33
openstackgerritThai Tran proposed openstack/horizon: Adding Angular Users Panel  https://review.openstack.org/19086523:34
openstackgerritThai Tran proposed openstack/horizon: Adding Angular Users Panel  https://review.openstack.org/19086523:35
tqtransqchen: https://review.openstack.org/#/c/191592/14/openstack_dashboard/dashboards/admin/static/dashboard/admin/namespace-controller.js23:38
tqtrani think because it is in the tech-debt folder, it doesn't belong in /dashboards/admin/static23:39
tqtran*tech-debt moduler23:39
*** kztsv_mbp has quit IRC23:39
*** gugl has joined #openstack-horizon23:39
tqtranit should go into /static/dashboard/core/tech-debt ?23:40
sqchenok23:40
*** ducttape_ has joined #openstack-horizon23:41
*** ducttape_ has quit IRC23:41
*** ducttape_ has joined #openstack-horizon23:41
*** Drago has quit IRC23:43
tqtransqchen: i wonder if the scss compiler kick in before the statics are aggregated?23:45
tqtranthat might be why it isn't able to find the imports properly23:45
sqchenbut it works before I moving them into dashboards23:46
sqchenI think that is security issue. It is try to find file out of the current folder.23:47
openstackgerritShaoquan Chen proposed openstack/horizon: WIP Applying auto-file-discovery  https://review.openstack.org/19159223:48
tqtranthat might be true, i dont know if django aggregates the folder or just create some form of links23:49
tqtrangod... i would hate to have to separate out the css like we do today23:49
tqtranthis should be a common problem enough, google should have an answer for23:50
*** ducttape_ has quit IRC23:53
sqchentqtran:, Karma is crying about this change. :)23:54
*** alexvictorchan has joined #openstack-horizon23:56
*** ZZelle_ has quit IRC23:57
openstackgerritCindy Lu proposed openstack/horizon: JSCS Cleanup - style guide cleanup for transfer-table  https://review.openstack.org/19120023:58
*** petertr7_away is now known as petertr723:59

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