Search Changesets

MantisBT: 13x 9e60a12f

2016-09-15 23:49

dregad


Details Diff
PHPDoc consistency update in Version API

- Use identical definition for $p_inherit parameters everywhere
- Fix type for $p_released in version_get_all_rows() declaration
mod - core/version_api.php Diff File

MantisBT: master 253843ac

2016-09-12 09:58

atrol


Details Diff
Obsolete configuration option icon_path

After using FontAwesome for icons there is some dead code in Mantis.
After removing the dead code, there is no longer any access to setting
icon_path.

Fixes 0021689
Affected Issues
0021689
mod - config_defaults_inc.php Diff File
mod - core/columns_api.php Diff File
mod - core/icon_api.php Diff File
mod - core/obsolete.php Diff File
mod - core/relationship_api.php Diff File
mod - docbook/Admin_Guide/en-US/config/path.xml Diff File
mod - javascript_config.php Diff File
mod - my_view_inc.php Diff File
mod - plugins/MantisGraph/MantisGraph.php Diff File
mod - print_all_bug_page.php Diff File
mod - view_all_inc.php Diff File

Website: master 6211e726

2016-09-11 13:17

atrol


Details Diff
Update installation instructions to 1.3
mod - download.php Diff File

MantisBT: master b451eab5

2016-09-11 12:57

atrol


Details Diff
Remove unused parameter from function layout_page_end
mod - core/layout_api.php Diff File
mod - lost_pwd.php Diff File

MantisBT: master a9a06e26

2016-09-11 12:29

atrol


Details Diff
Fix variable naming conventions
mod - core/html_api.php Diff File

MantisBT: master-1.3.x c97b7f4b

2016-09-11 09:05

atrol


Details Diff
Remove unused parameter from function html_page_bottom
mod - core/html_api.php Diff File

MantisBT: master-1.3.x 0fdf636a

2016-09-11 09:03

atrol


Details Diff
Remove unused parameter from function html_page_bottom1
mod - core/html_api.php Diff File

MantisBT: master-1.3.x eda6b6db

2016-09-11 08:37

atrol


Details Diff
Remove unused parameter from function html_page_bottom1a
mod - core/html_api.php Diff File
mod - login_page.php Diff File
mod - lost_pwd.php Diff File
mod - lost_pwd_page.php Diff File
mod - signup.php Diff File
mod - signup_page.php Diff File
mod - verify.php Diff File

MantisBT: master-1.3.x 8db14033

2016-09-11 08:01

dregad


Details Diff
Revise HelperTests for helper_array_transpose()

The tests are now performed in 2 distinct steps:

- Valid values, that should be successfully transposed
- Invalid values (e.g. single-dimension and non-square arrays),
expected to fail
mod - tests/Mantis/HelperTest.php Diff File

MantisBT: master-1.3.x 7e43fcb5

2016-09-11 08:01

dregad


Details Diff
Tests: restore error handler after Mantis core init

We need to disable MantisBT's error handler to allow PHPUnit to convert
errors to exceptions, so we can capture and test them.

Fixes 0021696
Affected Issues
0021696
mod - tests/TestConfig.php Diff File

MantisBT: master-1.3.x 8e3d9379

2016-09-11 07:06

atrol


Details Diff
PHPDoc fixes
mod - core/filter_api.php Diff File
mod - core/ldap_api.php Diff File

MantisBT: master 68bd874a

2016-09-11 00:46

dregad


Details Diff
Implementing PR revision comments

- Fix param type in PHPDoc
- Consistency in variables init sequence in switch statement
- Renamed html_operation_successful_buttons() function to
html_operation_confirmation()
- Restored wrongly deleted init of $t_access_level
- Action 2 leftover TODOs, use the new warning/failure functions
mod - bug_report.php Diff File
mod - core/html_api.php Diff File
mod - manage_user_create.php Diff File
mod - manage_user_reset.php Diff File
mod - manage_user_update.php Diff File
mod - news_update.php Diff File

MantisBT: master 8daee923

2016-09-10 23:31

dregad


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

