Thursday, 2015-07-30

*** kyleolivo has quit IRC00:02
*** kristinebrown has joined #openstack-horizon00:02
*** dansiwiec has quit IRC00:03
TravTtqtran: r1chardj0n3s: i could chat more on that patch now if you want, but i see r1chardj0n3s entered some comments as well.00:07
TravTmaybe tqtran, you could provide more info as per the comments and then we can have follow-on conversation?00:07
*** annashen has joined #openstack-horizon00:08
tqtranso, what im hearing is, we need to be clearer when you should use it and when you shouldn't00:08
tqtranand the rationale behind why we need it00:08
tqtranis that the only concern, or is the directive not useful enough to warrant a patch?00:09
TravTi think that's what your hearing...  i'm not sure on the second one.00:09
TravTi look at the current ng-include and realize a fair amount of that code seems to do with animations.00:10
openstackgerritShaoquan Chen proposed openstack/horizon: Improving Horizon's angular module management:  https://review.openstack.org/19931900:10
TravTi do wonder if there is a way to use onLoad by just putting everything in an object on the scope and passing that object through and everybody using it.00:10
tqtranyou could, but thats not what onload was intended for00:11
tqtranits really for you to load up some code once your template loads00:11
TravTcurrent ng-include has all this cleanup code that i'm not sure why it is all needed and hz-include doesn't.00:11
*** garthb has quit IRC00:12
tqtranng-include is far more complicated00:12
*** annashen has quit IRC00:12
tqtranhz-include basically fetches your template via ajax and appends it00:12
TravTyeah, i can't see why we'd need the animation stuff in simple cases.00:12
*** darrenc_afk is now known as darrenc00:14
tqtranwe had to circumvent the same issue by using kelly's bind scope00:14
tqtranso its not the first time its come up00:14
TravTyeah... but there are other questions about this like, why is this one in the linking phase and the ng-include is in the compile phase.00:16
*** tjones has quit IRC00:18
tqtranhttp://stackoverflow.com/questions/12164138/what-is-the-difference-between-compile-and-link-function-in-angularjs00:19
*** kristinebrown has quit IRC00:19
*** Sukhdev_ has quit IRC00:19
tqtranin this case, i dont think it matters, hz-include doesn't have a template DOM00:19
TravTi know the phases...00:19
TravTWell, maybe this just goes back to making the use case for it cleaner in the documentation00:21
tqtranso bottom line is, do we find this useful enough to make into a directive? if not i will abandon it00:21
*** tjones has joined #openstack-horizon00:21
TravTdo you use it in the dependent patch?00:22
tqtranyeah, using it for the transfer table00:22
tqtrani can rewrite that part to pass in a scope using the onload attr00:22
*** jasondotstar has quit IRC00:23
tqtranbut again, its messy, and i havent tested it out yet, so it might or might not work00:23
tqtransince transfer table relies on a number of scope references00:23
r1chardj0n3stqtran, TravT hi guys, sorry was in meeting for a bit there00:24
TravTfinally found your usage tqtran...00:25
TravThttps://review.openstack.org/#/c/202315/10/openstack_dashboard/dashboards/identity/static/dashboard/identity/users/steps/select-projects/select-projects.html00:25
tqtranyessir, and if you look into the allocated and available HTML files00:26
tqtranyou will see that I'm referencing the controller directly00:27
*** saksham has quit IRC00:27
tqtranwhen i tried that using ng-include, it did not work...00:28
r1chardj0n3sso why is an include even used in there? why aren't those fragments just part of select-projects.html?00:28
tqtranwell the original idea was to reduce duplication among those two fragments, since they share some similar part00:29
*** annashen has joined #openstack-horizon00:29
r1chardj0n3sbut that's not been achieved, has it? if I'm missing something, I apologise :)00:30
*** Sukhdev_ has joined #openstack-horizon00:30
tqtranhaha yeah, i ended up not using the columns.html and search bar. i figured you'll probably not need to do a search in the allocated table00:31
tqtranat most you'll only need to add a few to the allocated table, so having a search there didnt make sense00:31
TravTyeah, that thought seems right.00:32
r1chardj0n3syep00:32
tqtranthe code morphed a bit as i worked on it, so i didnt follow through with the original intent00:32
TravTevery time i see transfer table i feel like more could be templated via a directive or sub-directives00:32
tqtranoriginally, i was thinking we can just duplicate it in the transfter table directive itself00:33
r1chardj0n3syeah, they do feel a bit duplicatey00:33
TravTopportunities for reuse seem more likely in the header and columns00:34
*** shivrao has quit IRC00:34
tqtranbut that proved to be quite complicated because we would have to replace certain keywords as we clone the template for both available and allocated00:34
*** annashen has quit IRC00:34
r1chardj0n3smaybe one day we can make them a bit smarter, but I think we need more experience with them to know the range of problems they solve00:34
*** kyleolivo has joined #openstack-horizon00:35
*** jingjing_ren has quit IRC00:35
openstackgerritRajat Vig proposed openstack/horizon: WIP : API for getting default quotas in admin  https://review.openstack.org/20712600:35
r1chardj0n3sthen transfer-table v 2.0 can maybe automatically (or semi- with directive help) manage that duplication for us00:35
tqtrananyway, i ended up doing it this way. so thats the long story of how i got here00:35
openstackgerritRajat Vig proposed openstack/horizon: WIP : API for getting default quotas in admin  https://review.openstack.org/20712600:35
r1chardj0n3syep :)00:35
TravTso, i'm actually thinking that maybe these should be a single file... because if you want to change a single column, you'll jump to two files.00:35
r1chardj0n3syep00:35
TravTi found the details to be a good place for ng-include00:36
r1chardj0n3salso, reduces the need for hz-include :)00:36
tqtranyou'll need to change in two places regardless00:36
TravTtwo places, but one file...00:36
TravT4 places00:36
r1chardj0n3s^^00:36
r1chardj0n3syep00:36
TravT<th and <td in both00:36
TravTor thai00:36
*** Sukhdev_ has quit IRC00:37
TravTmaybe you could do ng-include and put search bar as in ng-if00:37
r1chardj0n3smmm00:37
tqtranno.....00:37
openstackgerritRajat Vig proposed openstack/horizon: JSCS Cleanup - horizon/ tech-debt  https://review.openstack.org/19934500:37
TravTahh00:37
TravTthe scope00:37
tqtranhttps://review.openstack.org/#/c/202315/10/openstack_dashboard/dashboards/identity/static/dashboard/identity/users/steps/select-projects/select-projects.table.allocated.html00:37
tqtranL4 L500:37
tqtranL 1600:37
*** dboik has joined #openstack-horizon00:37
tqtranthey are all specific to allocated object00:38
*** tjones has quit IRC00:38
tqtranso sharing the same template isn't as easy, you could do what some HP folks (Tyr or Sean, I dont remember) did in the past by creating a directive for the transfer table00:39
r1chardj0n3shmm, I really wish we were standing in front of a whiteboard right now ;)00:39
tqtranbut again, thats not exactly an improvement over hz-include00:39
tqtranI guess bottom line for me is, we just need to reach a decision so i can move on with my create actions patch00:40
r1chardj0n3sso the basic problem here is that in <transfer-table> there's <allocated> and <available> which template *basically* the same HTML but with a different object and context of "available" or "allocated"?00:40
TravTiAvailable, available, were passed into onLoad and search bar is toggled on var...00:40
TravTwhy can't it be a single file?00:40
r1chardj0n3syeah00:40
tqtranit can be in a single file00:40
tqtranjust saying we wont be able to reuse/duplicate it for <allocated> and <available>00:41
tqtranit would have to be manually written out00:41
*** vishwanathj has joined #openstack-horizon00:41
r1chardj0n3sTravT: toggling the search bar can be done on those - the problem is that the listing of objects is done over a different var on the model in each case00:42
TravTi'm saying can't they all be passed in as vars00:42
r1chardj0n3sI think that's the problem anyway00:42
r1chardj0n3soh, yes, I agree that should be a solution00:42
tqtranhow about this, pull down the patch and experiment on it00:43
TravTlol00:43
TravTi knew you were going to say that.00:43
tqtranthen we can reconvene and consider alternative solutions00:43
TravTok, i can do that, but not until tomorrow probably00:43
tqtran:P00:43
r1chardj0n3sI'd like to see the allocated/available HTML transcluded in the transfer-table itself, and automatically fed the appopriate vars :)00:43
TravTit is nearly 7 here00:43
tqtranr1chardj0n3s: it is transcluded :P00:44
r1chardj0n3sDONE!00:44
r1chardj0n3s:)00:44
* r1chardj0n3s moves on to next problem00:44
tqtranbut that doesnt solve the problem00:44
r1chardj0n3s:P00:44
tqtranthe problem isnt the transclude, its the template duplication00:44
r1chardj0n3syeah, my solution has no template!00:44
tqtranor just kelly to fix it :P00:44
tqtranongk: PING PING, can you fix it?!00:44
ongkYes00:45
ongkwhat am I fixing?00:45
tqtranwoooot!00:45
tqtranDONE!00:45
tqtrannext proble00:45
* r1chardj0n3s heads to the bar with tqtran, job done00:45
*** jtriley has joined #openstack-horizon00:45
TravThey, i'm in on the bar00:46
r1chardj0n3swait, it's 10:45am, probably too early for the bar yet00:46
*** vishwanathj has quit IRC00:46
TravTbrunch00:46
*** vishwanathj has joined #openstack-horizon00:46
tqtranok TravT let me upload latest patchset and you can play with it.00:46
r1chardj0n3sbeerbrunch00:46
TravTbeerunch00:46
openstackgerritThai Tran proposed openstack/horizon: WIP Adding CREATE action to identity users panel  https://review.openstack.org/20231500:46
r1chardj0n3sTravT: I was totally going to write that :)00:47
TravTor we can just shorten it to "beer"00:47
tqtranbeerbrunch lol00:47
tqtranbeerunch?00:47
ongkI’m down for the b—runch part00:48
r1chardj0n3sTravT: https://goo.gl/photos/o8yCV7paQ5pvAVjG600:48
r1chardj0n3sthanks for suggesting that, BTW :()00:48
tqtrannice....00:49
TravTr1chardj0n3s: sweet!00:49
TravTyou and your minion00:49
r1chardj0n3s:)00:49
*** nlahouti has quit IRC00:53
*** geoffarnold has quit IRC00:54
*** vishwanathj has quit IRC00:55
*** amotoki has joined #openstack-horizon00:58
*** h00327910__ has joined #openstack-horizon00:58
*** jasondotstar has joined #openstack-horizon00:58
r1chardj0n3sum. someone filed a bug against angboard a couple of days ago.01:00
r1chardj0n3ss/days/hours01:00
tqtranDANG01:01
tqtranits still hot off the stove01:01
*** kzaitsev_mb has quit IRC01:03
*** ongk has quit IRC01:04
*** mwhagedorn has quit IRC01:06
*** xiangxinyong1 has joined #openstack-horizon01:08
*** tjones has joined #openstack-horizon01:08
tqtranok taking off, gnite folks01:11
*** tqtran has quit IRC01:11
*** kzaitsev_mb has joined #openstack-horizon01:15
r1chardj0n3s(cya thai)01:15
*** alexvictorchan has joined #openstack-horizon01:18
*** xiangxinyong1 has left #openstack-horizon01:18
openstackgerritziyu032 proposed openstack/horizon: Display the primary project name of the user in user table  https://review.openstack.org/20588701:28
*** chlong has joined #openstack-horizon01:29
*** annashen has joined #openstack-horizon01:30
*** annashen has quit IRC01:35
*** jasondotstar has quit IRC01:35
*** kzaitsev_mb has quit IRC01:42
*** pkarikh has quit IRC01:47
openstackgerritTracy Jones proposed openstack/horizon: favicon, logo and logo-splash should allow theme overrides  https://review.openstack.org/19575101:56
*** yamamoto has joined #openstack-horizon02:03
*** annashen has joined #openstack-horizon02:05
*** dboik has quit IRC02:05
*** skylerberg has quit IRC02:08
*** bpokorny has quit IRC02:12
*** kyleolivo has quit IRC02:14
*** jtriley has quit IRC02:14
*** jasondotstar has joined #openstack-horizon02:31
*** annashen_ has joined #openstack-horizon02:31
*** tjones has quit IRC02:31
*** tyr has quit IRC02:32
*** tyr_ has joined #openstack-horizon02:33
*** annashen_ has quit IRC02:36
*** jasondotstar has quit IRC02:41
*** skylerberg has joined #openstack-horizon02:53
*** KunalGandhi has quit IRC02:55
*** stevemar has joined #openstack-horizon03:00
*** jbell8 has joined #openstack-horizon03:11
*** tjones has joined #openstack-horizon03:15
*** stevemar has quit IRC03:15
*** stevemar has joined #openstack-horizon03:16
*** kevinbenton has quit IRC03:18
*** stevemar has quit IRC03:19
*** kevinbenton has joined #openstack-horizon03:20
*** stevemar has joined #openstack-horizon03:23
*** annashen_ has joined #openstack-horizon03:32
*** julim has quit IRC03:32
*** lucas__ has joined #openstack-horizon03:33
*** annashen_ has quit IRC03:37
*** lucas__ has quit IRC03:37
*** jbell8 has quit IRC03:47
*** jamielennox|away is now known as jamielennox03:47
*** kevinbenton has quit IRC03:56
*** kevinbenton has joined #openstack-horizon04:01
*** annashen has quit IRC04:03
*** btully has quit IRC04:16
*** tyr_ has quit IRC04:20
*** jbell8 has joined #openstack-horizon04:24
*** Drago has quit IRC04:29
*** jbell8 has quit IRC04:30
*** annashen has joined #openstack-horizon04:33
*** jamielennox is now known as jamielennox|away04:33
*** davidmichaelkarr has joined #openstack-horizon04:37
*** annashen has quit IRC04:38
*** yamamoto has quit IRC04:38
*** stevemar has quit IRC04:39
*** annashen has joined #openstack-horizon04:50
*** yamamoto has joined #openstack-horizon04:52
*** tjones has quit IRC04:54
*** darrenc is now known as darrenc_afk04:56
*** Drago1 has joined #openstack-horizon05:03
*** linkedinyou has joined #openstack-horizon05:09
*** geoffarnold has joined #openstack-horizon05:12
*** alexvictorchan has quit IRC05:13
*** geoffarnold has quit IRC05:15
*** annashen has quit IRC05:18
*** geoffarnold has joined #openstack-horizon05:18
*** jmolo has joined #openstack-horizon05:24
*** jmolo has quit IRC05:27
*** Ephur has joined #openstack-horizon05:27
*** btully has joined #openstack-horizon05:30
*** KunalGandhi has joined #openstack-horizon05:31
*** Ephur has quit IRC05:33
*** annashen has joined #openstack-horizon05:34
*** btully has quit IRC05:34
*** annashen has quit IRC05:39
*** lexholden has quit IRC05:40
*** darrenc_afk is now known as darrenc05:40
*** KunalGandhi has quit IRC05:43
*** KunalGandhi has joined #openstack-horizon05:43
*** annashen has joined #openstack-horizon05:45
*** lsmola has joined #openstack-horizon05:54
*** btully has joined #openstack-horizon05:55
*** jtomasek has quit IRC05:56
*** nlahouti has joined #openstack-horizon05:58
*** josecastroleon has joined #openstack-horizon05:58
*** btully has quit IRC05:59
*** jith_ has quit IRC06:01
*** dansiwiec has joined #openstack-horizon06:03
*** nlahouti has quit IRC06:03
*** nlahouti has joined #openstack-horizon06:03
*** nlahouti has quit IRC06:18
*** alexvictorchan has joined #openstack-horizon06:18
*** jbell8 has joined #openstack-horizon06:18
openstackgerritlyanchih proposed openstack/horizon: Couldn't provision instance from volume snapshot  https://review.openstack.org/19945706:20
*** dansiwiec has quit IRC06:23
*** jbell8 has quit IRC06:23
openstackgerriteric proposed openstack/horizon: CSS get None when error in inline_editing  https://review.openstack.org/20731306:24
*** saksham has joined #openstack-horizon06:26
*** ankit_ag has joined #openstack-horizon06:29
*** annashen_ has joined #openstack-horizon06:35
*** skylerberg has quit IRC06:36
*** annashen_ has quit IRC06:39
*** rdopiera has joined #openstack-horizon06:39
*** david-lyle has quit IRC06:43
*** saksham has left #openstack-horizon06:44
*** mpavlase has joined #openstack-horizon06:46
*** annashen has quit IRC06:46
*** david-lyle has joined #openstack-horizon06:49
*** ChanServ sets mode: +o david-lyle06:49
*** stevemar has joined #openstack-horizon06:55
*** MaxV has joined #openstack-horizon06:58
*** stevemar has quit IRC06:58
*** Ala has joined #openstack-horizon07:04
*** davidmichaelkarr has quit IRC07:07
*** masco has joined #openstack-horizon07:09
*** belmoreira has joined #openstack-horizon07:10
*** KunalGan_ has joined #openstack-horizon07:16
*** markus_z has joined #openstack-horizon07:16
*** KunalGandhi has quit IRC07:19
*** KunalGan_ has quit IRC07:21
*** dansiwiec has joined #openstack-horizon07:23
*** vishwanathj has joined #openstack-horizon07:23
openstackgerriteric proposed openstack/horizon: CSS get None when error in inline_editing  https://review.openstack.org/20731307:24
*** chlong has quit IRC07:25
*** jcoufal has joined #openstack-horizon07:26
*** vishwanathj has quit IRC07:28
*** vishwanathj has joined #openstack-horizon07:29
*** dansiwiec has quit IRC07:29
*** wim_dc has joined #openstack-horizon07:35
*** annashen has joined #openstack-horizon07:35
openstackgerritVlad Okhrimenko proposed openstack/horizon: Restrict Upload Image form->Image URL field to http/https schemas  https://review.openstack.org/20410507:39
openstackgerritVlad Okhrimenko proposed openstack/horizon: Add backend for Horizon memcache  https://review.openstack.org/17167907:40
*** annashen has quit IRC07:40
-openstackstatus- NOTICE: Our CI system is broken again today, jobs are not getting processed at all.07:40
*** ChanServ changes topic to "Our CI system is broken again today, jobs are not getting processed at all."07:40
*** btully has joined #openstack-horizon07:43
*** geoffarnold has quit IRC07:47
*** geoffarnold has joined #openstack-horizon07:47
*** btully has quit IRC07:47
-openstackstatus- NOTICE: CI system is broken and very far behind. Please do not approve any changes for a while.07:50
*** ChanServ changes topic to "CI system is broken and very far behind. Please do not approve any changes for a while."07:50
*** jamielennox|away is now known as jamielennox07:57
*** rahulshivsharan has joined #openstack-horizon08:02
*** mpavlase has quit IRC08:06
*** mpavlase has joined #openstack-horizon08:07
*** ygbo has joined #openstack-horizon08:08
*** markus_z has quit IRC08:09
*** Drago1 has quit IRC08:13
*** kmARC has joined #openstack-horizon08:14
*** rahulshivsharan has quit IRC08:24
*** kiran-r has joined #openstack-horizon08:25
*** romainh has joined #openstack-horizon08:26
*** mohankumar has quit IRC08:29
*** sayan has joined #openstack-horizon08:29
*** annashen has joined #openstack-horizon08:36
*** bfic has joined #openstack-horizon08:37
*** mpavlase has quit IRC08:37
*** ZZelle has joined #openstack-horizon08:38
*** mpavlase has joined #openstack-horizon08:40
*** annashen has quit IRC08:41
*** pkarikh has joined #openstack-horizon08:44
*** JeanBriceCombebi has joined #openstack-horizon08:46
*** aix has joined #openstack-horizon08:47
*** rahulshivsharan has joined #openstack-horizon08:52
*** jtomasek has joined #openstack-horizon08:56
*** ChanServ changes topic to "OpenStack Horizon"08:59
-openstackstatus- NOTICE: CI is back online but has a huge backlog. Please be patient and if possible delay approving changes until it has caught up.08:59
*** e0ne has joined #openstack-horizon09:03
*** rahulshivsharan has quit IRC09:04
*** rahulshivsharan has joined #openstack-horizon09:05
*** kjelly has joined #openstack-horizon09:06
*** chlong has joined #openstack-horizon09:07
*** jtomasek has quit IRC09:09
*** bluex-pl has joined #openstack-horizon09:09
*** jtomasek has joined #openstack-horizon09:10
*** jtomasek has quit IRC09:15
*** mohankumar has joined #openstack-horizon09:19
*** JeanBriceCombebi has quit IRC09:19
*** JeanBriceCombebi has joined #openstack-horizon09:20
openstackgerritvaibhav proposed openstack/horizon: Adding new rules, fields marked asterisk in dashboard  https://review.openstack.org/20735709:23
*** rahulshivsharan has quit IRC09:23
*** jamielennox is now known as jamielennox|away09:25
*** jtomasek has joined #openstack-horizon09:27
*** ig0r_ has joined #openstack-horizon09:31
*** JeanBriceCombebi has quit IRC09:35
*** jcoufal has quit IRC09:35
*** annashen has joined #openstack-horizon09:37
*** JeanBriceCombebi has joined #openstack-horizon09:39
openstackgerriteric proposed openstack/horizon: CSS get None when error in inline_editing  https://review.openstack.org/20731309:41
*** annashen has quit IRC09:42
*** kjelly has quit IRC09:49
*** jcoufal has joined #openstack-horizon09:52
openstackgerritVlad Okhrimenko proposed openstack/horizon: Drop QUnit JS tests in favor of Jasmine  https://review.openstack.org/15657209:54
*** stevemar has joined #openstack-horizon09:55
*** jbell8 has joined #openstack-horizon09:56
*** stevemar has quit IRC09:59
*** yamamoto has quit IRC10:00
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: Exclude network which don't have subnet  https://review.openstack.org/20737010:00
*** jbell8 has quit IRC10:00
*** alexpilotti has joined #openstack-horizon10:01
*** jcoufal has quit IRC10:02
*** jcoufal has joined #openstack-horizon10:12
*** jasondotstar has joined #openstack-horizon10:15
*** romainh has quit IRC10:23
*** masco has quit IRC10:23
*** lucasagomes has joined #openstack-horizon10:28
*** lucasagomes has left #openstack-horizon10:28
*** jprovazn has joined #openstack-horizon10:30
*** josecastroleon has quit IRC10:34
*** yamamoto has joined #openstack-horizon10:35
*** masco has joined #openstack-horizon10:37
*** annashen has joined #openstack-horizon10:38
*** aix has quit IRC10:39
*** yamamoto has quit IRC10:39
*** kzaitsev_mb has joined #openstack-horizon10:40
*** annashen has quit IRC10:42
*** yamamoto has joined #openstack-horizon10:43
openstackgerritZhenguo Niu proposed openstack/horizon: User email no longer raises exceptions if missing  https://review.openstack.org/20739210:50
*** zhenguo has quit IRC11:04
openstackgerritVitaly Gridnev proposed openstack/horizon: Allow to configure autoconfiguration for templates  https://review.openstack.org/20739911:05
openstackgerritRob Cresswell proposed openstack/horizon: Remove Router Dashboard  https://review.openstack.org/19796911:05
openstackgerritVitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates  https://review.openstack.org/20739911:06
*** romainh has joined #openstack-horizon11:10
*** aix has joined #openstack-horizon11:13
*** josecastroleon has joined #openstack-horizon11:14
openstackgerritVitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates  https://review.openstack.org/20739911:17
*** geoffarnold has quit IRC11:17
*** geoffarnold has joined #openstack-horizon11:17
*** jasondotstar has quit IRC11:19
*** sayan has quit IRC11:21
*** jcoufal has quit IRC11:26
*** jcoufal has joined #openstack-horizon11:26
*** sayan has joined #openstack-horizon11:36
*** annashen has joined #openstack-horizon11:39
*** annashen has quit IRC11:43
*** JeanBriceCombebi has quit IRC11:44
*** e0ne has quit IRC11:47
*** yamamoto has quit IRC11:55
openstackgerritvaibhav proposed openstack/horizon: Added asterisk for 'Member Address' in Loadbalancer Added asterisk missing for mandatory Add Member form's 'Member Address' field in Loadbalancer Closes-Bug: 1392182  https://review.openstack.org/20741711:57
openstackbug 1392182 in OpenStack Dashboard (Horizon) "Required asterisk missing for mandatory Add Member form's 'Member Address' field" [Low,In progress] https://launchpad.net/bugs/1392182 - Assigned to vaibhav (vaibhav-j10)11:57
*** _kiran_ has joined #openstack-horizon12:06
*** yamamoto has joined #openstack-horizon12:06
*** kiran-r has quit IRC12:09
*** yamamoto has quit IRC12:11
*** _kiran_ has quit IRC12:20
*** jasondotstar has joined #openstack-horizon12:22
*** ericksonsantos has joined #openstack-horizon12:25
*** stevemar has joined #openstack-horizon12:26
openstackgerritVitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates  https://review.openstack.org/20739912:28
*** stevemar has quit IRC12:28
*** yamamoto has joined #openstack-horizon12:30
*** jamielennox|away is now known as jamielennox12:35
pkarikhr1chardj0n3s: hi! Am I right that you are going to make upgrade of ui-bootstrap to 0.13? (according to this: https://etherpad.openstack.org/p/YVR-horizon-liberty-priorities)12:36
*** mwhagedorn has joined #openstack-horizon12:39
*** romainh has left #openstack-horizon12:40
*** annashen has joined #openstack-horizon12:40
*** jprovazn has quit IRC12:42
*** jprovazn has joined #openstack-horizon12:43
*** annashen has quit IRC12:44
*** robcresswell has joined #openstack-horizon12:45
pkarikhrobcreswell: hi!12:46
*** hurgleburgler has quit IRC12:48
robcresswellpkarikh: o/12:51
pkarikhrobcreswell: I've found "Actually fix the main ux bug with details page" bug assigned to you here. https://etherpad.openstack.org/p/YVR-horizon-liberty-priorities I wonder which bug was meant there? :)12:52
*** JeanBriceCombebi has joined #openstack-horizon12:52
robcresswellpkarikh: There's no "Back to all"12:53
robcresswellWhich would be useful12:53
robcresswellAlthough, derp I wrote a patch for that and forgot to push it12:53
robcresswelloops12:53
*** e0ne has joined #openstack-horizon12:54
pkarikhrobcresswell: oh, ok, thanks. :)12:55
*** htruta has joined #openstack-horizon12:55
*** yamamoto has quit IRC12:57
*** pauloewerton has joined #openstack-horizon12:58
*** neelashah has joined #openstack-horizon13:00
*** katyafervent is now known as katyafervent_awa13:04
*** katyafervent_awa is now known as katyafervent13:04
*** katyafervent is now known as katyafervent_awa13:05
*** katyafervent_awa is now known as katyafervent13:05
*** markus_z has joined #openstack-horizon13:05
*** jamielennox is now known as jamielennox|away13:06
*** julim has joined #openstack-horizon13:10
*** ig0r_ has quit IRC13:10
*** markus_z has quit IRC13:12
*** btully has joined #openstack-horizon13:13
*** ig0r_ has joined #openstack-horizon13:16
*** davidmichaelkarr has joined #openstack-horizon13:18
*** robcresswell has quit IRC13:18
*** rahulshivsharan has joined #openstack-horizon13:19
openstackgerritFrode Nordahl proposed openstack/horizon: Add support for creating subnets with Neutron subnet allocation  https://review.openstack.org/20357013:19
*** masco has quit IRC13:19
*** JeanBriceCombebi has quit IRC13:22
*** e0ne has quit IRC13:22
*** lblanchard has joined #openstack-horizon13:24
openstackgerritVitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates  https://review.openstack.org/20739913:24
*** dansiwiec has joined #openstack-horizon13:27
*** sayan has quit IRC13:29
*** jasondotstar has quit IRC13:30
*** ig0r_ has quit IRC13:31
*** e0ne has joined #openstack-horizon13:31
*** dansiwiec has quit IRC13:32
*** katyafervent is now known as katyafervent_awa13:33
*** katyafervent_awa is now known as katyafervent13:34
*** jtriley has joined #openstack-horizon13:34
*** stevemar has joined #openstack-horizon13:38
*** stevemar has quit IRC13:39
*** stevemar has joined #openstack-horizon13:40
*** annashen has joined #openstack-horizon13:40
*** annashen has quit IRC13:45
*** tosky has joined #openstack-horizon13:45
*** stevemar has quit IRC13:45
*** lucas__ has joined #openstack-horizon13:47
*** lucas__ has quit IRC13:50
*** lucas__ has joined #openstack-horizon13:50
*** cbader has joined #openstack-horizon13:54
*** drupalmonkey has joined #openstack-horizon13:54
*** yamamoto has joined #openstack-horizon13:58
*** tosky has quit IRC14:01
*** tosky has joined #openstack-horizon14:01
*** tvanderwiel has joined #openstack-horizon14:02
*** yamamoto has quit IRC14:03
*** tvanderwiel has left #openstack-horizon14:04
*** ankit_ag has quit IRC14:04
*** bfic has left #openstack-horizon14:06
*** dguerri is now known as dguerri`14:06
*** rahulshivsharan has quit IRC14:07
*** hurgleburgler has joined #openstack-horizon14:16
*** Drago has joined #openstack-horizon14:17
*** JeanBriceCombebi has joined #openstack-horizon14:19
*** KunalGandhi has joined #openstack-horizon14:20
*** jbell8 has joined #openstack-horizon14:22
*** KunalGandhi has quit IRC14:24
*** ig0r_ has joined #openstack-horizon14:32
*** garthb has joined #openstack-horizon14:34
*** sjmc7 has quit IRC14:37
*** sjmc7 has joined #openstack-horizon14:38
*** annashen has joined #openstack-horizon14:41
*** sjmc7 has quit IRC14:41
*** sjmc7 has joined #openstack-horizon14:42
*** ccrouch has joined #openstack-horizon14:42
*** JeanBriceCombebi has quit IRC14:43
*** bapalm_ has joined #openstack-horizon14:43
*** sjmc7_ has joined #openstack-horizon14:44
*** annashen has quit IRC14:46
*** sjmc7 has quit IRC14:46
*** lapalm has joined #openstack-horizon14:50
*** sjmc7_ has quit IRC14:50
*** sjmc7 has joined #openstack-horizon14:50
*** jbell8 has quit IRC14:52
*** Piet_ has joined #openstack-horizon14:57
openstackgerritMartin Pavlásek proposed openstack/horizon: Fix table _get_rows() - always return None  https://review.openstack.org/20749114:57
*** vijendar has joined #openstack-horizon15:00
*** vijendar has quit IRC15:00
*** vijendar has joined #openstack-horizon15:00
*** sjmc7_ has joined #openstack-horizon15:01
*** sjmc7 has quit IRC15:01
*** kjelly has joined #openstack-horizon15:01
*** ig0r_ has quit IRC15:03
*** jtomasek has quit IRC15:03
*** ig0r__ has joined #openstack-horizon15:03
*** logan2 has quit IRC15:08
*** ig0r_ has joined #openstack-horizon15:09
*** ig0r__ has quit IRC15:09
*** tyr has joined #openstack-horizon15:09
*** bpokorny has joined #openstack-horizon15:11
*** ig0r__ has joined #openstack-horizon15:13
*** emw has joined #openstack-horizon15:14
*** ig0r__ has quit IRC15:15
*** ig0r_ has quit IRC15:15
*** JeanBriceCombebi has joined #openstack-horizon15:16
*** jcoufal has quit IRC15:17
*** vishwanathj has quit IRC15:21
*** jbell8 has joined #openstack-horizon15:21
*** KunalGandhi has joined #openstack-horizon15:21
*** dguerri` is now known as dguerri15:25
*** geoffarnold has quit IRC15:25
*** garthb_ has joined #openstack-horizon15:25
*** garthb has quit IRC15:25
*** KunalGandhi has quit IRC15:27
*** zul has quit IRC15:31
*** stevemar has joined #openstack-horizon15:32
*** dguerri is now known as dguerri`15:34
*** lapalm has quit IRC15:37
*** lapalm has joined #openstack-horizon15:38
*** lapalm has quit IRC15:42
*** jasondotstar has joined #openstack-horizon15:42
*** annashen has joined #openstack-horizon15:42
pkarikhFolks, has anyone faced this issue? https://bugs.launchpad.net/horizon/+bug/1125622 Looks like sometimes pip install -r requirements.txt installs oslo.* libs version 2.1 and it causes such errors.15:45
openstackLaunchpad bug 1125622 in OpenStack Dashboard (Horizon) "ImportError: cannot import name base" [Medium,Confirmed]15:45
*** annashen has quit IRC15:47
*** MaxV has quit IRC15:47
*** alexpilotti has quit IRC15:48
*** lapalm has joined #openstack-horizon15:48
*** annashen has joined #openstack-horizon15:50
*** nlahouti has joined #openstack-horizon15:50
*** sjmc7 has joined #openstack-horizon15:50
*** ig0r_ has joined #openstack-horizon15:52
*** rward has quit IRC15:55
*** ramishra has quit IRC15:55
*** DuncanT has quit IRC15:55
*** h00327910__ has quit IRC15:55
*** lucas__ has quit IRC15:59
*** dguerri` is now known as dguerri15:59
*** MaxV has joined #openstack-horizon16:00
*** geoffarnold has joined #openstack-horizon16:01
*** sjmc7__ has joined #openstack-horizon16:01
*** vishwanathj has joined #openstack-horizon16:04
*** kjelly has quit IRC16:04
*** sjmc7 has quit IRC16:04
*** vishwana_ has joined #openstack-horizon16:05
*** vishwanathj has quit IRC16:08
*** lsmola has quit IRC16:09
*** zul has joined #openstack-horizon16:10
*** sjmc7__ has quit IRC16:11
*** sjmc7 has joined #openstack-horizon16:11
*** sjmc7 has quit IRC16:13
*** sjmc7 has joined #openstack-horizon16:13
*** sjmc7 has quit IRC16:14
*** sjmc7 has joined #openstack-horizon16:14
*** sjmc7 has quit IRC16:15
*** sjmc7 has joined #openstack-horizon16:16
*** sjmc7 has quit IRC16:16
*** zul has quit IRC16:16
*** sjmc7 has joined #openstack-horizon16:17
*** sjmc7 has quit IRC16:17
*** tosky has quit IRC16:17
*** sjmc7 has joined #openstack-horizon16:18
*** sjmc7 has quit IRC16:19
*** sjmc7_ is now known as sjmc716:19
*** logan2 has joined #openstack-horizon16:19
*** kzaitsev_mb has quit IRC16:22
*** jasondotstar has quit IRC16:23
openstackgerritMartin Pavlásek proposed openstack/horizon: Fix table _get_rows() - always return None  https://review.openstack.org/20749116:23
*** mpavlase has quit IRC16:24
*** zul has joined #openstack-horizon16:28
*** e0ne has quit IRC16:29
*** aix has quit IRC16:31
openstackgerritTravis Tripp proposed openstack/horizon: JSCS/eslint cleanup - o_s/tech-debt, bind-scope, toast  https://review.openstack.org/20510416:31
*** josecastroleon has quit IRC16:32
*** zul has quit IRC16:33
*** ygbo has quit IRC16:38
*** Drago has quit IRC16:41
*** MaxV has quit IRC16:42
*** Drago has joined #openstack-horizon16:42
*** zul has joined #openstack-horizon16:42
*** ramishra has joined #openstack-horizon16:43
*** Drago has quit IRC16:43
*** DuncanT has joined #openstack-horizon16:43
*** Drago has joined #openstack-horizon16:43
*** annashen_ has joined #openstack-horizon16:43
*** KunalGandhi has joined #openstack-horizon16:44
*** JeanBriceCombebi has quit IRC16:45
*** alexpilotti has joined #openstack-horizon16:46
*** skylerberg has joined #openstack-horizon16:46
openstackgerritMerged openstack/horizon: Mock $window for magic-search tests  https://review.openstack.org/20626716:47
*** dsneddon has joined #openstack-horizon16:47
*** annashen_ has quit IRC16:47
*** lapalm has quit IRC16:52
*** lucas__ has joined #openstack-horizon16:52
*** kmARC has quit IRC16:52
*** lapalm has joined #openstack-horizon16:52
*** dansiwiec has joined #openstack-horizon16:55
*** rdopiera has quit IRC16:55
*** lapalm has quit IRC16:57
*** belmoreira has quit IRC16:58
*** vishwana_ has quit IRC17:00
*** rward has joined #openstack-horizon17:00
openstackgerritRajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin  https://review.openstack.org/20529617:00
*** sqchen has joined #openstack-horizon17:03
openstackgerritRajat Vig proposed openstack/horizon: API for getting default quotas in admin  https://review.openstack.org/20712617:06
*** rajatvig has joined #openstack-horizon17:06
*** alexvictorchan has quit IRC17:07
openstackgerritRajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin  https://review.openstack.org/20529617:07
openstackgerritRajat Vig proposed openstack/horizon: API for getting default quotas in admin  https://review.openstack.org/20712617:08
openstackgerritRajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin  https://review.openstack.org/20529617:08
*** h00327910__ has joined #openstack-horizon17:08
*** sayan has joined #openstack-horizon17:11
openstackgerritRajat Vig proposed openstack/horizon: JSCS Cleanup - move functions humanize and truncate  https://review.openstack.org/20754917:13
*** bluex-pl has quit IRC17:14
*** lapalm has joined #openstack-horizon17:17
*** lapalm has quit IRC17:17
*** lapalm has joined #openstack-horizon17:18
*** kzaitsev_mb has joined #openstack-horizon17:18
*** kmARC has joined #openstack-horizon17:21
*** e0ne has joined #openstack-horizon17:22
*** lapalm has quit IRC17:22
*** kzaitsev1mb has joined #openstack-horizon17:22
*** e0ne has quit IRC17:23
*** e0ne has joined #openstack-horizon17:23
*** bapalm_ has quit IRC17:25
*** annashen has quit IRC17:28
*** ybathia has joined #openstack-horizon17:32
*** jingjing_ren has joined #openstack-horizon17:33
*** Ala has quit IRC17:42
*** geoffarnold has quit IRC17:43
*** annashen has joined #openstack-horizon17:44
*** Sukhdev_ has joined #openstack-horizon17:44
*** alexvictorchan has joined #openstack-horizon17:45
*** annashen has quit IRC17:49
*** sjmc7 has quit IRC17:50
*** jwy has joined #openstack-horizon17:50
*** geoffarnold has joined #openstack-horizon17:52
*** saksham has joined #openstack-horizon17:53
*** annashen has joined #openstack-horizon17:56
*** alexpilotti has quit IRC17:56
*** Ephur has joined #openstack-horizon17:59
*** sjmc7 has joined #openstack-horizon18:01
*** nlahouti has quit IRC18:03
*** Drago has quit IRC18:04
*** Drago has joined #openstack-horizon18:04
*** nlahouti has joined #openstack-horizon18:05
*** ZZelle_ has joined #openstack-horizon18:06
*** kmARC has quit IRC18:06
*** MaxV has joined #openstack-horizon18:11
*** tqtran has joined #openstack-horizon18:12
tqtranping pong18:14
rajatvigping pong18:15
*** lapalm has joined #openstack-horizon18:18
*** jprovazn has quit IRC18:21
*** lapalm has quit IRC18:23
*** dboik has joined #openstack-horizon18:23
*** KunalGandhi has quit IRC18:24
*** ig0r__ has joined #openstack-horizon18:24
*** kmARC has joined #openstack-horizon18:25
*** jtomasek has joined #openstack-horizon18:26
*** jasondotstar has joined #openstack-horizon18:30
*** kzaitsev2mb has joined #openstack-horizon18:30
*** mwhagedorn_ has joined #openstack-horizon18:31
*** josecastroleon has joined #openstack-horizon18:31
*** KunalGandhi has joined #openstack-horizon18:31
*** kzaitsev2mb has quit IRC18:31
*** kzaitsev_mb has quit IRC18:31
*** kzaitsev_mb has joined #openstack-horizon18:32
*** nullvariable_ has joined #openstack-horizon18:32
*** mwhagedorn has quit IRC18:34
*** dsneddon has quit IRC18:34
*** nullvariable has quit IRC18:34
*** ericksonsantos has quit IRC18:34
*** vokhrimenko has quit IRC18:34
*** caspinol has quit IRC18:34
*** kzaitsev1mb has quit IRC18:34
*** mwhagedorn_ is now known as mwhagedorn18:34
*** linkedinyou has quit IRC18:34
*** ericksonfgds has joined #openstack-horizon18:34
*** jeffDeville has joined #openstack-horizon18:35
*** caspinol has joined #openstack-horizon18:35
*** vokhrimenko has joined #openstack-horizon18:35
*** nullvariable_ is now known as nullvariable18:36
jeffDevilleQuestion: When we create a project, the page sometimes refreshes before the workflow (that we've modified to add a group) is complete. How does this work?  I see that the response sets X-Horizon-Location:/identity/, but it looks like this is all happening before the workflow has finished its steps.18:38
*** pkarikh_ has joined #openstack-horizon18:41
*** pkarikh_ has left #openstack-horizon18:41
*** pkarikh_ has joined #openstack-horizon18:41
*** pkarikh_ has left #openstack-horizon18:41
*** pkarikh_ has joined #openstack-horizon18:41
tqtranTravT david-lyle: when will we know its ok to start approving again?18:41
*** dsneddon has joined #openstack-horizon18:44
pkarikh_tqtran: hello! Could you please take a look at this patch? https://review.openstack.org/#/c/165893/ Looks like I'm reverting some of you changes there. I'm fixing headers with ui-bootstrap 0.13 there.18:46
*** mpavlase has joined #openstack-horizon18:47
tqtranpkarikh: did you recently upgrade angular bootstrap?18:47
tqtranyou as in we as in us18:48
*** KunalGandhi has quit IRC18:48
*** KunalGan_ has joined #openstack-horizon18:48
*** jingjing_ren has quit IRC18:50
*** ig0r_ has quit IRC18:50
pkarikh_tqtran: yep, I've tried to use 0.13 and 0.13.1, as long as I rememver18:51
tqtranok so we're currently on v0.11.018:52
tqtranand they may have fixed the bug18:52
pkarikh_*your changes, yes, sorry)18:52
tqtranso you patch depends on angular bootstrap v0.13.x correct? do you have another patch to upgrade in global?18:53
tqtranwell, a better question would be, what features in v0.13 do we need?18:54
pkarikh_I've seen etherpad with priorities due liberty. Looks like Richard Jones planned to do it, but I've found this ether pad after I've made patch.18:55
pkarikh_https://etherpad.openstack.org/p/YVR-horizon-liberty-priorities18:55
*** MaxV has quit IRC18:55
tqtranI see.... I don't agree with upgrading just for the sake of doing it. Unless there is a feature we need.....18:56
tqtranI'm afraid of introducing more instability at this point18:56
*** jeffDevi_ has joined #openstack-horizon18:58
*** jeffDeville has quit IRC18:59
pkarikh_We use newer versions of ui-bootstrap with Merlin, and I've found that it causes issues with headers. So I made this patch for myself. But after that I've found this etherpad. I thought that there are some reasons to bumping ui-bootstrap version.19:00
tqtrannot that I'm aware of19:00
*** bapalm_ has joined #openstack-horizon19:00
pkarikh_*some reasons from Horizon side. Since it is in top priorities.19:00
*** josecastroleon has quit IRC19:01
tqtranr1chardj0n3s? is there a reason why we would want to upgrade?19:01
tqtrancould we defer this to release M? we currently don't have merlin integrated, and as far as I know, there isn't a need for the latest and greatest version19:02
pkarikh_tqtran: looks like Richard is afk. I've tried to ask him today already. But I've got your point, I'll try to ask him again.19:03
tqtran:) thanks!19:03
pkarikh_tqtran: yep, if there is no reasons from Horizon side, I think, it's not urgent.19:03
pkarikh_no problem. :)19:04
*** dansiwiec has quit IRC19:04
tqtran:D ok cool, tell timur i said hi!19:04
*** ig0r_ has joined #openstack-horizon19:04
pkarikh_tqtran: ok. :)19:04
*** lapalm has joined #openstack-horizon19:05
*** lapalm has quit IRC19:05
*** bapalm_ has quit IRC19:05
*** pkarikh_ has quit IRC19:06
openstackgerritKBrown proposed openstack/horizon: WIP: Add API services for system information  https://review.openstack.org/20519619:06
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473119:08
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473119:08
*** annashen has quit IRC19:08
*** annashen has joined #openstack-horizon19:09
*** tqtran is now known as tqtran-afk19:09
*** annashen has quit IRC19:10
*** annashen has joined #openstack-horizon19:10
*** geoffarnold has quit IRC19:11
*** lucas__ has quit IRC19:18
*** jeffDevi_ has quit IRC19:22
*** jeffDeville has joined #openstack-horizon19:23
*** e0ne has quit IRC19:25
*** annashen has quit IRC19:26
*** annashen has joined #openstack-horizon19:26
*** julim has quit IRC19:27
*** jasondotstar has quit IRC19:29
*** sqchen has quit IRC19:29
*** annashen_ has joined #openstack-horizon19:29
openstackgerritBrad P. Crochet proposed openstack/tuskar-ui: Do not sync parameters across roles  https://review.openstack.org/20758619:30
*** sqchen has joined #openstack-horizon19:30
*** linkedinyou has joined #openstack-horizon19:30
*** jingjing_ren has joined #openstack-horizon19:32
*** annashen_ has quit IRC19:34
*** lucas__ has joined #openstack-horizon19:34
jeffDevilleQuestion: When we create a project, the page sometimes refreshes before the workflow (that we've modified to add a group) is complete. How does this work?  I see that the response sets X-Horizon-Location:/identity/, but it looks like this is all happening before the workflow has finished its steps.19:34
*** jeffDeville has quit IRC19:40
*** jeffDeville has joined #openstack-horizon19:40
*** annashen has quit IRC19:40
*** annashen has joined #openstack-horizon19:41
*** Sukhdev_ has quit IRC19:44
*** openstackgerrit has quit IRC19:46
*** openstackgerrit has joined #openstack-horizon19:47
*** mpavlase has quit IRC19:48
*** skylerberg has quit IRC19:49
*** jasondotstar has joined #openstack-horizon19:50
*** geoffarnold has joined #openstack-horizon19:52
*** annashen has quit IRC19:56
*** ig0r_ has quit IRC19:56
*** julim has joined #openstack-horizon19:57
*** kzaitsev_mb has quit IRC19:57
*** annashen has joined #openstack-horizon19:57
*** belmoreira has joined #openstack-horizon19:57
*** jeffDeville has quit IRC20:02
*** nlahouti has quit IRC20:04
*** dansiwiec has joined #openstack-horizon20:04
*** dboik has quit IRC20:06
*** dboik has joined #openstack-horizon20:06
*** e0ne has joined #openstack-horizon20:11
*** tqtran-afk is now known as tqtran20:11
openstackgerritDan Siwiec proposed openstack/horizon: WIP - Image Details Edit/Delete (UX/Angular)  https://review.openstack.org/15840920:15
*** openstackgerrit has quit IRC20:16
*** openstackgerrit has joined #openstack-horizon20:17
*** rajatvig has quit IRC20:17
*** rajatvig has joined #openstack-horizon20:18
*** rajatvig has quit IRC20:25
*** rajatvig has joined #openstack-horizon20:25
*** Piet_ has quit IRC20:27
*** lucas__ has quit IRC20:29
*** Piet has joined #openstack-horizon20:33
*** lucas__ has joined #openstack-horizon20:33
*** sqchen has quit IRC20:34
*** lucas__ has quit IRC20:35
*** lucas__ has joined #openstack-horizon20:35
*** nlahouti has joined #openstack-horizon20:37
*** JeanBriceCombebi has joined #openstack-horizon20:39
*** dguerri is now known as dguerri`20:43
*** jbell8 has quit IRC20:44
*** lblanchard has quit IRC20:44
*** openstackgerrit has quit IRC20:46
*** openstackgerrit has joined #openstack-horizon20:47
*** jbell8 has joined #openstack-horizon20:47
*** lucas__ has quit IRC20:50
*** kzaitsev_mb has joined #openstack-horizon20:53
*** jasondotstar has quit IRC20:56
*** jamielennox|away is now known as jamielennox20:57
*** openstack has joined #openstack-horizon21:09
*** neelashah has quit IRC21:10
*** kzaitsev_mb has joined #openstack-horizon21:13
*** annashen has quit IRC21:15
*** yamamoto has joined #openstack-horizon21:15
*** annashen has joined #openstack-horizon21:18
*** zul has joined #openstack-horizon21:19
*** yamamoto has quit IRC21:19
openstackgerritCindy Lu proposed openstack/horizon: WIP Add Angular Table Footer Directive  https://review.openstack.org/20763121:19
*** jbell8 has quit IRC21:20
*** jtriley has quit IRC21:22
openstackgerritShaoquan Chen proposed openstack/horizon: JSCS Cleanup - Metadata widgets cleanup  https://review.openstack.org/20379521:26
*** lucas__ has joined #openstack-horizon21:26
openstackgerritShaoquan Chen proposed openstack/horizon: Angular metadata update modal  https://review.openstack.org/18427421:29
*** geoffarnold has quit IRC21:29
*** annashen_ has joined #openstack-horizon21:30
*** lucas__ has quit IRC21:31
*** annashen_ has quit IRC21:35
*** jwy has quit IRC21:41
*** geoffarnold has joined #openstack-horizon21:42
*** geoffarn_ has joined #openstack-horizon21:43
*** geoffarnold has quit IRC21:47
openstackgerritCindy Lu proposed openstack/horizon: Add Angular Table Footer Directive  https://review.openstack.org/20763121:47
*** JeanBriceCombebi has quit IRC21:47
*** nlahouti has quit IRC21:48
*** jasondotstar has joined #openstack-horizon21:48
*** nlahouti has joined #openstack-horizon21:49
openstackgerritCindy Lu proposed openstack/horizon: Add Angular Table Footer Directive  https://review.openstack.org/20763121:49
*** vijendar has quit IRC21:49
*** ig0r__ has quit IRC21:51
*** skylerberg has joined #openstack-horizon21:55
*** stevemar has quit IRC21:59
*** dboik has quit IRC21:59
*** kmARC has quit IRC21:59
*** stevemar has joined #openstack-horizon21:59
*** annashen has quit IRC22:02
*** jingjing_ren has quit IRC22:02
*** e0ne has quit IRC22:02
*** stevemar has quit IRC22:03
*** ybathia has quit IRC22:06
*** ybathia_ has joined #openstack-horizon22:06
*** ybathia_ has quit IRC22:07
*** ybathia has joined #openstack-horizon22:09
bpokornyTravT: Do you know what happened with this one after you approved it?  https://review.openstack.org/#/c/206765/22:10
bpokornyI'm wondering if I should just "reverify" it, but don't want to clog up the gate more if that's not the issue.22:11
TravTwow, that's weird.22:11
TravTit doesn't show up on http://status.openstack.org/zuul/22:11
bpokornyYeah, and others have been merged since then.22:11
TravTi think that is worth dropping a note in openstack-infra22:12
bpokornyThanks, I'll ask there.22:13
TravTsorry, i don't have a better answer22:13
TravTbut i know zuul is having problems22:13
TravTrunning out of diskspace22:13
bpokornynp.  Yeah, I know there have been some issues at the gate lately, so it might have got dropped from the queue while someone was debugging.22:14
*** kzaitsev_mb has quit IRC22:14
*** jamielennox is now known as jamielennox|away22:15
*** sjmc7 has quit IRC22:19
*** yamamoto has joined #openstack-horizon22:19
openstackgerritKBrown proposed openstack/horizon: WIP: Add API services for system information  https://review.openstack.org/20519622:21
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473122:21
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473122:21
*** jingjing_ren has joined #openstack-horizon22:22
r1chardj0n3smorning22:24
*** yamamoto has quit IRC22:24
r1chardj0n3stqtran: the newer ui-bootstrap has features I needed for Piet's new menu22:25
TravTmorning r1chardj0n3s22:27
tqtranr1chardj0n3s: ah.... ok, is Piet's new menu thing slated to land in liberty?22:27
tqtranif not, i would prefer to see it deferred22:28
r1chardj0n3syeah, probably deferrable - you'd have to ask piet :)22:28
PietNot the menu, but the new IA22:28
PietWe still need to iterate on the new menu22:29
r1chardj0n3syup22:29
r1chardj0n3sok22:29
*** lucas__ has joined #openstack-horizon22:29
PietThanks22:29
r1chardj0n3sI gotta duck away for a bit (school run)22:29
tqtrancoolios22:29
openstackgerritDan Siwiec proposed openstack/horizon: WIP - Image Detail Redesign (Angular/UX)  https://review.openstack.org/17388522:33
*** lucas__ has quit IRC22:34
*** geoffarnold has joined #openstack-horizon22:34
david-lyler1chardj0n3s: read that as (scotch run)22:36
*** belmoreira has quit IRC22:37
*** geoffarn_ has quit IRC22:37
*** tqtran has quit IRC22:39
*** Sukhdev_ has joined #openstack-horizon22:39
*** rajatvig has quit IRC22:41
*** sayan has quit IRC22:42
*** rajatvig has joined #openstack-horizon22:42
*** sjmc7 has joined #openstack-horizon22:43
*** harlowja has quit IRC22:44
*** harlowja has joined #openstack-horizon22:44
*** kzaitsev_mb has joined #openstack-horizon22:47
openstackgerritTravis Tripp proposed openstack/horizon: Remove key-pair-details.html duplicate  https://review.openstack.org/20765522:50
sqchenHi Travis, are you around?22:51
sqchenTravT ^22:52
TravThi sqchen22:52
sqchenWhen get a chance, can you re-visit this one: https://review.openstack.org/#/c/199319/ ? it work fine now.22:53
*** jingjing_ren has quit IRC22:54
r1chardj0n3sdavid-lyle: it's a bit early for a scotch run, even for me ;)23:00
openstackgerritDan Siwiec proposed openstack/horizon: WIP - Image Details Edit/Delete (UX/Angular)  https://review.openstack.org/15840923:02
*** zhenguo has joined #openstack-horizon23:03
*** dansiwiec has quit IRC23:05
*** rajatvig has quit IRC23:05
*** rajatvig has joined #openstack-horizon23:05
*** jamespd has joined #openstack-horizon23:06
david-lyler1chardj0n3s: don't sell yourself short23:06
*** lucas__ has joined #openstack-horizon23:06
r1chardj0n3sTravT: did you make any further headway on the transfer table thing?23:08
TravThey r1chardj0n3s23:08
TravTi tried a bunch of things out and shared info on that patch.23:08
TravTjust talked through it with tqtran23:08
r1chardj0n3sI spent yesterday gathering up the various pieces of my life from the last couple of weeks ;) [including dealing with tax filing errors, yay!]23:08
r1chardj0n3sok23:08
r1chardj0n3sif it's in the scrollback I'll read23:09
TravTno, i had to show him on a hangout to talk through it, because needed screen sharing.23:09
TravTbut synopsis is this:23:09
TravTput my onLoad discoveries on here: https://review.openstack.org/#/c/202315/23:10
*** jwy has joined #openstack-horizon23:10
TravThz-header is probably useful, but in this case does seem to be treating symptom rather than problem23:11
TravTDRY23:11
openstackgerritKBrown proposed openstack/horizon: WIP: Add API services for system information  https://review.openstack.org/20519623:11
*** lucas__ has quit IRC23:11
r1chardj0n3shz-header or hz-include?23:11
TravTallocated and available is just redundancy23:11
TravToops23:11
TravThz-include23:11
r1chardj0n3sI agree on both of those points, yes23:11
r1chardj0n3scool23:11
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473123:11
r1chardj0n3sbut there's still some technical issues to solve, I assume?23:11
TravTso, thai and I talked about how to get rid of some of that with some ideas23:11
*** lucas__ has joined #openstack-horizon23:11
TravThe's going to work on it a bit and put up a patch for us to look over23:12
r1chardj0n3sok23:12
r1chardj0n3sif he's gonna bang away on it, I'll focus on other things23:12
r1chardj0n3sthanks for the update!23:12
TravTyeah.23:12
TravTnp23:13
*** lucas____ has joined #openstack-horizon23:13
*** lucas__ has quit IRC23:15
*** lucas____ has quit IRC23:17
*** tqtran has joined #openstack-horizon23:18
openstackgerritZhenguo Niu proposed openstack/horizon: Use form field errors on volume Extend form  https://review.openstack.org/20015823:20
tqtrankrotscheck: is there a reason why eslint-config-openstack requires eslint exactly v0.23.0?23:20
tqtrannpm ERR! peerinvalid The package eslint does not satisfy its siblings' peerDependencies requirements! npm ERR! peerinvalid Peer eslint-config-openstack@1.2.0 wants eslint@0.23.0 npm ERR! peerinvalid Peer eslint-plugin-angular@0.2.0 wants eslint@>=0.8.023:21
openstackgerritDiana Whitten proposed openstack/horizon: Top Nav is responsive and inherits from its theme  https://review.openstack.org/20766023:22
*** clu_ has joined #openstack-horizon23:23
*** htruta has quit IRC23:26
openstackgerritShaoquan Chen proposed openstack/horizon: Adding and using app.scss  https://review.openstack.org/20766823:27
openstackgerritDiana Whitten proposed openstack/horizon: Top Nav is responsive and inherits from its theme  https://review.openstack.org/20766023:28
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473123:29
*** Piet has quit IRC23:30
openstackgerritKBrown proposed openstack/horizon: WIP: Add API services for system information  https://review.openstack.org/20519623:30
*** annashen has joined #openstack-horizon23:31
hurgleburglerIf anyone is interested in the top navbar markup and css, I would love some eyes and testing on this: https://review.openstack.org/#/c/207660/23:34
*** jingjing_ren has joined #openstack-horizon23:34
openstackgerritZhenguo Niu proposed openstack/horizon: Add volume migration support  https://review.openstack.org/18681023:34
r1chardj0n3shurgleburgler: https://blueprints.launchpad.net/horizon/+spec/bootstrap-html-standards makes me happy :)23:35
hurgleburglerr1chardj0n3s ^523:35
r1chardj0n3salso, getting things fixed will make upgrading ui-bootstrap easier I believe23:36
*** annashen has quit IRC23:36
r1chardj0n3susing <nav> was one of the major issues I had with the current ui-bootstrap23:36
hurgleburglerThe sidebar is next23:36
hurgleburglerI'm gonna make it into vertical pills23:36
r1chardj0n3scool23:36
* r1chardj0n3s goes to review patches23:36
r1chardj0n3s(if you need help, please shout :)23:36
hurgleburglerThanks!23:37
*** jingjing_ren has quit IRC23:38
krotschecktqtran: Because fuzzy versions are evil.23:40
krotschecktqtran: But I've already hit some issues with that, so relaxing it until we get proper dependency synchronization for JS projects is something we should do23:40
*** rajatvig has quit IRC23:40
krotscheckLemme go do that.23:40
openstackgerritKBrown proposed openstack/horizon: WIP: Add angular system information panel  https://review.openstack.org/20473123:42
*** doug-fish has quit IRC23:44
*** doug-fish has joined #openstack-horizon23:45
krotschecktqtran: https://review.openstack.org/#/c/207669/23:46
openstackgerritTravis Tripp proposed openstack/horizon: Update NG Images to use angular translate filter  https://review.openstack.org/20767023:49
*** ZZelle_ has quit IRC23:52
*** emw has quit IRC23:53
*** Berezin has joined #openstack-horizon23:54
*** Piet has joined #openstack-horizon23:54
*** Piet has quit IRC23:54
*** alexvictorchan has quit IRC23:58

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