Changesets: MantisBT

master 4bd8b5cd

2016-08-26 19:34

vboctor


Details Diff
Merge remote-tracking branch 'origin/master-1.3.x'

# Conflicts:
# bug_revision_view_page.php
mod - bug_revision_view_page.php Diff File
mod - core/bug_api.php Diff File
mod - core/filter_api.php Diff File
mod - core/print_api.php Diff File
mod - core/user_api.php Diff File

master-1.3.x 8ac7f9c3

2016-08-26 16:14

vboctor


Details Diff
Don’t prune protected accounts

Fixes 0021304
Affected Issues
0021304
mod - manage_user_prune.php Diff File

master 64e2a56a

2016-08-26 16:04

syncguru

Committer: vboctor


Details Diff
Style deleted filter & enhance manage filter pages

Fixes 0021647
Affected Issues
0021647
mod - core/print_api.php Diff File
mod - query_delete.php Diff File
mod - query_view_page.php Diff File

master-1.3.x c13b3253

2016-08-25 19:19

vboctor

Committer: dregad


Details Diff
Add EVENT_CORE_HEADERS event

Called before core emits headers enabling plugins to emit their
own headers or call APIs that shape the value of headers emitted by
core like Content-Security-Policy.

Fixes 0021263
Affected Issues
0021263
mod - core.php Diff File
mod - core/events_inc.php Diff File
mod - docbook/Developers_Guide/en-US/Events_Reference.xml Diff File
mod - plugins/Gravatar/Gravatar.php Diff File

master 22edcdb5

2016-08-25 18:54

syncguru


Details Diff
Highlight due date when the date has passed

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

master d0be724a

2016-08-25 18:11

syncguru

Committer: vboctor


Details Diff
Switch filter on dropdown selection & remove 'user filter' button
mod - core/filter_api.php Diff File
mod - js/common.js Diff File

master 2a64d176

2016-08-23 18:34

syncguru

Committer: vboctor


Details Diff
Remove incorrect “Upgrade Your Installation"

Don't show "Upgrade Your Installation" when switching admin bar tabs

Fixes 0021602
Affected Issues
0021602
mod - admin/email_queue.php Diff File
mod - admin/system_utils.php Diff File
mod - admin/test_langs.php Diff File

master e2a998ef

2016-08-22 20:16

syncguru

Committer: vboctor


Details Diff
Show search & saved filters when filter is collapsed

- Move ‘Create Permalink’ & ‘Advanced Filters’ to dropdown menu
mod - core/filter_api.php Diff File
mod - css/ace-mantis.css Diff File
mod - js/common.js Diff File

master c7787f96

2016-08-22 11:20

syncguru


Details Diff
Fix generation & parsing of collapse cookie

Fixes 0021400
Affected Issues
0021400
mod - js/common.js Diff File

master-1.3.x 694873e7

2016-08-22 10:56

atrol


Details Diff
Cache latest data in function user_cache_database_result

The functions did not return a value in all cases.
There is no place in code where the return value of the function is used.

The cache was not updated with latest data if's been set before.

Fixes 0020551
Affected Issues
0020551
mod - core/user_api.php Diff File

master 53db86d5

2016-08-21 14:29

syncguru

Committer: vboctor


Details Diff
Show text search bar when the filter is collapsed

Fixes 0020102
Affected Issues
0020102
mod - core/filter_api.php Diff File
mod - css/ace-mantis.css Diff File
mod - js/common.js Diff File

master 5de037c3

2016-08-21 13:04

syncguru

Committer: vboctor


Details Diff
Optimize vertical space in "My View" page

Fixes 0021123
Affected Issues
0021123
mod - css/ace-mantis.css Diff File
mod - my_view_inc.php Diff File

master f4f5364a

2016-08-21 10:40

syncguru


Details Diff
Fix rendering table columns in Workflow Transitions page

Fixes 0021638
Affected Issues
0021638
mod - manage_config_workflow_page.php Diff File

master-1.3.x 22c421e9

2016-08-20 13:28

cproensa

Committer: dregad


Details Diff
Remove incorrectly placed db_param_push()

When db_query() is called without a parameter array, the db_param stack
is not popped automatically, so in this case the db_param_push was not
being popped after query execution.

Fixes 0021649
Affected Issues
0021649
mod - core/category_api.php Diff File
mod - core/custom_field_api.php Diff File
mod - core/email_queue_api.php Diff File

master-1.3.x 768a7f89

2016-08-20 10:33

cproensa

Committer: dregad


Details Diff
Fix filter api get bug rows db_params

