stable

Clone or download

Read-only

Merge commit 'refs/changes/04/4204/9' of ssh://gerrit.tuleap.net:29418/tuleap into HEAD

* ssh://gerrit.tuleap.net:29418/tuleap: story #8206 Work with "values by field" for POST on /artifacts/:id Change-Id: I5977dafed80a38356462f45eb0464121ce46b76a

Modified Files

Name
M plugins/tracker/include/REST/Artifact/ArtifactCreator.class.php +19 −0 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactValidator.class.php +21 −1 Go to diff View file
M plugins/tracker/include/REST/v1/ArtifactsResource.class.php +64 −21 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/RESTValueByField_NotImplementedException.php +21 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field.class.php +20 −8 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_ArtifactLink.class.php +5 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Date.class.php +8 −4 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_File.class.php +4 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List.class.php +9 −5 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_MultiSelectbox.class.php +5 −4 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_OpenList.class.php +5 −4 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PermissionsOnArtifact.class.php +9 −4 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Selectbox.class.php +5 −6 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_String.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Text.class.php +29 −1 Go to diff View file
M plugins/tracker/include/autoload.php +3 −2 Go to diff View file
A plugins/tracker/tests/REST_Backend/Artifact/ArtifactValidatorTestPHP53.php +188 −0 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_FieldTest.php +65 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_ArtifactLinkTest.php +31 −4 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_DateTest.php +17 −4 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_FileTest.php +29 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_FloatTest.php +18 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_IntegerTest.php +18 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_ListTest.php +14 −2 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_MultiSelectboxTest.php +26 −2 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_OpenListTest.php +29 −5 Go to diff View file
A plugins/tracker/tests/Tracker_FormElement_Field_PermissionsOnArtifactTest.php +46 −0 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_SelectboxTest.php +26 −2 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_StringTest.php +18 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_TextTest.php +24 −4 Go to diff View file
M plugins/tracker/tests/rest/XML/ArtifactTest.php +37 −0 Go to diff View file