mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
use .php extension
This commit is contained in:
parent
07b233ea05
commit
7f59d57972
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
// by Edd Dumbill (C) 1999-2002
|
||||
// <edd@usefulinc.com>
|
||||
// $Id: xmlrpc.inc,v 1.1 2009-10-20 21:02:09 e107coders Exp $
|
||||
// $Id: xmlrpc.inc.php,v 1.1 2009-11-17 09:25:55 marj_nl_fr Exp $
|
||||
|
||||
// Copyright (c) 1999,2000,2002 Edd Dumbill.
|
||||
// All rights reserved.
|
@ -3,7 +3,7 @@
|
||||
* PHP-XMLRPC "wrapper" functions
|
||||
* Generate stubs to transparently access xmlrpc methods as php functions and viceversa
|
||||
*
|
||||
* @version $Id: xmlrpc_wrappers.inc,v 1.1 2009-10-20 21:02:09 e107coders Exp $
|
||||
* @version $Id: xmlrpc_wrappers.inc.php,v 1.1 2009-11-17 09:25:55 marj_nl_fr Exp $
|
||||
* @author Gaetano Giunta
|
||||
* @copyright (C) 2006-2009 G. Giunta
|
||||
* @license code licensed under the BSD License: http://phpxmlrpc.sourceforge.net/license.txt
|
||||
@ -15,7 +15,7 @@
|
||||
* @todo implement self-parsing of php code for PHP <= 4
|
||||
*/
|
||||
|
||||
// requires: xmlrpc.inc
|
||||
// requires: xmlrpc.inc.php
|
||||
|
||||
/**
|
||||
* Given a string defining a php type or phpxmlrpc type (loosely defined: strings
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
// by Edd Dumbill (C) 1999-2002
|
||||
// <edd@usefulinc.com>
|
||||
// $Id: xmlrpcs.inc,v 1.1 2009-10-20 21:02:09 e107coders Exp $
|
||||
// $Id: xmlrpcs.inc.php,v 1.1 2009-11-17 09:25:55 marj_nl_fr Exp $
|
||||
|
||||
// Copyright (c) 1999,2000,2002 Edd Dumbill.
|
||||
// All rights reserved.
|
||||
@ -36,7 +36,7 @@
|
||||
// OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
// XML RPC Server class
|
||||
// requires: xmlrpc.inc
|
||||
// requires: xmlrpc.inc.php
|
||||
|
||||
$GLOBALS['xmlrpcs_capabilities'] = array(
|
||||
// xmlrpc spec: always supported
|
||||
@ -479,7 +479,7 @@
|
||||
* NB: if we can, we will convert the generated response from internal_encoding to the intended one.
|
||||
* can be: a supported xml encoding (only UTF-8 and ISO-8859-1 at present, unless mbstring is enabled),
|
||||
* null (leave unspecified in response, convert output stream to US_ASCII),
|
||||
* 'default' (use xmlrpc library default as specified in xmlrpc.inc, convert output stream if needed),
|
||||
* 'default' (use xmlrpc library default as specified in xmlrpc.inc.php, convert output stream if needed),
|
||||
* or 'auto' (use client-specified charset encoding or same as request if request headers do not specify it (unless request is US-ASCII: then use library default anyway).
|
||||
* NB: pretty dangerous if you accept every charset and do not have mbstring enabled)
|
||||
*/
|
@ -46,9 +46,9 @@ if(!plugInstalled('gsitemap'))
|
||||
|
||||
|
||||
// include the XML-RPC class library
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpcs.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc_wrappers.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc.inc.php');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpcs.inc.php');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc_wrappers.inc.php');
|
||||
|
||||
class Weblog_Pinger {
|
||||
// Weblogs.Com XML-RPC settings
|
||||
|
@ -50,9 +50,9 @@ if((e_QUERY == 'rsd') || isset($_GET['rsd'])) // http://archipelago.phrasewise.c
|
||||
|
||||
|
||||
// These three files are from the PHP-XMLRPC library.
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpcs.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc_wrappers.inc');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc.inc.php');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpcs.inc.php');
|
||||
include (e_HANDLER.'xmlrpc/xmlrpc_wrappers.inc.php');
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user