Search Changesets

MantisBT: master 92b07e07

2004-03-23 09:00

vboctor


Details Diff
Re-implemented exporting of csv to include the following:

Fixed 0003259: Saving CSV file of bugs containning double quotes causes invalid csv.
Fixed 0003262: CSV export does not export the category column.
Fixed 0003264: CSV export should export the resolution.
Fixed 0003287: Projectname on CSV export.
Fixed 0003346: CSV extract should output more data, e.g., Date Submitted, other data that would allow better analysis of data trends.

A core/csv_api.php
- Implemented APIs to be used in the new csv implementation.

M csv_export.php
- Re-implemented the csv exporting using the new API.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2454 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - doc/ChangeLog Diff File
add - core/csv_api.php Diff File
mod - csv_export.php Diff File

MantisBT: master 59cb8761

2004-03-19 21:30

vboctor


Details Diff
M core/database_api.php
- (db_key_exists_on_field) Fixed two cases where the index used to access table description array were undefined (under Windows / IIS the defined array entries were 'field' not 'Field', and 'key' not 'Key').

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2453 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/database_api.php Diff File

MantisBT: master 6b5fc5e5

2004-03-19 18:14

narcissus


Details Diff
Cache filter queries to reduce SQL load

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2452 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/filter_api.php Diff File

MantisBT: master e47e1011

2004-03-19 05:25

vboctor


Details Diff
Changed the default of $g_delete_attachments_threshold to DEVELOPER. This will be consistent with previous release and makes more sense.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2451 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - config_defaults_inc.php Diff File
mod - doc/ChangeLog Diff File

MantisBT: master ba78faea

2004-03-19 03:40

vboctor


Details Diff
Fixed some errors in the saved query enhancement

M query_delete.php
- Removed an unneeded call to print_header_redirect() which causes a "headers already sent" error.

M query_view_page.php
- Another "headers already sent" error.

M admin/upgrade_inc.php
- ob_end_flush() call with no active buffer notce. I @silenced the notice.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2450 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - query_delete.php Diff File
mod - admin/upgrade_inc.php Diff File
mod - query_view_page.php Diff File

MantisBT: master f7581bdd

2004-03-18 18:40

narcissus


Details Diff
Stored queries functionality and pages.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2449 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - config_defaults_inc.php Diff File
add - query_store_page.php Diff File
mod - core/current_user_api.php Diff File
add - query_delete_page.php Diff File
add - query_store.php Diff File
mod - core/filter_api.php Diff File
mod - view_all_set.php Diff File
add - query_delete.php Diff File
mod - admin/upgrades/0_18_inc.php Diff File
add - query_view_page.php Diff File
mod - lang/strings_english.txt Diff File
mod - admin/db_table_names_inc.php Diff File
mod - print_all_bug_page.php Diff File

MantisBT: master 6239113c

2004-03-18 09:02

vboctor


Details Diff
Enh 0003662: Provide more config vars to control viewing/downloading/deleting bug attachments.

M core/bug_api.php
- (bug_is_readonly): Added

M config_defaults_inc.php
- Group together all configs relating to bug attachments.
- Added $g_view_attachments_threshold (default VIEWER). Access level needed to view bugs attachments. View means to see the file names sizes, and timestamps of the attachments.
- Added $g_download_attachments_threshold (default VIEWER). Access level needed to download bug attachments.
- Added $g_delete_attachments_threshold (default VIEWER). Access level needed to delete bug attachments.
- Added $g_allow_view_own_attachments (default ON). Allow users to view attachments uploaded by themselves even if their access level is below view_attachments_threshold.
- Added $g_allow_download_own_attachments (default ON). Allow users to download attachments uploaded by themselves even if their access level is below download_attachments_threshold.
- Added $g_allow_delete_own_attachments (default OFF). Allow users to delete attachments uploaded by themselves even if their access level is below delete_attachments_threshold.

M core/file_api.php
- (file_can_view_bug_attachments): Added
- (file_can_download_bug_attachments): Added
- (file_can_delete_bug_attachments): Added
- (file_list_attachments): Modified to use the above three functions.

M file_download.php
- Use file_can_download_bug_attachments() from file_api.php

