Index: includes/module.inc =================================================================== --- includes/module.inc (revision 2) +++ includes/module.inc (working copy) @@ -103,8 +103,8 @@ ksort($files); foreach ($files as $filename => $file) { - drupal_get_filename('module', $file->name, $file->filename); - drupal_load('module', $file->name); + $file->metadata = module_get_meta_info($file->name, dirname($file->filename)); + $files[$filename]->metadata = $file->metadata; // log the critical hooks implemented by this module $bootstrap = 0; @@ -117,11 +117,11 @@ // Update the contents of the system table: if (isset($file->status) || (isset($file->old_filename) && $file->old_filename != $file->filename)) { - db_query("UPDATE {system} SET description = '%s', name = '%s', filename = '%s', bootstrap = %d WHERE filename = '%s'", $file->description, $file->name, $file->filename, $bootstrap, $file->old_filename); + db_query("UPDATE {system} SET description = '%s', name = '%s', filename = '%s', bootstrap = %d WHERE filename = '%s'", $file->metadata['description'], $file->name, $file->filename, $bootstrap, $file->old_filename); } else { // This is a new module. - db_query("INSERT INTO {system} (name, description, type, filename, status, throttle, bootstrap) VALUES ('%s', '%s', '%s', '%s', %d, %d, %d)", $file->name, $file->description, 'module', $file->filename, $file->status, $file->throttle, $bootstrap); + db_query("INSERT INTO {system} (name, description, type, filename, status, throttle, bootstrap) VALUES ('%s', '%s', '%s', '%s', %d, %d, %d)", $file->name, $file->metadata['description'], 'module', $file->filename, $file->status, $file->throttle, $bootstrap); } } @@ -129,6 +129,35 @@ } /** + * Load the metadata associated with a module. + * + * @param $module + * The name of the module + * @param $path + * The path the module lives in, not including the module name. + * @return array + * Associative array containing module meta data. + */ +function module_get_meta_info($module, $path) { + $filename = $path .'/'. $module .'.meta'; + $metadata = array(); + + if (file_exists($filename)) { + $metadata = parse_ini_file($filename); + } + + // Fill in safe defaults. + if (!isset($metadata['name']) || !$metadata['name']) { + $metadata['name'] = $module; + } + if (!isset($metadata['description']) || !$metadata['description']) { + $metadata['description'] = 'No description found.'; + } + + return $metadata; +} + +/** * Determine whether a given module exists. * * @param $module Index: modules/aggregator/aggregator.module =================================================================== --- modules/aggregator/aggregator.module (revision 2) +++ modules/aggregator/aggregator.module (working copy) @@ -27,8 +27,6 @@ ', array('@admin-aggregator' => url('admin/content/aggregator'), '@admin-aggregator-add-feed' => url('admin/content/aggregator/add/feed'), '@admin-aggregator-add-category' => url('admin/content/aggregator/add/category'), '@admin-settings-aggregator' => url('admin/settings/aggregator'), '@admin-access' => url('admin/user/access'), '@aggregator' => url('aggregator'))); $output .= '

'. t('For more information please read the configuration and customization handbook Aggregator page.', array('@aggregator' => 'http://drupal.org/handbook/modules/aggregator/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Aggregates syndicated content (RSS, RDF, and Atom feeds).'); case 'admin/content/aggregator': return t('

Thousands of sites (particularly news sites and weblogs) publish their latest headlines and/or stories in a machine-readable format so that other sites can easily link to them. This content is usually in the form of an RSS feed (which is an XML-based syndication standard). To display the feed or category in a block you must decide how many items to show by editing the feed or block and turning on the feed\'s block.

', array('@block' => url('admin/build/block'))); case 'admin/content/aggregator/add/feed': Index: modules/blog/blog.module =================================================================== --- modules/blog/blog.module (revision 2) +++ modules/blog/blog.module (working copy) @@ -76,8 +76,6 @@ ', array('@user' => url('user'), '@node-add-blog' => url('node/add/blog'), '@admin-node-configure-types-blog' => url('admin/content/types/blog'), '@admin-settings-blogapi' => url('admin/settings/blogapi'), '@admin-block' => url('admin/build/block'))); $output .= '

