mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged DEV/CMIS0_61 to HEAD (part 2)
14002 Removed use of Headers as arguments in CMIS AtomPub binding - as removed in CMIS 0.6 spec - removed associated tests - fixed encoding issue in web script test harness logging - removed very old .XSDs that were lying around 14006 Obsolete. 14022 Suport for multi-valued properties in CMIS AtomPub binding - support in all read, write and query methods - added multi-valued tests to CMISCustomTypeTest - fix workaround for null property values in CMIS freemarker template - update to Abdera CMIS Extension to handle multi-valued properties git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14175 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -302,7 +302,7 @@ public abstract class BaseWebScriptTest extends TestCase
|
||||
if (traceReqRes && isLogEnabled())
|
||||
{
|
||||
log("");
|
||||
log("* Request: " + req.getMethod() + " " + req.getFullUri() + (req.getBody() == null ? "" : "\n" + new String(req.getBody())));
|
||||
log("* Request: " + req.getMethod() + " " + req.getFullUri() + (req.getBody() == null ? "" : "\n" + new String(req.getBody(), "UTF-8")));
|
||||
}
|
||||
|
||||
Response res = null;
|
||||
|
Reference in New Issue
Block a user