? .DS_Store
? help_block.patch
? help_blog.patch
? sites/localhost.drupal7
? sites/default/files
? sites/default/private
? sites/default/settings.php
Index: modules/blog/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v
retrieving revision 1.341
diff -u -p -r1.341 blog.module
--- modules/blog/blog.module	8 Nov 2009 10:02:41 -0000	1.341
+++ modules/blog/blog.module	14 Nov 2009 21:53:04 -0000
@@ -38,11 +38,16 @@ function blog_user_view($account) {
  */
 function blog_help($path, $arg) {
   switch ($path) {
-    case 'admin/help#blog':
-      $output  = '<p>' . t('The blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>, and the blog entries are most often displayed in descending order by creation time.') . '</p>';
-      $output .= '<p>' . t("There is an (optional) <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user's blog entries. The <em>Blog entry</em> menu item under <em>Add new content</em> allows new blog entries to be created.") . '</p>';
-      $output .= '<p>' . t('Each blog entry is displayed with an automatic link to other blogs created by the same user. By default, blog entries have comments enabled and are automatically promoted to the site front page. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/structure/block'))) . '</p>';
+     case 'admin/help#blog':
+      $output = '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t("The blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>, and the blog entries are displayed by creation time in descending order by default. Each blog entry is automatically displayed with a link to the user's main blog page. By default, blog entries have comments enabled and are promoted to the site's front page.") . '</p>';
+      $output .= '<p>' . t("There is an optional <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user's blog entries. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href='@blocks'>blocks administration page</a>.", array('@blocks' => url('admin/structure/block'))) . '</p>';
       $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@blog">Blog module</a>.', array('@blog' => 'http://drupal.org/handbook/modules/blog/')) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Multi-user blogs') . '</dt>';
+      $output .= '<dd>' . t("The blog module allows all users with appropriate permissions to create content on their personal blog. These blog posts are also aggregated into one central multi-user blog, which displays the blog content of all users.") . '</dd>';
+      $output .= '</dl>';
       return $output;
   }
 }