'. t('For more information please read the configuration and customization handbook Blog page.', array('@blog' => 'http://drupal.org/handbook/modules/blog/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Enables keeping an easily and regularly updated web page or a blog.'); } } Index: modules/upload/upload.module =================================================================== --- modules/upload/upload.module (revision 2) +++ modules/upload/upload.module (working copy) @@ -24,8 +24,6 @@ ', array('@admin-access' => url('admin/user/access'), '@admin-content-types' => url('admin/settings/types'), '@admin-upload' => url('admin/settings/upload'))); $output .= '

'. t('For more information please read the configuration and customization handbook Upload page.', array('@upload' => 'http://drupal.org/handbook/modules/upload/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Allows users to upload and attach files to content.'); case 'admin/settings/upload': return t('

Users with the upload files permission can upload attachments. Users with the view uploaded files permission can view uploaded attachments. You can choose which post types can take attachments on the content types settings page.

', array('@permissions' => url('admin/user/access'), '@types' => url('admin/settings/types'))); } Index: modules/system/system.module =================================================================== --- modules/system/system.module (revision 2) +++ modules/system/system.module (working copy) @@ -30,8 +30,6 @@ ', array('@file-cron' => 'cron.php', '@external-http-drupal-org-cron' => 'http://drupal.org/cron', '@cron-status' => url('admin/settings/cron-status'), '@cron-manually' => url('admin/settings/cron-status/cron'), '@admin-settings' => url('admin/settings/page-caching'))); $output .= '

'. t('For more information please read the configuration and customization handbook System page.', array('@system' => 'http://drupal.org/handbook/modules/system/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Handles general site configuration for administrators.'); case 'admin': return t('

Welcome to the administration section. Here you may control how your site functions.

'); case 'admin/build/themes': @@ -1206,12 +1204,10 @@ $files = module_rebuild_cache(); foreach ($files as $filename => $file) { - drupal_get_filename('module', $file->name, $file->filename); - drupal_load('module', $file->name); + $metadata = $file->metadata; + $file->description = $metadata['description']; - $file->description = module_invoke($file->name, 'help', 'admin/settings/modules#description'); - - $form['name'][$file->name] = array('#value' => $file->name); + $form['name'][$file->name] = array('#value' => $metadata['name']); $form['description'][$file->name] = array('#value' => $file->description); $options[$file->name] = ''; if ($file->status) { Index: modules/drupal/drupal.module =================================================================== --- modules/drupal/drupal.module (revision 2) +++ modules/drupal/drupal.module (working copy) @@ -44,8 +44,6 @@ $output .= '

'. t('For more information please read the configuration and customization handbook Drupal page.', array('@drupal' => 'http://drupal.org/handbook/modules/drupal/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Lets you register your site with a central server and improve ranking of Drupal projects by posting information on your installed modules and themes; also enables users to log in using a Drupal ID.'); case 'admin/settings/distributed-authentication': return t('

Using this your site can "call home" to another Drupal server. By calling home to drupal.org and sending a list of your installed modules and themes, you help rank projects on drupal.org and so assist all Drupal administrators to find the best components for meeting their needs. If you want to register with a different server, you can change the Drupal XML-RPC server setting -- but the server has to be able to handle Drupal XML. Some XML-RPC servers may present directories of all registered sites. To get all your site information listed, go to the site information settings page and set the site name, the e-mail address, the slogan, and the mission statement.

', array('@site-settings' => url('admin/settings/site-information'))); case 'user/help#drupal': Index: modules/statistics/statistics.module =================================================================== --- modules/statistics/statistics.module (revision 2) +++ modules/statistics/statistics.module (working copy) @@ -41,8 +41,6 @@ ', array('@admin-settings-statistics' => url('admin/logs/settings'), '@admin-logs' => url('admin/logs'), '@admin-logs-hits' => url('admin/logs/hits'), '@admin-block' => url('admin/build/block'))); $output .= '

'. t('For more information please read the configuration and customization handbook Statistics page.', array('@statistics' => 'http://drupal.org/handbook/modules/statistics/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Logs access statistics for your site.'); case 'admin/logs/settings': return t('

