summaryrefslogtreecommitdiff
path: root/includes/xmlrpcs.inc
Commit message (Collapse)AuthorAge
* - Improved XML encoding fix. There is now a function drupal_xml_parser_create():Steven Wittens2004-01-06
| | | | | | | | | | | | | | | /** * 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. */
* - Made it possible to auto-throttle blocks. That is, blocks can beDries Buytaert2003-11-28
| | | | configured to be disabled when under excessive load. Patch by Jeremy.
* - Renamed 'Content-length' to 'Content-Length. Fixes bug #4323Dries Buytaert2003-11-28
|
* - Patch by Kjartan:Dries Buytaert2003-05-19
| | | | | | $_SERVER["HTTP_RAW_POST_DATA"] --> $GLOBALS["HTTP_RAW_POST_DATA"] Al: can you confirm that this fixes your problem?
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* - Upgraded the XML-RPC libraries to the latest version as suggested byDries Buytaert2001-12-05
| | | | Julian.
* - a batch of updates, including some experimental changes to the moderationDries Buytaert2001-09-27
| | | | of comments and nodes.
* - Upgraded the XML-RPC libraries to version 1.01:Dries Buytaert2001-09-25
| | | | http://groups.yahoo.com/group/xml-rpc/message/3626
* - Added an XML-RPC server. Modules that want to export remote procedureDries Buytaert2001-09-09
calls can implement the new 'xmlrpc' hook. Example: function mymodule_xmlrpc() { return array("drupal.myfunction" => array("function" => "mymodule_myfunction")); }