M view_all_inc.php
- Replaced use of UPDATER with the use of config variable update_bug_threshold.
- Use file_can_view_bug_attachments()

M admin/check.php
- Added checks to make sure that the settings for the new config vars make sense. For example, it shouldn't be possible to allow a user to delete an attachment without being able to download it or view its details.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2448 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - config_defaults_inc.php Diff File
mod - core/bug_api.php Diff File
mod - core/file_api.php Diff File
mod - view_all_inc.php Diff File
mod - file_download.php Diff File
mod - admin/check.php Diff File
mod - doc/ChangeLog Diff File

MantisBT: master 1540dd35

2004-03-18 07:16

vboctor


Details Diff
M core/email_api.php
- $p_user_access_level was used instead of $t_user_access_level hence causing an undefined variable error. This was introduced during the one-email-per-user changes.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2447 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/email_api.php Diff File

MantisBT: master c5985163

2004-03-18 06:47

jlatour


Details Diff
Fixed security bugs 0003660 (arbitrary SQL statement execution through file_download.php) and 0003661 (file_download.php does not check access)

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2446 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
Affected Issues
0003660
mod - doc/ChangeLog Diff File
mod - file_download.php Diff File

MantisBT: master 6ef7883f

2004-03-17 09:24

jlatour


Details Diff
Updated Danish localisation

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2445 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - lang/strings_danish.txt Diff File
mod - doc/ChangeLog Diff File

MantisBT: master 286ca5e0

2004-03-17 08:59

vboctor


Details Diff
Enh 0003300: Add global defaults for priotity and severity of new bugs.

M config_defaults_inc.php
- Added $g_default_bug_severity = MINOR;
- Added $g_default_bug_priority = NORMAL;

M bug_report_advanced_page.php
M bug_report_page.php
- Use defaults for severity and priority.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2444 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - bug_report_advanced_page.php Diff File
mod - bug_report_page.php Diff File
mod - doc/ChangeLog Diff File
mod - config_defaults_inc.php Diff File

MantisBT: master 8141b9a9

2004-03-17 07:42

vboctor


Details Diff
Enh 0003302: Add global defaults for view state.

M config_defaults_inc.php
- Added $g_default_bug_view_status config option (default VS_PUBLIC)
- Added $g_default_bugnote_view_status config option (default VS_PUBLIC)

M bug_report_advanced_page.php
M bug_report_page.php
- Used $g_default_bug_view_status

M bug_update_advanced_page.php
M bug_update_page.php
M bugnote_add_inc.php
- Used $g_default_bugnote_view_status.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2443 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - bugnote_add_inc.php Diff File
mod - config_defaults_inc.php Diff File
mod - bug_update_advanced_page.php Diff File
mod - bug_report_page.php Diff File
mod - bug_update_page.php Diff File
mod - bug_report_advanced_page.php Diff File
mod - doc/ChangeLog Diff File

MantisBT: master 0bc0c229

2004-03-16 06:29

yarick123


Details Diff
* Enh #0000: Generate one email per user. Stage 0000001 (no send mail optimization).
* Opt #0000: new config option view_handler_threshold - threshold needed to view the bug handler (now works for emails only).
* Opt #0000: new config option view_history_threshold - threshold needed to view the bug history (now works for emails only).

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2442 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/bugnote_api.php Diff File
mod - core/custom_field_api.php Diff File
mod - core/history_api.php Diff File
mod - core/email_api.php Diff File
mod - config_defaults_inc.php Diff File
mod - doc/ChangeLog Diff File
mod - core/utility_api.php Diff File

MantisBT: master 207be2c4

2004-03-15 18:33

jlatour


Details Diff
Corrected line endings

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2441 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - lang/strings_serbian.txt Diff File

MantisBT: master 29a48e37

2004-03-15 16:47

vboctor


Details Diff
Added the field name to the "Database field not found" error.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2440 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/bug_api.php Diff File
mod - lang/strings_english.txt Diff File
mod - core/project_api.php Diff File
mod - core/user_pref_api.php Diff File
mod - core/custom_field_api.php Diff File
mod - core/user_api.php Diff File

MantisBT: master 4dd8a93f

2004-03-15 11:12

jlatour


Details Diff
Updated Serbian localisation, with correct encoding (thanks to Dragan Matic)

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2439 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - lang/strings_serbian.txt Diff File
mod - doc/ChangeLog Diff File

MantisBT: master 9678c378

2004-03-14 15:10

jlatour


Details Diff
Updated Spanish localisation, and synchronised localisation files with English

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2438 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - lang/strings_german.txt Diff File
mod - doc/ChangeLog Diff File
mod - lang/strings_romanian.txt Diff File
mod - lang/strings_norwegian.txt Diff File
mod - lang/strings_danish.txt Diff File
mod - lang/strings_estonian.txt Diff File
mod - lang/strings_french.txt Diff File
mod - lang/strings_polish.txt Diff File
mod - lang/strings_slovak.txt Diff File
mod - lang/strings_portuguese_standard.txt Diff File
mod - lang/strings_finnish.txt Diff File
mod - lang/strings_chinese_simplified.txt Diff File
mod - lang/strings_croatian.txt Diff File
mod - lang/strings_italian.txt Diff File
mod - lang/strings_japanese_euc.txt Diff File
mod - lang/strings_serbian.txt Diff File
mod - lang/strings_lithuanian.txt Diff File
mod - lang/strings_korean.txt Diff File
mod - lang/strings_japanese_sjis.txt Diff File
mod - lang/strings_czech.txt Diff File
mod - lang/strings_turkish.txt Diff File
mod - lang/strings_swedish.txt Diff File
mod - lang/strings_spanish.txt Diff File
mod - lang/strings_dutch.txt Diff File
mod - lang/strings_russian.txt Diff File
mod - lang/strings_latvian.txt Diff File
mod - lang/strings_portuguese_brazil.txt Diff File
mod - lang/strings_chinese_traditional.txt Diff File
mod - lang/strings_hungarian.txt Diff File
mod - lang/strings_russian_koi8.txt Diff File

MantisBT: master cd39f415

2004-03-13 21:08

vboctor


Details Diff
Fix 0003635: status_resolved in email_api should be resolved.

M core/email_api.php
- Changed 'status_resolved' to 'resolved' before checking in preferences table (email_on_resolved).
- Changed 'status_closed' to 'closed' before checking in preferences table (email_on_closed).
- Check the existence of email_on_???? field before using it. I had this in before, but it was removed in a recent commit.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2437 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
Affected Issues
0003635
mod - core/email_api.php Diff File
mod - doc/ChangeLog Diff File

Website: master 618c676e

2004-03-10 19:09

prescience


Details Diff
tweaked the localization handling


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2436 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - localization.php Diff File

Website: master 7edfe3bb

2004-03-10 17:24

prescience


Details Diff
re-added local_dif support


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2435 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - local_diff.php Diff File
mod - localization.php Diff File

Website: master b6eb9c2e

2004-03-10 15:50

prescience


Details Diff
updating localization web pages


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2434 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - config_defaults_inc.php Diff File
mod - localization.php Diff File

MantisBT: master ce98e1c6

2004-03-09 16:05

vboctor


Details Diff
Fixed 0003646: Error in core/obsolete.php.

M core/obsolete.php
- Call to config_obsolete() was missing a parameter.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2433 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
mod - core/obsolete.php Diff File
mod - doc/ChangeLog Diff File

Website: master 3f499c57

2004-03-09 06:09

vboctor


Details Diff
Added XHTML Referer Validation link to the bottom of the page. This should help in making the site XHTML Valid!


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2432 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - bot.php Diff File

Website: master bbd1941c

2004-03-09 05:43

vboctor


Details Diff
Add the point about adding 10 fields for custom fields since this is not correct and this stage of custom fields is already implemented.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2431 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - roadmap.php Diff File

Website: master 71d9a68d

2004-03-08 16:16

prescience


Details Diff
adding 0.19.0 roadmap


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2430 f5dc347c-c33d-0410-90a0-b07cc1902cb9
mod - roadmap.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 647 648 649 650 651 652 653 ... 700 ... 743 744 745  Next  Last