Skip to content
  1. Oct 10, 2005
  2. Aug 18, 2005
  3. Aug 15, 2005
  4. Aug 14, 2005
  5. Jun 29, 2005
  6. Mar 31, 2005
  7. Jan 09, 2005
  8. Nov 15, 2004
  9. Oct 19, 2004
  10. Jan 06, 2004
    • Steven Wittens's avatar
      - Improved XML encoding fix. There is now a function drupal_xml_parser_create(): · b817bdb3
      Steven Wittens authored
      /**
       * Wrapper around xml_parser_create() which extracts the encoding from the XML
       * data first and sets the output encoding to UTF-8. This function should be
       * used instead of xml_parser_create(), because PHP's XML parser doesn't check
       * the input encoding itself.
       *
       * This is also where unsupported encodings should be converted.
       * Callers should take this into account: $data might have been changed after
       * the call.
       *
       * @param $data The XML data which will be parsed later.
       */
      b817bdb3
  11. Dec 29, 2003
  12. Jul 10, 2003
    • Dries Buytaert's avatar
      · 337b3c9d
      Dries Buytaert authored
      - Committed a slightly modified version of Slavica's table prefix patch.
      337b3c9d
  13. Apr 29, 2003
    • Dries Buytaert's avatar
      · c2f3cb2b
      Dries Buytaert authored
      - Renamed 'xmlrpc_decode' to '_xmlrpc_decode' to avoid redeclaration when
        PHP's XML-RPC library is enabled.
      
      - Renamed 'xmlrpc_encode' to '_xmlrpc_encode' to avoid redeclaration when
        PHP's XML-RPC library is enabled.
      
      - Removed 'if (funcion_exist("xmlrpc_encode"))' check from common.inc.
      c2f3cb2b
  14. Jan 21, 2003
    • Dries Buytaert's avatar
      · 4dac201e
      Dries Buytaert authored
      - Patch by Ulf: XHTML-ified the code.
      4dac201e
  15. Feb 17, 2002
  16. Dec 05, 2001
    • Dries Buytaert's avatar
      · 6f0332a7
      Dries Buytaert authored
      - Upgraded the XML-RPC libraries to the latest version as suggested by
        Julian.
      6f0332a7
  17. Nov 26, 2001
  18. Sep 27, 2001
    • Dries Buytaert's avatar
      · 4a0e498f
      Dries Buytaert authored
      - a batch of updates, including some experimental changes to the moderation
        of comments and nodes.
      4a0e498f
  19. Sep 25, 2001
  20. Sep 09, 2001
    • Dries Buytaert's avatar
      · 1b7510ee
      Dries Buytaert authored
      - Added an XML-RPC server.  Modules that want to export remote procedure
        calls can implement the new 'xmlrpc' hook.
      
        Example:
      
         function mymodule_xmlrpc() {
           return array("drupal.myfunction" => array("function" => "mymodule_myfunction"));
         }
      1b7510ee