Search found 14 matches

by mcwizard
23 Apr 2007, 14:55
Forum: Customizations
Topic: Hack for multiple problem-solvers per Bug
Replies: 3
Views: 13541

I reuploaded the file, but I don't know anything about the current status of the implementation for Mantis...
by mcwizard
23 Apr 2007, 12:26
Forum: General Discussion
Topic: ANNOUNCEMENT: Instant Mantis Now Available
Replies: 11
Views: 20875

Now all that is missing is "Mantis on a Stick" :)
by mcwizard
28 Mar 2007, 07:12
Forum: Customizations
Topic: Code Highlighting for Mantis
Replies: 2
Views: 6628

Added it to the Tracker as ID 7859
http://www.mantisbt.org/bugs/view.php?id=7859
by mcwizard
27 Mar 2007, 10:10
Forum: Customizations
Topic: Code Highlighting for Mantis
Replies: 2
Views: 6628

Code Highlighting for Mantis

Google released a nice javascript to highlight code in webpages. http://code.google.com/p/google-code-prettify/

I integrated it into mantis.

You only need the following changes:

in core/html_api.php:

Line ~258:
# --------------------
# (8) Begin the <body> section
function html_body_begin ...
by mcwizard
03 Nov 2006, 08:01
Forum: General Discussion
Topic: Any examples of mantis in use?
Replies: 10
Views: 16865

Uh yes and do not forget to double the number since most companies only use mantis on the intranet, not the internet... :)
by mcwizard
11 Oct 2006, 11:40
Forum: Customizations
Topic: Displaying Flash ( swf files) on bug display page
Replies: 13
Views: 23356

PRINT "<EMBED SRC=\"file_download.php?file_id=$v_id&type=bug\" WIDTH=\"100%\" HEIGHT=\"100%\" quality=low loop=false TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">";

That 100% setting didn't work well ...
by mcwizard
30 Aug 2006, 10:40
Forum: Customizations
Topic: Weekly report for resloved status
Replies: 6
Views: 14467

/me is interested :)
by mcwizard
01 Mar 2006, 17:40
Forum: General Discussion
Topic: Update PHPBB and disallow guest-postings...
Replies: 0
Views: 4198

Update PHPBB and disallow guest-postings...

...the amount of spam postings here is incredible....
by mcwizard
01 Mar 2006, 17:39
Forum: General Discussion
Topic: Feature request: Don't send email in realtime
Replies: 6
Views: 11816

I might be wrong, but I think if you use linux's mail service to send the mails (phpMailer_method = 0), it behaves just correct. Only if you use SMTP (phpMailer_method = 2) for sending mails, you'll get the delay. But if you wanted to decouple that from the acting user, you'll need some mechanism ...
by mcwizard
23 Feb 2006, 15:31
Forum: Help
Topic: Apply patches
Replies: 4
Views: 6305

Search for "cygwin" in google. You'll get all the nice unix tools including "patch" which you need for that. There are some nice tutorials for using it out there...
by mcwizard
22 Feb 2006, 10:15
Forum: General Discussion
Topic: ccing a bug
Replies: 7
Views: 9937

There is a patch on the tracker for sending notices to mantis users on the bug creation page and it works like a charm..

See: http://bugs.mantisbt.org/view.php?id=6128 for the patch
by mcwizard
22 Feb 2006, 10:09
Forum: Help
Topic: assigning to more than one developer
Replies: 1
Views: 4026

We're using a workaround for that right now.

Check my posting here: http://forums.mantisbt.org/viewtopic.php?t=1090
by mcwizard
27 Jan 2006, 12:45
Forum: Customizations
Topic: Hack for multiple problem-solvers per Bug
Replies: 3
Views: 13541

Hack for multiple problem-solvers per Bug

We've customized Mantis 1.0.0RC5 for our internal needs (mostly that we do have multiple people assigned to a bug) and I'd like to share the final code for that.

Our workflow is like that:
- Reporter reports a bug and does not assign anyone or add anyone to be a monitor.
- Manager assigns the ...