*** kyleolivo has quit IRC | 00:02 | |
*** kristinebrown has joined #openstack-horizon | 00:02 | |
*** dansiwiec has quit IRC | 00:03 | |
TravT | tqtran: r1chardj0n3s: i could chat more on that patch now if you want, but i see r1chardj0n3s entered some comments as well. | 00:07 |
---|---|---|
TravT | maybe tqtran, you could provide more info as per the comments and then we can have follow-on conversation? | 00:07 |
*** annashen has joined #openstack-horizon | 00:08 | |
tqtran | so, what im hearing is, we need to be clearer when you should use it and when you shouldn't | 00:08 |
tqtran | and the rationale behind why we need it | 00:08 |
tqtran | is that the only concern, or is the directive not useful enough to warrant a patch? | 00:09 |
TravT | i think that's what your hearing... i'm not sure on the second one. | 00:09 |
TravT | i look at the current ng-include and realize a fair amount of that code seems to do with animations. | 00:10 |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Improving Horizon's angular module management: https://review.openstack.org/199319 | 00:10 |
TravT | i 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 |
tqtran | you could, but thats not what onload was intended for | 00:11 |
tqtran | its really for you to load up some code once your template loads | 00:11 |
TravT | current 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 IRC | 00:12 | |
tqtran | ng-include is far more complicated | 00:12 |
*** annashen has quit IRC | 00:12 | |
tqtran | hz-include basically fetches your template via ajax and appends it | 00:12 |
TravT | yeah, i can't see why we'd need the animation stuff in simple cases. | 00:12 |
*** darrenc_afk is now known as darrenc | 00:14 | |
tqtran | we had to circumvent the same issue by using kelly's bind scope | 00:14 |
tqtran | so its not the first time its come up | 00:14 |
TravT | yeah... 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 IRC | 00:18 | |
tqtran | http://stackoverflow.com/questions/12164138/what-is-the-difference-between-compile-and-link-function-in-angularjs | 00:19 |
*** kristinebrown has quit IRC | 00:19 | |
*** Sukhdev_ has quit IRC | 00:19 | |
tqtran | in this case, i dont think it matters, hz-include doesn't have a template DOM | 00:19 |
TravT | i know the phases... | 00:19 |
TravT | Well, maybe this just goes back to making the use case for it cleaner in the documentation | 00:21 |
tqtran | so bottom line is, do we find this useful enough to make into a directive? if not i will abandon it | 00:21 |
*** tjones has joined #openstack-horizon | 00:21 | |
TravT | do you use it in the dependent patch? | 00:22 |
tqtran | yeah, using it for the transfer table | 00:22 |
tqtran | i can rewrite that part to pass in a scope using the onload attr | 00:22 |
*** jasondotstar has quit IRC | 00:23 | |
tqtran | but again, its messy, and i havent tested it out yet, so it might or might not work | 00:23 |
tqtran | since transfer table relies on a number of scope references | 00:23 |
r1chardj0n3s | tqtran, TravT hi guys, sorry was in meeting for a bit there | 00:24 |
TravT | finally found your usage tqtran... | 00:25 |
TravT | https://review.openstack.org/#/c/202315/10/openstack_dashboard/dashboards/identity/static/dashboard/identity/users/steps/select-projects/select-projects.html | 00:25 |
tqtran | yessir, and if you look into the allocated and available HTML files | 00:26 |
tqtran | you will see that I'm referencing the controller directly | 00:27 |
*** saksham has quit IRC | 00:27 | |
tqtran | when i tried that using ng-include, it did not work... | 00:28 |
r1chardj0n3s | so why is an include even used in there? why aren't those fragments just part of select-projects.html? | 00:28 |
tqtran | well the original idea was to reduce duplication among those two fragments, since they share some similar part | 00:29 |
*** annashen has joined #openstack-horizon | 00:29 | |
r1chardj0n3s | but that's not been achieved, has it? if I'm missing something, I apologise :) | 00:30 |
*** Sukhdev_ has joined #openstack-horizon | 00:30 | |
tqtran | haha 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 table | 00:31 |
tqtran | at most you'll only need to add a few to the allocated table, so having a search there didnt make sense | 00:31 |
TravT | yeah, that thought seems right. | 00:32 |
r1chardj0n3s | yep | 00:32 |
tqtran | the code morphed a bit as i worked on it, so i didnt follow through with the original intent | 00:32 |
TravT | every time i see transfer table i feel like more could be templated via a directive or sub-directives | 00:32 |
tqtran | originally, i was thinking we can just duplicate it in the transfter table directive itself | 00:33 |
r1chardj0n3s | yeah, they do feel a bit duplicatey | 00:33 |
TravT | opportunities for reuse seem more likely in the header and columns | 00:34 |
*** shivrao has quit IRC | 00:34 | |
tqtran | but that proved to be quite complicated because we would have to replace certain keywords as we clone the template for both available and allocated | 00:34 |
*** annashen has quit IRC | 00:34 | |
r1chardj0n3s | maybe 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 solve | 00:34 |
*** kyleolivo has joined #openstack-horizon | 00:35 | |
*** jingjing_ren has quit IRC | 00:35 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP : API for getting default quotas in admin https://review.openstack.org/207126 | 00:35 |
r1chardj0n3s | then transfer-table v 2.0 can maybe automatically (or semi- with directive help) manage that duplication for us | 00:35 |
tqtran | anyway, i ended up doing it this way. so thats the long story of how i got here | 00:35 |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP : API for getting default quotas in admin https://review.openstack.org/207126 | 00:35 |
r1chardj0n3s | yep :) | 00:35 |
TravT | so, 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 |
r1chardj0n3s | yep | 00:35 |
TravT | i found the details to be a good place for ng-include | 00:36 |
r1chardj0n3s | also, reduces the need for hz-include :) | 00:36 |
tqtran | you'll need to change in two places regardless | 00:36 |
TravT | two places, but one file... | 00:36 |
TravT | 4 places | 00:36 |
r1chardj0n3s | ^^ | 00:36 |
r1chardj0n3s | yep | 00:36 |
TravT | <th and <td in both | 00:36 |
TravT | or thai | 00:36 |
*** Sukhdev_ has quit IRC | 00:37 | |
TravT | maybe you could do ng-include and put search bar as in ng-if | 00:37 |
r1chardj0n3s | mmm | 00:37 |
tqtran | no..... | 00:37 |
openstackgerrit | Rajat Vig proposed openstack/horizon: JSCS Cleanup - horizon/ tech-debt https://review.openstack.org/199345 | 00:37 |
TravT | ahh | 00:37 |
TravT | the scope | 00:37 |
tqtran | https://review.openstack.org/#/c/202315/10/openstack_dashboard/dashboards/identity/static/dashboard/identity/users/steps/select-projects/select-projects.table.allocated.html | 00:37 |
tqtran | L4 L5 | 00:37 |
tqtran | L 16 | 00:37 |
*** dboik has joined #openstack-horizon | 00:37 | |
tqtran | they are all specific to allocated object | 00:38 |
*** tjones has quit IRC | 00:38 | |
tqtran | so 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 table | 00:39 |
r1chardj0n3s | hmm, I really wish we were standing in front of a whiteboard right now ;) | 00:39 |
tqtran | but again, thats not exactly an improvement over hz-include | 00:39 |
tqtran | I guess bottom line for me is, we just need to reach a decision so i can move on with my create actions patch | 00:40 |
r1chardj0n3s | so 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 |
TravT | iAvailable, available, were passed into onLoad and search bar is toggled on var... | 00:40 |
TravT | why can't it be a single file? | 00:40 |
r1chardj0n3s | yeah | 00:40 |
tqtran | it can be in a single file | 00:40 |
tqtran | just saying we wont be able to reuse/duplicate it for <allocated> and <available> | 00:41 |
tqtran | it would have to be manually written out | 00:41 |
*** vishwanathj has joined #openstack-horizon | 00:41 | |
r1chardj0n3s | TravT: 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 case | 00:42 |
TravT | i'm saying can't they all be passed in as vars | 00:42 |
r1chardj0n3s | I think that's the problem anyway | 00:42 |
r1chardj0n3s | oh, yes, I agree that should be a solution | 00:42 |
tqtran | how about this, pull down the patch and experiment on it | 00:43 |
TravT | lol | 00:43 |
TravT | i knew you were going to say that. | 00:43 |
tqtran | then we can reconvene and consider alternative solutions | 00:43 |
TravT | ok, i can do that, but not until tomorrow probably | 00:43 |
tqtran | :P | 00:43 |
r1chardj0n3s | I'd like to see the allocated/available HTML transcluded in the transfer-table itself, and automatically fed the appopriate vars :) | 00:43 |
TravT | it is nearly 7 here | 00:43 |
tqtran | r1chardj0n3s: it is transcluded :P | 00:44 |
r1chardj0n3s | DONE! | 00:44 |
r1chardj0n3s | :) | 00:44 |
* r1chardj0n3s moves on to next problem | 00:44 | |
tqtran | but that doesnt solve the problem | 00:44 |
r1chardj0n3s | :P | 00:44 |
tqtran | the problem isnt the transclude, its the template duplication | 00:44 |
r1chardj0n3s | yeah, my solution has no template! | 00:44 |
tqtran | or just kelly to fix it :P | 00:44 |
tqtran | ongk: PING PING, can you fix it?! | 00:44 |
ongk | Yes | 00:45 |
ongk | what am I fixing? | 00:45 |
tqtran | woooot! | 00:45 |
tqtran | DONE! | 00:45 |
tqtran | next proble | 00:45 |
* r1chardj0n3s heads to the bar with tqtran, job done | 00:45 | |
*** jtriley has joined #openstack-horizon | 00:45 | |
TravT | hey, i'm in on the bar | 00:46 |
r1chardj0n3s | wait, it's 10:45am, probably too early for the bar yet | 00:46 |
*** vishwanathj has quit IRC | 00:46 | |
TravT | brunch | 00:46 |
*** vishwanathj has joined #openstack-horizon | 00:46 | |
tqtran | ok TravT let me upload latest patchset and you can play with it. | 00:46 |
r1chardj0n3s | beerbrunch | 00:46 |
TravT | beerunch | 00:46 |
openstackgerrit | Thai Tran proposed openstack/horizon: WIP Adding CREATE action to identity users panel https://review.openstack.org/202315 | 00:46 |
r1chardj0n3s | TravT: I was totally going to write that :) | 00:47 |
TravT | or we can just shorten it to "beer" | 00:47 |
tqtran | beerbrunch lol | 00:47 |
tqtran | beerunch? | 00:47 |
ongk | I’m down for the b—runch part | 00:48 |
r1chardj0n3s | TravT: https://goo.gl/photos/o8yCV7paQ5pvAVjG6 | 00:48 |
r1chardj0n3s | thanks for suggesting that, BTW :() | 00:48 |
tqtran | nice.... | 00:49 |
TravT | r1chardj0n3s: sweet! | 00:49 |
TravT | you and your minion | 00:49 |
r1chardj0n3s | :) | 00:49 |
*** nlahouti has quit IRC | 00:53 | |
*** geoffarnold has quit IRC | 00:54 | |
*** vishwanathj has quit IRC | 00:55 | |
*** amotoki has joined #openstack-horizon | 00:58 | |
*** h00327910__ has joined #openstack-horizon | 00:58 | |
*** jasondotstar has joined #openstack-horizon | 00:58 | |
r1chardj0n3s | um. someone filed a bug against angboard a couple of days ago. | 01:00 |
r1chardj0n3s | s/days/hours | 01:00 |
tqtran | DANG | 01:01 |
tqtran | its still hot off the stove | 01:01 |
*** kzaitsev_mb has quit IRC | 01:03 | |
*** ongk has quit IRC | 01:04 | |
*** mwhagedorn has quit IRC | 01:06 | |
*** xiangxinyong1 has joined #openstack-horizon | 01:08 | |
*** tjones has joined #openstack-horizon | 01:08 | |
tqtran | ok taking off, gnite folks | 01:11 |
*** tqtran has quit IRC | 01:11 | |
*** kzaitsev_mb has joined #openstack-horizon | 01:15 | |
r1chardj0n3s | (cya thai) | 01:15 |
*** alexvictorchan has joined #openstack-horizon | 01:18 | |
*** xiangxinyong1 has left #openstack-horizon | 01:18 | |
openstackgerrit | ziyu032 proposed openstack/horizon: Display the primary project name of the user in user table https://review.openstack.org/205887 | 01:28 |
*** chlong has joined #openstack-horizon | 01:29 | |
*** annashen has joined #openstack-horizon | 01:30 | |
*** annashen has quit IRC | 01:35 | |
*** jasondotstar has quit IRC | 01:35 | |
*** kzaitsev_mb has quit IRC | 01:42 | |
*** pkarikh has quit IRC | 01:47 | |
openstackgerrit | Tracy Jones proposed openstack/horizon: favicon, logo and logo-splash should allow theme overrides https://review.openstack.org/195751 | 01:56 |
*** yamamoto has joined #openstack-horizon | 02:03 | |
*** annashen has joined #openstack-horizon | 02:05 | |
*** dboik has quit IRC | 02:05 | |
*** skylerberg has quit IRC | 02:08 | |
*** bpokorny has quit IRC | 02:12 | |
*** kyleolivo has quit IRC | 02:14 | |
*** jtriley has quit IRC | 02:14 | |
*** jasondotstar has joined #openstack-horizon | 02:31 | |
*** annashen_ has joined #openstack-horizon | 02:31 | |
*** tjones has quit IRC | 02:31 | |
*** tyr has quit IRC | 02:32 | |
*** tyr_ has joined #openstack-horizon | 02:33 | |
*** annashen_ has quit IRC | 02:36 | |
*** jasondotstar has quit IRC | 02:41 | |
*** skylerberg has joined #openstack-horizon | 02:53 | |
*** KunalGandhi has quit IRC | 02:55 | |
*** stevemar has joined #openstack-horizon | 03:00 | |
*** jbell8 has joined #openstack-horizon | 03:11 | |
*** tjones has joined #openstack-horizon | 03:15 | |
*** stevemar has quit IRC | 03:15 | |
*** stevemar has joined #openstack-horizon | 03:16 | |
*** kevinbenton has quit IRC | 03:18 | |
*** stevemar has quit IRC | 03:19 | |
*** kevinbenton has joined #openstack-horizon | 03:20 | |
*** stevemar has joined #openstack-horizon | 03:23 | |
*** annashen_ has joined #openstack-horizon | 03:32 | |
*** julim has quit IRC | 03:32 | |
*** lucas__ has joined #openstack-horizon | 03:33 | |
*** annashen_ has quit IRC | 03:37 | |
*** lucas__ has quit IRC | 03:37 | |
*** jbell8 has quit IRC | 03:47 | |
*** jamielennox|away is now known as jamielennox | 03:47 | |
*** kevinbenton has quit IRC | 03:56 | |
*** kevinbenton has joined #openstack-horizon | 04:01 | |
*** annashen has quit IRC | 04:03 | |
*** btully has quit IRC | 04:16 | |
*** tyr_ has quit IRC | 04:20 | |
*** jbell8 has joined #openstack-horizon | 04:24 | |
*** Drago has quit IRC | 04:29 | |
*** jbell8 has quit IRC | 04:30 | |
*** annashen has joined #openstack-horizon | 04:33 | |
*** jamielennox is now known as jamielennox|away | 04:33 | |
*** davidmichaelkarr has joined #openstack-horizon | 04:37 | |
*** annashen has quit IRC | 04:38 | |
*** yamamoto has quit IRC | 04:38 | |
*** stevemar has quit IRC | 04:39 | |
*** annashen has joined #openstack-horizon | 04:50 | |
*** yamamoto has joined #openstack-horizon | 04:52 | |
*** tjones has quit IRC | 04:54 | |
*** darrenc is now known as darrenc_afk | 04:56 | |
*** Drago1 has joined #openstack-horizon | 05:03 | |
*** linkedinyou has joined #openstack-horizon | 05:09 | |
*** geoffarnold has joined #openstack-horizon | 05:12 | |
*** alexvictorchan has quit IRC | 05:13 | |
*** geoffarnold has quit IRC | 05:15 | |
*** annashen has quit IRC | 05:18 | |
*** geoffarnold has joined #openstack-horizon | 05:18 | |
*** jmolo has joined #openstack-horizon | 05:24 | |
*** jmolo has quit IRC | 05:27 | |
*** Ephur has joined #openstack-horizon | 05:27 | |
*** btully has joined #openstack-horizon | 05:30 | |
*** KunalGandhi has joined #openstack-horizon | 05:31 | |
*** Ephur has quit IRC | 05:33 | |
*** annashen has joined #openstack-horizon | 05:34 | |
*** btully has quit IRC | 05:34 | |
*** annashen has quit IRC | 05:39 | |
*** lexholden has quit IRC | 05:40 | |
*** darrenc_afk is now known as darrenc | 05:40 | |
*** KunalGandhi has quit IRC | 05:43 | |
*** KunalGandhi has joined #openstack-horizon | 05:43 | |
*** annashen has joined #openstack-horizon | 05:45 | |
*** lsmola has joined #openstack-horizon | 05:54 | |
*** btully has joined #openstack-horizon | 05:55 | |
*** jtomasek has quit IRC | 05:56 | |
*** nlahouti has joined #openstack-horizon | 05:58 | |
*** josecastroleon has joined #openstack-horizon | 05:58 | |
*** btully has quit IRC | 05:59 | |
*** jith_ has quit IRC | 06:01 | |
*** dansiwiec has joined #openstack-horizon | 06:03 | |
*** nlahouti has quit IRC | 06:03 | |
*** nlahouti has joined #openstack-horizon | 06:03 | |
*** nlahouti has quit IRC | 06:18 | |
*** alexvictorchan has joined #openstack-horizon | 06:18 | |
*** jbell8 has joined #openstack-horizon | 06:18 | |
openstackgerrit | lyanchih proposed openstack/horizon: Couldn't provision instance from volume snapshot https://review.openstack.org/199457 | 06:20 |
*** dansiwiec has quit IRC | 06:23 | |
*** jbell8 has quit IRC | 06:23 | |
openstackgerrit | eric proposed openstack/horizon: CSS get None when error in inline_editing https://review.openstack.org/207313 | 06:24 |
*** saksham has joined #openstack-horizon | 06:26 | |
*** ankit_ag has joined #openstack-horizon | 06:29 | |
*** annashen_ has joined #openstack-horizon | 06:35 | |
*** skylerberg has quit IRC | 06:36 | |
*** annashen_ has quit IRC | 06:39 | |
*** rdopiera has joined #openstack-horizon | 06:39 | |
*** david-lyle has quit IRC | 06:43 | |
*** saksham has left #openstack-horizon | 06:44 | |
*** mpavlase has joined #openstack-horizon | 06:46 | |
*** annashen has quit IRC | 06:46 | |
*** david-lyle has joined #openstack-horizon | 06:49 | |
*** ChanServ sets mode: +o david-lyle | 06:49 | |
*** stevemar has joined #openstack-horizon | 06:55 | |
*** MaxV has joined #openstack-horizon | 06:58 | |
*** stevemar has quit IRC | 06:58 | |
*** Ala has joined #openstack-horizon | 07:04 | |
*** davidmichaelkarr has quit IRC | 07:07 | |
*** masco has joined #openstack-horizon | 07:09 | |
*** belmoreira has joined #openstack-horizon | 07:10 | |
*** KunalGan_ has joined #openstack-horizon | 07:16 | |
*** markus_z has joined #openstack-horizon | 07:16 | |
*** KunalGandhi has quit IRC | 07:19 | |
*** KunalGan_ has quit IRC | 07:21 | |
*** dansiwiec has joined #openstack-horizon | 07:23 | |
*** vishwanathj has joined #openstack-horizon | 07:23 | |
openstackgerrit | eric proposed openstack/horizon: CSS get None when error in inline_editing https://review.openstack.org/207313 | 07:24 |
*** chlong has quit IRC | 07:25 | |
*** jcoufal has joined #openstack-horizon | 07:26 | |
*** vishwanathj has quit IRC | 07:28 | |
*** vishwanathj has joined #openstack-horizon | 07:29 | |
*** dansiwiec has quit IRC | 07:29 | |
*** wim_dc has joined #openstack-horizon | 07:35 | |
*** annashen has joined #openstack-horizon | 07:35 | |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Restrict Upload Image form->Image URL field to http/https schemas https://review.openstack.org/204105 | 07:39 |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Add backend for Horizon memcache https://review.openstack.org/171679 | 07:40 |
*** annashen has quit IRC | 07: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-horizon | 07:43 | |
*** geoffarnold has quit IRC | 07:47 | |
*** geoffarnold has joined #openstack-horizon | 07:47 | |
*** btully has quit IRC | 07: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 jamielennox | 07:57 | |
*** rahulshivsharan has joined #openstack-horizon | 08:02 | |
*** mpavlase has quit IRC | 08:06 | |
*** mpavlase has joined #openstack-horizon | 08:07 | |
*** ygbo has joined #openstack-horizon | 08:08 | |
*** markus_z has quit IRC | 08:09 | |
*** Drago1 has quit IRC | 08:13 | |
*** kmARC has joined #openstack-horizon | 08:14 | |
*** rahulshivsharan has quit IRC | 08:24 | |
*** kiran-r has joined #openstack-horizon | 08:25 | |
*** romainh has joined #openstack-horizon | 08:26 | |
*** mohankumar has quit IRC | 08:29 | |
*** sayan has joined #openstack-horizon | 08:29 | |
*** annashen has joined #openstack-horizon | 08:36 | |
*** bfic has joined #openstack-horizon | 08:37 | |
*** mpavlase has quit IRC | 08:37 | |
*** ZZelle has joined #openstack-horizon | 08:38 | |
*** mpavlase has joined #openstack-horizon | 08:40 | |
*** annashen has quit IRC | 08:41 | |
*** pkarikh has joined #openstack-horizon | 08:44 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:46 | |
*** aix has joined #openstack-horizon | 08:47 | |
*** rahulshivsharan has joined #openstack-horizon | 08:52 | |
*** jtomasek has joined #openstack-horizon | 08: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-horizon | 09:03 | |
*** rahulshivsharan has quit IRC | 09:04 | |
*** rahulshivsharan has joined #openstack-horizon | 09:05 | |
*** kjelly has joined #openstack-horizon | 09:06 | |
*** chlong has joined #openstack-horizon | 09:07 | |
*** jtomasek has quit IRC | 09:09 | |
*** bluex-pl has joined #openstack-horizon | 09:09 | |
*** jtomasek has joined #openstack-horizon | 09:10 | |
*** jtomasek has quit IRC | 09:15 | |
*** mohankumar has joined #openstack-horizon | 09:19 | |
*** JeanBriceCombebi has quit IRC | 09:19 | |
*** JeanBriceCombebi has joined #openstack-horizon | 09:20 | |
openstackgerrit | vaibhav proposed openstack/horizon: Adding new rules, fields marked asterisk in dashboard https://review.openstack.org/207357 | 09:23 |
*** rahulshivsharan has quit IRC | 09:23 | |
*** jamielennox is now known as jamielennox|away | 09:25 | |
*** jtomasek has joined #openstack-horizon | 09:27 | |
*** ig0r_ has joined #openstack-horizon | 09:31 | |
*** JeanBriceCombebi has quit IRC | 09:35 | |
*** jcoufal has quit IRC | 09:35 | |
*** annashen has joined #openstack-horizon | 09:37 | |
*** JeanBriceCombebi has joined #openstack-horizon | 09:39 | |
openstackgerrit | eric proposed openstack/horizon: CSS get None when error in inline_editing https://review.openstack.org/207313 | 09:41 |
*** annashen has quit IRC | 09:42 | |
*** kjelly has quit IRC | 09:49 | |
*** jcoufal has joined #openstack-horizon | 09:52 | |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Drop QUnit JS tests in favor of Jasmine https://review.openstack.org/156572 | 09:54 |
*** stevemar has joined #openstack-horizon | 09:55 | |
*** jbell8 has joined #openstack-horizon | 09:56 | |
*** stevemar has quit IRC | 09:59 | |
*** yamamoto has quit IRC | 10:00 | |
openstackgerrit | Masco Kaliyamoorthy proposed openstack/horizon: Exclude network which don't have subnet https://review.openstack.org/207370 | 10:00 |
*** jbell8 has quit IRC | 10:00 | |
*** alexpilotti has joined #openstack-horizon | 10:01 | |
*** jcoufal has quit IRC | 10:02 | |
*** jcoufal has joined #openstack-horizon | 10:12 | |
*** jasondotstar has joined #openstack-horizon | 10:15 | |
*** romainh has quit IRC | 10:23 | |
*** masco has quit IRC | 10:23 | |
*** lucasagomes has joined #openstack-horizon | 10:28 | |
*** lucasagomes has left #openstack-horizon | 10:28 | |
*** jprovazn has joined #openstack-horizon | 10:30 | |
*** josecastroleon has quit IRC | 10:34 | |
*** yamamoto has joined #openstack-horizon | 10:35 | |
*** masco has joined #openstack-horizon | 10:37 | |
*** annashen has joined #openstack-horizon | 10:38 | |
*** aix has quit IRC | 10:39 | |
*** yamamoto has quit IRC | 10:39 | |
*** kzaitsev_mb has joined #openstack-horizon | 10:40 | |
*** annashen has quit IRC | 10:42 | |
*** yamamoto has joined #openstack-horizon | 10:43 | |
openstackgerrit | Zhenguo Niu proposed openstack/horizon: User email no longer raises exceptions if missing https://review.openstack.org/207392 | 10:50 |
*** zhenguo has quit IRC | 11:04 | |
openstackgerrit | Vitaly Gridnev proposed openstack/horizon: Allow to configure autoconfiguration for templates https://review.openstack.org/207399 | 11:05 |
openstackgerrit | Rob Cresswell proposed openstack/horizon: Remove Router Dashboard https://review.openstack.org/197969 | 11:05 |
openstackgerrit | Vitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates https://review.openstack.org/207399 | 11:06 |
*** romainh has joined #openstack-horizon | 11:10 | |
*** aix has joined #openstack-horizon | 11:13 | |
*** josecastroleon has joined #openstack-horizon | 11:14 | |
openstackgerrit | Vitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates https://review.openstack.org/207399 | 11:17 |
*** geoffarnold has quit IRC | 11:17 | |
*** geoffarnold has joined #openstack-horizon | 11:17 | |
*** jasondotstar has quit IRC | 11:19 | |
*** sayan has quit IRC | 11:21 | |
*** jcoufal has quit IRC | 11:26 | |
*** jcoufal has joined #openstack-horizon | 11:26 | |
*** sayan has joined #openstack-horizon | 11:36 | |
*** annashen has joined #openstack-horizon | 11:39 | |
*** annashen has quit IRC | 11:43 | |
*** JeanBriceCombebi has quit IRC | 11:44 | |
*** e0ne has quit IRC | 11:47 | |
*** yamamoto has quit IRC | 11:55 | |
openstackgerrit | vaibhav 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/207417 | 11:57 |
openstack | bug 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-horizon | 12:06 | |
*** yamamoto has joined #openstack-horizon | 12:06 | |
*** kiran-r has quit IRC | 12:09 | |
*** yamamoto has quit IRC | 12:11 | |
*** _kiran_ has quit IRC | 12:20 | |
*** jasondotstar has joined #openstack-horizon | 12:22 | |
*** ericksonsantos has joined #openstack-horizon | 12:25 | |
*** stevemar has joined #openstack-horizon | 12:26 | |
openstackgerrit | Vitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates https://review.openstack.org/207399 | 12:28 |
*** stevemar has quit IRC | 12:28 | |
*** yamamoto has joined #openstack-horizon | 12:30 | |
*** jamielennox|away is now known as jamielennox | 12:35 | |
pkarikh | r1chardj0n3s: 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-horizon | 12:39 | |
*** romainh has left #openstack-horizon | 12:40 | |
*** annashen has joined #openstack-horizon | 12:40 | |
*** jprovazn has quit IRC | 12:42 | |
*** jprovazn has joined #openstack-horizon | 12:43 | |
*** annashen has quit IRC | 12:44 | |
*** robcresswell has joined #openstack-horizon | 12:45 | |
pkarikh | robcreswell: hi! | 12:46 |
*** hurgleburgler has quit IRC | 12:48 | |
robcresswell | pkarikh: o/ | 12:51 |
pkarikh | robcreswell: 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-horizon | 12:52 | |
robcresswell | pkarikh: There's no "Back to all" | 12:53 |
robcresswell | Which would be useful | 12:53 |
robcresswell | Although, derp I wrote a patch for that and forgot to push it | 12:53 |
robcresswell | oops | 12:53 |
*** e0ne has joined #openstack-horizon | 12:54 | |
pkarikh | robcresswell: oh, ok, thanks. :) | 12:55 |
*** htruta has joined #openstack-horizon | 12:55 | |
*** yamamoto has quit IRC | 12:57 | |
*** pauloewerton has joined #openstack-horizon | 12:58 | |
*** neelashah has joined #openstack-horizon | 13:00 | |
*** katyafervent is now known as katyafervent_awa | 13:04 | |
*** katyafervent_awa is now known as katyafervent | 13:04 | |
*** katyafervent is now known as katyafervent_awa | 13:05 | |
*** katyafervent_awa is now known as katyafervent | 13:05 | |
*** markus_z has joined #openstack-horizon | 13:05 | |
*** jamielennox is now known as jamielennox|away | 13:06 | |
*** julim has joined #openstack-horizon | 13:10 | |
*** ig0r_ has quit IRC | 13:10 | |
*** markus_z has quit IRC | 13:12 | |
*** btully has joined #openstack-horizon | 13:13 | |
*** ig0r_ has joined #openstack-horizon | 13:16 | |
*** davidmichaelkarr has joined #openstack-horizon | 13:18 | |
*** robcresswell has quit IRC | 13:18 | |
*** rahulshivsharan has joined #openstack-horizon | 13:19 | |
openstackgerrit | Frode Nordahl proposed openstack/horizon: Add support for creating subnets with Neutron subnet allocation https://review.openstack.org/203570 | 13:19 |
*** masco has quit IRC | 13:19 | |
*** JeanBriceCombebi has quit IRC | 13:22 | |
*** e0ne has quit IRC | 13:22 | |
*** lblanchard has joined #openstack-horizon | 13:24 | |
openstackgerrit | Vitaly Gridnev proposed openstack/horizon: [Sahara] Configure autoconfiguration for templates https://review.openstack.org/207399 | 13:24 |
*** dansiwiec has joined #openstack-horizon | 13:27 | |
*** sayan has quit IRC | 13:29 | |
*** jasondotstar has quit IRC | 13:30 | |
*** ig0r_ has quit IRC | 13:31 | |
*** e0ne has joined #openstack-horizon | 13:31 | |
*** dansiwiec has quit IRC | 13:32 | |
*** katyafervent is now known as katyafervent_awa | 13:33 | |
*** katyafervent_awa is now known as katyafervent | 13:34 | |
*** jtriley has joined #openstack-horizon | 13:34 | |
*** stevemar has joined #openstack-horizon | 13:38 | |
*** stevemar has quit IRC | 13:39 | |
*** stevemar has joined #openstack-horizon | 13:40 | |
*** annashen has joined #openstack-horizon | 13:40 | |
*** annashen has quit IRC | 13:45 | |
*** tosky has joined #openstack-horizon | 13:45 | |
*** stevemar has quit IRC | 13:45 | |
*** lucas__ has joined #openstack-horizon | 13:47 | |
*** lucas__ has quit IRC | 13:50 | |
*** lucas__ has joined #openstack-horizon | 13:50 | |
*** cbader has joined #openstack-horizon | 13:54 | |
*** drupalmonkey has joined #openstack-horizon | 13:54 | |
*** yamamoto has joined #openstack-horizon | 13:58 | |
*** tosky has quit IRC | 14:01 | |
*** tosky has joined #openstack-horizon | 14:01 | |
*** tvanderwiel has joined #openstack-horizon | 14:02 | |
*** yamamoto has quit IRC | 14:03 | |
*** tvanderwiel has left #openstack-horizon | 14:04 | |
*** ankit_ag has quit IRC | 14:04 | |
*** bfic has left #openstack-horizon | 14:06 | |
*** dguerri is now known as dguerri` | 14:06 | |
*** rahulshivsharan has quit IRC | 14:07 | |
*** hurgleburgler has joined #openstack-horizon | 14:16 | |
*** Drago has joined #openstack-horizon | 14:17 | |
*** JeanBriceCombebi has joined #openstack-horizon | 14:19 | |
*** KunalGandhi has joined #openstack-horizon | 14:20 | |
*** jbell8 has joined #openstack-horizon | 14:22 | |
*** KunalGandhi has quit IRC | 14:24 | |
*** ig0r_ has joined #openstack-horizon | 14:32 | |
*** garthb has joined #openstack-horizon | 14:34 | |
*** sjmc7 has quit IRC | 14:37 | |
*** sjmc7 has joined #openstack-horizon | 14:38 | |
*** annashen has joined #openstack-horizon | 14:41 | |
*** sjmc7 has quit IRC | 14:41 | |
*** sjmc7 has joined #openstack-horizon | 14:42 | |
*** ccrouch has joined #openstack-horizon | 14:42 | |
*** JeanBriceCombebi has quit IRC | 14:43 | |
*** bapalm_ has joined #openstack-horizon | 14:43 | |
*** sjmc7_ has joined #openstack-horizon | 14:44 | |
*** annashen has quit IRC | 14:46 | |
*** sjmc7 has quit IRC | 14:46 | |
*** lapalm has joined #openstack-horizon | 14:50 | |
*** sjmc7_ has quit IRC | 14:50 | |
*** sjmc7 has joined #openstack-horizon | 14:50 | |
*** jbell8 has quit IRC | 14:52 | |
*** Piet_ has joined #openstack-horizon | 14:57 | |
openstackgerrit | Martin Pavlásek proposed openstack/horizon: Fix table _get_rows() - always return None https://review.openstack.org/207491 | 14:57 |
*** vijendar has joined #openstack-horizon | 15:00 | |
*** vijendar has quit IRC | 15:00 | |
*** vijendar has joined #openstack-horizon | 15:00 | |
*** sjmc7_ has joined #openstack-horizon | 15:01 | |
*** sjmc7 has quit IRC | 15:01 | |
*** kjelly has joined #openstack-horizon | 15:01 | |
*** ig0r_ has quit IRC | 15:03 | |
*** jtomasek has quit IRC | 15:03 | |
*** ig0r__ has joined #openstack-horizon | 15:03 | |
*** logan2 has quit IRC | 15:08 | |
*** ig0r_ has joined #openstack-horizon | 15:09 | |
*** ig0r__ has quit IRC | 15:09 | |
*** tyr has joined #openstack-horizon | 15:09 | |
*** bpokorny has joined #openstack-horizon | 15:11 | |
*** ig0r__ has joined #openstack-horizon | 15:13 | |
*** emw has joined #openstack-horizon | 15:14 | |
*** ig0r__ has quit IRC | 15:15 | |
*** ig0r_ has quit IRC | 15:15 | |
*** JeanBriceCombebi has joined #openstack-horizon | 15:16 | |
*** jcoufal has quit IRC | 15:17 | |
*** vishwanathj has quit IRC | 15:21 | |
*** jbell8 has joined #openstack-horizon | 15:21 | |
*** KunalGandhi has joined #openstack-horizon | 15:21 | |
*** dguerri` is now known as dguerri | 15:25 | |
*** geoffarnold has quit IRC | 15:25 | |
*** garthb_ has joined #openstack-horizon | 15:25 | |
*** garthb has quit IRC | 15:25 | |
*** KunalGandhi has quit IRC | 15:27 | |
*** zul has quit IRC | 15:31 | |
*** stevemar has joined #openstack-horizon | 15:32 | |
*** dguerri is now known as dguerri` | 15:34 | |
*** lapalm has quit IRC | 15:37 | |
*** lapalm has joined #openstack-horizon | 15:38 | |
*** lapalm has quit IRC | 15:42 | |
*** jasondotstar has joined #openstack-horizon | 15:42 | |
*** annashen has joined #openstack-horizon | 15:42 | |
pkarikh | Folks, 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 |
openstack | Launchpad bug 1125622 in OpenStack Dashboard (Horizon) "ImportError: cannot import name base" [Medium,Confirmed] | 15:45 |
*** annashen has quit IRC | 15:47 | |
*** MaxV has quit IRC | 15:47 | |
*** alexpilotti has quit IRC | 15:48 | |
*** lapalm has joined #openstack-horizon | 15:48 | |
*** annashen has joined #openstack-horizon | 15:50 | |
*** nlahouti has joined #openstack-horizon | 15:50 | |
*** sjmc7 has joined #openstack-horizon | 15:50 | |
*** ig0r_ has joined #openstack-horizon | 15:52 | |
*** rward has quit IRC | 15:55 | |
*** ramishra has quit IRC | 15:55 | |
*** DuncanT has quit IRC | 15:55 | |
*** h00327910__ has quit IRC | 15:55 | |
*** lucas__ has quit IRC | 15:59 | |
*** dguerri` is now known as dguerri | 15:59 | |
*** MaxV has joined #openstack-horizon | 16:00 | |
*** geoffarnold has joined #openstack-horizon | 16:01 | |
*** sjmc7__ has joined #openstack-horizon | 16:01 | |
*** vishwanathj has joined #openstack-horizon | 16:04 | |
*** kjelly has quit IRC | 16:04 | |
*** sjmc7 has quit IRC | 16:04 | |
*** vishwana_ has joined #openstack-horizon | 16:05 | |
*** vishwanathj has quit IRC | 16:08 | |
*** lsmola has quit IRC | 16:09 | |
*** zul has joined #openstack-horizon | 16:10 | |
*** sjmc7__ has quit IRC | 16:11 | |
*** sjmc7 has joined #openstack-horizon | 16:11 | |
*** sjmc7 has quit IRC | 16:13 | |
*** sjmc7 has joined #openstack-horizon | 16:13 | |
*** sjmc7 has quit IRC | 16:14 | |
*** sjmc7 has joined #openstack-horizon | 16:14 | |
*** sjmc7 has quit IRC | 16:15 | |
*** sjmc7 has joined #openstack-horizon | 16:16 | |
*** sjmc7 has quit IRC | 16:16 | |
*** zul has quit IRC | 16:16 | |
*** sjmc7 has joined #openstack-horizon | 16:17 | |
*** sjmc7 has quit IRC | 16:17 | |
*** tosky has quit IRC | 16:17 | |
*** sjmc7 has joined #openstack-horizon | 16:18 | |
*** sjmc7 has quit IRC | 16:19 | |
*** sjmc7_ is now known as sjmc7 | 16:19 | |
*** logan2 has joined #openstack-horizon | 16:19 | |
*** kzaitsev_mb has quit IRC | 16:22 | |
*** jasondotstar has quit IRC | 16:23 | |
openstackgerrit | Martin Pavlásek proposed openstack/horizon: Fix table _get_rows() - always return None https://review.openstack.org/207491 | 16:23 |
*** mpavlase has quit IRC | 16:24 | |
*** zul has joined #openstack-horizon | 16:28 | |
*** e0ne has quit IRC | 16:29 | |
*** aix has quit IRC | 16:31 | |
openstackgerrit | Travis Tripp proposed openstack/horizon: JSCS/eslint cleanup - o_s/tech-debt, bind-scope, toast https://review.openstack.org/205104 | 16:31 |
*** josecastroleon has quit IRC | 16:32 | |
*** zul has quit IRC | 16:33 | |
*** ygbo has quit IRC | 16:38 | |
*** Drago has quit IRC | 16:41 | |
*** MaxV has quit IRC | 16:42 | |
*** Drago has joined #openstack-horizon | 16:42 | |
*** zul has joined #openstack-horizon | 16:42 | |
*** ramishra has joined #openstack-horizon | 16:43 | |
*** Drago has quit IRC | 16:43 | |
*** DuncanT has joined #openstack-horizon | 16:43 | |
*** Drago has joined #openstack-horizon | 16:43 | |
*** annashen_ has joined #openstack-horizon | 16:43 | |
*** KunalGandhi has joined #openstack-horizon | 16:44 | |
*** JeanBriceCombebi has quit IRC | 16:45 | |
*** alexpilotti has joined #openstack-horizon | 16:46 | |
*** skylerberg has joined #openstack-horizon | 16:46 | |
openstackgerrit | Merged openstack/horizon: Mock $window for magic-search tests https://review.openstack.org/206267 | 16:47 |
*** dsneddon has joined #openstack-horizon | 16:47 | |
*** annashen_ has quit IRC | 16:47 | |
*** lapalm has quit IRC | 16:52 | |
*** lucas__ has joined #openstack-horizon | 16:52 | |
*** kmARC has quit IRC | 16:52 | |
*** lapalm has joined #openstack-horizon | 16:52 | |
*** dansiwiec has joined #openstack-horizon | 16:55 | |
*** rdopiera has quit IRC | 16:55 | |
*** lapalm has quit IRC | 16:57 | |
*** belmoreira has quit IRC | 16:58 | |
*** vishwana_ has quit IRC | 17:00 | |
*** rward has joined #openstack-horizon | 17:00 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin https://review.openstack.org/205296 | 17:00 |
*** sqchen has joined #openstack-horizon | 17:03 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: API for getting default quotas in admin https://review.openstack.org/207126 | 17:06 |
*** rajatvig has joined #openstack-horizon | 17:06 | |
*** alexvictorchan has quit IRC | 17:07 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin https://review.openstack.org/205296 | 17:07 |
openstackgerrit | Rajat Vig proposed openstack/horizon: API for getting default quotas in admin https://review.openstack.org/207126 | 17:08 |
openstackgerrit | Rajat Vig proposed openstack/horizon: WIP : Add angular defaults panel for admin https://review.openstack.org/205296 | 17:08 |
*** h00327910__ has joined #openstack-horizon | 17:08 | |
*** sayan has joined #openstack-horizon | 17:11 | |
openstackgerrit | Rajat Vig proposed openstack/horizon: JSCS Cleanup - move functions humanize and truncate https://review.openstack.org/207549 | 17:13 |
*** bluex-pl has quit IRC | 17:14 | |
*** lapalm has joined #openstack-horizon | 17:17 | |
*** lapalm has quit IRC | 17:17 | |
*** lapalm has joined #openstack-horizon | 17:18 | |
*** kzaitsev_mb has joined #openstack-horizon | 17:18 | |
*** kmARC has joined #openstack-horizon | 17:21 | |
*** e0ne has joined #openstack-horizon | 17:22 | |
*** lapalm has quit IRC | 17:22 | |
*** kzaitsev1mb has joined #openstack-horizon | 17:22 | |
*** e0ne has quit IRC | 17:23 | |
*** e0ne has joined #openstack-horizon | 17:23 | |
*** bapalm_ has quit IRC | 17:25 | |
*** annashen has quit IRC | 17:28 | |
*** ybathia has joined #openstack-horizon | 17:32 | |
*** jingjing_ren has joined #openstack-horizon | 17:33 | |
*** Ala has quit IRC | 17:42 | |
*** geoffarnold has quit IRC | 17:43 | |
*** annashen has joined #openstack-horizon | 17:44 | |
*** Sukhdev_ has joined #openstack-horizon | 17:44 | |
*** alexvictorchan has joined #openstack-horizon | 17:45 | |
*** annashen has quit IRC | 17:49 | |
*** sjmc7 has quit IRC | 17:50 | |
*** jwy has joined #openstack-horizon | 17:50 | |
*** geoffarnold has joined #openstack-horizon | 17:52 | |
*** saksham has joined #openstack-horizon | 17:53 | |
*** annashen has joined #openstack-horizon | 17:56 | |
*** alexpilotti has quit IRC | 17:56 | |
*** Ephur has joined #openstack-horizon | 17:59 | |
*** sjmc7 has joined #openstack-horizon | 18:01 | |
*** nlahouti has quit IRC | 18:03 | |
*** Drago has quit IRC | 18:04 | |
*** Drago has joined #openstack-horizon | 18:04 | |
*** nlahouti has joined #openstack-horizon | 18:05 | |
*** ZZelle_ has joined #openstack-horizon | 18:06 | |
*** kmARC has quit IRC | 18:06 | |
*** MaxV has joined #openstack-horizon | 18:11 | |
*** tqtran has joined #openstack-horizon | 18:12 | |
tqtran | ping pong | 18:14 |
rajatvig | ping pong | 18:15 |
*** lapalm has joined #openstack-horizon | 18:18 | |
*** jprovazn has quit IRC | 18:21 | |
*** lapalm has quit IRC | 18:23 | |
*** dboik has joined #openstack-horizon | 18:23 | |
*** KunalGandhi has quit IRC | 18:24 | |
*** ig0r__ has joined #openstack-horizon | 18:24 | |
*** kmARC has joined #openstack-horizon | 18:25 | |
*** jtomasek has joined #openstack-horizon | 18:26 | |
*** jasondotstar has joined #openstack-horizon | 18:30 | |
*** kzaitsev2mb has joined #openstack-horizon | 18:30 | |
*** mwhagedorn_ has joined #openstack-horizon | 18:31 | |
*** josecastroleon has joined #openstack-horizon | 18:31 | |
*** KunalGandhi has joined #openstack-horizon | 18:31 | |
*** kzaitsev2mb has quit IRC | 18:31 | |
*** kzaitsev_mb has quit IRC | 18:31 | |
*** kzaitsev_mb has joined #openstack-horizon | 18:32 | |
*** nullvariable_ has joined #openstack-horizon | 18:32 | |
*** mwhagedorn has quit IRC | 18:34 | |
*** dsneddon has quit IRC | 18:34 | |
*** nullvariable has quit IRC | 18:34 | |
*** ericksonsantos has quit IRC | 18:34 | |
*** vokhrimenko has quit IRC | 18:34 | |
*** caspinol has quit IRC | 18:34 | |
*** kzaitsev1mb has quit IRC | 18:34 | |
*** mwhagedorn_ is now known as mwhagedorn | 18:34 | |
*** linkedinyou has quit IRC | 18:34 | |
*** ericksonfgds has joined #openstack-horizon | 18:34 | |
*** jeffDeville has joined #openstack-horizon | 18:35 | |
*** caspinol has joined #openstack-horizon | 18:35 | |
*** vokhrimenko has joined #openstack-horizon | 18:35 | |
*** nullvariable_ is now known as nullvariable | 18:36 | |
jeffDeville | Question: 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-horizon | 18:41 | |
*** pkarikh_ has left #openstack-horizon | 18:41 | |
*** pkarikh_ has joined #openstack-horizon | 18:41 | |
*** pkarikh_ has left #openstack-horizon | 18:41 | |
*** pkarikh_ has joined #openstack-horizon | 18:41 | |
tqtran | TravT david-lyle: when will we know its ok to start approving again? | 18:41 |
*** dsneddon has joined #openstack-horizon | 18: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-horizon | 18:47 | |
tqtran | pkarikh: did you recently upgrade angular bootstrap? | 18:47 |
tqtran | you as in we as in us | 18:48 |
*** KunalGandhi has quit IRC | 18:48 | |
*** KunalGan_ has joined #openstack-horizon | 18:48 | |
*** jingjing_ren has quit IRC | 18:50 | |
*** ig0r_ has quit IRC | 18:50 | |
pkarikh_ | tqtran: yep, I've tried to use 0.13 and 0.13.1, as long as I rememver | 18:51 |
tqtran | ok so we're currently on v0.11.0 | 18:52 |
tqtran | and they may have fixed the bug | 18:52 |
pkarikh_ | *your changes, yes, sorry) | 18:52 |
tqtran | so you patch depends on angular bootstrap v0.13.x correct? do you have another patch to upgrade in global? | 18:53 |
tqtran | well, 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-priorities | 18:55 |
*** MaxV has quit IRC | 18:55 | |
tqtran | I see.... I don't agree with upgrading just for the sake of doing it. Unless there is a feature we need..... | 18:56 |
tqtran | I'm afraid of introducing more instability at this point | 18:56 |
*** jeffDevi_ has joined #openstack-horizon | 18:58 | |
*** jeffDeville has quit IRC | 18: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 |
tqtran | not that I'm aware of | 19:00 |
*** bapalm_ has joined #openstack-horizon | 19:00 | |
pkarikh_ | *some reasons from Horizon side. Since it is in top priorities. | 19:00 |
*** josecastroleon has quit IRC | 19:01 | |
tqtran | r1chardj0n3s? is there a reason why we would want to upgrade? | 19:01 |
tqtran | could 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 version | 19: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 IRC | 19:04 | |
tqtran | :D ok cool, tell timur i said hi! | 19:04 |
*** ig0r_ has joined #openstack-horizon | 19:04 | |
pkarikh_ | tqtran: ok. :) | 19:04 |
*** lapalm has joined #openstack-horizon | 19:05 | |
*** lapalm has quit IRC | 19:05 | |
*** bapalm_ has quit IRC | 19:05 | |
*** pkarikh_ has quit IRC | 19:06 | |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add API services for system information https://review.openstack.org/205196 | 19:06 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 19:08 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 19:08 |
*** annashen has quit IRC | 19:08 | |
*** annashen has joined #openstack-horizon | 19:09 | |
*** tqtran is now known as tqtran-afk | 19:09 | |
*** annashen has quit IRC | 19:10 | |
*** annashen has joined #openstack-horizon | 19:10 | |
*** geoffarnold has quit IRC | 19:11 | |
*** lucas__ has quit IRC | 19:18 | |
*** jeffDevi_ has quit IRC | 19:22 | |
*** jeffDeville has joined #openstack-horizon | 19:23 | |
*** e0ne has quit IRC | 19:25 | |
*** annashen has quit IRC | 19:26 | |
*** annashen has joined #openstack-horizon | 19:26 | |
*** julim has quit IRC | 19:27 | |
*** jasondotstar has quit IRC | 19:29 | |
*** sqchen has quit IRC | 19:29 | |
*** annashen_ has joined #openstack-horizon | 19:29 | |
openstackgerrit | Brad P. Crochet proposed openstack/tuskar-ui: Do not sync parameters across roles https://review.openstack.org/207586 | 19:30 |
*** sqchen has joined #openstack-horizon | 19:30 | |
*** linkedinyou has joined #openstack-horizon | 19:30 | |
*** jingjing_ren has joined #openstack-horizon | 19:32 | |
*** annashen_ has quit IRC | 19:34 | |
*** lucas__ has joined #openstack-horizon | 19:34 | |
jeffDeville | Question: 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 IRC | 19:40 | |
*** jeffDeville has joined #openstack-horizon | 19:40 | |
*** annashen has quit IRC | 19:40 | |
*** annashen has joined #openstack-horizon | 19:41 | |
*** Sukhdev_ has quit IRC | 19:44 | |
*** openstackgerrit has quit IRC | 19:46 | |
*** openstackgerrit has joined #openstack-horizon | 19:47 | |
*** mpavlase has quit IRC | 19:48 | |
*** skylerberg has quit IRC | 19:49 | |
*** jasondotstar has joined #openstack-horizon | 19:50 | |
*** geoffarnold has joined #openstack-horizon | 19:52 | |
*** annashen has quit IRC | 19:56 | |
*** ig0r_ has quit IRC | 19:56 | |
*** julim has joined #openstack-horizon | 19:57 | |
*** kzaitsev_mb has quit IRC | 19:57 | |
*** annashen has joined #openstack-horizon | 19:57 | |
*** belmoreira has joined #openstack-horizon | 19:57 | |
*** jeffDeville has quit IRC | 20:02 | |
*** nlahouti has quit IRC | 20:04 | |
*** dansiwiec has joined #openstack-horizon | 20:04 | |
*** dboik has quit IRC | 20:06 | |
*** dboik has joined #openstack-horizon | 20:06 | |
*** e0ne has joined #openstack-horizon | 20:11 | |
*** tqtran-afk is now known as tqtran | 20:11 | |
openstackgerrit | Dan Siwiec proposed openstack/horizon: WIP - Image Details Edit/Delete (UX/Angular) https://review.openstack.org/158409 | 20:15 |
*** openstackgerrit has quit IRC | 20:16 | |
*** openstackgerrit has joined #openstack-horizon | 20:17 | |
*** rajatvig has quit IRC | 20:17 | |
*** rajatvig has joined #openstack-horizon | 20:18 | |
*** rajatvig has quit IRC | 20:25 | |
*** rajatvig has joined #openstack-horizon | 20:25 | |
*** Piet_ has quit IRC | 20:27 | |
*** lucas__ has quit IRC | 20:29 | |
*** Piet has joined #openstack-horizon | 20:33 | |
*** lucas__ has joined #openstack-horizon | 20:33 | |
*** sqchen has quit IRC | 20:34 | |
*** lucas__ has quit IRC | 20:35 | |
*** lucas__ has joined #openstack-horizon | 20:35 | |
*** nlahouti has joined #openstack-horizon | 20:37 | |
*** JeanBriceCombebi has joined #openstack-horizon | 20:39 | |
*** dguerri is now known as dguerri` | 20:43 | |
*** jbell8 has quit IRC | 20:44 | |
*** lblanchard has quit IRC | 20:44 | |
*** openstackgerrit has quit IRC | 20:46 | |
*** openstackgerrit has joined #openstack-horizon | 20:47 | |
*** jbell8 has joined #openstack-horizon | 20:47 | |
*** lucas__ has quit IRC | 20:50 | |
*** kzaitsev_mb has joined #openstack-horizon | 20:53 | |
*** jasondotstar has quit IRC | 20:56 | |
*** jamielennox|away is now known as jamielennox | 20:57 | |
*** openstack has joined #openstack-horizon | 21:09 | |
*** neelashah has quit IRC | 21:10 | |
*** kzaitsev_mb has joined #openstack-horizon | 21:13 | |
*** annashen has quit IRC | 21:15 | |
*** yamamoto has joined #openstack-horizon | 21:15 | |
*** annashen has joined #openstack-horizon | 21:18 | |
*** zul has joined #openstack-horizon | 21:19 | |
*** yamamoto has quit IRC | 21:19 | |
openstackgerrit | Cindy Lu proposed openstack/horizon: WIP Add Angular Table Footer Directive https://review.openstack.org/207631 | 21:19 |
*** jbell8 has quit IRC | 21:20 | |
*** jtriley has quit IRC | 21:22 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: JSCS Cleanup - Metadata widgets cleanup https://review.openstack.org/203795 | 21:26 |
*** lucas__ has joined #openstack-horizon | 21:26 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Angular metadata update modal https://review.openstack.org/184274 | 21:29 |
*** geoffarnold has quit IRC | 21:29 | |
*** annashen_ has joined #openstack-horizon | 21:30 | |
*** lucas__ has quit IRC | 21:31 | |
*** annashen_ has quit IRC | 21:35 | |
*** jwy has quit IRC | 21:41 | |
*** geoffarnold has joined #openstack-horizon | 21:42 | |
*** geoffarn_ has joined #openstack-horizon | 21:43 | |
*** geoffarnold has quit IRC | 21:47 | |
openstackgerrit | Cindy Lu proposed openstack/horizon: Add Angular Table Footer Directive https://review.openstack.org/207631 | 21:47 |
*** JeanBriceCombebi has quit IRC | 21:47 | |
*** nlahouti has quit IRC | 21:48 | |
*** jasondotstar has joined #openstack-horizon | 21:48 | |
*** nlahouti has joined #openstack-horizon | 21:49 | |
openstackgerrit | Cindy Lu proposed openstack/horizon: Add Angular Table Footer Directive https://review.openstack.org/207631 | 21:49 |
*** vijendar has quit IRC | 21:49 | |
*** ig0r__ has quit IRC | 21:51 | |
*** skylerberg has joined #openstack-horizon | 21:55 | |
*** stevemar has quit IRC | 21:59 | |
*** dboik has quit IRC | 21:59 | |
*** kmARC has quit IRC | 21:59 | |
*** stevemar has joined #openstack-horizon | 21:59 | |
*** annashen has quit IRC | 22:02 | |
*** jingjing_ren has quit IRC | 22:02 | |
*** e0ne has quit IRC | 22:02 | |
*** stevemar has quit IRC | 22:03 | |
*** ybathia has quit IRC | 22:06 | |
*** ybathia_ has joined #openstack-horizon | 22:06 | |
*** ybathia_ has quit IRC | 22:07 | |
*** ybathia has joined #openstack-horizon | 22:09 | |
bpokorny | TravT: Do you know what happened with this one after you approved it? https://review.openstack.org/#/c/206765/ | 22:10 |
bpokorny | I'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 |
TravT | wow, that's weird. | 22:11 |
TravT | it doesn't show up on http://status.openstack.org/zuul/ | 22:11 |
bpokorny | Yeah, and others have been merged since then. | 22:11 |
TravT | i think that is worth dropping a note in openstack-infra | 22:12 |
bpokorny | Thanks, I'll ask there. | 22:13 |
TravT | sorry, i don't have a better answer | 22:13 |
TravT | but i know zuul is having problems | 22:13 |
TravT | running out of diskspace | 22:13 |
bpokorny | np. 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 IRC | 22:14 | |
*** jamielennox is now known as jamielennox|away | 22:15 | |
*** sjmc7 has quit IRC | 22:19 | |
*** yamamoto has joined #openstack-horizon | 22:19 | |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add API services for system information https://review.openstack.org/205196 | 22:21 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 22:21 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 22:21 |
*** jingjing_ren has joined #openstack-horizon | 22:22 | |
r1chardj0n3s | morning | 22:24 |
*** yamamoto has quit IRC | 22:24 | |
r1chardj0n3s | tqtran: the newer ui-bootstrap has features I needed for Piet's new menu | 22:25 |
TravT | morning r1chardj0n3s | 22:27 |
tqtran | r1chardj0n3s: ah.... ok, is Piet's new menu thing slated to land in liberty? | 22:27 |
tqtran | if not, i would prefer to see it deferred | 22:28 |
r1chardj0n3s | yeah, probably deferrable - you'd have to ask piet :) | 22:28 |
Piet | Not the menu, but the new IA | 22:28 |
Piet | We still need to iterate on the new menu | 22:29 |
r1chardj0n3s | yup | 22:29 |
r1chardj0n3s | ok | 22:29 |
*** lucas__ has joined #openstack-horizon | 22:29 | |
Piet | Thanks | 22:29 |
r1chardj0n3s | I gotta duck away for a bit (school run) | 22:29 |
tqtran | coolios | 22:29 |
openstackgerrit | Dan Siwiec proposed openstack/horizon: WIP - Image Detail Redesign (Angular/UX) https://review.openstack.org/173885 | 22:33 |
*** lucas__ has quit IRC | 22:34 | |
*** geoffarnold has joined #openstack-horizon | 22:34 | |
david-lyle | r1chardj0n3s: read that as (scotch run) | 22:36 |
*** belmoreira has quit IRC | 22:37 | |
*** geoffarn_ has quit IRC | 22:37 | |
*** tqtran has quit IRC | 22:39 | |
*** Sukhdev_ has joined #openstack-horizon | 22:39 | |
*** rajatvig has quit IRC | 22:41 | |
*** sayan has quit IRC | 22:42 | |
*** rajatvig has joined #openstack-horizon | 22:42 | |
*** sjmc7 has joined #openstack-horizon | 22:43 | |
*** harlowja has quit IRC | 22:44 | |
*** harlowja has joined #openstack-horizon | 22:44 | |
*** kzaitsev_mb has joined #openstack-horizon | 22:47 | |
openstackgerrit | Travis Tripp proposed openstack/horizon: Remove key-pair-details.html duplicate https://review.openstack.org/207655 | 22:50 |
sqchen | Hi Travis, are you around? | 22:51 |
sqchen | TravT ^ | 22:52 |
TravT | hi sqchen | 22:52 |
sqchen | When 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 IRC | 22:54 | |
r1chardj0n3s | david-lyle: it's a bit early for a scotch run, even for me ;) | 23:00 |
openstackgerrit | Dan Siwiec proposed openstack/horizon: WIP - Image Details Edit/Delete (UX/Angular) https://review.openstack.org/158409 | 23:02 |
*** zhenguo has joined #openstack-horizon | 23:03 | |
*** dansiwiec has quit IRC | 23:05 | |
*** rajatvig has quit IRC | 23:05 | |
*** rajatvig has joined #openstack-horizon | 23:05 | |
*** jamespd has joined #openstack-horizon | 23:06 | |
david-lyle | r1chardj0n3s: don't sell yourself short | 23:06 |
*** lucas__ has joined #openstack-horizon | 23:06 | |
r1chardj0n3s | TravT: did you make any further headway on the transfer table thing? | 23:08 |
TravT | hey r1chardj0n3s | 23:08 |
TravT | i tried a bunch of things out and shared info on that patch. | 23:08 |
TravT | just talked through it with tqtran | 23:08 |
r1chardj0n3s | I 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 |
r1chardj0n3s | ok | 23:08 |
r1chardj0n3s | if it's in the scrollback I'll read | 23:09 |
TravT | no, i had to show him on a hangout to talk through it, because needed screen sharing. | 23:09 |
TravT | but synopsis is this: | 23:09 |
TravT | put my onLoad discoveries on here: https://review.openstack.org/#/c/202315/ | 23:10 |
*** jwy has joined #openstack-horizon | 23:10 | |
TravT | hz-header is probably useful, but in this case does seem to be treating symptom rather than problem | 23:11 |
TravT | DRY | 23:11 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add API services for system information https://review.openstack.org/205196 | 23:11 |
*** lucas__ has quit IRC | 23:11 | |
r1chardj0n3s | hz-header or hz-include? | 23:11 |
TravT | allocated and available is just redundancy | 23:11 |
TravT | oops | 23:11 |
TravT | hz-include | 23:11 |
r1chardj0n3s | I agree on both of those points, yes | 23:11 |
r1chardj0n3s | cool | 23:11 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 23:11 |
r1chardj0n3s | but there's still some technical issues to solve, I assume? | 23:11 |
TravT | so, thai and I talked about how to get rid of some of that with some ideas | 23:11 |
*** lucas__ has joined #openstack-horizon | 23:11 | |
TravT | he's going to work on it a bit and put up a patch for us to look over | 23:12 |
r1chardj0n3s | ok | 23:12 |
r1chardj0n3s | if he's gonna bang away on it, I'll focus on other things | 23:12 |
r1chardj0n3s | thanks for the update! | 23:12 |
TravT | yeah. | 23:12 |
TravT | np | 23:13 |
*** lucas____ has joined #openstack-horizon | 23:13 | |
*** lucas__ has quit IRC | 23:15 | |
*** lucas____ has quit IRC | 23:17 | |
*** tqtran has joined #openstack-horizon | 23:18 | |
openstackgerrit | Zhenguo Niu proposed openstack/horizon: Use form field errors on volume Extend form https://review.openstack.org/200158 | 23:20 |
tqtran | krotscheck: is there a reason why eslint-config-openstack requires eslint exactly v0.23.0? | 23:20 |
tqtran | npm 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.0 | 23:21 |
openstackgerrit | Diana Whitten proposed openstack/horizon: Top Nav is responsive and inherits from its theme https://review.openstack.org/207660 | 23:22 |
*** clu_ has joined #openstack-horizon | 23:23 | |
*** htruta has quit IRC | 23:26 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Adding and using app.scss https://review.openstack.org/207668 | 23:27 |
openstackgerrit | Diana Whitten proposed openstack/horizon: Top Nav is responsive and inherits from its theme https://review.openstack.org/207660 | 23:28 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 23:29 |
*** Piet has quit IRC | 23:30 | |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add API services for system information https://review.openstack.org/205196 | 23:30 |
*** annashen has joined #openstack-horizon | 23:31 | |
hurgleburgler | If 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-horizon | 23:34 | |
openstackgerrit | Zhenguo Niu proposed openstack/horizon: Add volume migration support https://review.openstack.org/186810 | 23:34 |
r1chardj0n3s | hurgleburgler: https://blueprints.launchpad.net/horizon/+spec/bootstrap-html-standards makes me happy :) | 23:35 |
hurgleburgler | r1chardj0n3s ^5 | 23:35 |
r1chardj0n3s | also, getting things fixed will make upgrading ui-bootstrap easier I believe | 23:36 |
*** annashen has quit IRC | 23:36 | |
r1chardj0n3s | using <nav> was one of the major issues I had with the current ui-bootstrap | 23:36 |
hurgleburgler | The sidebar is next | 23:36 |
hurgleburgler | I'm gonna make it into vertical pills | 23:36 |
r1chardj0n3s | cool | 23:36 |
* r1chardj0n3s goes to review patches | 23:36 | |
r1chardj0n3s | (if you need help, please shout :) | 23:36 |
hurgleburgler | Thanks! | 23:37 |
*** jingjing_ren has quit IRC | 23:38 | |
krotscheck | tqtran: Because fuzzy versions are evil. | 23:40 |
krotscheck | tqtran: 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 do | 23:40 |
*** rajatvig has quit IRC | 23:40 | |
krotscheck | Lemme go do that. | 23:40 |
openstackgerrit | KBrown proposed openstack/horizon: WIP: Add angular system information panel https://review.openstack.org/204731 | 23:42 |
*** doug-fish has quit IRC | 23:44 | |
*** doug-fish has joined #openstack-horizon | 23:45 | |
krotscheck | tqtran: https://review.openstack.org/#/c/207669/ | 23:46 |
openstackgerrit | Travis Tripp proposed openstack/horizon: Update NG Images to use angular translate filter https://review.openstack.org/207670 | 23:49 |
*** ZZelle_ has quit IRC | 23:52 | |
*** emw has quit IRC | 23:53 | |
*** Berezin has joined #openstack-horizon | 23:54 | |
*** Piet has joined #openstack-horizon | 23:54 | |
*** Piet has quit IRC | 23:54 | |
*** alexvictorchan has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!