Skip to content
  1. Feb 25, 2011
  2. Jul 13, 2006
  3. Jun 08, 2006
  4. May 16, 2006
  5. Apr 24, 2006
  6. Apr 20, 2006
  7. Apr 11, 2006
  8. Dec 27, 2005
  9. Nov 21, 2005
  10. Nov 09, 2005
  11. Oct 28, 2005
    • Dries Buytaert's avatar
      - Patch #34214 by ax: · 699df674
      Dries Buytaert authored
         * xmlrpc_value_calculate_type() fails for empty arrays
         * PHPDoc for xmlrpc_value_calculate_type()
         * use is_*() instead of gettype() as advised in the PHP manual (and document this)
         * coding style
      699df674
  12. Oct 22, 2005
  13. Oct 10, 2005
  14. Aug 25, 2005
  15. Aug 17, 2005
  16. Aug 15, 2005
  17. Aug 14, 2005
  18. Aug 11, 2005
    • Dries Buytaert's avatar
      - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core.... · b69b43d1
      Dries Buytaert authored
      - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. This allows admins to know exactly which version of which files they use. In addition I want to use CVS $Id$ tags in my upcoming security.module to check for possible vulnerabilities. That's not possible if some files simply don't have $Id$s.
      
      Note: I also (mostly) unified the tags to use the "// ID" form instead of "/* ID */", but that's more of a cosmetic issue. I'm not sure whether *.txt files and the stuff in themes/ need tags(?).
      b69b43d1
  19. Aug 08, 2005
  20. Jul 13, 2005
  21. Jun 29, 2005
  22. Mar 31, 2005
  23. Jan 09, 2005
  24. Nov 15, 2004
  25. Oct 19, 2004
  26. 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
  27. Dec 29, 2003
  28. Jul 10, 2003
    • Dries Buytaert's avatar
      · 337b3c9d
      Dries Buytaert authored
      - Committed a slightly modified version of Slavica's table prefix patch.
      337b3c9d
  29. 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
  30. Jan 21, 2003
    • Dries Buytaert's avatar
      · 4dac201e
      Dries Buytaert authored
      - Patch by Ulf: XHTML-ified the code.
      4dac201e
  31. Feb 17, 2002
  32. 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
  33. Nov 26, 2001
  34. 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
  35. Sep 25, 2001
  36. 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