Changesets: MantisBT

master a2a15a4a

2009-10-22 23:47

vboctor


Details Diff
Fixes 0011068: Wrong parameter being passed to print_column_plugin() from custom_function_default_print_column_value function. -- thanks to brainstv. Affected Issues
0011068
mod - core/custom_function_api.php Diff File

master-1.2.x 1146ee66

2009-10-22 15:42

rombert


Details Diff
Issue 0010749: Verify that the data read using the SOAP API has a handler

Two new SOAP tests have been added:

- verify that the handler added on issue creation is returned;
- verify that the handler added on issue update is returned.
Affected Issues
0010749
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master bd31d62a

2009-10-22 15:42

rombert


Details Diff
Issue 0010749: Verify that the data read using the SOAP API has a handler

Two new SOAP tests have been added:

- verify that the handler added on issue creation is returned;
- verify that the handler added on issue update is returned.
Affected Issues
0010749
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master-1.2.x a4392b83

2009-10-22 10:43

frodgers

Committer: jreese


Details Diff
Added bug_id to EVENT_BUGNOTE_DATA. Needed to store bugnote text in an Array indexed by bug_id

Signed-off-by: John Reese <jreese@leetcode.net>
Affected Issues
0011066
mod - core/bugnote_api.php Diff File

master b3753e8f

2009-10-22 10:43

frodgers

Committer: jreese


Details Diff
Added bug_id to EVENT_BUGNOTE_DATA. Needed to store bugnote text in an Array indexed by bug_id

Signed-off-by: John Reese <jreese@leetcode.net>
Affected Issues
0011066
mod - core/bugnote_api.php Diff File

master-1.2.x bfd2eae2

2009-10-22 04:18

rombert

Committer: vboctor


Details Diff
Issue 0011061: SOAP issue tests fail

Fix according to review:

- style fixes: there should be no spaces between function names and ()
- removed isset checks from some of the mci_get functions called
by mc_issue_add and mc_issue_update since they are no longer used.
Affected Issues
0011061
mod - api/soap/mc_api.php Diff File
mod - api/soap/mc_issue_api.php Diff File

master 85bcf015

2009-10-22 04:18

rombert

Committer: vboctor


Details Diff
Issue 0011061: SOAP issue tests fail

Fix according to review:

- style fixes: there should be no spaces between function names and ()
- removed isset checks from some of the mci_get functions called
by mc_issue_add and mc_issue_update since they are no longer used.
Affected Issues
0011061
mod - api/soap/mc_issue_api.php Diff File
mod - api/soap/mc_api.php Diff File

master-1.2.x bc4366f2

2009-10-21 10:48

rombert


Details Diff
Configure the SOAP client to never cache the WSDL

This causes strange issue when testing, and changes in the actual
WSDL definition are propagated to the client, which is
not desired when developing against the SOAP API.
mod - tests/soap/SoapBase.php Diff File

master 787f3a26

2009-10-21 10:48

rombert


Details Diff
Configure the SOAP client to never cache the WSDL

This causes strange issue when testing, and changes in the actual
WSDL definition are propagated to the client, which is
not desired when developing against the SOAP API.
mod - tests/soap/SoapBase.php Diff File

master-1.2.x 952fb1d8

2009-10-21 10:21

rombert


Details Diff
Issue 0008612: Test exposing time tracking on notes using the SOAP API

A utility test method has been added for skipping tests when
the Mantis installation does not have time tracking enabled.

The following scenarios are tested:

- adding a note with time tracking data;
- adding an issue with an embedded time tracking note;
- updating an issue with a new time tracking note.
Affected Issues
0008612
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/SoapBase.php Diff File
mod - tests/soap/IssueNoteTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master b8711140

2009-10-21 10:21

rombert


Details Diff
Issue 0008612: Test exposing time tracking on notes using the SOAP API

A utility test method has been added for skipping tests when
the Mantis installation does not have time tracking enabled.

The following scenarios are tested:

- adding a note with time tracking data;
- adding an issue with an embedded time tracking note;
- updating an issue with a new time tracking note.
Affected Issues
0008612
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/SoapBase.php Diff File
mod - tests/soap/IssueNoteTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master-1.2.x 878cc23e

2009-10-21 08:45

rombert


Details Diff
Issue 0008612: Expose time tracking on notes using the SOAP API

Expose the invidual time spent on each IssueNoteData. Checks are performed
to see if the user has the required access level.