Settings for the statistical information that Drupal will keep about the site. See site statistics for the actual information.

', array('@statistics' => url('admin/logs/hits'))); case 'admin/logs/hits': Index: modules/book/book.module =================================================================== --- modules/book/book.module (revision 2) +++ modules/book/book.module (working copy) @@ -1004,8 +1004,6 @@ ', array('@node-add-book' => url('node/add/book'), '@admin-node-book' => url('admin/content/book'), '@admin-settings-content-types-book-page' => url('admin/content/types/book'), '@admin-block' => url('admin/build/block'), '@admin-access' => url('admin/user/access'))); $output .= '

'. t('For more information please read the configuration and customization handbook Book page.', array('@book' => 'http://drupal.org/handbook/modules/book/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Allows users to collaboratively author a book.'); case 'admin/content/book': return t('

The book module offers a means to organize content, authored by many users, in an online manual, outline or FAQ.

'); case 'admin/content/book/orphan': Index: modules/locale/locale.module =================================================================== --- modules/locale/locale.module (revision 2) +++ modules/locale/locale.module (working copy) @@ -33,8 +33,6 @@ ', array('@admin-locale' => url('admin/settings/locale'), '@admin-locale-string-search' => url('admin/settings/locale/string/search'), '@admin-locale-language-add' => url('admin/settings/locale/language/add'), '@external-http-drupal-org-project-Translations' => 'http://drupal.org/project/Translations')); $output .= '

'. t('For more information please read the configuration and customization handbook Locale page.', array('@locale' => 'http://drupal.org/handbook/modules/locale/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Enables the translation of the user interface to languages other than English.'); case 'admin/settings/locale': case 'admin/settings/locale/language/overview': return t("

Drupal provides support for the translation of its interface text into different languages. This page provides an overview of the installed languages. You can add a language on the add language page, or directly by importing a translation. If multiple languages are enabled, registered users will be able to set their preferred language. The site default will be used for anonymous visitors and for users without their own settings.

Drupal interface translations may be added or extended by several courses: by importing an existing translation, by translating everything from scratch, or by a combination of these approaches.

", array("@search" => url("admin/settings/locale/string/search"), "@import" => url("admin/settings/locale/language/import"), "@add-language" => url("admin/settings/locale/language/add"))); Index: modules/watchdog/watchdog.module =================================================================== --- modules/watchdog/watchdog.module (revision 2) +++ modules/watchdog/watchdog.module (working copy) @@ -28,8 +28,6 @@ ', array('@admin-watchdog' => url('admin/logs/watchdog'), '@admin-watchdog-events' => url('admin/logs/watchdog/events'))); $output .= '

'. t('For more information please read the configuration and customization handbook Watchdog page.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Logs and records system events.'); case 'admin/logs': return t('

The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.

'); } Index: modules/menu/menu.module =================================================================== --- modules/menu/menu.module (revision 2) +++ modules/menu/menu.module (working copy) @@ -31,8 +31,6 @@ ', array('@admin-menu' => url('admin/build/menu'), '@admin-block' => url('admin/build/block'), '@admin-menu-menu-add' => url('admin/build/menu/menu/add'), '@admin-menu-item-add' => url('admin/build/menu/item/add'), '@admin-settings-menus' => url('admin/build/menu/settings'))); $output .= '

'. t('For more information please read the configuration and customization handbook Menu page.', array('@menu' => 'http://drupal.org/handbook/modules/menu/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Allows administrators to customize the site navigation menu.'); case 'admin/build/menu': return '

'. t('Menus are a collection of links (menu items) used to navigate a website. The list(s) below display the currently available menus along with their menu items. Select an operation from the list to manage each menu or menu item.', array('@admin-settings-menus' => url('admin/build/menu/settings'), '@admin-block'=> url('admin/build/block'))) .'

'; case 'admin/build/menu/menu/add': Index: modules/search/search.module =================================================================== --- modules/search/search.module (revision 2) +++ modules/search/search.module (working copy) @@ -107,8 +107,6 @@ ', array('@admin-help-system' => url('admin/help/system'), '@file-cron' => 'cron.php', '@external-http-drupal-org-node-23714' => 'http://drupal.org/node/23714', '@admin-settings-search' => url('admin/settings/search'))); $output .= '

