Index: modules/comment/comment.test =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.test,v retrieving revision 1.43 diff -u -p -r1.43 comment.test --- modules/comment/comment.test 9 Aug 2009 00:55:50 -0000 1.43 +++ modules/comment/comment.test 21 Aug 2009 09:05:27 -0000 @@ -176,7 +176,7 @@ class CommentHelperCase extends DrupalWe $edit['1[access comments]'] = $access_comments; $edit['1[post comments]'] = $post_comments; $edit['1[post comments without approval]'] = $without_approval; - $this->drupalPost('admin/settings/permissions', $edit, t('Save permissions')); + $this->drupalPost('admin/config/people/permissions', $edit, t('Save permissions')); $this->assertText(t('The changes have been saved.'), t('Anonymous user comments ' . ($access_comments ? 'access comments' : 'not access comments'). '.')); } Index: modules/contact/contact.test =================================================================== RCS file: /cvs/drupal/drupal/modules/contact/contact.test,v retrieving revision 1.28 diff -u -p -r1.28 contact.test --- modules/contact/contact.test 31 Jul 2009 19:01:01 -0000 1.28 +++ modules/contact/contact.test 21 Aug 2009 09:05:27 -0000 @@ -289,7 +289,7 @@ class ContactSitewideTestCase extends Dr $edit[$rid . '[' . $name . ']'] = $value; } - $this->drupalPost('admin/settings/permissions', $edit, t('Save permissions')); + $this->drupalPost('admin/config/people/permissions', $edit, t('Save permissions')); $this->assertText(t('The changes have been saved.'), t(' [permission] Saved changes.')); } } Index: modules/menu/menu.test =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.test,v retrieving revision 1.19 diff -u -p -r1.19 menu.test --- modules/menu/menu.test 3 Aug 2009 03:04:33 -0000 1.19 +++ modules/menu/menu.test 21 Aug 2009 09:05:27 -0000 @@ -249,7 +249,7 @@ class MenuTestCase extends DrupalWebTest * @param string $menu_name Menu name. */ function addInvalidMenuLink($menu_name = 'navigation') { - foreach (array('-&-', 'admin/settings/permissions') as $link_path) { + foreach (array('-&-', 'admin/config/people/permissions') as $link_path) { $edit = array( 'menu[link_path]' => $link_path, 'menu[link_title]' => 'title', Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.1102 diff -u -p -r1.1102 node.module --- modules/node/node.module 20 Aug 2009 09:47:04 -0000 1.1102 +++ modules/node/node.module 21 Aug 2009 09:05:27 -0000 @@ -52,7 +52,7 @@ function node_help($path, $arg) { 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('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/config/people/permissions'))) . '

'; $output .= '

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

'; return $output; Index: modules/profile/profile.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.admin.inc,v retrieving revision 1.26 diff -u -p -r1.26 profile.admin.inc --- modules/profile/profile.admin.inc 31 Jul 2009 19:01:02 -0000 1.26 +++ modules/profile/profile.admin.inc 21 Aug 2009 09:05:27 -0000 @@ -27,8 +27,8 @@ function profile_admin_overview() { $form[$field->fid]['type'] = array('#markup' => $field->type); $form[$field->fid]['category'] = array('#type' => 'select', '#default_value' => $field->category, '#options' => array()); $form[$field->fid]['weight'] = array('#type' => 'weight', '#default_value' => $field->weight); - $form[$field->fid]['edit'] = array('#markup' => l(t('edit'), "admin/settings/profile/edit/$field->fid")); - $form[$field->fid]['delete'] = array('#markup' => l(t('delete'), "admin/settings/profile/delete/$field->fid")); + $form[$field->fid]['edit'] = array('#markup' => l(t('edit'), "admin/config/people/profile/edit/$field->fid")); + $form[$field->fid]['delete'] = array('#markup' => l(t('delete'), "admin/config/people/profile/delete/$field->fid")); } // Add the category combo boxes @@ -55,7 +55,7 @@ function profile_admin_overview() { $addnewfields = '

' . t('Add new field') . '

'; $addnewfields .= ''; $form['addnewfields'] = array('#markup' => $addnewfields); @@ -219,7 +219,7 @@ function profile_field_form(&$form_state $form['fields']['category'] = array('#type' => 'textfield', '#title' => t('Category'), '#default_value' => $edit['category'], - '#autocomplete_path' => 'admin/settings/profile/autocomplete', + '#autocomplete_path' => 'admin/config/people/profile/autocomplete', '#description' => t('The category the new field should be part of. Categories are used to group fields logically. An example category is "Personal information".'), '#required' => TRUE, ); @@ -361,7 +361,7 @@ function profile_field_form_submit($form ->fields($values) ->execute(); drupal_set_message(t('The field has been created.')); - watchdog('profile', 'Profile field %field added under category %category.', array('%field' => $form_state['values']['title'], '%category' => $form_state['values']['category']), WATCHDOG_NOTICE, l(t('view'), 'admin/settings/profile')); + watchdog('profile', 'Profile field %field added under category %category.', array('%field' => $form_state['values']['title'], '%category' => $form_state['values']['category']), WATCHDOG_NOTICE, l(t('view'), 'admin/config/people/profile')); } else { db_update('profile_field') @@ -373,7 +373,7 @@ function profile_field_form_submit($form cache_clear_all(); menu_rebuild(); - $form_state['redirect'] = 'admin/settings/profile'; + $form_state['redirect'] = 'admin/config/people/profile'; return; } @@ -390,8 +390,8 @@ function profile_field_delete(&$form_sta $form['title'] = array('#type' => 'value', '#value' => $field->title); return confirm_form($form, - t('Are you sure you want to delete the field %field?', array('%field' => $field->title)), 'admin/settings/profile', - t('This action cannot be undone. If users have entered values into this field in their profile, these entries will also be deleted. If you want to keep the user-entered data, instead of deleting the field you may wish to edit this field and change it to a hidden profile field so that it may only be accessed by administrators.', array('@edit-field' => url('admin/settings/profile/edit/' . $fid))), + t('Are you sure you want to delete the field %field?', array('%field' => $field->title)), 'admin/config/people/profile', + t('This action cannot be undone. If users have entered values into this field in their profile, these entries will also be deleted. If you want to keep the user-entered data, instead of deleting the field you may wish to edit this field and change it to a hidden profile field so that it may only be accessed by administrators.', array('@edit-field' => url('admin/config/people/profile/edit/' . $fid))), t('Delete'), t('Cancel')); } @@ -409,9 +409,9 @@ function profile_field_delete_submit($fo cache_clear_all(); drupal_set_message(t('The field %field has been deleted.', array('%field' => $form_state['values']['title']))); - watchdog('profile', 'Profile field %field deleted.', array('%field' => $form_state['values']['title']), WATCHDOG_NOTICE, l(t('view'), 'admin/settings/profile')); + watchdog('profile', 'Profile field %field deleted.', array('%field' => $form_state['values']['title']), WATCHDOG_NOTICE, l(t('view'), 'admin/config/people/profile')); - $form_state['redirect'] = 'admin/settings/profile'; + $form_state['redirect'] = 'admin/config/people/profile'; return; } Index: modules/profile/profile.module =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v retrieving revision 1.266 diff -u -p -r1.266 profile.module --- modules/profile/profile.module 12 Aug 2009 12:36:04 -0000 1.266 +++ modules/profile/profile.module 21 Aug 2009 09:05:27 -0000 @@ -43,7 +43,7 @@ function profile_help($path, $arg) { $output .= '
  • ' . t('date') . '
  • '; $output .= '

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

    '; return $output; - case 'admin/settings/profile': + case 'admin/config/people/profile': return '

    ' . t("This page displays a list of the existing custom profile fields to be displayed on a user's My Account page. To provide structure, similar or related fields may be placed inside a category. To add a new category (or edit an existing one), edit a profile field and provide a new category name. Remember that your changes will not be saved until you click the Save configuration button at the bottom of the page.") . '

    '; } } @@ -82,34 +82,34 @@ function profile_menu() { 'access arguments' => array('access user profiles'), 'type' => MENU_SUGGESTED_ITEM, ); - $items['admin/settings/profile'] = array( + $items['admin/config/people/profile'] = array( 'title' => 'Profiles', 'description' => 'Create customizable fields for your users.', 'page callback' => 'drupal_get_form', 'page arguments' => array('profile_admin_overview'), 'access arguments' => array('administer users'), ); - $items['admin/settings/profile/add'] = array( + $items['admin/config/people/profile/add'] = array( 'title' => 'Add field', 'page callback' => 'drupal_get_form', 'page arguments' => array('profile_field_form'), 'access arguments' => array('administer users'), 'type' => MENU_CALLBACK, ); - $items['admin/settings/profile/autocomplete'] = array( + $items['admin/config/people/profile/autocomplete'] = array( 'title' => 'Profile category autocomplete', 'page callback' => 'profile_admin_settings_autocomplete', 'access arguments' => array('administer users'), 'type' => MENU_CALLBACK, ); - $items['admin/settings/profile/edit'] = array( + $items['admin/config/people/profile/edit'] = array( 'title' => 'Edit field', 'page callback' => 'drupal_get_form', 'page arguments' => array('profile_field_form'), 'access arguments' => array('administer users'), 'type' => MENU_CALLBACK, ); - $items['admin/settings/profile/delete'] = array( + $items['admin/config/people/profile/delete'] = array( 'title' => 'Delete field', 'page callback' => 'drupal_get_form', 'page arguments' => array('profile_field_delete'), @@ -150,7 +150,7 @@ function profile_block_configure($delta '#title' => t('Profile fields to display'), '#default_value' => variable_get('profile_block_author_fields', array()), '#options' => $fields, - '#description' => t('Select which profile fields you wish to display in the block. Only fields designated as public in the profile field configuration are available.', array('@profile-admin' => url('admin/settings/profile'))), + '#description' => t('Select which profile fields you wish to display in the block. Only fields designated as public in the profile field configuration are available.', array('@profile-admin' => url('admin/config/people/profile'))), ); return $form; } Index: modules/profile/profile.test =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.test,v retrieving revision 1.18 diff -u -p -r1.18 profile.test --- modules/profile/profile.test 31 Jul 2009 19:01:02 -0000 1.18 +++ modules/profile/profile.test 21 Aug 2009 09:05:27 -0000 @@ -36,7 +36,7 @@ class ProfileTestCase extends DrupalWebT $edit['category'] = $category; $edit['explanation'] = $this->randomName(50); - $this->drupalPost('admin/settings/profile/add/' . $type, $edit, t('Save field')); + $this->drupalPost('admin/config/people/profile/add/' . $type, $edit, t('Save field')); $fid = db_query("SELECT fid FROM {profile_field} WHERE title = :title", array(':title' => $title))->fetchField(); $this->assertTrue($fid, t('New Profile field has been entered in the database')); @@ -107,8 +107,8 @@ class ProfileTestCase extends DrupalWebT * The field to be deleted. */ function deleteProfileField($field) { - $this->drupalPost('admin/settings/profile/delete/' . $field['fid'], array(), t('Delete')); - $this->drupalGet('admin/settings/profile'); + $this->drupalPost('admin/config/people/profile/delete/' . $field['fid'], array(), t('Delete')); + $this->drupalGet('admin/config/people/profile'); $this->assertNoText($field['title'], t('Checking deleted field %title', array('%title' => $field['title']))); } } Index: modules/search/search.test =================================================================== RCS file: /cvs/drupal/drupal/modules/search/search.test,v retrieving revision 1.27 diff -u -p -r1.27 search.test --- modules/search/search.test 31 Jul 2009 19:01:02 -0000 1.27 +++ modules/search/search.test 21 Aug 2009 09:05:27 -0000 @@ -475,7 +475,7 @@ class SearchCommentTestCase extends Drup // seems to be added via node links. DRUPAL_ANONYMOUS_RID . '[post comments]' => 1, ); - $this->drupalPost('admin/settings/permissions', $edit, t('Save permissions')); + $this->drupalPost('admin/config/people/permissions', $edit, t('Save permissions')); // Create a node. $node = $this->drupalCreateNode(array('type' => 'article')); Index: modules/statistics/statistics.module =================================================================== RCS file: /cvs/drupal/drupal/modules/statistics/statistics.module,v retrieving revision 1.310 diff -u -p -r1.310 statistics.module --- modules/statistics/statistics.module 31 Jul 2009 19:01:02 -0000 1.310 +++ modules/statistics/statistics.module 21 Aug 2009 09:05:27 -0000 @@ -14,7 +14,7 @@ function statistics_help($path, $arg) { case 'admin/help#statistics': $output = '

    ' . t('The statistics module keeps track of numerous site usage statistics, including the number of times, and from where, each of your posts is viewed. These statistics are useful in determining how users are interacting with each other and with your site, and are required for the display of some Drupal blocks.') . '

    '; $output .= '

    ' . t('The statistics module provides:') . '

    '; - $output .= '