Search found 217 matches
- 17 May 2019, 20:28
- Forum: General Plugin Discussion
- Topic: Theme Plugin BeachSide
- Replies: 2
- Views: 4202
Re: Theme Plugin BeachSide
@MadkaT - That's pretty cool. I suggest you offer your services for a fee. End-users with MantisBT tend to be companies with a need to do extensive issue tracking. These companies appreciate FOSS but they also need to appreciate the value of keeping developers alive to write more FOSS. The model I s...
- 17 May 2019, 20:11
- Forum: General Plugin Discussion
- Topic: Updated wiki plugin list
- Replies: 2
- Views: 3619
Re: Updated wiki plugin list
Thanks for the info David. I'll add a note in the wiki as time permits!
- 17 May 2019, 20:08
- Forum: General Plugin Discussion
- Topic: Example of custom authentication provider with SampleAuth
- Replies: 4
- Views: 5480
Re: Example of custom authentication provider with SampleAuth
The approach I would take with this is to look into the Mantis code to see how it determines whether a user is logged in, and what it does when a user is not. Then: Is there a hook there for alternative behavior? If so, look to see what a hooked event handler needs to accept and return. If not, see ...
- 17 May 2019, 20:02
- Forum: General Plugin Discussion
- Topic: Extend rest api
- Replies: 13
- Views: 9906
Re: Extend rest api
@federico - Let's be specific. What would you like to add to the API? Maybe we can clone and adapt code, then submit a GH PR.
As to OO, PHP is now pretty good with OO. I suggest you look for existing code and model after the good examples.
As to OO, PHP is now pretty good with OO. I suggest you look for existing code and model after the good examples.
- 23 Jan 2019, 19:58
- Forum: Help
- Topic: Generate individual project id
- Replies: 3
- Views: 3199
Re: Generate individual project id
I think this is part of the code you're looking for: https://github.com/mantisbt/mantisbt/blob/master-2.19/core/project_api.php#L337 function project_create( $p_name, $p_description, $p_status... ... $t_query = 'INSERT INTO {project} ( name, status, enabled, view_state, file_path, description, inher...
- 23 Jan 2019, 19:16
- Forum: Help
- Topic: Better solution than MantisBT
- Replies: 7
- Views: 2970
Re: Better solution than MantisBT
Good points... @cas is right that we need to use Mantis as-intended. It's not a tool for a site that already has very rigid rules. But my experience tells me that for a site that does not track issues effectively, that MantisBT helps to establish good practices. I have helped a few companies to esta...
- 21 Jan 2019, 21:24
- Forum: Help
- Topic: How to get all mantis users via api rest?
- Replies: 12
- Views: 9041
Re: How to get all mantis users via api rest?
No prob. If you'd ike to discuss plugin creation, check out the forum section dedicated to that topic. (See my sig) Just a note - I'm no expert in the area and don't have a lot of time right now to provide many details. My goal is to provide a forum for such discussions, to attract "like minds&...
- 21 Jan 2019, 21:13
- Forum: Help
- Topic: Better solution than MantisBT
- Replies: 7
- Views: 2970
Re: Better solution than MantisBT
Um, no. That's why we're here. Seriously ... MantisBT has a lot of features and it's aggressively supported. Yes, there is a huge list of issues, but most of the "bugs" reported against this software are requests for enhancements, not really faults. So you can use the software and experien...
- 21 Jan 2019, 18:14
- Forum: Help
- Topic: High Level User Guides?
- Replies: 3
- Views: 1692
Re: High Level User Guides?
@ajtaylor999 - I have a standard document in Google Docs that I copy and modify for each new client that I bring up on MantisBT. When I modify it, I personalize/brand it with screenshots of the client-specific tracker. Screenshots include their employee names, their product names, etc. I will re-wor...
- 14 Jan 2019, 22:03
- Forum: General Plugin Discussion
- Topic: Custom Field: Reopen Counter
- Replies: 4
- Views: 3735
Re: Custom Field: Reopen Counter
I think what you want is a trigger so that when a ticket is changed from Resolved/Closed status to anything else, that the value of a custom field is incremented. Is that a focused description of this challenge? I think we can refine that further, that it sounds like you'd like a plugin which will c...
- 14 Jan 2019, 21:49
- Forum: Help
- Topic: Developer behavior
- Replies: 16
- Views: 5571
Re: Developer behavior
OK, as just another member of this forum I have some requests and advice. I understand you do not speak English as a native. Many people here do not. This sometimes causes misunderstandings. That's fine. I am using simple English here to be as clear as possible. Please discontinue discussion of peop...
- 03 Jan 2019, 22:41
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 10
- Views: 12872
Re: Git integration using source-integration plugin fails
RE the date: 1970-01-01 01:00:00 That's the integer value for 0, displayed in the date format, with a 1-hour offset. So whatever column it's using for date, it's getting 0 or maybe text which it is then converting to 0. While I'm not 100% certain, this seems to be just another indication that the co...
- 03 Jan 2019, 18:56
- Forum: Help
- Topic: What are projects in MantisBT
- Replies: 2
- Views: 1348
Re: What are projects in MantisBT
See also this recent thread:
https://www.mantisbt.org/forums/viewtop ... =3&t=25979
https://www.mantisbt.org/forums/viewtop ... =3&t=25979
- 03 Jan 2019, 18:54
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 10
- Views: 12872
Re: Git integration using source-integration plugin fails
For that query, the parameters are ( Repo_ID, Revision, ... If it's scraping the page of a single repository, the Repo_ID should be a single unique ID for that repository. It should not be changing. Similarly, the Revision in this context is the same as a Commit, and I don't know about Cgit but Git ...
- 03 Jan 2019, 03:54
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 10
- Views: 12872
Re: Git integration using source-integration plugin fails
Looking at John's other notes on this topic: If using Gitweb, versions newer than 1.6 may not work correctly, as the Gitweb plugin is scraping HTML from the viewer, and changes to the HTML structure will break the Gitweb plugin. -- https://jreese.sh/blog/source-integration-triage That confirms one o...