Changesets: MantisBT
|
master bfe9e9e9 2018-01-05 10:38 Details Diff |
Update SOAP API to use IssueNoteAddCommand | ||
| mod - api/soap/mc_issue_api.php | Diff File | ||
|
master 573bee3b 2018-01-05 10:05 Details Diff |
Revise access checks Make sure access checks are complete and are applied against the effective reporter. - Private notes - Attahcing files - Time tracking Update command sample data with comments and fixed indentation. |
||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/user_api.php | Diff File | ||
|
master ce9debe5 2018-01-05 09:34 Details Diff |
Fix docs for `BugnoteData::note_attr` field | ||
| mod - core/bugnote_api.php | Diff File | ||
|
master 2623cf3c 2018-01-05 09:33 Details Diff |
Fix reporting as a different user - Check that the other user has report issue note access. - Attribute the note to the other user rather than the logged in user. |
||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/user_api.php | Diff File | ||
|
master 459f09f3 2018-01-04 09:25 Details Diff |
Implement proper http error for hitting rate limit | ||
| mod - api/soap/mc_api.php | Diff File | ||
|
master 54a83cd2 2018-01-04 09:25 Details Diff |
Use exceptions for errors related to adding notes | ||
| mod - core/antispam_api.php | Diff File | ||
| mod - core/bugnote_api.php | Diff File | ||
| mod - core/constant_inc.php | Diff File | ||
| mod - core/file_api.php | Diff File | ||
|
master 62b61a71 2018-01-04 08:48 Details Diff |
Documentation tweaks | ||
| mod - api/rest/restcore/issues_rest.php | Diff File | ||
| mod - core/commands/Command.php | Diff File | ||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
|
master 898307d7 2018-01-03 23:17 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_breton.txt | Diff File | ||
| mod - lang/strings_danish.txt | Diff File | ||
| mod - lang/strings_french.txt | Diff File | ||
| mod - lang/strings_galician.txt | Diff File | ||
| mod - lang/strings_italian.txt | Diff File | ||
| add - lang/strings_ka.txt | Diff File | ||
| mod - lang/strings_swedish.txt | Diff File | ||
|
master 95ed43fe 2018-01-03 10:19 Details Diff |
Support file attachments with notes Following is a sample attribute to pass when creating a note: ``` “files”: [ { "name": "test.txt", "content": "VGhpcyBpcyBhIFRFU1QuDQpUaGlzIGlzIGEgVEVTVC4NClRoaXMgaXMgYSBURVNULg0KVGhpcyBpcyBhIFRFU1QuDQpUaGlzIGlzIGEgVEVTVC4=" } ] ``` |
||
| mod - api/rest/restcore/issues_rest.php | Diff File | ||
| mod - api/soap/mc_api.php | Diff File | ||
| mod - bugnote_add.php | Diff File | ||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/file_api.php | Diff File | ||
|
master-2.10 21188453 2018-01-02 23:19 Committer: vboctor Details Diff |
Correct constructor name of FilterConverter class Fixes 0023765 |
Affected Issues 0023765 |
|
| mod - core/classes/FilterConverter.class.php | Diff File | ||
|
master b7ec6252 2018-01-02 23:19 Details Diff |
Correct constructor name of FilterConverter class Fixes 0023765 |
Affected Issues 0023765 |
|
| mod - core/classes/FilterConverter.class.php | Diff File | ||
|
master 26c869f6 2018-01-02 15:53 Details Diff |
Refactor attaching files This is a step towards de-coupling attaching of files from the web UI post format. A follow up will eventually allow attachments being included ias base64 content. |
||
| mod - bug_report.php | Diff File | ||
| mod - bugnote_add.php | Diff File | ||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/file_api.php | Diff File | ||
|
master 046dcb64 2018-01-02 15:20 Details Diff |
Validate issue note type field | ||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
|
master cf5df805 2018-01-02 14:57 Details Diff |
Revise time tracking duration validation | ||
| mod - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/helper_api.php | Diff File | ||
| mod - lang/strings_english.txt | Diff File | ||
|
master bda1a531 2018-01-02 13:45 Details Diff |
Implement `IssueNoteAddCommand` and use it - Use for REST API - Use for Web UI |
||
| mod - api/rest/restcore/issues_rest.php | Diff File | ||
| mod - bugnote_add.php | Diff File | ||
| mod - core/commands/Command.php | Diff File | ||
| add - core/commands/IssueNoteAddCommand.php | Diff File | ||
| mod - core/commands/MonitorAddCommand.php | Diff File | ||
| mod - core/helper_api.php | Diff File | ||
|
master 4055800d 2018-01-02 12:53 Details Diff |
Monitor add extra valid plus new error type - Differentiate invalid value from not found errors. - Generate proper error when users is set to a non-array value. |
||
| mod - core/commands/MonitorAddCommand.php | Diff File | ||
| mod - core/constant_inc.php | Diff File | ||
| mod - lang/strings_english.txt | Diff File | ||
|
master c83bb453 2018-01-02 12:48 Details Diff |
Add helper methods for access command data - option() to access ‘options’. - query() to access ‘query’. - payload() To access ‘payload’. |
||
| mod - core/commands/Command.php | Diff File | ||
| mod - core/commands/MonitorAddCommand.php | Diff File | ||
|
master 36423e06 2018-01-02 11:40 Details Diff |
Update command data expected schema Instance of data accepting payload that is sometimes updated from the input from REST API. It now works as follows: - data[‘payload’] corresponds to REST API body. - data[‘query’] corresponds to REST API URL path and query string params. - data[‘options’] options to take into consideration when executing the command from the calling module. If these elements are not set, they will be defaulted by the commands to an empty array. |
||
| mod - api/rest/restcore/issues_rest.php | Diff File | ||
| mod - bug_monitor_add.php | Diff File | ||
| mod - core/commands/Command.php | Diff File | ||
| mod - core/commands/MonitorAddCommand.php | Diff File | ||
|
master 903befa8 2018-01-01 04:35 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_belarusian_tarask.txt | Diff File | ||
| mod - lang/strings_chinese_simplified.txt | Diff File | ||
| mod - lang/strings_chinese_traditional.txt | Diff File | ||
| mod - lang/strings_czech.txt | Diff File | ||
| mod - lang/strings_german.txt | Diff File | ||
| mod - lang/strings_korean.txt | Diff File | ||
| mod - lang/strings_lithuanian.txt | Diff File | ||
| mod - lang/strings_macedonian.txt | Diff File | ||
| mod - lang/strings_portuguese_brazil.txt | Diff File | ||
| mod - lang/strings_portuguese_standard.txt | Diff File | ||
| mod - lang/strings_spanish.txt | Diff File | ||
| mod - plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt | Diff File | ||
| mod - plugins/MantisGraph/lang/strings_portuguese_standard.txt | Diff File | ||
| mod - plugins/XmlImportExport/lang/strings_lb.txt | Diff File | ||
|
master 88154cf2 2017-12-30 17:00 Committer: vboctor Details Diff |
Rename config settings Fixes 0023758 |
Affected Issues 0023758 |
|
| mod - account_prefs_update.php | Diff File | ||
| mod - config_defaults_inc.php | Diff File | ||
| mod - core/print_api.php | Diff File | ||
| mod - docbook/Admin_Guide/en-US/config/display.xml | Diff File | ||
|
master ffcf9a9c 2017-12-30 13:50 Details Diff |
Fix issues from PR feedback | ||
| mod - bug_monitor_add.php | Diff File | ||
| mod - core/commands/MonitorAddCommand.php | Diff File | ||
| mod - core/constant_inc.php | Diff File | ||
|
master b60c48bc 2017-12-30 13:33 Details Diff |
Update release to `2.11.0-dev` | ||
| mod - core/constant_inc.php | Diff File | ||
|
master-2.9 bb0e592e 2017-12-30 13:10 Details Diff |
Update release to `2.9.1` | ||
| mod - core/constant_inc.php | Diff File | ||
| mod - docbook/Admin_Guide/en-US/Revision_History.xml | Diff File | ||
| mod - docbook/Developers_Guide/en-US/Revision_History.xml | Diff File | ||
|
master 9717433b 2017-12-30 13:08 Details Diff |
Update release to `2.10.0` | ||
| mod - core/constant_inc.php | Diff File | ||
| mod - doc/CREDITS | Diff File | ||
| mod - docbook/Admin_Guide/en-US/Revision_History.xml | Diff File | ||
| mod - docbook/Developers_Guide/en-US/Revision_History.xml | Diff File | ||
|
master 4daf1b43 2017-12-30 13:02 Committer: vboctor Details Diff |
Name changes based on PR comments Fixes 0023758 |
Affected Issues 0023758 |
|
| mod - config_defaults_inc.php | Diff File | ||
| mod - core/print_api.php | Diff File | ||
| mod - docbook/Admin_Guide/en-US/config/display.xml | Diff File | ||