Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.1093 diff -u -p -r1.1093 node.module --- modules/node/node.module 6 Aug 2009 05:05:59 -0000 1.1093 +++ modules/node/node.module 7 Aug 2009 00:03:09 -0000 @@ -35,10 +35,23 @@ function node_help($path, $arg) { switch ($path) { case 'admin/help#node': - $output = '

' . t('The node module manages content on your site, and stores all posts (regardless of type) as a "node" . In addition to basic publishing settings, including whether the post has been published, promoted to the site front page, or should remain present (or sticky) at the top of lists, the node module also records basic information about the author of a post. Optional revision control over edits is available. For additional functionality, the node module is often extended by other modules.') . '

'; - $output .= '

' . t('Though each post on your site is a node, each post is also of a particular content type. Content types are used to define the characteristics of a post, including the title and description of the fields displayed on its add and edit pages. Each content type may have different default settings for Publishing options and other workflow controls. By default, the two content types in a standard Drupal installation are Page and Story. Use the content types page to add new or edit existing content types. Additional content types also become available as you enable additional core, contributed and custom modules.', array('@content-type' => url('admin/structure/types'))) . '

'; - $output .= '

' . t('The administrative content page allows you to review and manage your site content. The node module makes a number of permissions available for each content type, which may be set by role on the permissions page.', array('@content' => url('admin/content'), '@permissions' => url('admin/settings/permissions'))) . '

'; - $output .= '

' . t('For more information, see the online handbook entry for Node module.', array('@node' => 'http://drupal.org/handbook/modules/node/')) . '

'; + $output = '

' . t('About') . '

'; + $output .= '

' . t('The node module manages the creation, editing, deletion and display of all content on your site.') . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Publishing content') . '
'; + $output .= '

' . t('When new content is created, the node module records basic information about the content item including the author, date of creation and the type of content. It also tracks the publishing options which define whether or not the content is: published, promoted to the front page of the site, and is sticky at the top of content lists. Revision control of content edits is also available. Default settings can be configured for each type of content on your site.', array('@content-type' => url('admin/structure/types'))) . '

'; + $output .= '
' . t('Administering content') . '
'; + $output .= '
' . t('The administrative content page allows you to review and manage your site content.', array('@content' => url('admin/content'))) . '
'; + $output .= '
' . t('User permissions') . '
'; + $output .= '

' . t('The node module makes a number of permissions available for each content type, which may be set by role on the permissions page.', array('@permissions' => url('admin/settings/permissions'))) . '

'; + $output .= '
'; + $output .= '

' . t('Theme File(s)') . '

'; + $output .= ''; + $output .= '

' . t('Development') . '

'; + $output .= ''; + $output .= '

' . t('Handbook Documentation') . '

'; + $output .= ''; return $output; case 'admin/content': return ' '; // Return a non-null value so that the 'more help' link is shown.