| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
compliance with standards.
|
| |
|
|
|
|
| |
avoid users rendering their site unusable.
|
|
|
|
| |
(with upgrade path). Say buh-bye to old, crusty code.
|
| |
|
|
|
|
| |
weitzman: automatically install/uninstall schema.
|
|
|
|
| |
queries.
|
|
|
|
| |
and properly delete an unused variable upon uninstallation.
|
| |
|
|
|
|
| |
abstraction layer.
|
| |
|
|
|
|
| |
nominalizations from Docblocks.
|
|
|
|
| |
all .install files.
|
|
|
|
| |
table namespace.
|
| |
|
|
|
|
| |
taxonomy_term_data.
|
| |
|
| |
|
|
|
|
| |
descriptions.
|
|
|
|
| |
and term API.
|
|
|
|
| |
would leave comments, ratings, etc behind in the database.
|
|
|
|
|
|
|
|
|
|
|
| |
from numeric block IDs to string IDs.
The short explanation is that Drupal uses a lot of numeric deltas in the block system; blocks are identified by the 'module' and the 'delta'. In early Drupal, delta was numeric, but somewhere along the line it was changed to be possibly a string. In modern Drupal, block overrides are easily done via block-MODULE-DELTA.tpl.php. The primary motivation to switch to string IDs everywhere is to make these deltas friendlier to themers:
block-user-0.tpl.php --> block-user-navigation.tpl.php
block-user-1.tpl.php --> block-user-login.tpl.php
You get the picture.
|
| |
|
|
|
|
| |
node type was not re-added to the forum vocabulary when the module is re-enabled (after being disabled)
|
|
|
|
| |
taxonomy might be disabled at that time, so we need to include it
|
|
|
|
| |
module, but never visited any pages in Drupal 5 and they upgrade to Drupal 6 which does this much better
|
|
|
|
| |
(and removed spaces).
|
|
|
|
| |
when enabled for forum inclusion
|
| |
|
|
|
|
| |
.schema files into .install files to prevent mistakes.
|
| |
|
|
|
|
| |
topics to be custom node types.
|
|
|
|
| |
Oh, behave.
|
| |
|
|
|
|
| |
MySQL create table statements.
|
| |
|
| |
|
| |
|
|
et al: an initial install system for Drupal core.
|