? .DS_Store ? rewrite_permission_descriptions_00.patch ? rewrite_theme_pages_00.patch ? rewrite_theme_pages_01.patch ? rewrite_user_help_00.patch ? modules/.DS_Store ? sites/.DS_Store ? sites/default/files ? sites/default/modules ? sites/default/private ? sites/default/settings.php Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.1075 diff -u -p -r1.1075 user.module --- modules/user/user.module 1 Nov 2009 21:26:44 -0000 1.1075 +++ modules/user/user.module 2 Nov 2009 11:24:44 -0000 @@ -2726,27 +2726,17 @@ function user_help($path, $arg) { switch ($path) { case 'admin/help#user': - $output = '

' . t('The user module allows users to register, login, and log out. Users benefit from being able to sign on because it associates content they create with their account and allows various permissions to be set for their roles. The user module supports user roles which establish fine grained permissions allowing each role to do only what the administrator wants them to. Each user is assigned to one or more roles. By default there are two roles anonymous - a user who has not logged in, and authenticated a user who has signed up and who has been authorized.') . '

'; - $output .= '

' . t("Users can use their own name or handle and can specify personal configuration settings through their individual My account page. Users must authenticate by supplying a local username and password or through their OpenID, an optional and secure method for logging into many websites with a single username and password. In some configurations, users may authenticate using a username and password from another Drupal site, or through some other site-specific mechanism.") . '

'; - $output .= '

' . t('A visitor accessing your website is assigned a unique ID, or session ID, which is stored in a cookie. The cookie does not contain personal information, but acts as a key to retrieve information from your site. Users should have cookies enabled in their web browser when using your site.') . '

'; - $output .= '

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

'; - return $output; - case 'admin/people/create': - return '

' . t("This web page allows administrators to register new users. Users' e-mail addresses and usernames must be unique.") . '

'; + return '

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

'; case 'admin/config/people/permissions': - return '

' . t('Permissions let you control what users can do and see on your site. You can define a specific set of permissions for each role. (See the Roles page to create a role). Two important roles to consider are Authenticated Users and Administrators. Any permissions granted to the Authenticated Users role will be given to any user who can log into your site. You can make any role the Administrator role for the site, meaning this will be granted all new permissions automatically. You can do this on the User Settings page. You should be careful to ensure that only trusted users are given this access and level of control of your site.', array('@role' => url('admin/config/people/roles'), '@settings' => url('admin/config/people/accounts'))) . '

'; + return '

' . t('Permissions allow users to do or view certain things. You can define a specific set of permissions for each role. Anonymous users are people who are not logged in. Permissions granted to Authenticated Users will be given to any user who logs in.', array('@role' => url('admin/config/people/roles'))) . '

'; case 'admin/config/people/roles': - return t('

Roles allow you to fine tune the security and administration of Drupal. A role defines a group of users that have certain privileges as defined in user permissions. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the role names of the various roles. To delete a role choose "edit".

By default, Drupal comes with two user roles:

- ', array('@permissions' => url('admin/config/people/permissions'))); - case 'admin/config/people/accounts/fields': - return '

' . t('This form lets administrators add, edit, and arrange fields for storing user data.') . '

'; - case 'admin/config/people/accounts/display': - return '

' . t('This form lets administrators configure how fields should be displayed when rendering a user profile page.') . '

'; - case 'admin/people/search': - return '

' . t('Enter a simple pattern ("*" may be used as a wildcard match) to search for a username or e-mail address. For example, one may search for "br" and Drupal might return "brian", "brad", and "brenda@example.com".') . '

'; + return t('

Roles allow you to fine tune the security and administration of your site. A role defines a set of permissions you can give to users. Examples of roles include: anonymous user, authenticated user, moderator and administrator.

Your site has at least these roles: +

+
Anonymous user
+
Used for users that don\'t have a user account or that are not logged in.
+
Authenticated user
+
Automatically granted to all logged in users.
+

', array('@permissions' => url('admin/config/people/permissions'))); } }