Changesets: MantisBT
master-1.2.x 2f42c6a0 2010-01-25 00:56 Details Diff |
Fix 0011426: Time tracking stopwatch strings not translatable The strings used for the old inbuilt time tracking stopwatch feature need to be translatable. |
Affected Issues 0011426 |
|
mod - javascript/dev/time_tracking_stopwatch.js | Diff File | ||
mod - bugnote_add_inc.php | Diff File | ||
mod - javascript/min/time_tracking_stopwatch.js | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
master 18c52001 2010-01-25 00:56 Details Diff |
Fix 0011426: Time tracking stopwatch strings not translatable The strings used for the old inbuilt time tracking stopwatch feature need to be translatable. |
Affected Issues 0011426 |
|
mod - lang/strings_english.txt | Diff File | ||
mod - javascript/dev/time_tracking_stopwatch.js | Diff File | ||
mod - javascript/min/time_tracking_stopwatch.js | Diff File | ||
mod - bugnote_add_inc.php | Diff File | ||
master-1.2.x 4beb15aa 2010-01-25 00:40 Details Diff |
Fix 0011429: 'Attachment missing' not translatable The string 'attachment missing' should be translatable in the language files. |
Affected Issues 0011429 |
|
mod - core/print_api.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
master 28a23532 2010-01-25 00:40 Details Diff |
Fix 0011429: 'Attachment missing' not translatable The string 'attachment missing' should be translatable in the language files. |
Affected Issues 0011429 |
|
mod - core/print_api.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
master b2c3d1db 2010-01-21 17:24 Details Diff |
Localisation updates from translatewiki.net (2010-01-21) | ||
mod - lang/strings_spanish.txt | Diff File | ||
mod - lang/strings_swissgerman.txt | Diff File | ||
mod - plugins/XmlImportExport/lang/strings_german.txt | Diff File | ||
mod - lang/strings_hungarian.txt | Diff File | ||
mod - lang/strings_afrikaans.txt | Diff File | ||
mod - lang/strings_catalan.txt | Diff File | ||
mod - lang/strings_portuguese_standard.txt | Diff File | ||
mod - lang/strings_chinese_traditional.txt | Diff File | ||
mod - lang/strings_lithuanian.txt | Diff File | ||
mod - lang/strings_italian.txt | Diff File | ||
mod - lang/strings_occitan.txt | Diff File | ||
mod - lang/strings_dutch.txt | Diff File | ||
mod - lang/strings_tagalog.txt | Diff File | ||
mod - lang/strings_russian.txt | Diff File | ||
mod - lang/strings_estonian.txt | Diff File | ||
mod - lang/strings_breton.txt | Diff File | ||
mod - plugins/MantisGraph/lang/strings_german.txt | Diff File | ||
mod - lang/strings_slovak.txt | Diff File | ||
mod - lang/strings_french.txt | Diff File | ||
mod - lang/strings_icelandic.txt | Diff File | ||
mod - lang/strings_norwegian_bokmal.txt | Diff File | ||
mod - lang/strings_portuguese_brazil.txt | Diff File | ||
mod - lang/strings_macedonian.txt | Diff File | ||
mod - lang/strings_japanese.txt | Diff File | ||
mod - lang/strings_serbian.txt | Diff File | ||
mod - lang/strings_galician.txt | Diff File | ||
mod - lang/strings_bulgarian.txt | Diff File | ||
mod - lang/strings_ukrainian.txt | Diff File | ||
mod - lang/strings_urdu.txt | Diff File | ||
mod - lang/strings_greek.txt | Diff File | ||
mod - lang/strings_arabic.txt | Diff File | ||
mod - lang/strings_latvian.txt | Diff File | ||
mod - lang/strings_polish.txt | Diff File | ||
mod - lang/strings_czech.txt | Diff File | ||
mod - lang/strings_swedish.txt | Diff File | ||
mod - lang/strings_hebrew.txt | Diff File | ||
mod - lang/strings_romanian.txt | Diff File | ||
mod - lang/strings_chinese_simplified.txt | Diff File | ||
mod - lang/strings_arabicegyptianspoken.txt | Diff File | ||
rm - plugins/MantisCoreFormatting/lang/strings_hsb.txt | Diff | ||
mod - lang/strings_slovene.txt | Diff File | ||
mod - lang/strings_german.txt | Diff File | ||
mod - lang/strings_danish.txt | Diff File | ||
mod - lang/strings_korean.txt | Diff File | ||
mod - lang/strings_finnish.txt | Diff File | ||
mod - lang/strings_amharic.txt | Diff File | ||
master-1.2.x dfbe8b56 2010-01-20 23:06 Details Diff |
Fixes 0010670: Custom fields required do not work. |
Affected Issues 0010670 |
|
mod - core/cfdefs/cfdef_standard.php | Diff File | ||
mod - core/gpc_api.php | Diff File | ||
master e45c8298 2010-01-20 23:06 Details Diff |
Fixes 0010670: Custom fields required do not work. |
Affected Issues 0010670 |
|
mod - core/cfdefs/cfdef_standard.php | Diff File | ||
mod - core/gpc_api.php | Diff File | ||
master-1.2.x d1a69cd2 2010-01-20 07:02 Alexander Menk Committer: dhx Details Diff |
Fix 0011417: Allow EVENT_MENU_MAIN plugin events to return null A plugin may decide not to print a menu entry via the EVENT_MENU_MAIN event hook based on which project is currently selected. Therefore the return value from EVENT_MENU_MAIN should be checked to make sure it isn't null. If it is null, then don't print anything in the menu. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0011417 |
|
mod - core/html_api.php | Diff File | ||
master 321ac71d 2010-01-20 07:02 Alexander Menk Committer: dhx Details Diff |
Fix 0011417: Allow EVENT_MENU_MAIN plugin events to return null A plugin may decide not to print a menu entry via the EVENT_MENU_MAIN event hook based on which project is currently selected. Therefore the return value from EVENT_MENU_MAIN should be checked to make sure it isn't null. If it is null, then don't print anything in the menu. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0011417 |
|
mod - core/html_api.php | Diff File | ||
master-1.2.x 482a493f 2010-01-20 00:40 Committer: dhx Details Diff |
Fix 0011415: Check executable bit on admin/ folder, not readable bit login_page has a check that warns if the admin/ folder is still in place. However this check uses is_readable() instead of is_executable(). In the case of folders, the read bit determines who can list the directory. The execute bit determines who can traverse and access files within the directory. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0011415 |
|
mod - login_page.php | Diff File | ||
master 4eb5d9ae 2010-01-20 00:40 Committer: dhx Details Diff |
Fix 0011415: Check executable bit on admin/ folder, not readable bit login_page has a check that warns if the admin/ folder is still in place. However this check uses is_readable() instead of is_executable(). In the case of folders, the read bit determines who can list the directory. The execute bit determines who can traverse and access files within the directory. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0011415 |
|
mod - login_page.php | Diff File | ||
master-1.2.x 077921d0 2010-01-18 21:06 Details Diff |
Fix 0011413: Product version field string not localised in history |
Affected Issues 0011413 |
|
mod - core/history_api.php | Diff File | ||
master 0bf66447 2010-01-18 21:06 Details Diff |
Fix 0011413: Product version field string not localised in history |
Affected Issues 0011413 |
|
mod - core/history_api.php | Diff File | ||
master 370303cc 2010-01-17 18:35 Details Diff |
Allow configuration values to be rearranged in config_defaults Within config_defaults_inc.php, the following syntax doesn't allow for configuration values to be rearranged within the file: $g_some_value = $g_something_else Instead we should use the following syntax where references to other values (anywhere in the file, even if not declared yet) are resolved after the entire config_defaults_inc.php file is loaded: $g_some_value = '%something_else%' |
||
mod - config_defaults_inc.php | Diff File | ||
master e0064ff8 2010-01-17 18:33 Details Diff |
Use the word "Issue" instead of "Bug" for revision history message | ||
mod - lang/strings_english.txt | Diff File | ||
master 592f4d7f 2010-01-17 08:37 Details Diff |
We have issues and notes. "bugs" and "bugnotes" are nonos! | ||
mod - lang/strings_english.txt | Diff File | ||
master-1.2.x 4dfa1334 2010-01-17 07:30 Details Diff |
Remove duplicate checks that are performed in project_hierarchy_cache | ||
mod - core/project_hierarchy_api.php | Diff File | ||
master b4581cdc 2010-01-17 07:30 Details Diff |
Remove duplicate checks that are performed in project_hierarchy_cache | ||
mod - core/project_hierarchy_api.php | Diff File | ||
master-1.2.x b9bd7394 2010-01-17 06:57 Details Diff |
Fix 0011403: Bugnote ID not formatted correctly in history (view status) When changing the view state of a bugnote, the history item added looks something like: Note View State: private: 214 Note that the bugnote ID 214 is not properly formatted. It should be showing something like this instead: Note View State: 0000214: private |
Affected Issues 0011403 |
|
mod - core/history_api.php | Diff File | ||
mod - core/bugnote_api.php | Diff File | ||
master e7283356 2010-01-17 06:57 Details Diff |
Fix 0011403: Bugnote ID not formatted correctly in history (view status) When changing the view state of a bugnote, the history item added looks something like: Note View State: private: 214 Note that the bugnote ID 214 is not properly formatted. It should be showing something like this instead: Note View State: 0000214: private |
Affected Issues 0011403 |
|
mod - core/bugnote_api.php | Diff File | ||
mod - core/history_api.php | Diff File | ||
master 14a00b72 2010-01-17 06:39 Details Diff |
Issue 0011404: Record dropping of bug revisions in bug history When dropping bug revisions (bugnotes, description, steps to reproduce and additional information) we should be recording this event in the bug history. This maintains an audit log of who and at what time revision data was permanently deleted. This commit also fixes an issue whereby links in the history were still shown for bug revisions that had been dropped. Users would thus click a link to come across a 'revision not found' error message. |
Affected Issues 0011404 |
|
mod - core/bug_revision_api.php | Diff File | ||
mod - core/constant_inc.php | Diff File | ||
mod - core/history_api.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
master dac9d0aa 2010-01-17 06:32 Details Diff |
Issue 0011405: Add link to bugnote revisions within bugnote display For bugnotes that have been edited, revisions may exist. If they do (ie. they haven't been dropped by someone with permission to do so) then we can display a count of revisions and a link to the page where users can view previous revisions of a bugnote. |
Affected Issues 0011405 |
|
mod - lang/strings_english.txt | Diff File | ||
mod - bugnote_view_inc.php | Diff File | ||
mod - print_all_bug_page_word.php | Diff File | ||
mod - print_bugnote_inc.php | Diff File | ||
master da6c133f 2010-01-17 03:43 Details Diff |
Issue 0010884: Improve granularity of bugnote permissions Currently it's only possible to use a single $g_bugnote_allow_user_edit_delete setting to turn ON or OFF the ability for users to be able to edit/delete their own bugnotes. This patch provides improvement to the granularity of bugnote permissions to make the following possible: 1) Separate edit and delete permissions 2) Thresholds instead of boolean switches 3) Ability for users to change the view state of their own bugnotes On the topic of view states, the $g_set_view_status_threshold setting controls whether a user can make a bug or bug note private at the time of reporting/posting. The existing $g_change_view_status_threshold setting allows users to change the view state of any bug or bug note after they've been reported/posted. This patch introduces $g_bugnote_user_change_view_state_threshold which allows administrators to give users the the ability to make their own bugnotes public or private as they choose, at any time. $g_bugnote_user_edit_threshold is a new setting that can be changed to allow users the ability to edit their own bugnotes. $g_bugnote_user_delete_threshold is a new setting that can be changed to allow users the ability to delete their own bugnotes. You may be wondering why there is a difference when a user could simply edit and blank their bugnote. The answer lies with bugnote revisions and the ability for users to see a revision history of each bug that has been edited. Many thanks to Chris Fitch for the original idea and an initial patch from August 2009. This patch is a rewrite of his earlier work with a number of additional changes and improvements. |
Affected Issues 0010884 |
|
mod - config_defaults_inc.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
mod - bugnote_add.php | Diff File | ||
mod - manage_config_work_threshold_set.php | Diff File | ||
mod - bugnote_delete.php | Diff File | ||
mod - bugnote_update.php | Diff File | ||
mod - docbook/adminguide/en/page_descriptions.sgml | Diff File | ||
mod - docbook/adminguide/en/configuration.sgml | Diff File | ||
mod - core/bugnote_api.php | Diff File | ||
mod - bugnote_edit_page.php | Diff File | ||
mod - manage_config_work_threshold_page.php | Diff File | ||
mod - core/obsolete.php | Diff File | ||
mod - bugnote_set_view_state.php | Diff File | ||
mod - bugnote_view_inc.php | Diff File | ||
mod - bugnote_add_inc.php | Diff File | ||
master-1.2.x 2c8f64b0 2010-01-16 23:35 Details Diff |
Fix 0004654: Preserve sort field and order when changing filter Clicking on one of the alphabetical filters (A-Z, etc) would reset the currently selected sort field and sort order. Additionally, toggling the "Hide inactive" checkbox reset the filter to 'All' even if you had something else selected at the time. |
Affected Issues 0004654 |
|
mod - manage_user_page.php | Diff File | ||
master 391d3e80 2010-01-16 23:35 Details Diff |
Fix 0004654: Preserve sort field and order when changing filter Clicking on one of the alphabetical filters (A-Z, etc) would reset the currently selected sort field and sort order. Additionally, toggling the "Hide inactive" checkbox reset the filter to 'All' even if you had something else selected at the time. |
Affected Issues 0004654 |
|
mod - manage_user_page.php | Diff File |