summaryrefslogtreecommitdiff
path: root/xmlrpc.php
Commit message (Collapse)AuthorAge
* Stripping CVS keywordsThe Great Git Migration2011-02-25
|
* - Patch #656266 by fgm, sun: hook_xmlrpc_alter() cannot alter built-in methods.Dries Buytaert2010-10-02
|
* - Patch #656266 by fgm: fixed the hook and added documentation.Dries Buytaert2009-12-13
|
* - Patch #656266 by fgm: added missing a matching hook_xml_rpc_alter().Dries Buytaert2009-12-12
|
* #363013 by mannkind: Use getwd() rather than realpath(__FILE__) to determine ↵Angie Byron2009-02-08
| | | | drupal root, so we don't break symlinks.
* #259623 by dopry and Damien Tournoud: Convert includes/requires to use ↵Angie Byron2008-09-20
| | | | absolute paths.
* - Patch #29385 by chx: removed remaining "?>"s at the end of some files.Dries Buytaert2005-08-28
|
* - Patch #7458 by chx: merged the XML-RPC multicall support into xmlrpc() and ↵Dries Buytaert2005-08-17
| | | | use lazy-loading for the XML-RPC libraries.(performance improvement).
* - Patch #27003 by Neil: use named constants instead of stringsDries Buytaert2005-07-23
|
* - Patch #26391 by chx: replaced the old XML-RPC library with a ↵Dries Buytaert2005-07-13
| | | | smaller/better/working one.
* - Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidiedDries Buytaert2005-06-22
| | | | | | | up the documentation a little. chx: can you double-check whether the global $conf variable is secure? (That is, make sure it can't be send using the URL or something.)
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Patch #9983 by Stefan: various code style improvements.Dries Buytaert2004-08-12
|
* - Patch #7458 by killes: conditionally include xmlrpc.inc.Dries Buytaert2004-08-04
|
* - Changed the order of include statements.Dries Buytaert2004-01-26
|
* - Improved module loading when serving cached pages. Moshe's bootstrap patch.Dries Buytaert2003-11-18
| | | | - Used legend and fieldset tags for the configuration page.
* - Tidied up the usage of module_invoke() and module_invoke_all(). Patch byDries Buytaert2003-09-14
| | | | Jonathan Chaffer.
* - missed a file in my last large $id$ commit.Kjartan Mannes2001-10-20
|
* - Removed a node's link ID (lid) as discussed on the mailing list. SeeDries Buytaert2001-10-16
| | | | | | | | | | | | | | 'updates/3.00-to.x.xx.mysql' for the required MySQL updates. - Renamed some "author" fields to "uid" fields for sake of consistency. - Fixed the coding style of some PHP files. - Fixed the moderation queue (fairly untested though). - Re-introduced the temporary SQL table in _node_get(). - Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
* - 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")); }