[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
1 == CHANGELOG == 2 3 1. Rename class name 'Repository' to 'Alfresco_Repository' in 4 - Service/Repository.php 5 - Service/Webservice/AlfrescoWebService.php 6 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 17 18 3. In Alfresco_Repository::__construct(), set _port to 80 when not specified 19 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 + } 30 31 4. Reapply changes from MDL-20876 Fix depreacted split() calls (bed733c) 32 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() 36 37 6. Apply the changes from MDL-41975 in regard with the timestamp 38 39 == Alfresco PHP Library == 40 41 Installation and developer documentation for the Alfresco PHP Library can be found on the Alfresco Wiki. 42 Get the source from http://code.google.com/p/alfresco-php-sdk/ 43 44 == Documentation Links == 45 46 Installation Instructions - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoPHPLibraryInstallationInstructions 47 MediaWiki Integration Installation Instructions - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoMediaWikiInstallationInstructions 48 PHP API Documentation - http://code.google.com/p/alfresco-php-sdk/wiki/AlfrescoPHPAPI
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |