*** openstack has joined #openstack-horizon | 16:32 | |
*** cedrics has quit IRC | 16:32 | |
*** alexpilotti has quit IRC | 16:38 | |
*** amcrn has joined #openstack-horizon | 16:42 | |
*** dkorn has joined #openstack-horizon | 16:43 | |
*** tqtran has joined #openstack-horizon | 16:44 | |
*** peristeri has quit IRC | 16:46 | |
*** MaxV_ has quit IRC | 16:47 | |
*** akrivoka has quit IRC | 16:52 | |
*** stpierre has joined #openstack-horizon | 16:59 | |
*** alexpilotti has joined #openstack-horizon | 17:00 | |
*** tqtran1 has joined #openstack-horizon | 17:01 | |
*** julim has quit IRC | 17:02 | |
*** julim has joined #openstack-horizon | 17:05 | |
*** stpierre_ has joined #openstack-horizon | 17:08 | |
*** sbfox1 has joined #openstack-horizon | 17:10 | |
*** stpierre has quit IRC | 17:10 | |
*** sambetts has quit IRC | 17:10 | |
*** sbfox has quit IRC | 17:12 | |
*** e0ne has joined #openstack-horizon | 17:12 | |
*** sambetts has joined #openstack-horizon | 17:14 | |
*** sambetts has quit IRC | 17:14 | |
*** Tehsmash has joined #openstack-horizon | 17:17 | |
*** Tehsmash has quit IRC | 17:17 | |
*** Tehsmash has joined #openstack-horizon | 17:17 | |
*** Tehsmash has quit IRC | 17:19 | |
rbertram | david-lyle: Since your call for bootstrap fixes, I opened and fixed https://review.openstack.org/#/c/112626/ Tagged it, but making sure it's on your radar. | 17:22 |
---|---|---|
*** sambetts has joined #openstack-horizon | 17:23 | |
*** stpierre__ has joined #openstack-horizon | 17:23 | |
*** sambetts has quit IRC | 17:24 | |
*** stpierre_ has quit IRC | 17:24 | |
*** e0ne has quit IRC | 17:27 | |
*** alexpilotti has quit IRC | 17:29 | |
*** romainh has left #openstack-horizon | 17:29 | |
*** jprovazn has joined #openstack-horizon | 17:33 | |
*** ArcTanSusan has joined #openstack-horizon | 17:35 | |
*** e0ne has joined #openstack-horizon | 17:37 | |
*** Longgeek_ has quit IRC | 17:37 | |
*** stpierre__ has quit IRC | 17:40 | |
*** ArcTanSusan has quit IRC | 17:40 | |
*** stpierre__ has joined #openstack-horizon | 17:41 | |
*** alexpilotti has joined #openstack-horizon | 17:45 | |
*** amcrn has quit IRC | 17:46 | |
*** MaxV has joined #openstack-horizon | 17:50 | |
*** MaxV has quit IRC | 17:51 | |
*** MaxV has joined #openstack-horizon | 17:51 | |
*** stpierre_ has joined #openstack-horizon | 17:53 | |
*** amcrn has joined #openstack-horizon | 17:54 | |
*** clu_ has quit IRC | 17:54 | |
*** stpierre__ has quit IRC | 17:55 | |
*** dguerri is now known as dguerri`afk | 17:56 | |
*** amcrn has quit IRC | 17:57 | |
*** ArcTanSusan has joined #openstack-horizon | 17:57 | |
*** amcrn has joined #openstack-horizon | 18:03 | |
*** stpierre_ has quit IRC | 18:09 | |
*** absubram has quit IRC | 18:10 | |
*** stpierre_ has joined #openstack-horizon | 18:14 | |
*** peristeri has joined #openstack-horizon | 18:15 | |
*** Sukhdev has joined #openstack-horizon | 18:19 | |
tqtran | david-lyle or lcheng: https://review.openstack.org/#/c/108147/ could you guys reapprove this patch? thanks =) | 18:19 |
*** clu_ has joined #openstack-horizon | 18:22 | |
*** cody-somerville has joined #openstack-horizon | 18:23 | |
*** tqtran1 has quit IRC | 18:24 | |
*** mgarza has joined #openstack-horizon | 18:24 | |
*** jay-atl has quit IRC | 18:25 | |
*** tosky has quit IRC | 18:25 | |
*** stpierre_ has quit IRC | 18:25 | |
*** stpierre has joined #openstack-horizon | 18:26 | |
*** mgarza has quit IRC | 18:26 | |
*** wchrisj has joined #openstack-horizon | 18:34 | |
*** sbfox1 has quit IRC | 18:34 | |
*** sbfox has joined #openstack-horizon | 18:34 | |
*** sbfox has quit IRC | 18:34 | |
wchrisj | What is the right way to selectively show a form element within a template? | 18:35 |
wchrisj | Inside my workflow action, I'm setting a BooleanFIeld (hidden), and checking it within the template; but I'm getting squirrelly results.... | 18:36 |
*** dkorn has quit IRC | 18:40 | |
*** stpierre has quit IRC | 18:41 | |
*** stpierre has joined #openstack-horizon | 18:42 | |
crobertsrh | what do you mean by "squirrelly"? | 18:44 |
*** e0ne has quit IRC | 18:44 | |
*** sbfox has joined #openstack-horizon | 18:47 | |
wchrisj | Two vars, same type, one is True, one is False;both used as conditionals in the template; both being checked for truthiness; both returning the true result | 18:47 |
wchrisj | example | 18:47 |
wchrisj | {% if form.dbaas_enabled %} | 18:48 |
wchrisj | {% if form.dbaas_instances_exist %} | 18:48 |
wchrisj | it falls thru BOTH checks, but the second check is False | 18:48 |
wchrisj | crobertsrh: ^^ | 18:48 |
*** e0ne has joined #openstack-horizon | 18:48 | |
*** ArcTanSusan has quit IRC | 18:52 | |
crobertsrh | I think that %if in a template only checks that it is not empty | 18:52 |
crobertsrh | https://docs.djangoproject.com/en/dev/ref/templates/builtins/ | 18:52 |
crobertsrh | search for the {% if %} tag | 18:52 |
crobertsrh | So you could probably do something like {% if form.dbaas_enabled == "True" %} | 18:54 |
crobertsrh | but that is probably not optimal | 18:54 |
*** stpierre_ has joined #openstack-horizon | 18:54 | |
*** jay-atl has joined #openstack-horizon | 18:54 | |
*** stpierre has quit IRC | 18:55 | |
wchrisj | crobertsrh: Yeah, I have done that, but it rails to reload the template properly when validation occurrs. I had it that way earlier. | 18:55 |
wchrisj | fails | 18:55 |
wchrisj | I need a ay to check truthiness that works whether it is expressed as True, "True", 1, or "1" | 18:56 |
wchrisj | way | 18:56 |
wchrisj | ... unless there was something else going on during validation, but I think that's the idea | 18:57 |
wchrisj | hmmm, ugly, but this might work: | 18:58 |
wchrisj | {% if form.dbaas_enabled == "True" or form.dbaas_enabled == "1" %} | 18:58 |
*** absubram has joined #openstack-horizon | 18:59 | |
absubram | amotoki: Hi Akihiro.. Can you attend the IPv6 meeting tomorrow on IRC if you're available? | 18:59 |
absubram | I'm hearing conflicting statements from the v6 developers and we'll be talking about whether they even want the IPv6 2 subnet Horizon support in J or not | 19:00 |
crobertsrh | I think you could also register a custom filter to make that happen | 19:00 |
wchrisj | crobertsrh: custom filter? | 19:01 |
crobertsrh | I'm looking for an example | 19:01 |
*** e0ne has quit IRC | 19:01 | |
crobertsrh | dashboards/project/stacks/mappings.py uses a custom filter | 19:04 |
crobertsrh | look for @register.filter | 19:04 |
crobertsrh | Then in the stacks/templates/stacks/_detail_overview.html, you can see it in action | 19:04 |
wchrisj | crobertsrh: Like this? https://docs.djangoproject.com/en/dev/ref/templates/builtins/#filter | 19:04 |
wchrisj | Will look... | 19:05 |
crobertsrh | Yeah, those are the ticket | 19:05 |
*** e0ne has joined #openstack-horizon | 19:05 | |
*** e0ne has quit IRC | 19:07 | |
*** stpierre_ has quit IRC | 19:11 | |
*** stpierre_ has joined #openstack-horizon | 19:11 | |
*** e0ne has joined #openstack-horizon | 19:20 | |
*** ArcTanSusan has joined #openstack-horizon | 19:23 | |
*** e0ne has quit IRC | 19:23 | |
*** stpierre has joined #openstack-horizon | 19:25 | |
*** stpierre_ has quit IRC | 19:26 | |
*** jtomasek has quit IRC | 19:27 | |
*** sbfox has quit IRC | 19:30 | |
*** e0ne has joined #openstack-horizon | 19:32 | |
*** stpierre_ has joined #openstack-horizon | 19:38 | |
*** stpierre has quit IRC | 19:41 | |
*** clu_ has quit IRC | 19:51 | |
*** stpierre has joined #openstack-horizon | 19:55 | |
*** stpierre_ has quit IRC | 19:55 | |
*** lcheng has joined #openstack-horizon | 19:56 | |
doug-fish | I'm triaging my _very first bug_ and I think it looks like a potentially serious issue. I'd like to run it by the IRC crowd before I write anything up in case I'm being alarmist ... | 20:02 |
doug-fish | its this bug https://bugs.launchpad.net/horizon/+bug/1174499 | 20:03 |
doug-fish | and I think these 2 lines are going to cause trouble. https://github.com/openstack/django_openstack_auth/blob/58da8b38a9606697e5b96f6d068be83ef52d83d5/openstack_auth/user.py#L71 | 20:03 |
doug-fish | I have to confess, I'm not sure because I don't know exactly how that id is supposed to be used. | 20:03 |
*** e0ne has quit IRC | 20:08 | |
*** stpierre_ has joined #openstack-horizon | 20:08 | |
*** ArcTanSusan has quit IRC | 20:09 | |
*** ArcTanSusan has joined #openstack-horizon | 20:09 | |
*** ArcTanSusan has quit IRC | 20:09 | |
*** ArcTanSusan has joined #openstack-horizon | 20:10 | |
*** stpierre has quit IRC | 20:10 | |
*** Sukhdev has quit IRC | 20:19 | |
*** jthopkin has joined #openstack-horizon | 20:22 | |
*** ArcTanSusan has quit IRC | 20:23 | |
*** stpierre_ has quit IRC | 20:26 | |
*** jprovazn has quit IRC | 20:27 | |
*** amcrn has quit IRC | 20:33 | |
*** julim has quit IRC | 20:33 | |
*** amcrn has joined #openstack-horizon | 20:33 | |
*** lblanchard has quit IRC | 20:34 | |
*** radez is now known as radez_g0n3 | 20:38 | |
*** clu_ has joined #openstack-horizon | 20:39 | |
*** ArcTanSusan has joined #openstack-horizon | 20:44 | |
*** romainh has joined #openstack-horizon | 20:48 | |
*** Sukhdev has joined #openstack-horizon | 20:58 | |
*** peristeri has quit IRC | 21:01 | |
*** amotoki_ has joined #openstack-horizon | 21:02 | |
*** amotoki has quit IRC | 21:02 | |
*** amotoki_ is now known as amotoki | 21:02 | |
*** crobertsrh is now known as _crobertsrh | 21:06 | |
*** jthopkin has quit IRC | 21:12 | |
*** cody-somerville has quit IRC | 21:21 | |
*** neelashah has quit IRC | 21:22 | |
*** doug-fish has left #openstack-horizon | 21:22 | |
*** amcrn has quit IRC | 21:26 | |
*** amcrn has joined #openstack-horizon | 21:27 | |
*** e0ne has joined #openstack-horizon | 21:28 | |
*** ArcTanSusan has quit IRC | 21:32 | |
*** sbfox has joined #openstack-horizon | 21:34 | |
*** absubram has quit IRC | 21:35 | |
*** rbertram has quit IRC | 21:41 | |
*** cbader has quit IRC | 21:43 | |
*** ArcTanSusan has joined #openstack-horizon | 21:44 | |
*** alexpilotti has quit IRC | 21:52 | |
*** sayali_ has quit IRC | 21:55 | |
*** vijendar has quit IRC | 21:57 | |
*** Dafna has quit IRC | 22:02 | |
*** romainh has left #openstack-horizon | 22:03 | |
*** jakedahn_ has joined #openstack-horizon | 22:10 | |
*** jakedahn has quit IRC | 22:11 | |
*** jakedahn_ is now known as jakedahn | 22:11 | |
*** wchrisj has quit IRC | 22:12 | |
*** jakedahn has quit IRC | 22:12 | |
*** jakedahn has joined #openstack-horizon | 22:12 | |
*** sbfox1 has joined #openstack-horizon | 22:30 | |
*** sbfox has quit IRC | 22:30 | |
*** e0ne has quit IRC | 22:35 | |
*** sbfox1 has quit IRC | 22:37 | |
*** denis_makogon_ has quit IRC | 22:39 | |
*** e0ne has joined #openstack-horizon | 22:39 | |
clu_ | hi all! if free, please check out: https://review.openstack.org/#/c/84531/ | 22:40 |
*** sbfox has joined #openstack-horizon | 22:45 | |
*** e0ne has quit IRC | 22:57 | |
*** Sukhdev has quit IRC | 22:58 | |
jab | lcheng: I'm looking at https://bugs.launchpad.net/horizon/+bug/1354583 just wondering if you can tell me how to recreate this | 23:07 |
*** amotoki has quit IRC | 23:10 | |
lcheng | jab: thanks for taking on this bug | 23:16 |
lcheng | I just injected | 23:17 |
lcheng | for volume in volumes: | 23:17 |
lcheng | volume.encrypted = None | 23:17 |
lcheng | in the file | 23:17 |
lcheng | https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/project/volumes/tabs.py#L35 | 23:17 |
lcheng | that is for testing in devstack | 23:18 |
lcheng | we have our own openstack deployment that returns None for the encrypted field. | 23:18 |
lcheng | I don't know how to configure devstack to recreate the bug, I would assume maybe an old version of cinder would probably have that issue. | 23:19 |
jab | OK great will take a look thanks | 23:24 |
*** david-lyle has quit IRC | 23:36 | |
*** david-lyle has joined #openstack-horizon | 23:37 | |
*** david-lyle has quit IRC | 23:42 | |
*** e0ne has joined #openstack-horizon | 23:47 | |
*** e0ne has quit IRC | 23:55 | |
*** e0ne has joined #openstack-horizon | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!