Changesets: MantisBT

master-1.2.x 546d1868

2012-05-06 06:10

siebrand


Details Diff
Localisation updates from http://translatewiki.net.
mod - lang/strings_arabic.txt Diff File
mod - plugins/MantisCoreFormatting/lang/strings_arabic.txt Diff File
mod - plugins/MantisGraph/lang/strings_arabic.txt Diff File
mod - plugins/XmlImportExport/lang/strings_arabic.txt Diff File

master-1.2.x e28fa430

2012-05-06 01:54

dregad


Details Diff
The filter in managed_user_page.php is not persistent

The filter values stored in the cookie whenever the criteria change,
were restored to the form variables instead of the sanitized ($c_)
variables, and were therefore not taken into account when building the
page.

Fixes 0014216
Affected Issues
0014216
mod - manage_user_page.php Diff File

master-1.2.x 129a8e5e

2012-05-06 01:02

dregad


Details Diff
Code cleanup in Manage User page

Simplify code by using a for loop to print the column headers instead of
manually building the table cells one by one. Note that this actually
changes the label of the 'Protected' column from the padlock icon to a
text description.

Rename 'hide' variable to 'hide_inactive'. With the addition of the new
filter option 'show_disabled', using just 'hide' was potentially
confusing.
mod - core/print_api.php Diff File
mod - manage_user_page.php Diff File

master 93eb5401

2012-05-05 23:16

dregad


Details Diff
Add filter in Manage Users page to show/hide disabled users

This is a port of the following 1.2.x commits:

- a21374af650c06a27bf9a930edbcbef9b41989ac,

Original patch written by David Newcomb.

Fixed issue with new filter not specified on the multi-page navigation
links. Also made minor cosmetic changes: whitespace, coding guidelines.

- 129a8e5e93fda7537884bea371b794bb44c13c0c

Simplify code by using a for loop to print the column headers instead of
manually building the table cells one by one. Note that this actually
changes the label of the 'Protected' column from the padlock icon to a
text description.

Rename 'hide' variable to 'hide_inactive'. With the addition of the new
filter option 'show_disabled', using just 'hide' was potentially
confusing.

- e28fa43081f8365fafbc0c2331938032a3fe89a4

The filter in managed_user_page.php is not persistent

The filter values stored in the cookie whenever the criteria change,
were restored to the form variables instead of the sanitized ($c_)
variables, and were therefore not taken into account when building the
page.

Fixes 0011726, 0014216
Affected Issues
0011726, 0014216
mod - core/print_api.php Diff File
mod - lang/strings_english.txt Diff File
mod - manage_user_page.php Diff File

master-1.2.x a21374af

2012-05-05 23:16

dregad


Details Diff
Add filter in Manage Users page to show/hide disabled users

Original patch written by David Newcomb.

Fixed issue with new filter not specified on the multi-page navigation
links. Also made minor cosmetic changes: whitespace, coding guidelines.

Fixes 0011726
Affected Issues
0011726
mod - core/print_api.php Diff File
mod - lang/strings_english.txt Diff File
mod - manage_user_page.php Diff File

master e1a53885

2012-05-05 22:20

vboctor


Details Diff
Fixes 0014090: Private are not rendered any differently than public notes. Affected Issues
0014090
mod - css/default.css Diff File

master d906a10a

2012-05-05 22:00

vboctor


Details Diff
Fixes 0014089: "Operation Successful" notifications are not centered. Affected Issues
0014089
mod - account_prefs_update.php Diff File
mod - account_sponsor_update.php Diff File
mod - account_update.php Diff File
mod - bug_file_add.php Diff File
mod - bug_reminder.php Diff File
mod - bug_report.php Diff File
mod - core/html_api.php Diff File
mod - css/default.css Diff File
mod - manage_config_columns_reset.php Diff File
mod - manage_config_columns_set.php Diff File
mod - manage_config_email_set.php Diff File
mod - manage_config_revert.php Diff File
mod - manage_config_work_threshold_set.php Diff File
mod - manage_config_workflow_set.php Diff File
mod - manage_custom_field_create.php Diff File
mod - manage_custom_field_delete.php Diff File
mod - manage_custom_field_update.php Diff File
mod - manage_proj_cat_delete.php Diff File
mod - manage_proj_cat_update.php Diff File
mod - manage_proj_create.php Diff File
mod - manage_proj_custom_field_add_existing.php Diff File
mod - manage_proj_custom_field_remove.php Diff File
mod - manage_proj_custom_field_update.php Diff File
mod - manage_proj_subproj_add.php Diff File
mod - manage_proj_subproj_delete.php Diff File
mod - manage_proj_user_remove.php Diff File
mod - manage_proj_ver_add.php Diff File
mod - manage_proj_ver_delete.php Diff File
mod - manage_proj_ver_update.php Diff File
mod - manage_user_delete.php Diff File
mod - manage_user_proj_delete.php Diff File
mod - manage_user_update.php Diff File
mod - news_add.php Diff File
mod - news_update.php Diff File
mod - print_all_bug_options_reset.php Diff File
mod - print_all_bug_options_update.php Diff File
mod - proj_doc_add.php Diff File
mod - proj_doc_delete.php Diff File
mod - proj_doc_update.php Diff File
mod - set_project.php Diff File

master a917bd61

2012-05-05 20:35

dhx


Details Diff
Fix 0014087: Safely base64_encode $g_crypto_master_salt

Commit caf21ad4f13bff4190317750343ea2d445242467 tried to write a raw
binary string directly to the configuration file. The randomly generated
master salt needs to be base64 encoded prior to being written to the
configuration file.
Affected Issues
0014087
mod - admin/install.php Diff File

master caf21ad4

2012-05-05 19:38

dhx