When using filter_get_bug_count and filter_get_bug_rows_result, the same
query string is used for two queries, and since this query has been
created using db_param(), the parameter stack must be more carefully
managed.
mod - core/filter_api.php Diff File
mod - csv_export.php Diff File
mod - excel_xml_export.php Diff File

master-1.3.x 4d160125

2016-08-19 17:02

cproensa

Committer: dregad


Details Diff
Fix querying zero projects

Fix the new api functions, to support the case when a user doesn't have
any accessible project. In this case the filter query can't be built, so
fix returning empty values.

Affected functions were introduced in relation to Issues 0020424, 0021072.
Affected Issues
0020424, 0021072
mod - core/database_api.php Diff File
mod - core/filter_api.php Diff File
mod - core/history_api.php Diff File

master-1.3.x 5d2f72a9

2016-08-18 07:07

cproensa

Committer: dregad


Details Diff
Show report bug menu entry if allowed for any project

Previously, the "report bug" menu entry was not displayed when:
1. current project is ALL PROJECTS and user has not global report bug access
2. current project is a specific one, and user has not report access in
that project

(1) is confusing for users, when they have access to report in any of
the specific projects they are assigned to, but still cant find the menu
entry.
Note that for globally allowed users, when trying to report in ALL
PROJECTS, a page appears that promts the user to select a valid project

(2) can be also confusing like (1), when the user is positioned in a
project where is effectively a "viewer", want to report a bug and cant
find the menu entry. This forces the user to select a valid project
before being allowed to use the report menu.

The fix implemented here checks if the user has permissions to report in
any of his assigned projects, then show the menu entry.
If the user cant report in current project once the menu entry is
selected, show the project selection page to choose a valid project.

This fixes (1) which is a common complaint from new users
and (2), which also provides a more intuitive way to use the report
option, as first choose the action, later choose the project.

Fixes: 0014268
Affected Issues
0014268
mod - bug_report_page.php Diff File
mod - core/html_api.php Diff File

master-1.3.x df42516b

2016-08-18 06:53

cproensa

Committer: dregad


Details Diff
Create api function to check a threshold in several projects

Add an api function to check the current user's access against the given
threshold, in each of the provided projects, and return true if the
user's access is equal to or higher in any of the projects, false otherwise.

The provided threshold can be the config literal to be evaluated in each
project's context.
mod - core/access_api.php Diff File

master c8fe307b

2016-08-17 03:12

dregad


Details Diff
Merge branch 'master-1.3.x'

Conflicts:
core/html_api.php (resolved with change in layout_api.php)
mod - core/email_api.php Diff File
mod - core/filter_api.php Diff File
mod - core/history_api.php Diff File
mod - core/layout_api.php Diff File
mod - core/timeline_api.php Diff File
mod - csv_export.php Diff File
mod - excel_xml_export.php Diff File

master-1.3.x aa07b7e2

2016-08-17 02:55

dregad


Details Diff
Remove trailing whitespace, break long line
mod - core/filter_api.php Diff File

master c5f17c92

2016-08-17 01:58

dregad


Details Diff
Add library/ezc to .gitignore

Following implementation of chartjs for graphs and removal of the ezc
libraries submodules, git warns about untracked files when switching
between master and older branches.

Adding the library/ezc directory to .gitignore fixes the problem.
mod - .gitignore Diff File

master-1.3.x 9f359863

2016-08-16 22:50

vboctor

Committer: dregad


Details Diff
Protect against calling http_csp_add() too late

If the CSP header is sent and then http_csp_add() is called, trigger error.

Fixes 0021263
Affected Issues
0021263
mod - core/http_api.php Diff File

master-1.3.x f24a3e9c

2016-08-16 22:44

vboctor

Committer: dregad


Details Diff
Use Content-Security-Policy API in Gravatar

Fixes 0021263
Affected Issues
0021263
mod - plugins/Gravatar/Gravatar.php Diff File

master-1.3.x a905dd01

2016-08-16 22:25

vboctor

Committer: dregad


Details Diff
Add API for Content-Security-Policy

Add APIs to allow plugins to change the Content-Security-Policy header.

Fixes 0021263
Affected Issues
0021263
mod - core/http_api.php Diff File

master 44bb87ce

2016-08-16 19:34

syncguru

Committer: dregad


Details Diff
Fix styling of alert message boxes

Fixes 0021622
Affected Issues
0021622
mod - admin/email_queue.php Diff File
mod - manage_proj_create_page.php Diff File
mod - verify.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 203 204 205 206 207 208 209 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 729 730 731  Next  Last