| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
use lazy-loading for the XML-RPC libraries.(performance improvement).
|
| |
|
| |
|
|
|
|
|
|
| |
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(?).
|
| |
|
|
|
|
| |
smaller/better/working one.
|
| |
|
|
|
|
| |
comments
|
| |
|
| |
|
|
|
|
|
|
| |
Doxygen documentation and screen output.
Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
/**
* 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.
*/
|
|
|
|
| |
the code a bit better.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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!
|
|
|
|
| |
Julian.
|
|
|
|
|
| |
passing them that way.
For more info: http://no.php.net/manual/en/language.references.pass.php
|
|
|
|
| |
of comments and nodes.
|
|
|
|
| |
http://groups.yahoo.com/group/xml-rpc/message/3626
|
|
calls can implement the new 'xmlrpc' hook.
Example:
function mymodule_xmlrpc() {
return array("drupal.myfunction" => array("function" => "mymodule_myfunction"));
}
|