Changesets: MantisBT

master 9b3d9f76

2013-05-07 06:26

Damien Regad

Committer: dregad


Details Diff
soap/AttachmentTest.php: fix reference download URL

mc_issue_api.php/mci_issue_get_attachments() generates the download URL
with '&' while the test suite compares it with '&'. In some cases
the soap api returns '&' while in most cases it returns '&'.

To fix the problem we decode the string with html_entity_decode() before
comparing it.

Fixes 0015817
Affected Issues
0015817
mod - tests/soap/AttachmentTest.php Diff File

master-1.2.x 220fcc43

2013-05-06 01:07

Damien Regad

Committer: dregad


Details Diff
soap/VersionTest.php: take timezone into consideration

Prior to this, dates were compared as string, resulting in
'2015-10-29T12:59:14+00:00' and '2015-10-29T05:59:14-07:00' to be
considered as different dates.

Fixes 0015817
Affected Issues
0015817
mod - tests/soap/VersionTest.php Diff File

master-1.2.x 2a7951bb

2013-05-06 01:07

Damien Regad

Committer: dregad


Details Diff
soap tests: fix whitespace
mod - tests/soap/AttachmentTest.php Diff File
mod - tests/soap/VersionTest.php Diff File

master 4465b2f1

2013-05-06 01:07

Damien Regad

Committer: dregad


Details Diff
soap/VersionTest.php: take timezone into consideration

Prior to this, dates were compared as string, resulting in
'2015-10-29T12:59:14+00:00' and '2015-10-29T05:59:14-07:00' to be
considered as different dates.

Fixes 0015817
Affected Issues
0015817
mod - tests/soap/VersionTest.php Diff File

master a9ac81aa

2013-05-06 01:07

Damien Regad

Committer: dregad


Details Diff
soap tests: fix whitespace
mod - tests/soap/AttachmentTest.php Diff File
mod - tests/soap/VersionTest.php Diff File

master-2.0.x 9812237f

2013-05-05 15:41

Paul Richards


Details Diff
Fix missing bracket
mod - manage/proj_edit_page.php Diff File

master-2.0.x e5c41aef

2013-05-05 15:34

Paul Richards


Details Diff
Fix access_has_bug_level check on my view page
mod - my_view_inc.php Diff File

master-1.2.x 0927b6dd

2013-05-04 13:05

vboctor


Details Diff
Use AccountData instead of ObjectRef for identifying target user.
mod - api/soap/mantisconnect.wsdl Diff File
mod - api/soap/mc_api.php Diff File
mod - api/soap/mc_project_api.php Diff File

master 897c7871

2013-05-04 11:19

atrol


Details Diff
Fix 0015812: Wrong example code for custom validation functions Affected Issues
0015812
mod - docbook/Admin_Guide/en-US/Customizing.xml Diff File

master-1.2.x 32a81207

2013-05-04 11:18

atrol


Details Diff
Fix 0015812: Wrong example code for custom validation functions Affected Issues
0015812
mod - docbook/administration_guide/en/customizing_mantis.sgml Diff File

master-1.2.x e7bfc6a0

2013-05-03 23:11

vboctor


Details Diff
Added test case to make sure that assigned filter doesn't return resolved issues.
mod - api/soap/mc_project_api.php Diff File
mod - tests/soap/FilterTest.php Diff File

master-1.2.x ce612c0e

2013-05-03 22:45

vboctor


Details Diff
Added 10 test cases and a couple of minor fixes.
mod - api/soap/mc_project_api.php Diff File
mod - core/filter_api.php Diff File
mod - tests/soap/FilterTest.php Diff File

master-1.2.x 58b44b16

2013-05-02 19:51

vboctor


Details Diff
Fixed php error on my view page.
mod - my_view_inc.php Diff File

master-1.2.x d318e2a3

2013-05-02 19:46

vboctor


Details Diff
Passed in user and project ids to config_get().
mod - core/filter_api.php Diff File