'. t('For more information please read the configuration and customization handbook Search page.', array('@search' => 'http://drupal.org/handbook/modules/search/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Enables site-wide keyword searching.'); case 'admin/settings/search': return t('

The search engine works by maintaining an index of the words in your site\'s content. You can adjust the settings below to tweak the indexing behaviour. Note that the search requires cron to be set up correctly.

Index: modules/taxonomy/taxonomy.module =================================================================== --- modules/taxonomy/taxonomy.module (revision 2) +++ modules/taxonomy/taxonomy.module (working copy) @@ -1331,8 +1331,6 @@ ', array('@admin-taxonomy-add-vocabulary' => url('admin/content/taxonomy/add/vocabulary'), '@admin-taxonomy' => url('admin/content/taxonomy'), '@external-http-drupal-org-project-taxonomy_access' => 'http://drupal.org/project/taxonomy_access', '@external-http-drupal-org-project-taxonomy_browser' => 'http://drupal.org/project/taxonomy_browser')); $output .= '

'. t('For more information please read the configuration and customization handbook Taxonomy page.', array('@taxonomy' => 'http://drupal.org/handbook/modules/taxonomy/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Enables the categorization of content.'); case 'admin/content/taxonomy': return t('

The taxonomy module allows you to classify content into categories and subcategories; it allows multiple lists of categories for classification (controlled vocabularies) and offers the possibility of creating thesauri (controlled vocabularies that indicate the relationship of terms), taxonomies (controlled vocabularies where relationships are indicated hierarchically), and free vocabularies where terms, or tags, are defined during content creation. To view and manage the terms of each vocabulary, click on the associated list terms link. To delete a vocabulary and all its terms, choose "edit vocabulary".

'); case 'admin/content/taxonomy/add/vocabulary': Index: modules/filter/filter.module =================================================================== --- modules/filter/filter.module (revision 2) +++ modules/filter/filter.module (working copy) @@ -30,8 +30,6 @@ ', array('@admin-filters' => url('admin/settings/filters'))); $output .= '

'. t('For more information please read the configuration and customization handbook Filter page.', array('@filter' => 'http://drupal.org/handbook/modules/filter/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Handles the filtering of content in preparation for display.'); case 'admin/settings/filters': return t(' Index: modules/node/node.module =================================================================== --- modules/node/node.module (revision 2) +++ modules/node/node.module (working copy) @@ -32,8 +32,6 @@ ', array('@search' => url('search'), '@admin-settings-content-types' => url('admin/content/types'))); $output .= '

'. t('For more information please read the configuration and customization handbook Node page.', array('@node' => 'http://drupal.org/handbook/modules/node/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Allows content to be submitted to the site and displayed on pages.'); case 'admin/content/search': return t('

Enter a simple pattern to search for a post. This can include the wildcard character *.
For example, a search for "br*" might return "bread bakers", "our daily bread" and "brenda".

'); case 'admin/content/types': Index: modules/help/help.module =================================================================== --- modules/help/help.module (revision 2) +++ modules/help/help.module (working copy) @@ -116,8 +116,6 @@ $output .= '

'. t('You can not administer the help system.') .'

'; $output .= '

'. t('For more information please read the configuration and customization handbook Help page.', array('@help' => 'http://drupal.org/handbook/modules/help/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Manages the display of online help.'); } } Index: modules/forum/forum.module =================================================================== --- modules/forum/forum.module (revision 2) +++ modules/forum/forum.module (working copy) @@ -25,8 +25,6 @@ ', array('@admin-forum' => url('admin/content/forum'), '@admin-modules' => url('admin/settings/modules'), '@admin-help-comment' => url('admin/help/comment'), '@admin-help-taxonomy' => url('admin/help/taxonomy'))); $output .= '

'. t('For more information please read the configuration and customization handbook Forum page.', array('@forum' => 'http://drupal.org/handbook/modules/forum/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Enables threaded discussions about general topics.'); case 'admin/content/forum': return t('

