Has anyone considered writing a module or modifying a theme to access the Waypoint.com API? With this, blog entries could show similar blog entries from other sites. I've visited a couple of Moveable Type based sites that use this, and I've found it to be a nice feature (here's an example: http://www.nonliteral.com/archives/2003/04/19/tivo_longevity.html
You can see after the blog entry the "Related Posts from Waypath" box.
I have created the beginnings of my first module, called books.module. It shows in the list of modules in the admin/configuration/modules screen, but only the description shows, the module name ("books") is empty. :(
Here is my code:
<?php
function books_help($section) {
$output = t("Enables display of a list of books, including affiliate links
to purchase those books.");
return $output;
}
?>
It's about the simplest module I can create. But why doesn't the title show up in the modules list? Any help is appreciated. I'd like to write several modules for my project but need to get a simple one working first.
I've modified 4.3 queue.module to let the admin select an expiration time, in days, for the nodes on moderation queue in adition to expiration by number of votes. You can set expiration time in days through queue administration pages and crop.php will take care of remove those that has expired through a new function queue_cron added to queue.module.
This is the diff I've obtained comparing my modified version of queue.module with drupal 4.3 queue.module: