Complete
To be used with care. Pages are complete only when they meet the posting guidelines.
sudo ~/drush.experimental.6/drush.php -r /var/www/drupal-6-agaric-core/drupal pm install link
On sharing the command with an esteemed Agaric colleague, I realized that the instructions had to be tweaked slightly... for another person, even if run
Even some quality modules by very good developers are still using db_query("DROP TABLE {example_table}");
rather than the schema just defined and properly used by the update.
But sure enough, the hook_uninstall API documentation example shows the use of schema:
<?php
function example_uninstall() {
drupal_uninstall_schema('example');
variable_del('example_var');
}
?>
Resolution
On IRC #drupal:
webchick: What I would rather do is pimp out trigger module so we could do that kind of stuff just through configuring some actions
Resolution
Agaric has added the following modules to our development git repository. Alphabetical order:
Coming from the best ways to learn are by doing and teaching school of thought, Agaric encourages anyone interested in getting better at Drupal or getting more involved with Drupal to attend Add1sun's January Documentation Challenge, Saturday's at 1 p.m. EST in the #drupal-docs room on IRC.
The 'Items to Display' in Views is set to 10. The number of blank lines that show are the difference between the limit in Views and the actual number of items in the table. So in this example, there are 7 extra blank lines (odd/even coloring) in Firefox -- there are no extra blank lines in IE.
Agaric wrote:
First of all look at the source code in both browsers and you'll see that's the same, and it might tell you more about what the extra lines are.