summaryrefslogtreecommitdiff
path: root/includes/xmlrpc.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. */
* - Fixed a weird typo introduced by the <b> -> <strong> patches and indentedDries Buytaert2003-12-29
| | | | the code a bit better.
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Committed a slightly modified version of Slavica's table prefix patch.Dries Buytaert2003-07-10
|
* - Renamed 'xmlrpc_decode' to '_xmlrpc_decode' to avoid redeclaration whenDries Buytaert2003-04-29
| | | | | | | | | 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.
* - Patch by Ulf: XHTML-ified the code.Dries Buytaert2003-01-21
|
* - applying patches from Axel Kollmorgen. SeeKjartan Mannes2002-02-17
| | | | | | | | | | http://list.drupal.org/drupal-devel/2002-February/thread.html#6678 http://list.drupal.org/drupal-devel/2002-February/thread.html#6629 - removed references to $this->user() from themes. - removed $BaseTheme->user(). It was deprecated a while back. NOTE: this update will break custom themes, so make sure you update your themes before updating!
* - Upgraded the XML-RPC libraries to the latest version as suggested byDries Buytaert2001-12-05
| | | | Julian.
* - fixed pass by reference errors. PHP only allows declaration of &$vars, notKjartan Mannes2001-11-26
| | | | | passing them that way. For more info: http://no.php.net/manual/en/language.references.pass.php
* - 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")); }