[development] unmaintained modules listing

Greg Knaddison greg.knaddison at gmail.com
Tue Feb 28 17:12:13 UTC 2006


On 2/28/06, Moshe Weitzman <weitzman at tejasa.com> wrote:
>
> no such list that i know of ... i think a sensible way to track this is
> to assign all unmaintained projects to a single user called
> 'unmaintained'. i just registered that user. then a custom php page
> could show these projects in a table. maybe you could write the PHP for
> such a page and gather up the list of modules. I can perform the edits
> to projects on drupal.org if you don't have edit permission.

Well, here is such a list based on the "Show last 5 nodes by user"
http://drupal.org/node/22628

    $result = db_query("SELECT n.created, n.title, n.nid, n.changed
    FROM node n INNER JOIN project_projects p ON n.nid = p.nid
    WHERE n.uid = 51123
    ORDER BY n.changed
    ASC");
    $output .= "<div class=\"item-list\"><ul>\n";
    $output .= node_title_list($result);
    $output .= "</ul></div>";
    return $output;

>
> or someone else will volunteer for this task?
>

Khalid has some good (but more complex) ideas on the process.

Greg


More information about the development mailing list