Search found 168 matches
- Jan 23, 2019 2:58 pm
- Forum: Help
- Topic: Generate individual project id
- Replies: 3
- Views: 216
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...
- Jan 23, 2019 2:16 pm
- Forum: Help
- Topic: Better solution than MantisBT
- Replies: 7
- Views: 310
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...
- Jan 21, 2019 4:24 pm
- Forum: Help
- Topic: How to get all mantis users via api rest?
- Replies: 10
- Views: 1404
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" to s...
- Jan 21, 2019 4:13 pm
- Forum: Help
- Topic: Better solution than MantisBT
- Replies: 7
- Views: 310
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 experience very fe...
- Jan 21, 2019 1:14 pm
- Forum: Help
- Topic: High Level User Guides?
- Replies: 3
- Views: 171
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...
- Jan 14, 2019 5:03 pm
- Forum: General Plugin Discussion
- Topic: Custom Field: Reopen Counter
- Replies: 4
- Views: 251
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...
- Jan 14, 2019 4:49 pm
- Forum: Help
- Topic: Developer behavior
- Replies: 16
- Views: 720
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...
- Jan 03, 2019 5:41 pm
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 8
- Views: 4155
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...
- Jan 03, 2019 1:56 pm
- Forum: Help
- Topic: What are projects in MantisBT
- Replies: 2
- Views: 206
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
- Jan 03, 2019 1:54 pm
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 8
- Views: 4155
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 ...
- Jan 02, 2019 10:54 pm
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 8
- Views: 4155
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...
- Jan 02, 2019 10:31 pm
- Forum: General Plugin Discussion
- Topic: Git integration using source-integration plugin fails
- Replies: 8
- Views: 4155
Re: Git integration using source-integration plugin fails
I need to do this soon too but with a different Git repo, so I'm interested in what you're reporting. I've read your notes carefully and understand what you're saying. I'm not familiar with the source-integration plugin , and have never used Cgit, so I can't speak with any experience on this. I do n...
- Dec 30, 2018 12:05 am
- Forum: Help
- Topic: Severity, Priority, and Risk
- Replies: 0
- Views: 186
Severity, Priority, and Risk
I'm looking for a way to assess priority based on risk. Risk in this case is defined as complexity, difficulty, resource availability, and other factors. When we know the Risk associated with a ticket, at least by someone who can determine a value, we are in a better position to determine the priori...
- Dec 29, 2018 7:12 pm
- Forum: Help
- Topic: Insert image in note
- Replies: 3
- Views: 746
Re: Insert image in note
In v2, at Note entry you can upload a file. The attachment gets posted as its own event/note and it's followed by the current note. So replacement code for this would not only need to be able to render a file, but the mechanism would need to be changed that saves the file and then displays it in the...
- Dec 18, 2018 1:47 pm
- Forum: General Plugin Discussion
- Topic: Tablefield plugin
- Replies: 3
- Views: 299
Re: Tablefield plugin
We see here a very common pattern. Please don't take this the wrong way, I'm just explaining how you can get what you want... 1) Someone wants a feature 2) It's available in a plugin, or some code is required. 3) The person who wants that feature doesn't code. 4) This typically results in "OK, I gue...