| Commit message (Collapse) | Author | Age |
|
|
|
| |
drupal_write_record().
|
|
|
|
| |
work regardless of bootstrap phase.
|
| |
|
| |
|
|
|
|
| |
drupal_add_js.
|
|
|
|
| |
exceptions. I have one exception and one fail.
|
| |
|
|
|
|
| |
some configurations.
|
| |
|
|
|
|
| |
bootstrap.inc so they're there in early bootstrap.
|
|
|
|
| |
default.
|
| |
|
| |
|
|
|
|
| |
hook_file_X(). This is an enabler of lots and lots of goodies. See CHANGELOG.txt for more. Awesome work, guys. :)
|
|
|
|
| |
down errors.
|
|
|
|
| |
absolute paths.
|
| |
|
|
|
|
| |
drupal_add_feed() and drupal_add_link().
|
| |
|
|
|
|
| |
developer experience.
|
|
|
|
| |
filter_var and FILTER_VALIDATE_EMAIL.
|
|
|
|
| |
die when PHP errors are encountered.
|
| |
|
|
|
|
| |
protocol version where possible.
|
| |
|
|
|
|
| |
as per Rasmus' suggestion. Removed drupal_referrer() for consistency.
|
|
|
|
| |
generation database layer for Drupal 7.
|
| |
|
| |
|
|
|
|
| |
error and cleaned up some simpletest stuff. We should have a much more funky 'all tests passed' screen. Having all tests pass shouldn't be this boring. Let's be a bit more creative and injest some fun ... ;-)
|
|
|
|
| |
untranslatable suffix in format_size()
|
|
|
|
| |
some first drupal_http_request() tests to core. Yay.
|
|
|
|
| |
drupal_http_request().
|
|
|
|
| |
registry_rebuild() for consistency.
|
|
|
|
| |
Javascript could generate invalid XHTML.
|
| |
|
| |
|
|
|
|
| |
printes #markup, not #value.
|
| |
|
|
|
|
| |
online vs on-line.
|
|
|
|
| |
stylesheets.
|
|
|
|
| |
tests work.
|
| |
|
|
|
|
| |
excessive white space).
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Trivial Patch of the Month Award.
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|