Changesets: MantisBT

master 618f512f

2011-11-10 19:32

rombert


Details Diff
SOAP filter tests: allow running when issues already exist

These tests assumed that no issues exist in the target repository,
which is not always true. It is more convenient to run against an
existing repository. Also, the tests are enhanced to retrieve a full
page , a partial page and an empty page.
mod - tests/soap/FilterTest.php Diff File

master-1.2.x 0d437de2

2011-11-10 19:32

rombert


Details Diff
SOAP filter tests: allow running when issues already exist

These tests assumed that no issues exist in the target repository,
which is not always true. It is more convenient to run against an
existing repository. Also, the tests are enhanced to retrieve a full
page , a partial page and an empty page.
mod - tests/soap/FilterTest.php Diff File

master 64601e61

2011-11-10 19:12

rombert


Details Diff
SOAP tests: centralise the number of issues to retrieve
mod - tests/soap/FilterTest.php Diff File

master-1.2.x a1e13479

2011-11-10 19:12

rombert


Details Diff
SOAP tests: centralise the number of issues to retrieve
mod - tests/soap/FilterTest.php Diff File

master f5c2fb4f

2011-11-10 19:05

rombert


Details Diff
VersionTest: make tests run against bugtrackers with existing versions
mod - tests/soap/VersionTest.php Diff File

master-1.2.x b34c7c91

2011-11-10 19:05

rombert


Details Diff
VersionTest: make tests run against bugtrackers with existing versions
mod - tests/soap/VersionTest.php Diff File

master 6cd4123b

2011-11-10 18:59

rombert


Details Diff
SOAP Tests: update to use the new date format
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master-1.2.x 9c0d87b5

2011-11-10 18:59

rombert


Details Diff
SOAP Tests: update to use the new date format
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master fd8b2f09

2011-11-09 03:05

rombert


Details Diff
Fix 0013496: Send all dates in the GMT timezone

Since NuSOAP's conversion of dates to the Etc/GMT timezone is not
what we want, rely on PHP's built in formatting to generate the
correct time zone offset.
Affected Issues
0013496
mod - api/soap/mc_api.php Diff File
mod - api/soap/mc_filter_api.php Diff File
mod - api/soap/mc_issue_api.php Diff File
mod - api/soap/mc_project_api.php Diff File

master-1.2.x d784eb75

2011-11-09 03:05

rombert


Details Diff
Fix 0013496: Send all dates in the GMT timezone

Since NuSOAP's conversion of dates to the Etc/GMT timezone is not
what we want, rely on PHP's built in formatting to generate the
correct time zone offset.
Affected Issues
0013496
mod - api/soap/mc_api.php Diff File
mod - api/soap/mc_filter_api.php Diff File
mod - api/soap/mc_issue_api.php Diff File
mod - api/soap/mc_project_api.php Diff File

master 0777a1c5

2011-11-02 02:10

ray81


Details Diff
added print attachment event
Added documentation and included event in events_inc
mod - core/events_inc.php Diff File
mod - core/print_api.php Diff File
mod - docbook/Developers_Guide/en-US/Events_Reference_Output.xml Diff File

master-2.0.x f3c032f8

2011-10-29 06:04

Paul Richards


Details Diff
strip null bytes out of GPC input strings
mod - core/gpc_api.php Diff File

master 3d9a6339

2011-10-25 08:59

dregad


Details Diff
Fix ADOdb errors when creating database with Oracle

ADOdb was triggering errors in 2 distinct cases:

- calling config_get() to retrieve the db_type was returning 'mysql'
instead of 'oci8' due to caching of the value in a prior call to the
function. Setting the global variable using config_set_global()
rather than directly assigning it with $GLOBALS clears the cache and
allows normal processing.

- when calling NewDataDictionary(), for an unknown reason an error
occurs in adodb.inc.php line 4350 trying to include_once the oci8
data dictionary class. This was resolved by using @ operator to
ignore the error

Affects 0013227
mod - admin/install.php Diff File

master 061e66b5

2011-10-25 08:39

dregad


Details Diff
Add "no-op" upgrade action to install.php

This is necessary to ensure schema version number consistency when an
upgrade step needs to be skipped.

This is the case with support for Oracle DB (oci8) where some indexes
are created automatically.

