From gerv at mozilla.org Fri Jul 1 10:48:12 2011 From: gerv at mozilla.org (Gervase Markham) Date: Fri, 01 Jul 2011 11:48:12 +0100 Subject: Bugzilla extensions galore Message-ID: Has everyone seen this? https://github.com/bayoteers Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From mkanat at bugzilla.org Fri Jul 1 21:31:48 2011 From: mkanat at bugzilla.org (Max Kanat-Alexander) Date: Fri, 01 Jul 2011 14:31:48 -0700 Subject: Bugzilla extensions galore In-Reply-To: References: Message-ID: <4E0E3CC4.3070101@bugzilla.org> On 07/01/11 03:48, Gervase Markham wrote: > Has everyone seen this? > https://github.com/bayoteers Wow, no I hadn't! Could you encourage them to link their stuff from the Bugzilla:Addons page on the wiki? -Max -- Max Kanat-Alexander Chief Architect, Community Lead, and Release Manager Bugzilla Project http://www.bugzilla.org/ From ben.magrill at gmail.com Sun Jul 10 21:45:47 2011 From: ben.magrill at gmail.com (benz1) Date: Sun, 10 Jul 2011 14:45:47 -0700 (PDT) Subject: Adding columns to search results Message-ID: <32033681.post@talk.nabble.com> Can anyone advise how to add a products column to the general search results page or tell me how to identify which product a bug relates to? Thanks in anticipation. -- View this message in context: http://old.nabble.com/Adding-columns-to-search-results-tp32033681p32033681.html Sent from the Bugzilla - Dev mailing list archive at Nabble.com. From mkanat at bugzilla.org Tue Jul 12 07:09:02 2011 From: mkanat at bugzilla.org (Max Kanat-Alexander) Date: Tue, 12 Jul 2011 00:09:02 -0700 Subject: Adding columns to search results In-Reply-To: <32033681.post@talk.nabble.com> References: <32033681.post@talk.nabble.com> Message-ID: <4E1BF30E.5080708@bugzilla.org> On 07/10/2011 02:45 PM, benz1 wrote: > Can anyone advise how to add a products column to the general search results > page or tell me how to identify which product a bug relates to? Hi There. This would be more appropriately asked on the support list, described here: http://www.bugzila.org/support/ -Max -- Max Kanat-Alexander Chief Architect, Community Lead, and Release Manager Bugzilla Project http://www.bugzilla.org/ From antoine.mechelynck at gmail.com Tue Jul 12 10:27:14 2011 From: antoine.mechelynck at gmail.com (Tony Mechelynck) Date: Tue, 12 Jul 2011 12:27:14 +0200 Subject: Adding columns to search results In-Reply-To: References: <32033681.post@talk.nabble.com> Message-ID: On 12/07/11 09:09, Max Kanat-Alexander wrote: > On 07/10/2011 02:45 PM, benz1 wrote: >> Can anyone advise how to add a products column to the general search >> results >> page or tell me how to identify which product a bug relates to? > > Hi There. This would be more appropriately asked on the support list, > described here: > > http://www.bugzila.org/support/ > > -Max Indeed; but the answer is easy: Benzl, scroll your search results to the end, and at the bottom, look for a "Change Columns" link. Bestregards, Tony. -- "In order to make an apple pie from scratch, you must first create the universe." -- Carl Sagan, Cosmos _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From gerv at mozilla.org Sat Jul 16 09:34:03 2011 From: gerv at mozilla.org (Gervase Markham) Date: Sat, 16 Jul 2011 10:34:03 +0100 Subject: Changing comments in bugmail Message-ID: Hi everyone, My Profanivore extension removes profanities from bug comments under certain circumstances. However, it does it by hooking into the bug_format_comment hook, and so has no effect on bugmail. Given that the aim is to stop people being sworn at, this is not good. The newchangedmail.txt.tmpl template calls comment.body_full(), which calls into another template, which calls comment.body(). I guess, to be most effective, I really want to pre-process the re I've looked, but can't see a way of fixing that with an existing hook. What would you all suggest as the best way to architect a fix for this problem? Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From sdaugherty at gmail.com Sat Jul 16 12:34:04 2011 From: sdaugherty at gmail.com (Stephanie Daugherty) Date: Sat, 16 Jul 2011 08:34:04 -0400 Subject: Changing comments in bugmail In-Reply-To: References: Message-ID: Not sure how to go about this, but as an aside, trolls are getting to the point where many organizations, at least ones that use Bugzilla publicly could use a "report abuse" feedback loop - this might be a worthwhile complement to the profanity filter :) -Stephanie On Sat, Jul 16, 2011 at 5:34 AM, Gervase Markham wrote: > Hi everyone, > > My Profanivore extension removes profanities from bug comments under > certain circumstances. However, it does it by hooking into the > bug_format_comment hook, and so has no effect on bugmail. Given that the > aim is to stop people being sworn at, this is not good. > > The newchangedmail.txt.tmpl template calls comment.body_full(), which > calls into another template, which calls comment.body(). I guess, to be > most effective, I really want to pre-process the re > > I've looked, but can't see a way of fixing that with an existing hook. > What would you all suggest as the best way to architect a fix for this > problem? > > Gerv > _______________________________________________ > dev-apps-bugzilla mailing list > dev-apps-bugzilla at lists.mozilla.org > https://lists.mozilla.org/listinfo/dev-apps-bugzilla > - > To view or change your list settings, click here: > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lpsolit at gmail.com Sun Jul 17 22:40:16 2011 From: lpsolit at gmail.com (=?ISO-8859-1?Q?Fr=E9d=E9ric_Buclin?=) Date: Mon, 18 Jul 2011 00:40:16 +0200 Subject: Changing comments in bugmail In-Reply-To: References: Message-ID: <4E2364D0.6030304@gmail.com> Cannot you use the mailer_before_send hook? LpSolit From gerv at mozilla.org Mon Jul 18 20:58:51 2011 From: gerv at mozilla.org (Gervase Markham) Date: Mon, 18 Jul 2011 16:58:51 -0400 Subject: Changing comments in bugmail In-Reply-To: References: Message-ID: On 17/07/11 18:40, Fr?d?ric Buclin wrote: > Cannot you use the mailer_before_send hook? That's an idea I hadn't thought of. Running Profanivore over the whole message rather than just the comment would increase the risk of a false positive, but it might do. I'll give it a go - thanks :-) Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From gerv at mozilla.org Tue Jul 19 19:12:39 2011 From: gerv at mozilla.org (Gervase Markham) Date: Tue, 19 Jul 2011 15:12:39 -0400 Subject: Adding auth mechanisms Message-ID: I'd like to add a new Auth mechanism to Bugzilla. I've found the auth_login_methods and the auth_verify_methods hooks, which are great - but it seems that for an admin to actually switch to using my method, I need to add possible values to the user_verify_class and user_info_class Params. However, it seems that the values of these are hard-coded in Bugzilla/Config/Auth.pm. How do I add my method to these lists? Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From lpsolit at gmail.com Wed Jul 20 08:44:51 2011 From: lpsolit at gmail.com (=?ISO-8859-1?Q?Fr=E9d=E9ric_Buclin?=) Date: Wed, 20 Jul 2011 10:44:51 +0200 Subject: Adding auth mechanisms In-Reply-To: References: Message-ID: <4E269583.7010904@gmail.com> Le 19. 07. 11 21:12, Gervase Markham a ?crit : > need to add possible values to the user_verify_class and user_info_class > Params. Use config_modify_panels: http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/Hook.html#config_modify_panels LpSolit From gerv at mozilla.org Tue Jul 26 21:56:33 2011 From: gerv at mozilla.org (Gervase Markham) Date: Tue, 26 Jul 2011 14:56:33 -0700 Subject: Adding auth mechanisms In-Reply-To: References: Message-ID: On 20/07/11 01:44, Fr?d?ric Buclin wrote: > Use config_modify_panels: Brilliant - thank you :-) Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla