diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-31 20:22:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-31 20:22:37 +0000 |
commit | c64db1da29a6b2067f09e66e5e85e8877b489cb0 (patch) | |
tree | d4f837bbb16e60d4fdd30a5974fd3aca066527e3 /modules/aggregator | |
parent | cdd120ed20922a3130f108ff60b47a4f2130c44d (diff) | |
download | brdo-c64db1da29a6b2067f09e66e5e85e8877b489cb0.tar.gz brdo-c64db1da29a6b2067f09e66e5e85e8877b489cb0.tar.bz2 |
- Patch #80952 by earl, webchick, neclimdul et al: .info files
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.info | 3 | ||||
-rw-r--r-- | modules/aggregator/aggregator.module | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.info b/modules/aggregator/aggregator.info new file mode 100644 index 000000000..8ef127772 --- /dev/null +++ b/modules/aggregator/aggregator.info @@ -0,0 +1,3 @@ +; $Id$ +name = Aggregator +description = "Aggregates syndicated content (RSS, RDF, and Atom feeds)." diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 49edc354c..a67844337 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -27,8 +27,6 @@ function aggregator_help($section) { ', 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 .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@aggregator">Aggregator page</a>.', array('@aggregator' => 'http://drupal.org/handbook/modules/aggregator/')) .'</p>'; return $output; - case 'admin/settings/modules#description': - return t('Aggregates syndicated content (RSS, RDF, and Atom feeds).'); case 'admin/content/aggregator': return t('<p>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 <a href="http://blogs.law.harvard.edu/tech/rss">RSS</a> 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 <a href="@block">feed\'s block</a>.</p>', array('@block' => url('admin/build/block'))); case 'admin/content/aggregator/add/feed': |