Search found 10 matches

by Chewits
19 Aug 2016, 18:01
Forum: Help
Topic: DokuWiki integration for a single project
Replies: 5
Views: 3983

Re: DokuWiki integration for a single project

Ok, thank you.
I think these variables should go to $g_global_settings in config_defaults_inc.php. If yes, I can create a pull request for that.
by Chewits
18 Aug 2016, 10:12
Forum: Help
Topic: DokuWiki integration for a single project
Replies: 5
Views: 3983

Re: DokuWiki integration for a single project

Hi atrol,

I've attached screenshots of how my config looks when I set it in database. There are no 'Wiki' links in this case.
But as soon as I set it globally in config_inc.php it works fine:

Code: Select all

$g_wiki_enable = ON;
$g_wiki_engine = 'dokuwiki';
I tried it with mantis 1.2.18.
by Chewits
16 Aug 2016, 17:28
Forum: Help
Topic: DokuWiki integration for a single project
Replies: 5
Views: 3983

DokuWiki integration for a single project

Hi!

Is it possible to integrate DokuWiki with MantistBT so that links in the main menu and on issue pages are available for the particular project(s)?
I tried to set these variables via [ Manage Configuration ] > [ Configuration Report ] page:

wiki_enable: ON;
wiki_engine: dokuwiki;
But it does ...
by Chewits
22 Apr 2016, 11:42
Forum: Help
Topic: Mantis notifications per category
Replies: 5
Views: 6870

Re: Mantis notifications per category

I've created a pull request for that:
https://github.com/mantisbt/mantisbt/pull/762
So if you think this feature can be helpful for someone except me I can make further modifications, following you remarks.
It's also not a problem for me if you don't think this option is useful :)
by Chewits
06 Apr 2016, 09:49
Forum: Help
Topic: Documentation about "Configuration Report" page
Replies: 4
Views: 5195

Re: Documentation about "Configuration Report" page

Thank you, it helped a bit :)
Maybe to add some words to the documentation, e.g. at the beginning of https://www.mantisbt.org/docs/master/en-US/Admin_Guide/html-desktop/#admin.config
E.g. declaring that the configuration system in MantisBT is fine-grained, i.e. configurable per-user/project and ...
by Chewits
04 Apr 2016, 15:16
Forum: Help
Topic: Documentation about "Configuration Report" page
Replies: 4
Views: 5195

Documentation about "Configuration Report" page

Hello,

I'm wondering is there any documentation reference where [ Configuration Report ] page is described? It looks like a great place where I can override all (or almost all) configuration options on per project/user basis. But where can I read more about this feature?

Which options take ...
by Chewits
21 Mar 2016, 07:38
Forum: Help
Topic: Mantis notifications per category
Replies: 5
Views: 6870

Re: Mantis notifications per category

It will not work for us because the category maintainer can be changed or another person may temporarily replace him (e.g. due to vacation, illness, etc..). In both cases we want the category maintainer to receive notifications about all issues in the category. Apparently, if we implement this via ...
by Chewits
17 Mar 2016, 10:52
Forum: Help
Topic: Mantis notifications per category
Replies: 5
Views: 6870

Re: Mantis notifications per category

Hi atrol,

do you think it is a good idea to add this feature as a standard MantisBT option?
It seems that this feature can be implemented in a plugin using EVENT_NOTIFY_USER_INCLUDE event, but I believe it's better to add one more column to the [ E-mail Notifications ] page named "Category Owner ...
by Chewits
03 Jul 2014, 14:34
Forum: General Discussion
Topic: SOAP API: mc_issue_note_add() throws errors
Replies: 1
Views: 6060

SOAP API: mc_issue_note_add() throws errors

Hello!

I'm trying to take advantage of SOAP API, in particular, to add a bugnote:

<?php

$url = 'http://path_to_mantisconnect.php';

$client = new SoapClient($url . '?wsdl');

$issueNoteData = array(
'text' => 'test'
);

$result = $client->mc_issue_note_add('admin', 'password', 12345 ...