|
From: Eloi G. <ada...@us...> - 2008-08-21 20:17:32
|
Update of /cvsroot/phpwebsite-comm/modules/article/lib/XML-RPC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2278/lib/XML-RPC Modified Files: IXR_Library.inc.php Log Message: Article Manager 4.1.0 Index: IXR_Library.inc.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/lib/XML-RPC/IXR_Library.inc.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IXR_Library.inc.php 30 Jun 2007 19:48:38 -0000 1.3 --- IXR_Library.inc.php 21 Aug 2008 20:17:37 -0000 1.4 *************** *** 1,818 **** ! <?php ! ! /* ! IXR - The Inutio XML-RPC Library - (c) Incutio Ltd 2002 ! Version 1.61 - Simon Willison, 11th July 2003 (htmlentities -> htmlspecialchars) ! Site: http://scripts.incutio.com/xmlrpc/ ! Manual: http://scripts.incutio.com/xmlrpc/manual.php ! Made available under the Artistic License: http://www.opensource.org/licenses/artistic-license.php ! */ ! [...1609 lines suppressed...] ! parent::IXR_Client($server, $path, $port); ! $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)'; ! } ! function addCall() { ! $args = func_get_args(); ! $methodName = array_shift($args); ! $struct = array( ! 'methodName' => $methodName, ! 'params' => $args ! ); ! $this->calls[] = $struct; ! } ! function query() { ! // Prepare multicall, then call the parent::query() method ! return parent::query('system.multicall', $this->calls); ! } ! } ! ?> \ No newline at end of file |