Affects 0013227

Porting to 1.3 - Conflicts:
admin/schema.php
mod - admin/install.php Diff File
mod - admin/schema.php Diff File

master 8792ee55

2011-10-24 07:41

dregad


Details Diff
DB ADOdb MetaIndex fails when no constraints exist

Working with Oracle database (oci8), when MetaIndex() method is called
to retrieve the list of indexes for a table that has no constraints
set, an error is triggered:
Fatal error: Call to a member function FetchRow() on a non-object

This commit adds a check to cleanly exit the function, returning false.

Similar error handling has also been added to the calling database_api
function db_index_exists()

This allows the DB installation (schema.php) to proceed without errors.

Fixes 0013438

Porting to 1.3 - Conflicts:
library/adodb/drivers/adodb-oci8.inc.php

Note: the fix to ADOdb driver does not need to be ported as it was
included in a later release of the library.
Affected Issues
0013438
mod - core/database_api.php Diff File

master d1cd06cd

2011-10-23 12:30

dregad


Details Diff
Reimplement obsolete config checks in admin/check interface

The rewritten check.php scripts (as a collection of checks in the
admin/check/ directory), implemented per issue 0011576 in commit
ba97560b02d620569ad062d894284722f0acd890, neglected to port across
obsolete configuration checking from 1.2.x.

Fixes 0012885
Affected Issues
0011576, 0012885
mod - admin/check/check_config_inc.php Diff File
mod - core/config_api.php Diff File

master 9e0ae930

2011-10-23 12:10

dregad


Details Diff
Make 2nd param of config_obsolete() optional

Ports commit 96efb7b663a39927e9a1da3f260973b21f5db412 to master.

Note: the main issue referenced in 0012884 had already been
fixed in 47e65b232565eadf956030d0536ce0da52508c72
mod - core/config_api.php Diff File

master 05947d35

2011-10-23 11:37

dregad


Details Diff
Fix syntax error

Introduced in ce56bd5706ebf98a2b8a55624e4b492a52ae8a05
mod - core/helper_api.php Diff File

master bb58d164

2011-10-23 11:32

dregad


Details Diff
Fix syntax error

Removed extra ")" introduced in aa3244ae82fc273aaa64f87438c823abc5dc0227
mod - admin/check/check_paths_inc.php Diff File

master 2068b753

2011-10-22 04:28

atrol


Details Diff
Updated documentation to reflect changes after fix 0013276 Affected Issues
0013276
mod - docbook/Admin_Guide/en-US/Configuration.xml Diff File

master-1.2.x 24a90639

2011-10-22 04:25

atrol


Details Diff
Updated documentation to reflect changes after fix 0013276 Affected Issues
0013276
mod - docbook/adminguide/en/configuration.sgml Diff File

master-1.2.x 7c34919f

2011-10-20 07:41

dregad


Details Diff
Merge branch 'remove-show_attachment_indicator'

Conflicts:
config_defaults_inc.php
mod - config_defaults_inc.php Diff File
mod - core/columns_api.php Diff File
mod - core/filter_api.php Diff File
mod - core/helper_api.php Diff File
mod - core/obsolete.php Diff File
mod - view_filters_page.php Diff File

master-1.2.x 5e9b8342

2011-10-20 07:16

dregad


Details Diff
Perform obsolete check against db config also

Previously the check for usage of obsolete configuration variables was
only performed against global variables (defined in config_inc.php).
With this change, a more thorough verification is done, including
values with an override in mantis_config_table.

Detailed information about where the config option is used is printed
with the warning message.

Fixes 0013435
Affected Issues
0013435
mod - admin/check.php Diff File
mod - core/config_api.php Diff File

master 46960e03

2011-10-17 20:14

dregad


Details Diff
Fix 0008504: Use is_blank() not '' to check empty path in file_add() Affected Issues
0008504
mod - core/file_api.php Diff File

master-1.2.x ac8630bb

2011-10-17 20:14

dregad


Details Diff
Fix 0008504: Use is_blank() not '' to check empty path in file_add() Affected Issues
0008504
mod - core/file_api.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 390 391 392 393 394 395 396 ... 420 ... 490 ... 560 ... 630 ... 700 ... 746 747 748  Next  Last