Search Changesets

MantisBT: master 04943f39

2015-12-23 02:16

dregad


Details Diff
Travis: use PHP 5.6 for docbook builds
mod - .travis.yml Diff File

MantisBT: master 462ed3fc

2015-12-23 01:21

dregad


Details Diff
Fix HTML for email settings in account prefs page

Regression introduced by 8b6da6032aa5bda631a6e7fde96e150ef540a0cb.

The severities selection lists were no longer visible on the page
(hidden behind the label background span).

Fixes 0020414
Affected Issues
0020414
mod - account_prefs_inc.php Diff File

MantisBT: master 12676a31

2015-12-22 18:23

Rafik Robeal


Details Diff
Fix ID of custom field of type checkbox
mod - core/cfdefs/cfdef_standard.php Diff File

MantisBT: master 6ff4bd5b

2015-12-21 19:12

vboctor


Details Diff
Document 'none' as a log destination
mod - config_defaults_inc.php Diff File
mod - docbook/Admin_Guide/en-US/config/logging.xml Diff File

MantisBT: master 952a7aea

2015-12-21 11:56

cproensa


Details Diff
Print caller trace in file log

Include info for call trace when the log
destination is "file". This information is
already printed on "page" destination

Fix 0020408
Affected Issues
0020408
mod - core/logging_api.php Diff File

MantisBT: master-1.3.x 1279ac3a

2015-12-21 10:00

cproensa


Details Diff
Implement columns in csv and excel export

In CSV and Excel export, there were columns that are
not implemented, and were silently removed from user
column selection: bugnotes_count, attachment_count

With this commit they are now implemented

Fixes 0019284
Affected Issues
0019284
mod - core/csv_api.php Diff File
mod - core/excel_api.php Diff File
mod - core/helper_api.php Diff File

MantisBT: master 25695c72

2015-12-20 11:30

dregad


Details Diff
HTML/CSS for account profile edit page

Refactor the code to use "1.3-style" layout with form-container div and
fieldset, instead of html table

Use 'required' CSS class for mandatory fields display instead of
hardcoded '*' with span.
mod - account_prof_edit_page.php Diff File

MantisBT: master 5c4035bf

2015-12-20 11:24

dregad


Details Diff
HTML/CSS for bug change status page

Refactor the code to use "1.3-style" layout with form-container div and
fieldset, instead of html table.

Use 'required' CSS class for custom fields display instead of hardcoded
'*' with span.
mod - bug_change_status_page.php Diff File

MantisBT: master 61a559f6

2015-12-20 11:23

dregad


Details Diff
CSS 'required': bug update page

Improve generated HTML for custom fields display, remove hardcoded '*'
with span, use CSS 'required' class on label instead.
mod - bug_update_page.php Diff File

MantisBT: master 629686a2

2015-12-20 11:20

dregad


Details Diff
CSS 'required': bug report page

Remove hardcoded '*' with span, use CSS 'required' class on label
instead.

Improve generated HTML for custom fields display.
mod - bug_report_page.php Diff File

MantisBT: master d078ce3b

2015-12-20 11:10

dregad


Details Diff
CSS 'required': project documentation pages

Remove hardcoded '*' with span, use CSS 'required' class on label
instead.
mod - css/default.css Diff File
mod - proj_doc_add_page.php Diff File
mod - proj_doc_edit_page.php Diff File

MantisBT: master f3f16928

2015-12-20 10:44

dregad


Details Diff
Regroup LOG_EMAIL_* entries
mod - core/logging_api.php Diff File

MantisBT: master 6cbcb254

2015-12-20 09:02

cproensa


Details Diff
Fix variable out of scope in email_api

Regression introduced by 95f947f000bf66348cfef85f72a4f3e0223f1011

Issue 0020403

Signed-off-by: Damien Regad <dregad@mantisbt.org>
Affected Issues
0020403
mod - core/email_api.php Diff File

MantisBT: master e54d31bf

2015-12-20 08:17

cproensa


Details Diff
Add entry in $g_log_levels for LOG_EMAIL_VERBOSE

There were undefined offset system notices due to the missing array
entry.

Regression introduced by 95f947f000bf66348cfef85f72a4f3e0223f1011

Issue 0020403

Signed-off-by: Damien Regad <dregad@mantisbt.org>
Affected Issues
0020403
mod - core/logging_api.php Diff File

MantisBT: master 270f47bf

2015-12-19 22:21

vboctor


Details Diff
Further email logging improvements (batch 2)