master-1.2.x f6618b55

2013-05-02 19:08

vboctor


Details Diff
Use case insensitive comparison for filter type and return only unresolved issues for assigned to filter.
mod - api/soap/mc_project_api.php Diff File
mod - core/filter_api.php Diff File
mod - my_view_inc.php Diff File

master-1.2.x 9e057279

2013-05-02 18:24

vboctor


Details Diff
Support unassigned, reported by and monitored by.
mod - api/soap/mantisconnect.wsdl Diff File
mod - api/soap/mc_project_api.php Diff File
mod - core/filter_api.php Diff File
mod - my_view_inc.php Diff File
mod - tests/soap/FilterTest.php Diff File

master-2.0.x 6ec8cc63

2013-05-01 06:49

dregadmin


Details Diff
Optimize user_get_all_accessible_projects()

On instances having a large number of projects, this function would
consume significant resources while processing all the subprojects to
determine if one is accessible to the user (about 25 seconds to load
main_page.php for 5'000 projects, without subprojects).

The performance bottleneck was the array_merge() call in the loop. This
has been replaced by a foreach working on an associative array. The same
page now loads under 1 second.

Fixes 0009876
Affected Issues
0009876
mod - core/user_api.php Diff File

master 3b392f71

2013-05-01 06:49

dregad


Details Diff
Optimize user_get_all_accessible_projects()

On instances having a large number of projects, this function would
consume significant resources while processing all the subprojects to
determine if one is accessible to the user (about 25 seconds to load
main_page.php for 5'000 projects, without subprojects).

The performance bottleneck was the array_merge() call in the loop. This
has been replaced by a foreach working on an associative array. The same
page now loads under 1 second.

Fixes 0009876
Affected Issues
0009876
mod - core/user_api.php Diff File

master-1.2.x cc7703ac

2013-05-01 06:49

dregad


Details Diff
Optimize user_get_all_accessible_projects()

On instances having a large number of projects, this function would
consume significant resources while processing all the subprojects to
determine if one is accessible to the user (about 25 seconds to load
main_page.php for 5'000 projects, without subprojects).

The performance bottleneck was the array_merge() call in the loop. This
has been replaced by a foreach working on an associative array. The same
page now loads under 1 second.

Fixes 0009876
Affected Issues
0009876
mod - core/user_api.php Diff File

master-1.2.x 11003f47

2013-04-30 22:54

vboctor


Details Diff
Commented new method in filter_api.php
mod - core/filter_api.php Diff File

master-1.2.x 18113cc1

2013-04-30 22:17

vboctor


Details Diff
Prototype for mc_project_get_issues_assigned_to() webservice method.
mod - api/soap/mantisconnect.wsdl Diff File
mod - api/soap/mc_project_api.php Diff File
mod - core/filter_api.php Diff File
mod - my_view_inc.php Diff File
mod - tests/soap/FilterTest.php Diff File

master-1.2.x c4f6493a

2013-04-28 09:50

siebrand


Details Diff
Localisation updates from http://translatewiki.net.
mod - lang/strings_korean.txt Diff File
mod - lang/strings_polish.txt Diff File
mod - lang/strings_ripoarisch.txt Diff File
mod - lang/strings_romanian.txt Diff File
mod - lang/strings_serbian.txt Diff File

master 45a2d16c

2013-04-27 14:07

atrol


Details Diff
PHPMailer moved to github
mod - library/README.libs Diff File

master-1.2.x e52392c3

2013-04-27 14:06

atrol


Details Diff
PHPMailer moved to github
mod - library/README.libs Diff File

master e1a265c7

2013-04-26 15:55

dregad


Details Diff
System notice when json_url() retrieves non-existent member

An additional check and returning false allows caller to handle errors
gracefully.

Fixes 0015791
Affected Issues
0015791
mod - core/json_api.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 297 298 299 300 301 302 303 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 703 704 705  Next  Last