Conflicts:
- css/default.css - change discarded
- manage_config_workflow_page.php - merged
mod - bug_report_page.php Diff File
mod - core/csv_api.php Diff File
mod - core/email_api.php Diff File
mod - core/excel_api.php Diff File
mod - core/helper_api.php Diff File
mod - manage_config_workflow_page.php Diff File
mod - manage_config_workflow_set.php Diff File

MantisBT: master 49728830

2016-09-10 04:34

dregad


Details Diff
Only append default message when none provided

If the caller provided a custom message, then we display it as-is,
without appending the default one based on confirmation type.

This gives more flexibility to the caller when displaying confirmation
messages.

Issue 0021683
Affected Issues
0021683
mod - core/html_api.php Diff File

MantisBT: master 0c00cc9e

2016-09-10 04:24

dregad


Details Diff
More replacements of custom layout by html_operation_xxx()

Issue 0021683
Affected Issues
0021683
mod - core/access_api.php Diff File
mod - lost_pwd.php Diff File

MantisBT: master 750950da

2016-09-10 01:51

dregad


Details Diff
Use constants instead of hardcoding values

Define 3 new constants to replace string values:

- 'success' -> CONFIRMATION_TYPE_SUCCESS,
- 'warning' -> CONFIRMATION_TYPE_WARNING,
- 'failure' -> CONFIRMATION_TYPE_FAILURE.

Issue 0021683
Affected Issues
0021683
mod - core/constant_inc.php Diff File
mod - core/html_api.php Diff File

MantisBT: master 6d4a5fe2

2016-09-10 01:46

dregad


Details Diff
New functions for warning and failure confirmations

Modify html_operation_successful_buttons() to accept an optional type
parameter, allowing caller to specify the type of confirmation message
to display (success, warning, failure).

Add 2 new functions and corresponding language strings:
- html_operation_warning()
- html_operation_failure()

Fixes 0021683
Affected Issues
0021683
mod - core/html_api.php Diff File
mod - lang/strings_english.txt Diff File

MantisBT: master c1359323

2016-09-10 01:32

dregad


Details Diff
Remove spacing between the redirection buttons

To be consistent with the rest of the UI where the buttons are printed
right next to each other, remove the   and wrap them in a btn-group
div.

Issue 0021683
Affected Issues
0021683
mod - core/html_api.php Diff File

MantisBT: master 3f610629

2016-09-10 01:04

dregad


Details Diff
Use new API for pages with multiple redirection links

- bug_report.php
- news_update.php

Fixes 0021683
Affected Issues
0021683
mod - bug_report.php Diff File
mod - news_update.php Diff File

MantisBT: master d14b3089

2016-09-10 00:57

dregad


Details Diff
New html_operation_successful_buttons() function

The new API function expands the existing html_operation_successful(),
allowing display of multiple redirect buttons instead of a single
'Proceed' link.

Fixes 0021683
Affected Issues
0021683
mod - core/html_api.php Diff File

MantisBT: master e6a2378e

2016-09-10 00:54

dregad


Details Diff
Use html_operation_successful() instead of custom layout

Fixes 0021683
Affected Issues
0021683
mod - manage_user_create.php Diff File
mod - manage_user_reset.php Diff File
mod - manage_user_update.php Diff File
mod - query_delete.php Diff File

MantisBT: master 1f8e3b70

2016-09-10 00:43

dregad


Details Diff
Add spacer before Add News confirmation message
mod - news_add.php Diff File

MantisBT: master a781966c

2016-09-10 00:42

dregad


Details Diff
Add container div in html_operation_successful()

This prevents display issues when additional content is displayed after
the confirmation message.

Fixes 0021682
Affected Issues
0021682
mod - core/html_api.php Diff File

MantisBT: master 1c92a60f

2016-09-10 00:41

dregad


Details Diff
Update layout of News update page

Make the confirmation message look more similar to the one rendered by
html_operation_successful().
mod - news_update.php Diff File

MantisBT: master 7f63ed5a

2016-09-10 00:40

dregad


Details Diff
Show realname in breadcrumbs if $g_show_realname = ON

Prior to this, the username would always be displayed, regardless of
$g_show_realname setting.

Fixes 0021681
Affected Issues
0021681
mod - core/layout_api.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 180 181 182 183 184 185 186 ... 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 741 742 743  Next  Last