IRC logs of #mantisbt for Wednesday, 2014-04-09

*** Protogenes <Protogenes!~Protogene@dslb-178-012-018-003.pools.arcor-ip.net> has quit IRC01:35
*** dejalexander <dejalexander!~dejalexan@94-194-42-47.zone8.bethere.co.uk> has joined #mantisbt02:36
*** giallu <giallu!~giallu@fedora/giallu> has joined #mantisbt03:01
*** dejalexander <dejalexander!~dejalexan@94-194-42-47.zone8.bethere.co.uk> has quit IRC03:26
*** dejalexander <dejalexander!~dejalexan@94-194-42-47.zone8.bethere.co.uk> has joined #mantisbt03:33
*** dejalexander <dejalexander!~dejalexan@94-194-42-47.zone8.bethere.co.uk> has quit IRC03:43
travis-ci[travis-ci] Build #12: grangeway/mantisbt dbapi (e625541) Paul Richards - The build has errored.05:01
travis-ci[travis-ci] Build details: http://travis-ci.org/grangeway/mantisbt/builds/2259298205:01
travis-ci[travis-ci] Code Changes: https://github.com/grangeway/mantisbt/compare/6b736fcdc5c5...e625541d7e3f05:01
*** dejalexander <dejalexander!~dejalexan@195.110.74.66> has joined #mantisbt05:13
*** dejalexander <dejalexander!~dejalexan@195.110.74.66> has quit IRC07:08
*** giallu <giallu!~giallu@fedora/giallu> has quit IRC07:11
*** dejalexander <dejalexander!~dejalexan@141.0.39.195> has joined #mantisbt08:10
*** dejalexander <dejalexander!~dejalexan@141.0.39.195> has quit IRC08:33
*** dejalexander <dejalexander!~dejalexan@141.0.39.195> has joined #mantisbt08:37
*** dejalexander <dejalexander!~dejalexan@141.0.39.195> has quit IRC09:05
*** dejalexander <dejalexander!~dejalexan@host86-173-62-231.range86-173.btcentralplus.com> has joined #mantisbt09:14
*** kirillka <kirillka!~Miranda@195.242.142.17> has joined #mantisbt09:49
*** kirillka <kirillka!~Miranda@195.242.142.17> has quit IRC10:05
*** dejalexander <dejalexander!~dejalexan@host86-173-62-231.range86-173.btcentralplus.com> has quit IRC10:06
*** dejalexander <dejalexander!~dejalexan@host86-173-62-231.range86-173.btcentralplus.com> has joined #mantisbt10:25
*** retentiveboy <retentiveboy!~smuxi@74-95-28-33-Atlanta.hfc.comcastbusiness.net> has joined #mantisbt10:27
*** Protogenes <Protogenes!~Protogene@mcachim-1-pt.tunnel.tserv6.fra1.ipv6.he.net> has joined #mantisbt11:27
*** dejalexander <dejalexander!~dejalexan@host86-173-62-231.range86-173.btcentralplus.com> has quit IRC11:37
*** dejalexander <dejalexander!~dejalexan@31.221.43.178> has joined #mantisbt12:14
*** dejalexander <dejalexander!~dejalexan@31.221.43.178> has quit IRC13:04
*** giallu <giallu!~giallu@host179-190-dynamic.12-79-r.retail.telecomitalia.it> has joined #mantisbt13:50
*** giallu <giallu!~giallu@fedora/giallu> has joined #mantisbt13:50
*** giallu <giallu!~giallu@fedora/giallu> has quit IRC16:23
travis-ci[travis-ci] Build #15: grangeway/mantisbt dbapi (6c889b3) Paul Richards - The build has errored.16:36
travis-ci[travis-ci] Build details: http://travis-ci.org/grangeway/mantisbt/builds/2263989216:36
travis-ci[travis-ci] Code Changes: https://github.com/grangeway/mantisbt/compare/946054b249f2...6c889b3f6bf116:36
tonsofpcsis there a way to add more options to priority? specifically, I'd like an 'on hold' priority.16:41
*** dejalexander <dejalexander!~dejalexan@94.116.15.134> has joined #mantisbt16:58
*** dejalexander <dejalexander!~dejalexan@94.116.15.134> has quit IRC17:07
paulrtonsofpcs: most of the definitions can be defined17:47
paulri'd probably be inclined to add only, and be careful where to add17:47
paulr(historically there was a few bugs with id's being hard code etc)17:47
paulryou might need to add language strings too17:48
tonsofpcspaulr: thanks.  Is this something I have to do on the backend or is there somewhere in the management interface that I'm missing it?17:51
tonsofpcs(also, I'm hoping to code dive at some point in the next month to try to figure out a solution to 15466 [and in the process, 5702 and 7642])17:52
paulrright lets see18:41
paulrwhat was it you wanted18:41
paulrpririrty18:41
paulrhmm18:42
paulractually surely onhold is a status not a priority :P18:43
paulrin any case:18:43
paulr# priority18:43
paulrdefine( 'NONE', 10 );18:43
paulrdefine( 'LOW', 20 );18:43
paulrdefine( 'NORMAL', 30 );18:43
paulrdefine( 'HIGH', 40 );18:43
paulrdefine( 'URGENT', 50 );18:43
paulrdefine( 'IMMEDIATE', 60 );18:43
paulri'd probably be inclined to define a 35 -> onhold value in constant_inc.php18:44
paulrthen add it to $g_priority_enum_string = '10:none,20:low,30:normal,40:high,50:urgent,60:immediate';18:44
paulrthen you could define a priority_enum_string if you wanted to translate it18:45
paulralthough given we don't actually define it18:45
paulri'm wondering if i'm confused, or that's not actually implemented18:45
paulrin terms of 1546618:46
paulrthe issue there is bug_view_inc.php checks for access_ensure_bug_level( VIEWER, $f_bug_id );18:48
paulrin this case, someoen has REPORTER access, so doesn't pass that check18:49
paulrdoing something like:18:50
paulrif( !access_has_bug_level( VIEWER, $p_bug_id ) && !user_is_monitoring_bug( auth_get_current_user_id(), $p_bug_id  ) { access_denied() } instead18:52
paulrwould probably do what you want18:52
paulrI'd also like to see 'VIEWER' removed18:53
paulrand to become something from config18:53
paulrin case someone changes roles18:53
paulri know I have some fixes I'm running at work to improve access to private projects witihn filter api (or role checking) but I think that was security fix for us at work, but not doing monitor stuff18:55
paulrIn terms of 5702/7642...18:55
paulrin terms of reminders, they only get stored as bug notes iirc, so it would be kinda impossible to fix that one - not sure if reminder also adds user to monitor list or not18:56
paulrIn any case, that sounlds like a bigger mess to think about doing properly18:57
*** SrRaven <SrRaven!srraven@2001:4b10:100:a436:dcad:beff:feef:2> has quit IRC21:22
*** SrRaven <SrRaven!srraven@2001:4b10:100:a436:dcad:beff:feef:2> has joined #mantisbt21:23

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