MDL-42701 Bump all versions near 2.6 release
[moodle.git] / lib / alfresco / README_MOODLE.txt
blob83179f07fdbbd99d4c8255ba8de1ab09683fc430
1 == CHANGELOG ==
3 1. Rename class name 'Repository' to 'Alfresco_Repository' in
4     - Service/Repository.php
5     - Service/Webservice/AlfrescoWebService.php
7 2. Update path for require_once() in
8     - Service/Logger/Logger.php
9     - Service/WebService/WebServiceFactory.php
10     - Service/ContentData.php
11     - Service/Functions.php
12     - Service/Node.php
13     - Service/Repository.php
14     - Service/Session.php
15     - Service/SpacesStore.php
16     - Service/Store.php
18 3. In Alfresco_Repository::__construct(), set _port to 80 when not specified
20     @@ -46,7 +46,11 @@ class Alfresco_Repository extends BaseObject
21             $this->_connectionUrl = $connectionUrl;
22             $parts = parse_url($connectionUrl);
23             $this->_host = $parts["host"];
24     -       $this->_port = $parts["port"];
25     +       if (empty($parts["port"])) {
26     +           $this->_port = 80;
27     +       } else {
28     +           $this->_port = $parts["port"];
29     +       }
31 4. Reapply changes from MDL-20876 Fix depreacted split() calls (bed733c)
33 5. Fix strict standards in Service/WebService/AlfrescoWebService.php
34     - AlfrescoWebService::__soapCall() arguments do not match SoapClient::__soapCall()
35     - AlfrescoWebService::__doRequest() arguments do not match SoapClient::__soapCall()
37 == Alfresco PHP Library ==
39 Installation and developer documentation for the Alfresco PHP Library can be found on the Alfresco Wiki.
40 Get the source from http://code.google.com/p/alfresco-php-sdk/
42 == Documentation Links ==
44 Installation Instructions - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoPHPLibraryInstallationInstructions
45 MediaWiki Integration Installation Instructions - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoMediaWikiInstallationInstructions
46 PHP API Documentation - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoPHPAPI