You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by ri...@apache.org on 2013/07/03 14:44:38 UTC

svn commit: r1499369 - in /chemistry/phpclient/trunk: README-atom lib/cmis_repository_wrapper.php

Author: richardm
Date: Wed Jul  3 12:44:37 2013
New Revision: 1499369

URL: http://svn.apache.org/r1499369
Log:
fixed https://issues.apache.org/jira/browse/CMIS-487

Modified:
    chemistry/phpclient/trunk/README-atom
    chemistry/phpclient/trunk/lib/cmis_repository_wrapper.php

Modified: chemistry/phpclient/trunk/README-atom
URL: http://svn.apache.org/viewvc/chemistry/phpclient/trunk/README-atom?rev=1499369&r1=1499368&r2=1499369&view=diff
==============================================================================
--- chemistry/phpclient/trunk/README-atom (original)
+++ chemistry/phpclient/trunk/README-atom Wed Jul  3 12:44:37 2013
@@ -14,6 +14,9 @@ ABOUT
 SOURCE
  The source code for this project lives at http://incubator.apache.org/chemistry/
 
+
+The atom library has been refactored and is under atom
+
 TRYING THE LIBRARY
  To Run this example execute the following
 

Modified: chemistry/phpclient/trunk/lib/cmis_repository_wrapper.php
URL: http://svn.apache.org/viewvc/chemistry/phpclient/trunk/lib/cmis_repository_wrapper.php?rev=1499369&r1=1499368&r2=1499369&view=diff
==============================================================================
--- chemistry/phpclient/trunk/lib/cmis_repository_wrapper.php (original)
+++ chemistry/phpclient/trunk/lib/cmis_repository_wrapper.php Wed Jul  3 12:44:37 2013
@@ -747,7 +747,7 @@ class CMISService extends CMISRepository
     // Repository Services
     function getRepositories()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function getRepositoryInfo()
@@ -915,7 +915,7 @@ xmlns:cmisra="http://docs.oasisopen.org/
 
     function getContentChanges()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Object Services
@@ -1176,12 +1176,12 @@ xmlns:cmisra="http://docs.oasis-open.org
 
     function createRelationship()
     { // Not in first Release
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function createPolicy()
     { // Not in first Release
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function updateProperties($objectId, $properties = array (), $options = array ())
@@ -1249,7 +1249,7 @@ xmlns:cmisra="http://docs.oasis-open.org
 
     function deleteTree()
     { // Nice to have
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function setContentStream($objectId, $content, $content_type, $options = array ())
@@ -1284,27 +1284,27 @@ xmlns:cmisra="http://docs.oasis-open.org
 
     function getAllVersions()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function checkOut()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function checkIn()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function cancelCheckOut()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function deleteAllVersions()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Relationship Services
@@ -1312,44 +1312,44 @@ xmlns:cmisra="http://docs.oasis-open.org
     {
         // get stripped down version of object (for the links) and then get the relationships?
         // Low priority -- can get all information when getting object
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Multi-Filing Services
     function addObjectToFolder()
     { // Probably
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function removeObjectFromFolder()
     { //Probably
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Policy Services
     function getAppliedPolicies()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function applyPolicy()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function removePolicy()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //ACL Services
     function getACL()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function applyACL()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 }