Index: modules/field/modules/field_sql_storage/field_sql_storage.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/modules/field_sql_storage/field_sql_storage.module,v
retrieving revision 1.32
diff -u -p -r1.32 field_sql_storage.module
--- modules/field/modules/field_sql_storage/field_sql_storage.module	13 Nov 2009 19:19:50 -0000	1.32
+++ modules/field/modules/field_sql_storage/field_sql_storage.module	30 Nov 2009 02:27:47 -0000
@@ -12,7 +12,9 @@
 function field_sql_storage_help($path, $arg) {
   switch ($path) {
     case 'admin/help#field_sql_storage':
-      $output = '<p>' . t('The Field SQL Storage module stores Field API data in the database. It is the default field storage module, but other field storage modules may be available in the contributions repository.') . '</p>';
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Field SQL storage module stores field data in the database. It is the default field storage module, but other field storage mechanisms may be available as contributed modules. (See the <a href="@field-help">Field module help page</a> for more information about fields.)', array('@field-help' => url('admin/help/field'))) . '</p>';
       return $output;
   }
 }
Index: modules/field/modules/list/list.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/modules/list/list.module,v
retrieving revision 1.18
diff -u -p -r1.18 list.module
--- modules/field/modules/list/list.module	24 Nov 2009 05:27:31 -0000	1.18
+++ modules/field/modules/list/list.module	30 Nov 2009 02:27:47 -0000
@@ -6,6 +6,19 @@
  * Defines list field types that can be used with the Options module.
  */
 
+ /**
+ * Implement hook_help().
+ */
+function list_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#list':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The List module defines various list field types for the Field module. (See the <a href="@field-help">Field module help page</a> for more information about fields.)', array('@field-help' => url('admin/help/field'))) . '</p>';
+      return $output;
+  }
+}
+
 /**
  * Implement hook_field_info().
  */
Index: modules/field/modules/number/number.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/modules/number/number.module,v
retrieving revision 1.28
diff -u -p -r1.28 number.module
--- modules/field/modules/number/number.module	12 Nov 2009 21:03:36 -0000	1.28
+++ modules/field/modules/number/number.module	30 Nov 2009 02:27:47 -0000
@@ -7,6 +7,19 @@
  */
 
 /**
+ * Implement hook_help().
+ */
+function number_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#number':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Number module defines various numeric field types for the Field module. (See the <a href="@field-help">Field module help page</a> for more information about fields.)', array('@field-help' => url('admin/help/field'))) . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implement hook_theme_alter().
  */
 function number_theme_registry_alter(&$theme_registry) {
Index: modules/field/modules/options/options.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/modules/options/options.module,v
retrieving revision 1.18
diff -u -p -r1.18 options.module
--- modules/field/modules/options/options.module	20 Nov 2009 05:14:13 -0000	1.18
+++ modules/field/modules/options/options.module	30 Nov 2009 02:27:48 -0000
@@ -7,6 +7,19 @@
  */
 
 /**
+ * Implement hook_help().
+ */
+function options_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#options':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Options module defines checkbox, selection, and other input widgets for the Field module. (See the <a href="@field-help">Field module help page</a> for more information about fields.)', array('@field-help' => url('admin/help/field'))) . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implement hook_theme().
  */
 function options_theme() {
Index: modules/field/modules/text/text.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/modules/text/text.module,v
retrieving revision 1.39
diff -u -p -r1.39 text.module
--- modules/field/modules/text/text.module	29 Nov 2009 20:45:17 -0000	1.39
+++ modules/field/modules/text/text.module	30 Nov 2009 02:27:48 -0000
@@ -7,6 +7,19 @@
  */
 
 /**
+ * Implement hook_help().
+ */
+function text_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#text':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Text module defines various simple text field types for the Field module. (See the <a href="@field-help">Field module help page</a> for more information about fields.)', array('@field-help' => url('admin/help/field'))) . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implement hook_field_info().
  *
  * Field settings:
