Changesets: MantisBT

master 8e111abb

2014-11-07 12:11

dregad


Details Diff
XML Import: use new method to replace bug links

A new private method replaceLinks() was added to avoid code duplication.
Now replacement of buglinks for 'description', 'steps_to_reproduce' and
'additional_information' is performed via this method.
mod - plugins/XmlImportExport/ImportXml.php Diff File

master-1.2.x dfffbdd7

2014-11-07 12:11

dregad


Details Diff
XML Import: use new method to replace bug links

A new private method replaceLinks() was added to avoid code duplication.
Now replacement of buglinks for 'description', 'steps_to_reproduce' and
'additional_information' is performed via this method.

Backport from master 8e111abb1723a47e6d6ca90079221f88bb98b282

Fixes 0017775
Affected Issues
0017848
mod - plugins/XmlImportExport/ImportXml.php Diff File

master 4350b4d4

2014-11-07 12:09

dregad


Details Diff
Remove useless 'e' modifier in bug link regex
mod - plugins/XmlImportExport/ImportXml.php Diff File

mantishub-1.3.x-20150418_1638 e7e8ec4d

2014-11-06 21:45

Victor Boctor


Details Diff
Update .gitignore file
mod - .gitignore Diff File

mantishub-1.3.x-20150418_1638 1ae694cf

2014-11-06 21:43

Victor Boctor


Details Diff
Add hosting folder
add - hosting/S5InstallScript.groovy Diff File
add - hosting/mantisbt.cfg Diff File

mantishub-1.3.x-20150418_1638 ca75dc06

2014-11-06 21:35

Victor Boctor


Details Diff
Add info.php
mod - core/mantishub_api.php Diff File
add - info.php Diff File

mantishub-1.3.x-20150418_1638 762eeb44

2014-11-06 21:27

Victor Boctor


Details Diff
Update MantisTouchRedirect plugin and load it
mod - mantishub_config_inc.php Diff File
mod - plugins/MantisTouchRedirect Diff File

mantishub-1.3.x-20150418_1638 f3ff2bec

2014-11-06 20:40

Victor Boctor


Details Diff
Merge remote-tracking branch 'upstream/master' into mantishub-1.3.x

Conflicts:
login.php
mod - api/soap/mc_project_api.php Diff File
mod - bug_view_inc.php Diff File
mod - core/email_api.php Diff File
mod - core/events_inc.php Diff File
mod - core/history_api.php Diff File
mod - core/html_api.php Diff File
mod - core/install_helper_functions_api.php Diff File
mod - core/project_api.php Diff File
mod - css/default.css Diff File
mod - docbook/Developers_Guide/en-US/Events_Reference_Manage.xml Diff File
mod - lang/strings_english.txt Diff File
mod - login.php Diff File
mod - login_page.php Diff File
mod - manage_columns_inc.php Diff File
mod - manage_config_columns_set.php Diff File
mod - manage_custom_field_edit_page.php Diff File
mod - my_view_inc.php Diff File

mantishub-1.3.x-20150418_1638 1f528fe6

2014-11-04 20:43

Victor Boctor


Details Diff
Add csv_import plugin as submodule
mod - .gitmodules Diff File
add - plugins/Csv_import Diff File

mantishub-1.3.x-20150418_1638 36e7c601

2014-11-04 20:42

Victor Boctor


Details Diff
Added MantisTouchRedirect plugin as submodule
mod - .gitmodules Diff File
add - plugins/MantisTouchRedirect Diff File

mantishub-1.3.x-20150418_1638 a0d5ed47

2014-11-04 20:40

Victor Boctor


Details Diff
Add MantisTouch submodule
mod - .gitmodules Diff File
add - m Diff File

mantishub-1.3.x-20150418_1638 92ccacf4

2014-11-04 20:30

Victor Boctor


Details Diff
Fixes #56: Make backup self service
mod - .gitignore Diff File
add - backup/.htaccess Diff File
mod - core/html_api.php Diff File
add - manage_backup.php Diff File
add - manage_backup_download.php Diff File
add - manage_backup_page.php Diff File

master-1.2.x dc9f0157

2014-11-04 19:10

vboctor


Details Diff
Handler access checks in SOAP API

The mc_issue_add() and mc_issue_update() APIs were missing checks to validate that specified handler has the appropriate access level and that logged in user have access level to assign issues.

mc_issue_get() was also missing the check that the user has access to view the handler assigned the issue.

Fixes 0016993
Affected Issues
0016993
mod - api/soap/mc_issue_api.php Diff File

master-1.2.x 76a1d203

2014-11-04 18:04

vboctor


Details Diff
Relationship emails disclose related issue

This fix tackles the following scenarios:

- Users no longer get notified about relationships that they don't have access to.
- Users no longer see relationships listed in email notifications that they don't have access to.
- Users no longer see history events associated with relationships they don't have access to.
- Emails are constructed within the context of the target user not the logged in one.

Fixes 0009885
Affected Issues
0009885
mod - core/email_api.php Diff File
mod - core/history_api.php Diff File

master-1.2.x b899651c

2014-11-04 18:04

vboctor


Details Diff
Relationship emails disclose related issue

This fix tackles the following scenarios:

- Users no longer get notified about relationships that they don't have access to.
- Users no longer see relationships listed in email notifications that they don't have access to.
- Users no longer see history events associated with relationships they don't have access to.
- Emails are constructed within the context of the target user not the logged in one.

Fixes 0009885
Affected Issues
0009885
mod - core/email_api.php Diff File
mod - core/history_api.php Diff File

master-1.2.x 4b2d30a8

2014-11-04 07:04

vboctor


Details Diff
Hide news permissions when disabled

Fixes 0016957
Affected Issues
0016957
mod - adm_permissions_report.php Diff File

master-1.2.x 9cc94a72

2014-11-04 07:04

vboctor


Details Diff
Hide news permissions when disabled
mod - adm_permissions_report.php Diff File

master-1.2.x db9fddd3

2014-11-03 15:55

vboctor


Details Diff
Fix category does not exist error

If we get into a state where a category doesn't exist then we end up in a denial of service state.
This impacts pages like My View, View Issues, and others.

We can get into this state due to several cases that we should fix. However, there is no reason why we won't handle them like we handle unknown enumerations.

This change adds a category_exists check in category_full_name() api, and changes category_exists to populate the cache to not incur extra overhead.

Fixes 0015420
Affected Issues
0015420
mod - core/category_api.php Diff File

mantishub-1.3.x-20150418_1638 63243e4d

2014-11-02 20:38

Victor Boctor


Details Diff
Add config_inc.php support
mod - core.php Diff File

mantishub-1.3.x-20150418_1638 76af9f9a

2014-11-02 19:48

Victor Boctor


Details Diff
Update mantishub configs, plans, and API
mod - core/mantishub_api.php Diff File
mod - mantishub_config_defaults_inc.php Diff File
mod - mantishub_config_inc.php Diff File
add - mantishub_plan_inc.bronze12.php Diff File
add - mantishub_plan_inc.gold12.php Diff File
add - mantishub_plan_inc.silver12.php Diff File

master 8961a667

2014-11-02 07:41

vboctor


Details Diff
Collapse filter box by default

The filter box takes a large vertical space and it is expanded by default.
This change makes it collapsed by default.

Fixes 0017830
Affected Issues
0017830
mod - core/collapse_api.php Diff File

mantishub-1.3.x-20150418_1638 551b436b

2014-11-02 06:13

Victor Boctor


Details Diff
Remove MantisGraph plugin font configurability

This change bundles a single font and makes the graph API use it.
Before the graph had complexity related to supporting N fonts,
and often the plugin wasn't working due to the fonts not being found.
add - fonts/verdana.ttf Diff File
mod - mantishub_config_inc.php Diff File
mod - plugins/MantisGraph/core/graph_api.php Diff File
mod - plugins/MantisGraph/pages/config.php Diff File

master 0f030fd7

2014-11-01 22:36

vboctor


Details Diff
Relationship emails disclose related issue

This fix tackles the following scenarios:

- Users no longer get notified about relationships that they don't have access to.
- Users no longer see relationships listed in email notifications that they don't have access to.
- Users no longer see history events associated with relationships they don't have access to.
- Emails are constructed within the context of the target user not the logged in one.

Fixes 0009885
Affected Issues
0009885
mod - core/email_api.php Diff File
mod - core/history_api.php Diff File

master 5d759af5

2014-11-01 21:27

syncguru

Committer: vboctor


Details Diff
Align filter links with filter buttons

Fixes 0017814
Affected Issues
0017814
mod - css/default.css Diff File

master b5b08678

2014-11-01 21:23

vboctor


Details Diff
Merge pull request 0000532 from vboctor/Issue17806_UpgradeError

Fixes 0017806: Upgrade your installation consistently failing

The admin checks were mostly moved as is to the top of the page to use them to set a hidden field on the form. However, the warnings are displayed at the same location as before.
Affected Issues
0017806
mod - core/install_helper_functions_api.php Diff File
mod - login.php Diff File
mod - login_page.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 274 275 276 277 278 279 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 744 745 746  Next  Last