- Include relationship type name rather than code.
- Remove incorrect relationship msgs for issues w/ no relationships.

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

MantisBT: master 95f947f0

2015-12-19 13:18

vboctor


Details Diff
Improve email logging

Fixes 0020403
Affected Issues
0020403
mod - config_defaults_inc.php Diff File
mod - core/constant_inc.php Diff File
mod - core/email_api.php Diff File
mod - core/email_queue_api.php Diff File
mod - docbook/Admin_Guide/en-US/config/logging.xml Diff File

MantisBT: master 28fee5ee

2015-12-18 04:39

dregad


Details Diff
CSS: consistency for 'required' color
mod - css/default.css Diff File

MantisBT: master 892d350d

2015-12-18 03:21

dregad


Details Diff
CSS class renamed from 'has-required' to 'required'

There was an inconsistency in the class name used to flag mandatory
fields. The fields use 'required' class to display a red asterisk next
to the label, while the parent fieldset relied on 'has-required' to
display the '* required' legend at the bottom of the form.

This caused password fields in account_page.php (which are only required
in specific contexts, e.g. when changing a new account's password after
verification) not to be flagged with the red asterisk.

We now consistently use 'required'.

Fixes 0020395
Affected Issues
0020395
mod - account_page.php Diff File
mod - account_prof_menu_page.php Diff File
mod - bug_report_page.php Diff File
mod - css/common_config.php Diff File
mod - manage_columns_inc.php Diff File
mod - manage_proj_create_page.php Diff File
mod - manage_tags_page.php Diff File
mod - news_edit_page.php Diff File
mod - news_menu_page.php Diff File

MantisBT: master 176169c7

2015-12-14 16:21

vboctor


Details Diff
Fix required on resolve/close for custom fields

If a custom field is marked as required on resolved or closed, it wasn't
enforced. It was only enforced for the regular issue update page.

Fixes 0020386
Affected Issues
0020386
mod - bug_update.php Diff File

MantisBT: master f67ec459

2015-12-14 15:49

vboctor


Details Diff
Support tagging from report issue page

Fixes 0009450
Affected Issues
0009450
mod - bug_report.php Diff File
mod - bug_report_page.php Diff File
mod - config_defaults_inc.php Diff File
mod - core/print_api.php Diff File
mod - core/tag_api.php Diff File
mod - docbook/Admin_Guide/en-US/config/fields.xml Diff File
mod - tag_attach.php Diff File

MantisBT: master-1.2.x 81540bb3

2015-12-13 22:58

dregad


Details Diff
Revert "Travis: fix PHP 5.5 builds"

This reverts commit 170c821df904073a100fa5022861e2cb6669b802.

The Travis team fixed the PHPUnit version issue.
mod - .travis.yml Diff File

MantisBT: master 27bfe82a

2015-12-13 22:02

dregad


Details Diff
Revert "Travis: fix PHP 5.5 builds"

This reverts commit 8f7dd7b21814c8b605a42c114e999311f3ef08e5.

The Travis team fixed the PHPUnit version issue.
mod - .travis.yml Diff File

MantisBT: master 8b6da603

2015-12-12 15:00

dregad


Details Diff
Adjust CSS for form container's checkbox + select

Prior to this, when reducing screen width, the fields would be displayed
to the left, under the label area, hiding them from the user.
mod - css/default.css Diff File

MantisBT: master dba48137

2015-12-12 14:15

vboctor


Details Diff
Support exporting billing report to CSV and Excel

- Added billing_api.php
- Implemented 'Export to Excel' using billing api
- Implemented 'Export to CSV' using billing api

Will open a code cleanup bug to move more code to use billing_api.

Fixes 0007932
Affected Issues
0007932
add - billing_export_to_csv.php Diff File
add - billing_export_to_excel.php Diff File
mod - billing_inc.php Diff File
add - core/billing_api.php Diff File

MantisBT: master e5a99c0e

2015-12-12 12:55

vboctor


Details Diff
Support notes field as a column field

- Added support for notes field in View Issues, Print Issues, CSV,
and Excel.
- Add vertical align top to the style for column values which is
useful when the view includes a multi-line column.

Fixes 0020383
Affected Issues
0020383
mod - core/bugnote_api.php Diff File
mod - core/columns_api.php Diff File
mod - core/csv_api.php Diff File
mod - core/excel_api.php Diff File
mod - css/default.css Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 211 212 213 214 215 216 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 743 744 745  Next  Last