This commit is contained in:
tomas 2005-01-04 03:18:35 +00:00
parent 28ab690499
commit b2d6de1344
2 changed files with 4 additions and 5 deletions

View File

@ -23,7 +23,7 @@
Author : $Author: tomas $ Author : $Author: tomas $
Version : $Revision: 1.9 $ Version : $Revision: 1.10 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/BasicStor.php,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/BasicStor.php,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -48,7 +48,7 @@ require_once "Transport.php";
* Core of LiveSupport file storage module * Core of LiveSupport file storage module
* *
* @author $Author: tomas $ * @author $Author: tomas $
* @version $Revision: 1.9 $ * @version $Revision: 1.10 $
* @see Alib * @see Alib
*/ */
class BasicStor extends Alib{ class BasicStor extends Alib{
@ -362,7 +362,7 @@ class BasicStor extends Alib{
$fname = "{$this->accessDir}/$token"; $fname = "{$this->accessDir}/$token";
touch($fname); // is it needed? touch($fname); // is it needed?
$url = $this->getUrlPart()."xmlrpc/put.php?token=$token"; $url = $this->getUrlPart()."xmlrpc/put.php?token=$token";
return array('url'=>$url, 'token'=>$token, 'gunid'=>$gunid); return array('url'=>$url, 'token'=>$token);
} }
/** /**

View File

@ -23,7 +23,7 @@
Author : $Author: tomas $ Author : $Author: tomas $
Version : $Revision: 1.12 $ Version : $Revision: 1.13 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/xrLocStor.php,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -233,7 +233,6 @@ class XR_LocStor extends LocStor{
* <ul> * <ul>
* <li> url : string - writable URL for HTTP PUT</li> * <li> url : string - writable URL for HTTP PUT</li>
* <li> token : string - access token</li> * <li> token : string - access token</li>
* <li> gunid : string - global unique id of AudioCLip</li>
* </ul> * </ul>
* *
* On errors, returns an XML-RPC error response. * On errors, returns an XML-RPC error response.