author | ymh <ymh.work@gmail.com> |
Tue, 22 Oct 2019 16:11:46 +0200 | |
changeset 15 | 3d4e9c994f10 |
parent 7 | cf61fcea0001 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* IXR - The Incutio XML-RPC Library |
|
4 |
* |
|
5 |
* Copyright (c) 2010, Incutio Ltd. |
|
6 |
* All rights reserved. |
|
7 |
* |
|
8 |
* Redistribution and use in source and binary forms, with or without |
|
9 |
* modification, are permitted provided that the following conditions are met: |
|
10 |
* |
|
11 |
* - Redistributions of source code must retain the above copyright notice, |
|
12 |
* this list of conditions and the following disclaimer. |
|
13 |
* - Redistributions in binary form must reproduce the above copyright |
|
14 |
* notice, this list of conditions and the following disclaimer in the |
|
15 |
* documentation and/or other materials provided with the distribution. |
|
16 |
* - Neither the name of Incutio Ltd. nor the names of its contributors |
|
17 |
* may be used to endorse or promote products derived from this software |
|
18 |
* without specific prior written permission. |
|
19 |
* |
|
20 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
|
21 |
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
|
22 |
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
23 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
|
24 |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
25 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
26 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
27 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
|
28 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
29 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
|
30 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
31 |
* |
|
32 |
* @package IXR |
|
5 | 33 |
* @since 1.5.0 |
0 | 34 |
* |
35 |
* @copyright Incutio Ltd 2010 (http://www.incutio.com) |
|
36 |
* @version 1.7.4 7th September 2010 |
|
37 |
* @author Simon Willison |
|
38 |
* @link http://scripts.incutio.com/xmlrpc/ Site/manual |
|
39 |
* @license http://www.opensource.org/licenses/bsd-license.php BSD |
|
40 |
*/ |
|
41 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
42 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-server.php' ); |
0 | 43 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-base64.php' ); |
0 | 45 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-client.php' ); |
0 | 47 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-clientmulticall.php' ); |
0 | 49 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-date.php' ); |
0 | 51 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-error.php' ); |
0 | 53 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-introspectionserver.php' ); |
0 | 55 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
56 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-message.php' ); |
0 | 57 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-request.php' ); |
0 | 59 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
require_once( ABSPATH . WPINC . '/IXR/class-IXR-value.php' ); |