This is a list of existing containers and forums that you can edit. Containers hold forums and, in turn, forums hold threaded discussions. Both containers and forums can be placed inside other containers and forums. By planning the structure of your containers and forums well, you make it easier for users to find a topic area of interest to them.

'); case 'admin/content/forum/add/container': Index: modules/block/block.module =================================================================== --- modules/block/block.module (revision 2) +++ modules/block/block.module (working copy) @@ -38,8 +38,6 @@ ', array('@admin-block' => url('admin/build/block'), '@admin-block-add' => url('admin/build/block/add'))); $output .= '

'. t('For more information please read the configuration and customization handbook Block page.', array('@block' => 'http://drupal.org/handbook/modules/block/')) .'

'; return $output; - case 'admin/settings/modules#description': - return t('Controls the boxes that are displayed around the main content.'); case 'admin/build/block': return t("

Blocks are boxes of content that may be rendered into certain regions of your web pages, for example, into sidebars. They are usually generated automatically by modules, but administrators can create blocks manually.

Index: modules/contact/contact.module =================================================================== --- modules/contact/contact.module (revision 2) +++ modules/contact/contact.module (working copy) @@ -23,8 +23,6 @@ $output .= '
  • '. t('Site-wide contact form menu configuration.', array('@menu-configuration' => url('admin/build/menu'))) .'
  • '; $output .= t('For more information, please read the configuration and customization handbook page for the contact module.', array('@contact' => url('http://drupal.org/handbook/modules/contact/', NULL, NULL, TRUE))); return $output; - case 'admin/settings/modules#description': - return t('Enables the use of both personal and site-wide contact forms.'); case 'admin/build/contact': $output = t('This page lets you setup your site-wide contact form. To do so, add one or more categories. You can associate different recipients with each category to route e-mails to different people. For example, you can route website feedback to the webmaster and direct product information requests to the sales department. On the settings page, you can customize the information shown above the contact form. This can be useful to provide additional contact information such as your postal address and telephone number.', array('@settings' => url('admin/build/contact/settings'), '@form' => url('contact'))); if (!module_exists('menu')) { Index: modules/tracker/tracker.module =================================================================== --- modules/tracker/tracker.module (revision 2) +++ modules/tracker/tracker.module (working copy) @@ -23,8 +23,6 @@ ', array('@tracker' => url('tracker'), '@profile' => url('profile'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Tracker page.', array('@tracker' => 'http://drupal.org/handbook/modules/tracker/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Enables tracking of recent posts for users.'); } } Index: modules/path/path.module =================================================================== --- modules/path/path.module (revision 2) +++ modules/path/path.module (working copy) @@ -34,8 +34,6 @@ ', array('@admin-path-add' => url('admin/build/path/add'), '@admin-path' => url('admin/build/path'), '@external-http-drupal-org-node-15365' => 'http://drupal.org/node/15365', '@admin-clean-url-settings' => url('admin/settings/clean-urls'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Path page.', array('@path' => 'http://drupal.org/handbook/modules/path/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Allows users to rename URLs.'); case 'admin/build/path': return t("

    Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL 'node/1' onto 'about'. Each system path can have multiple aliases.

    "); case 'admin/build/path/add': Index: modules/ping/ping.module =================================================================== --- modules/ping/ping.module (revision 2) +++ modules/ping/ping.module (working copy) @@ -23,8 +23,6 @@ ', array('@admin-modules' => url('admin/settings/modules'), '@file-cron' => 'cron.php', '@external-http-drupal-org-node-23714' => 'http://drupal.org/node/23714')); $output .= '

    '. t('For more information please read the configuration and customization handbook Ping page.', array('@ping' => 'http://drupal.org/handbook/modules/ping/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Alerts other sites when your site has been updated.'); } } Index: modules/profile/profile.module =================================================================== --- modules/profile/profile.module (revision 2) +++ modules/profile/profile.module (working copy) @@ -40,8 +40,6 @@ ', array('@profile' => url('profile'), '@admin-settings-profile' => url('admin/user/profile'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Profile page.', array('@profile' => 'http://drupal.org/handbook/modules/profile/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Supports configurable user profiles.'); case 'admin/user/profile': return t('

    Here you can define custom fields that users can fill in in their user profile (such as country, real name, age, ...).

    '); } Index: modules/comment/comment.module =================================================================== --- modules/comment/comment.module (revision 2) +++ modules/comment/comment.module (working copy) @@ -80,8 +80,6 @@ ', array('@admin-access' => url('admin/user/access'), '@admin-settings-comment' => url('admin/content/comment/settings'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Comment page.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Allows users to comment on and discuss published content.'); case 'admin/content/comment': case 'admin/content/comment/new': return t("

    Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author's name to edit the author's user information , \"edit\" to modify the text, and \"delete\" to remove their submission.

    "); Index: modules/legacy/legacy.module =================================================================== --- modules/legacy/legacy.module (revision 2) +++ modules/legacy/legacy.module (working copy) @@ -27,8 +27,6 @@ $output .= '

    '. t('Legacy module has no configurable options.') .'

    '; $output .= '

    '. t('For more information please read the configuration and customization handbook Legacy page.', array('@legacy' => 'http://drupal.org/handbook/modules/legacy/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Provides legacy handlers for upgrades from older Drupal installations.'); } } Index: modules/throttle/throttle.module =================================================================== --- modules/throttle/throttle.module (revision 2) +++ modules/throttle/throttle.module (working copy) @@ -133,8 +133,6 @@ ', array('@admin-modules' => url('admin/settings/modules'), '@admin-block' => url('admin/build/block'), '@admin-settings-throttle' => url('admin/settings/throttle'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Throttle page.', array('@throttle' => 'http://drupal.org/handbook/modules/throttle/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Handles the auto-throttling mechanism, to control site congestion.'); case 'admin/settings/throttle': return t('If your site gets linked to by a popular website, or otherwise comes under a "Denial of Service" (DoS) attack, your webserver might become overwhelmed. This module provides a congestion control throttling mechanism for automatically detecting a surge in incoming traffic. This mechanism is utilized by other Drupal modules to automatically optimize their performance by temporarily disabling CPU-intensive functionality.'); } Index: modules/poll/poll.module =================================================================== --- modules/poll/poll.module (revision 2) +++ modules/poll/poll.module (working copy) @@ -23,8 +23,6 @@ ', array('@poll' => url('poll'), '@admin-node-configure-types-poll' => url('admin/content/types/poll'))); $output .= '

    '. t('For more information please read the configuration and customization handbook Poll page.', array('@poll' => 'http://drupal.org/handbook/modules/poll/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t("Allows your site to capture votes on different topics in the form of multiple choice questions."); } } Index: modules/blogapi/blogapi.module =================================================================== --- modules/blogapi/blogapi.module (revision 2) +++ modules/blogapi/blogapi.module (working copy) @@ -23,8 +23,6 @@ ', array('@file-xmlrpc' => 'xmlrpc.php', '@admin-settings-blogapi' => url('admin/settings/blogapi'))); $output .= '

    '. t('For more information please read the configuration and customization handbook BlogApi page.', array('@blogapi' => 'http://drupal.org/handbook/modules/blogapi/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Allows users to post content using applications that support XML-RPC blog APIs.'); } } Index: modules/user/user.module =================================================================== --- modules/user/user.module (revision 2) +++ modules/user/user.module (working copy) @@ -2269,8 +2269,6 @@ ', array('@user' => url('user'), '@admin-user' => url('admin/user/user'), '@admin-themes' => url('admin/build/themes'), '@admin-help-profile' => url('admin/help/profile'), '@admin-help-system' => url('admin/help/system'))); $output .= '

    '. t('For more information please read the configuration and customization handbook User page.', array('@user' => 'http://drupal.org/handbook/modules/user/')) .'

    '; return $output; - case 'admin/settings/modules#description': - return t('Manages the user registration and login system.'); case 'admin/user/user': return t('

    Drupal allows users to register, login, log out, maintain user profiles, etc. Users of the site may not use their own names to post content until they have signed up for a user account.

    '); case 'admin/user/user/create':