Wednesday, 2018-09-05

*** diablo_rojo has quit IRC00:08
persiaSotK: If the API doesn't support sorting by task status, how do people do status-based boards?  Is it maybe limited to the worklist API, or am I maybe confusing some mockup I saw with reality?00:14
*** diablo_rojo has joined #storyboard00:19
*** jamesmcarthur has joined #storyboard00:44
*** jamesmcarthur has quit IRC00:54
*** jamesmcarthur has joined #storyboard00:54
*** jamesmcarthur has quit IRC01:01
*** jamesmcarthur has joined #storyboard01:02
*** jamesmcarthur has quit IRC01:22
*** jamesmcarthur has joined #storyboard01:34
fungitask worklists and board lanes can be based on task status queries01:41
fungistory worklists and board lanes can be based on (inferred) story status queries01:42
fungiright now there's no way to build a task worklists or board lane based on a story query (or vice versa)01:43
persiaAh, somehow I thought it was possible to search on task's parent story by ID.  I can well believe myself to be mistaken.02:06
*** jamesmcarthur has quit IRC02:32
*** lbragstad has quit IRC02:39
*** gmann has joined #storyboard02:54
gmanndiablo_rojo: fungi : We are migrating the Patrole (QA project) to storyboard. i have few query on migration process. i wrote query on this review, your clarification will be helpful  - https://review.openstack.org/#/c/599488/103:00
gmanndiablo_rojo: fungi all other steps are done and we are tracking new bug/features on storyboard now but i have few about migration of existing LP bugs (open and closed).03:03
*** diablo_rojo has quit IRC03:49
*** udesale has joined #storyboard03:54
*** jamesmcarthur has joined #storyboard05:01
*** jamesmcarthur has quit IRC05:06
*** tosky has joined #storyboard07:40
*** jaosorior has quit IRC08:03
*** kei-ichi has quit IRC08:04
*** kei-ichi has joined #storyboard08:04
*** jaosorior has joined #storyboard08:05
*** corvus has quit IRC08:05
*** jpich has joined #storyboard08:08
SotKpersia: oh, I think I misunderstood the question then, I understood wanting to filter by both story title and task status08:31
SotKhttps://storyboard.openstack.org/#!/search?story_id=2001546&status=inprogress should show in progress tasks in that story, except it seems there's a bug in the tasks api endpoint08:32
SotKhttps://storyboard.openstack.org/api/v1/tasks?story_id=2001546&status=inprogress is the api call for that without the broken parameter08:32
*** dtantsur|afk is now known as dtantsur08:35
*** jamesmcarthur has joined #storyboard09:02
*** jamesmcarthur has quit IRC09:06
persiaSotK: Heh, yeah.  My guess is based on "filter a story by task status" vs. "story:$TITLE AND status:'In Progress'".  Thanks for the guidance.10:16
*** udesale has quit IRC10:21
*** udesale has joined #storyboard10:21
*** udesale has quit IRC10:21
*** udesale has joined #storyboard10:22
*** dtantsur is now known as dtantsur|brb11:08
*** udesale has quit IRC11:10
*** lbragstad has joined #storyboard11:57
*** lbragstad has left #storyboard12:19
*** jamesmcarthur has joined #storyboard12:54
*** udesale has joined #storyboard12:57
fungigmann: it looks like https://review.openstack.org/575182 set patrole to use storyboard but none of the people usually involved in migrating existing bugs from launchpad were made aware12:58
fungigmann: it's a manual process, but i can go ahead and do that import at any time you like12:58
*** dtantsur|brb is now known as dtantsur13:17
*** jamesmcarthur has quit IRC13:31
*** jamesmcarthur has joined #storyboard13:32
*** jamesmcarthur has quit IRC13:34
*** jamesmcarthur has joined #storyboard13:37
*** jamesmcarthur has quit IRC13:40
*** udesale has quit IRC13:43
*** jaosorior has quit IRC14:06
*** jtomasek has quit IRC14:15
*** jamesmcarthur has joined #storyboard14:20
*** dtantsur is now known as dtantsur|brb14:24
*** jamesmcarthur has quit IRC14:32
*** jamesmcarthur has joined #storyboard14:48
*** jtomasek has joined #storyboard15:14
*** corvus has joined #storyboard15:23
*** jaosorior has joined #storyboard15:57
*** dtantsur|brb is now known as dtantsur16:01
*** jamesmcarthur has quit IRC16:04
*** jamesmcarthur has joined #storyboard16:09
*** jamesmcarthur has quit IRC16:23
*** jpich has quit IRC16:30
*** jamesmcarthur has joined #storyboard17:19
*** dtantsur is now known as dtantsur|afk17:26
*** diablo_rojo has joined #storyboard17:30
diablo_rojogmann, I'll check in out in a little bit :)17:30
*** openstackgerrit has quit IRC18:00
*** jamesmcarthur has quit IRC18:11
*** jamesmcarthur has joined #storyboard18:12
*** jamesmcarthur has quit IRC18:16
*** jamesmcarthur has joined #storyboard18:18
diablo_rojogmann, looks like fungi beat me to it- There's a script an infra root needs to run. We just need to know when you want it done. Sounds like fungi can do it whenever works for you.18:33
fungiyep, totally18:34
*** jamesmcarthur has quit IRC18:35
dhellmannif I wanted to change the color of the task status indicator for tasks with "invalid" status, where would I start? I'm not seeing styles based on status names (at least not "merged")18:43
*** jamesmcarthur has joined #storyboard18:52
SotKat the moment the colours just come from the different bootstrap button types18:56
SotKwith the button type changing depending on the status18:56
diablo_rojoSotK, I'll update the agenda right now- we should probably have a quick meeting.18:58
SotKdiablo_rojo: thanks18:58
SotKdhellmann: my recommendation would be to add a .btn-invalid selector somewhere which sets color, background-color, and border-color as desired18:59
SotKplus also changing the return value of http://git.openstack.org/cgit/openstack-infra/storyboard-webclient/tree/src/app/util/directive/task_status_dropdown.js#n35 to be 'invalid' for the invalid case19:00
SotKoh, you probably want a .label-invalid selector too19:00
SotKfor the logged-out case19:00
diablo_rojoSotK, done19:01
*** jtomasek has quit IRC19:04
dhellmannSotK : I guess I'm confused because "git grep label-success" doesn't show any css or scss files at all. Is this all done in JS?19:05
SotKlabel-* and btn-* are from bootstrap so are only added at build time, probably src/theme/base/_bootstrap_addons.scss is the best file for the new classes to live in for now19:07
SotKhttp://git.openstack.org/cgit/openstack-infra/storyboard-webclient/tree/src/app/util/template/task_status_dropdown.html is the template for the task status dropdown19:08
dhellmannok, cool, thanks19:08
dhellmannI'll put this on my free time list19:09
dhellmannhow do you feel about blue? :-)19:09
dhellmannor maybe yellow19:09
SotKfine, if its a sufficiently different blue than the "progress" colour19:10
SotKsimilarly for yellow with "review"19:11
dhellmannoh, hrm, I need to see some tasks in more states I guess19:11
dhellmannI'll find something19:11
*** jamesmcarthur has quit IRC19:22
*** jamesmcarthur has joined #storyboard19:23
*** jamesmcarthur has quit IRC19:28
*** jamesmcarthur has joined #storyboard19:30
*** openstackgerrit has joined #storyboard19:45
openstackgerritMerged openstack-infra/storyboard-webclient master: Add a route to redirect from a Task ID to the relevant Story  https://review.openstack.org/58965219:45
openstackgerritMerged openstack-infra/storyboard-webclient master: Support Task ID in the "Jump to..." box  https://review.openstack.org/58965319:52
openstackgerritMerged openstack-infra/storyboard-webclient master: Fix the background colour of comments  https://review.openstack.org/59918219:54
fungithe fastest lp accumulated 1k bugs in one of my samples was at an average pace of one every 191 seconds, which would put lp reaching 2m at the end of next year20:04
fungislowest 1k it accumulated was at an average rate of one every 772 seconds which if it returned to that pace would put it hitting 2m in late 202320:05
fungiso my guess is somewhere between late 2019 and late 2023 with a mean in the middle of 202120:05
fungithere was a slight acceleration in accumulation over the past 100k bugs, but it looked like the acceleration was decreasing (i haven't modeled it and run any integrals to confirm)20:07
*** jamesmcarthur has quit IRC20:41
*** jamesmcarthur has joined #storyboard20:43
*** jamesmcarthur_ has joined #storyboard20:47
*** jamesmcarthur has quit IRC20:48
*** diablo_rojo has quit IRC20:49
*** diablo_rojo has joined #storyboard21:03
*** jamesmcarthur_ has quit IRC21:46
*** jamesmcarthur has joined #storyboard21:51
*** jamesmcarthur has quit IRC21:55
*** jamesmcarthur has joined #storyboard22:57
*** jamesmcarthur has quit IRC23:01

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