You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

60 lines
2.5 KiB

  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
  33. * @since 1.5.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. require_once( ABSPATH . WPINC . '/IXR/class-IXR-server.php' );
  42. require_once( ABSPATH . WPINC . '/IXR/class-IXR-base64.php' );
  43. require_once( ABSPATH . WPINC . '/IXR/class-IXR-client.php' );
  44. require_once( ABSPATH . WPINC . '/IXR/class-IXR-clientmulticall.php' );
  45. require_once( ABSPATH . WPINC . '/IXR/class-IXR-date.php' );
  46. require_once( ABSPATH . WPINC . '/IXR/class-IXR-error.php' );
  47. require_once( ABSPATH . WPINC . '/IXR/class-IXR-introspectionserver.php' );
  48. require_once( ABSPATH . WPINC . '/IXR/class-IXR-message.php' );
  49. require_once( ABSPATH . WPINC . '/IXR/class-IXR-request.php' );
  50. require_once( ABSPATH . WPINC . '/IXR/class-IXR-value.php' );