| Commit message (Collapse) | Author | Age |
|
|
|
| |
called with no function arguments. Added some extra XML-RPC tests.
|
|
|
|
| |
happen for AJAX requests too.
|
| |
|
|
|
|
| |
function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading.
|
|
|
|
| |
registry rip. Let's try that again.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
flobruit
et al. Can you say 'registry'? Drupal now maintains an internal registry of
all functions or classes in the system, allowing it to lazy-load code files as
needed (reducing the amount of code that must be parsed on each request). The
list of included files is cached per menu callback for subsequent loading by
the menu router. This way, a given page request will have all the code it needs
but little else, minimizing time spent parsing unneeded code.
|
|
|
|
| |
tags being inserted in the message string.
|
|
|
|
| |
discussion we've decided to make the concatenation operator consistent with the other operators.
|
|
|
|
| |
year. Fiew. Thanks all, and see you on the other side. :)
|
|
|
|
|
|
|
|
| |
- whitespaces at end of lines
- indentation
- control structure usage
- whitespace in empty lines
- phpdoc comment formatting
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- Made chx the XML-RPC maintainer.
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
/**
* 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.
*/
|
|
|
|
| |
configured to be disabled when under excessive load. Patch by Jeremy.
|
| |
|
|
|
|
|
|
| |
$_SERVER["HTTP_RAW_POST_DATA"] --> $GLOBALS["HTTP_RAW_POST_DATA"]
Al: can you confirm that this fixes your problem?
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
| |
Julian.
|
|
|
|
| |
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"));
}
|