A new utility function mci_get_time_tracking_from_note has been added to
centralise access control checks and conversions.
Affected Issues
0008612
mod - api/soap/mc_api.php Diff File
mod - api/soap/mantisconnect.php Diff File
mod - api/soap/mc_issue_api.php Diff File

master 8b69aa2a

2009-10-21 08:45

rombert


Details Diff
Issue 0008612: Expose time tracking on notes using the SOAP API

Expose the invidual time spent on each IssueNoteData. Checks are performed
to see if the user has the required access level.

A new utility function mci_get_time_tracking_from_note has been added to
centralise access control checks and conversions.
Affected Issues
0008612
mod - api/soap/mc_api.php Diff File
mod - api/soap/mantisconnect.php Diff File
mod - api/soap/mc_issue_api.php Diff File

master-1.2.x ef8e2a39

2009-10-21 04:14

rombert

Committer: vboctor


Details Diff
Fixes 0011061: SOAP issue tests fail

Values not passed to mc_issue_add or mc_issue_update now have values
set to default.

According to vboctor at one point methods like mci_get_user_id() were taking
a reference (&) and the isset check was within the method. At one point
such references were removed causing the parameter to be evaluated while
it is not set.
Affected Issues
0011061
mod - api/soap/mc_issue_api.php Diff File

master 112122ed

2009-10-21 04:14

rombert


Details Diff
Fixes 0011061: SOAP issue tests fail

Values not passed to mc_issue_add or mc_issue_update now have values
set to default.

According to vboctor at one point methods like mci_get_user_id() were taking
a reference (&) and the isset check was within the method. At one point
such references were removed causing the parameter to be evaluated while
it is not set.
Affected Issues
0011061
mod - api/soap/mc_issue_api.php Diff File

master b74ae4e5

2009-10-20 17:10

rombert


Details Diff
Document the testing process

Adds references to running the PHPUnit tests and configuring the
bootstrap file.
mod - docbook/developers/en/contributers.sgml Diff File

master-1.2.x 9e0b5d60

2009-10-20 17:10

rombert

Committer: vboctor


Details Diff
Document the testing process

Adds references to running the PHPUnit tests and configuring the
bootstrap file.
mod - docbook/developers/en/contributers.sgml Diff File

master 1ecd849c

2009-10-20 17:03

rombert


Details Diff
Add a bootstrap.php.sample for the PHPUnit tests

Also the bootstrap.php file is expected to have local changes,
so it's added to .gitignore.
add - tests/.gitignore Diff File
add - tests/bootstrap.php.sample Diff File

master-1.2.x 5472ada4

2009-10-20 17:03

rombert

Committer: vboctor


Details Diff
Add a bootstrap.php.sample for the PHPUnit tests

Also the bootstrap.php file is expected to have local changes,
so it's added to .gitignore.
add - tests/.gitignore Diff File
add - tests/bootstrap.php.sample Diff File

master-1.2.x dc65b910

2009-10-20 10:06

jreese


Details Diff
Fix 0011059: Missing space in SQL query Affected Issues
0011059
mod - core/version_api.php Diff File

master 187aa66d

2009-10-20 10:06

jreese


Details Diff
Fix 0011059: Missing space in SQL query Affected Issues
0011059
mod - core/version_api.php Diff File

master-1.2.x f46bc275

2009-10-14 09:36

jreese


Details Diff
Fix 0010974: ereg is deprecated in PHP 5.3 Affected Issues
0010974
mod - core/graphviz_api.php Diff File
mod - core/custom_field_api.php Diff File
mod - api/soap/mantisconnect.php Diff File
mod - docbook/adminguide/en/customizing_mantis.sgml Diff File

master 38742813

2009-10-14 09:36

jreese


Details Diff
Fix 0010974: ereg is deprecated in PHP 5.3 Affected Issues
0010974
mod - core/graphviz_api.php Diff File
mod - api/soap/mantisconnect.php Diff File
mod - core/custom_field_api.php Diff File
mod - docbook/adminguide/en/customizing_mantis.sgml Diff File

master-1.2.x 6b05d47c

2009-10-14 09:14

dhx


Details Diff
Fix 0011026: Bugnote text should be vertically aligned to the top

This is required as an extension of the fix applied as part of bug
Affected Issues
0011026
mod - css/default.css Diff File

master 8a6e5fd6

2009-10-14 09:14

dhx


Details Diff
Fix 0011026: Bugnote text should be vertically aligned to the top

This is required as an extension of the fix applied as part of bug
Affected Issues
0011026
mod - css/default.css Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 452 453 454 455 456 457 458 ... 490 ... 560 ... 630 ... 700 ... 703 704 705  Next  Last