summaryrefslogtreecommitdiff
path: root/includes/xmlrpcs.inc
Commit message (Collapse)AuthorAge
* - Patch #172950 by webernet: code style fixes.Dries Buytaert2007-09-04
|
* - Patch #72204 by nedjo: upper-cased all TRUE/FALSE/NULL constants.Dries Buytaert2006-07-05
|
* - Patch #66154 by jvandyck: XML-RPC fixes and documentation improvements.Dries Buytaert2006-06-08
|
* #58166, fixes for typos, patch by Uwe HerrmannGerhard Killesreiter2006-04-11
|
* - Patch #37400 by vwX/chx: fixed problem with methodHelpDries Buytaert2005-11-13
|
* - Patch #30930 by m3avrck/deekayen: cured PHP5 warnings.Dries Buytaert2005-10-22
|
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Patch #28861 by Malthus: fixed typo in XML-RPC backend. Missing $.Dries Buytaert2005-08-14
| | | | - Made chx the XML-RPC maintainer.
* - Patch #28826 by chx: make xmlrpc_multicall working.Dries Buytaert2005-08-14
|
* - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. ↵Dries Buytaert2005-08-11
| | | | | | 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(?).
* - Patch #26391 by chx: replaced the old XML-RPC library with a ↵Dries Buytaert2005-07-13
| | | | smaller/better/working one.
* - Fixed problems with filter formats and problem with XML-RPC server.Dries Buytaert2005-06-29
|
* - 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")); }