Search found 16 matches

by omeslo
06 Feb 2012, 16:05
Forum: Help
Topic: (pre)set user passwords as admin
Replies: 1
Views: 2850

(pre)set user passwords as admin

As an admin, I want to be able to set the user passwords myself, instead of having them following the email validation process. Besides that I want to be able to change user passwords at any given time.
I have searched the forums and peeked at the code but I couldn't find such functionality. Can ...
by omeslo
17 Dec 2007, 16:18
Forum: General Discussion
Topic: Enumeration Custom Fields with Dynamic Possible Values
Replies: 4
Views: 12712

Re: Enumeration Custom Fields with Dynamic Possible Values

dynamic enums... yummy!

where's the link victor?
by omeslo
29 Nov 2007, 10:46
Forum: Customizations
Topic: multiple attachment upload
Replies: 9
Views: 16893

Re:

fxm wrote:Hello,

This function is very good, but is it possible to integrate it into next version of Mantis ?

Thanks in advance for your answer.

François
Fine with me.. I guess you should PM vboctor about this, or make a feature request.
by omeslo
27 Nov 2007, 11:13
Forum: Help
Topic: need help with inserting default values in custom fields
Replies: 2
Views: 3300

Re: need help with inserting default values in custom fields

Look at custom_field_table and find the id of the custom field. Do a sub select on bug_table and find all bugs for that project and insert a row into custom_field_string_table for each one.

Thx for your reply, Tinjaw.. figured that much out myself but it'll be too much trouble to do it manually ...
by omeslo
15 Nov 2007, 13:18
Forum: Help
Topic: need help with inserting default values in custom fields
Replies: 2
Views: 3300

need help with inserting default values in custom fields

I added a custom field to a long running project. (5000+ bugs) and I was wondering if there is a way to put a default value in this custom field for all previously reported bugs.
These fields are now empty, so they cannot be used for filtering.
I do have access to the database, and have been ...
by omeslo
02 Jul 2007, 09:25
Forum: General Discussion
Topic: Custom fields in printing options and excel reports
Replies: 12
Views: 26426

dude, just find the occurrance of

Code: Select all

$t_related_custom_field_ids = custom_field_get_linked_ids( $v_project_id );
in print_all_bug_page_excel.php, and paste the code on the next line.



good luck!

edit: maybe it is worth mentioning that I am running mantis-1.0.6.
by omeslo
07 Jun 2007, 07:34
Forum: Customizations
Topic: Need an editor?
Replies: 10
Views: 29320

corrected version using 'simple' syle

Well, I got it working anyway, only to find that all html tags that require a parameter (like <img> etc) are not supported. The tags are simply printed to the screen and not rendered.
So here's a version using only the 'simple' style (bold, underline etc.)

code:
# (2) Begin the <head> section ...
by omeslo
06 Jun 2007, 08:20
Forum: Customizations
Topic: Need an editor?
Replies: 10
Views: 29320

Brilliant idea, but ..

.. even after adding

Code: Select all

';
}
at the end of your block of code, I still get a javascript error. Are you sure your instructions are correct?
by omeslo
04 Jun 2007, 07:44
Forum: Customizations
Topic: multiple attachment upload
Replies: 9
Views: 16893

No problem.

Here's a screenshot of view.php
http://www.analia.nl/screenshots/view.jpg

And this is what bug_report_page.php will look like.
http://www.analia.nl/screenshots/bug_report_page.jpg

Nothing fancy, but hey..

Note: the label 'bladeren' is rendered by the browser (NL in my case), and ...
by omeslo
01 Jun 2007, 14:10
Forum: Customizations
Topic: multiple attachment upload
Replies: 9
Views: 16893

multiple attachment upload

All,

I implemented a little hack that allows for multiple attachment upload. It is rather basic (e.g. no localization) and has not been thoroughly tested, but it seems to suit my needs.
Bear with me, as we will have to modify 5 different files.

(This hack is based on v1.0.6, but should work in ...
by omeslo
15 May 2007, 12:31
Forum: General Discussion
Topic: Mantis-overly complicated..
Replies: 2
Views: 5109

Before I switched to Mantis, I was using this: http://phpbt.sourceforge.net/.
I found it's functionality too limited for my use, but it might just be what you're looking for.
by omeslo
14 May 2007, 12:50
Forum: General Discussion
Topic: Custom fields in printing options and excel reports
Replies: 12
Views: 26426

aight, got it fixed

If anyone is interested, the custom fields were not ordered correctly (in relation to their headers). What worked for me:

in print_all_bug_page_excel.php, add
natcasesort($t_related_custom_field_ids);
$t_related_custom_field_ids = array_values($t_related_custom_field_ids);

around line 506, right ...
by omeslo
14 May 2007, 08:52
Forum: General Discussion
Topic: Custom fields in printing options and excel reports
Replies: 12
Views: 26426

evicente wrote:I've installed this patch.. I works fine but the headers of my custom fields were interchanged...
hmm.. mine too. Also, there is no 'fixed in version' field.
Too bad, cause it looks really promising.
by omeslo
24 Apr 2007, 07:24
Forum: Customizations
Topic: Hack for multiple problem-solvers per Bug
Replies: 3
Views: 13393

thanks man, I'll look into it.