### Eclipse Workspace Patch 1.0
#P drupal7
Index: modules/toolbar/toolbar.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v
retrieving revision 1.22
diff -u -r1.22 toolbar.module
--- modules/toolbar/toolbar.module	19 Nov 2009 03:57:15 -0000	1.22
+++ modules/toolbar/toolbar.module	22 Nov 2009 12:53:08 -0000
@@ -7,6 +7,19 @@
  */
 
 /**
+ * Implements hook_help().
+ */
+function toolbar_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#toolbar':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The toolbar module provides a toolbar that shows the top-level administration menu items and configured <a href="@shortcuts-help">shortcuts</a> at the top of the screen, for any user with proper permissions.', array('@shortcuts-help' => url('admin/help/shortcut'))) . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implementation of hook_permission().
  */
 function toolbar_permission() {
Index: modules/toolbar/toolbar.info
===================================================================
RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.info,v
retrieving revision 1.3
diff -u -r1.3 toolbar.info
--- modules/toolbar/toolbar.info	17 Oct 2009 00:51:53 -0000	1.3
+++ modules/toolbar/toolbar.info	22 Nov 2009 12:53:08 -0000
@@ -1,6 +1,6 @@
 ; $Id: toolbar.info,v 1.3 2009/10/17 00:51:53 dries Exp $
 name = Toolbar
-description = Toolbar exposing the top level administration menu items.
+description = Provides a toolbar that shows the top-level administration menu items and configured shortcuts.
 core = 7.x
 package = Core
 version = VERSION
Index: modules/dashboard/dashboard.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.module,v
retrieving revision 1.5
diff -u -r1.5 dashboard.module
--- modules/dashboard/dashboard.module	11 Nov 2009 08:52:27 -0000	1.5
+++ modules/dashboard/dashboard.module	22 Nov 2009 12:53:08 -0000
@@ -2,6 +2,19 @@
 // $Id: dashboard.module,v 1.5 2009/11/11 08:52:27 dries Exp $
 
 /**
+ * Implements hook_help().
+ */
+function dashboard_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#dashboard':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The dashboard module provides a <a href="@dashboard">dashboard page</a> in the administrative interface for organizing administrative tasks and tracking information within your site. The dashboard page contains <a href="@blocks-help">blocks</a>, which you can arrange as you like.', array('@dashboard' => url('admin/dashboard'), '@blocks-help' => url('admin/help/block'))) . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implement hook_menu().
  */
 function dashboard_menu() {
Index: modules/dashboard/dashboard.info
===================================================================
RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.info,v
retrieving revision 1.2
diff -u -r1.2 dashboard.info
--- modules/dashboard/dashboard.info	17 Nov 2009 21:24:18 -0000	1.2
+++ modules/dashboard/dashboard.info	22 Nov 2009 12:53:07 -0000
@@ -1,6 +1,6 @@
 ; $Id: dashboard.info,v 1.2 2009/11/17 21:24:18 dries Exp $
 name = Dashboard
-description = A module that provides a dashboard interface for organizing and tracking various information within your site.
+description = Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.
 core = 7.x
 package = Core
 version = VERSION
Index: modules/poll/poll.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.module,v
retrieving revision 1.324
diff -u -r1.324 poll.module
--- modules/poll/poll.module	18 Nov 2009 18:51:11 -0000	1.324
+++ modules/poll/poll.module	22 Nov 2009 12:53:08 -0000
@@ -13,8 +13,16 @@
 function poll_help($path, $arg) {
   switch ($path) {
     case 'admin/help#poll':
-      $output = '<p>' . t('The poll module can be used to create simple polls for site users. A poll is a simple, multiple choice questionnaire which displays the cumulative results of the answers to the poll. Having polls on the site is a good way to receive feedback from community members.') . '</p>';
-      $output .= '<p>' . t('When creating a poll, enter the question being posed, as well as the potential choices (and beginning vote counts for each choice). The status and duration (length of time the poll remains active for new votes) can also be specified. Use the <a href="@poll">poll</a> menu item to view all current polls. To vote in or view the results of a specific poll, click on the poll itself.', array('@poll' => url('poll'))) . '</p>';
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The poll module can be used to create simple simple surveys or questionnaires which display the cumulative results. A poll is a good way to receive feedback from site users and community members.') . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Create a poll') . '</dt>';
+      $output .= '<dd>' . t('Create a poll by clicking on Poll on the <a href="@add-content">Add content</a> page. When creating a poll, enter the question being posed, as well as the potential choices (and beginning vote counts for each choice). The status (closed or active) and duration (length of time the poll remains active for new votes) can also be specified.', array('@add-content' => url('node/add'))) . '</dd>';
+      $output .= '<dt>' . t('View polls') . '</dt>';
+      $output .= '<dd>' . t('Visit the <a href="@poll">Polls</a> page to view all current polls, or enable the "Most recent poll" block on the <a href="@blocks">blocks administration page</a>. To vote in or view the results of a specific poll, click on the poll itself.', array('@poll' => url('poll'), '@blocks' => url('admin/structure/block'))) . '</dd>';
+      $output .= '</dl>';
       $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@poll">Poll module</a>.', array('@poll' => 'http://drupal.org/handbook/modules/poll/')) . '</p>';
       return $output;
   }