Details Diff
Fix 0014087: Installation: create a cryptographically secure master salt

Commit 3f0f3799e65d8cc8752ac8d5dd27cbaceaaf1ec4 automatically generated
a value for $g_crypto_master_salt during installation based on a very
weak mechanism -- an MD5 hash of the current server time.

This commit correctly generates a 256bit cryptographically secure salt
instead, based on a much stronger source of randomness such as OpenSSL's
PRNG or /dev/urandom on Linux systems.

When a secure salt cannot be generated the user will need to manually
define $g_crypto_master_salt post installation.

Carriage return characters have also been removed from the default
generated config_inc.php file. These characters are redundant and do not
match the line termination standard used throughout MantisBT's code base.
Affected Issues
0014087
mod - admin/install.php Diff File

master 3f0f3799

2012-05-05 16:50

vboctor


Details Diff
Fixes 0014087: Installation script doesn't set the crypto_master_salt causing errors. Affected Issues
0014087
mod - admin/install.php Diff File

master a49f788e

2012-05-05 16:11

vboctor


Details Diff
Ignore .idea files for phpStorm.
mod - .gitignore Diff File

master-1.2.x e526350d

2012-05-05 16:11

vboctor


Details Diff
Ignore .idea files for phpStorm.
mod - .gitignore Diff File

master 30df2f45

2012-05-01 21:10

dregad


Details Diff
Documentation: improved troubleshooting for error 1502

Added instructions on how to retrieve the category id
Affected Issues
0013850, 0014189
mod - docbook/Admin_Guide/en-US/Troubleshooting.xml Diff File

master-1.2.x 6e842296

2012-05-01 21:10

dregad


Details Diff
Documentation: improved troubleshooting for error 1502

Added instructions on how to retrieve the category id
Affected Issues
0013850, 0014189
mod - docbook/adminguide/en/troubleshooting.sgml Diff File

master d234f4b6

2012-05-01 02:30

rombert


Details Diff
Fix reserved SQL keyword formatting - thanks to atrol

0012293: Not all the categories are displayed
mod - plugins/MantisGraph/core/graph_api.php Diff File

master-1.2.x f540b21d

2012-05-01 02:29

rombert


Details Diff
Fix reserved SQL keyword formatting - thanks to atrol

0012293: Not all the categories are displayed
mod - plugins/MantisGraph/core/graph_api.php Diff File

master 0ea8cc50

2012-04-30 10:30

VeMag


Details Diff
Small changes to include global categories in graph
and to hide empty values

Fixes 0012293
Affected Issues
0012293
mod - plugins/MantisGraph/core/graph_api.php Diff File

master-1.2.x c4ad6d83

2012-04-30 10:30

VeMag


Details Diff
Small changes to include global categories in graph
and to hide empty values

Fixes 0012293
Affected Issues
0012293
mod - plugins/MantisGraph/core/graph_api.php Diff File

master-1.2.x 78a6312a

2012-04-29 11:55

siebrand


Details Diff
Localisation updates from http://translatewiki.net.
mod - lang/strings_chinese_simplified.txt Diff File
mod - lang/strings_galician.txt Diff File
mod - lang/strings_hebrew.txt Diff File
mod - lang/strings_japanese.txt Diff File
mod - lang/strings_macedonian.txt Diff File
mod - lang/strings_portuguese_standard.txt Diff File
mod - lang/strings_serbian.txt Diff File
mod - lang/strings_serbian_latin.txt Diff File
mod - lang/strings_swissgerman.txt Diff File
mod - lang/strings_ukrainian.txt Diff File
mod - plugins/MantisGraph/lang/strings_japanese.txt Diff File
mod - plugins/XmlImportExport/lang/strings_japanese.txt Diff File

master c4221c0b

2012-04-29 03:31

VeMag


Details Diff
Fix 0013542: ... try to open an iframe and fail

Replace iframe by include

Conflicts:
plugins/MantisGraph/pages/bug_graph_page.php
Affected Issues
0013542
mod - plugins/MantisGraph/pages/bug_graph_page.php Diff File

master a79396b6

2012-04-27 03:49

VeMag


Details Diff
Fix_0014193:graph_unreadable_date_axis

This correction is about use of "eczlibrary" (not JpGraph)

In "View Issues" > "Graph", the date axis is "2012-0.." and the title is really big.

I fixe axisSpace, modify axis angle, and define maxHeight for the title.
Affected Issues
0014193
mod - plugins/MantisGraph/core/graph_api.php Diff File

master-1.2.x bd7326c6

2012-04-27 03:49

VeMag


Details Diff
Fix_0014193:graph_unreadable_date_axis

This correction is about use of "eczlibrary" (not JpGraph)

In "View Issues" > "Graph", the date axis is "2012-0.." and the title is really big.

I fixe axisSpace, modify axis angle, and define maxHeight for the title.
Affected Issues
0014193
mod - plugins/MantisGraph/core/graph_api.php Diff File

master 68a33feb

2012-04-26 10:45

rombert


Details Diff
Document g_email_send_using_cronjob

0014039: Error when performing tag operations on bugs
mod - docbook/Admin_Guide/en-US/Configuration.xml Diff File

master-1.2.x 4a9a7aed

2012-04-26 10:45

rombert


Details Diff
Document g_email_send_using_cronjob

0014039: Error when performing tag operations on bugs
mod - docbook/adminguide/en/configuration.sgml Diff File

master c94d4dc3

2012-04-25 04:13

dregad


Details Diff
Fix 0013691: misspelled XHTML in admin/system_utils.php Affected Issues
0013691
mod - admin/system_utils.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 375 376 377 378 379 380 381 ... 420 ... 490 ... 560 ... 630 ... 700 ... 746 747 748  Next  Last