? .svn ? xmlsitemap_custom/.svn ? xmlsitemap_engines/.svn ? xmlsitemap_engines/tests/.svn ? xmlsitemap_menu/.svn ? xmlsitemap_node/.svn ? xmlsitemap_taxonomy/.svn ? xmlsitemap_user/.svn ? xsl/.svn Index: xmlsitemap.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap.install,v retrieving revision 1.37 diff -u -r1.37 xmlsitemap.install --- xmlsitemap.install 29 Apr 2010 16:19:09 -0000 1.37 +++ xmlsitemap.install 11 May 2010 20:48:57 -0000 @@ -29,7 +29,7 @@ $requirements['xmlsitemap_access'] = array( 'title' => $t('XML sitemap anonymous content access'), 'value' => $t('Access denied'), - 'description' => $t('In order to allow search engines to view the XML sitemap and content on your site, the anonymous user role must have the %permission permission.', array('@perm-link' => url('admin/config/people/permissions/' . DRUPAL_ANONYMOUS_RID, array('fragment' => 'module-node')), '%permission' => 'access content')), + 'description' => $t('In order to allow search engines to view the XML sitemap and content on your site, the anonymous user role must have the %permission permission.', array('@perm-link' => url('admin/people/permissions/' . DRUPAL_ANONYMOUS_RID, array('fragment' => 'module-node')), '%permission' => 'access content')), 'severity' => REQUIREMENT_ERROR, ); } Index: xmlsitemap_custom/xmlsitemap_custom.test =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_custom/xmlsitemap_custom.test,v retrieving revision 1.8 diff -u -r1.8 xmlsitemap_custom.test --- xmlsitemap_custom/xmlsitemap_custom.test 11 Feb 2010 00:37:21 -0000 1.8 +++ xmlsitemap_custom/xmlsitemap_custom.test 11 May 2010 20:48:58 -0000 @@ -37,7 +37,7 @@ $this->assertNoSitemapLink(array('type' => 'custom', 'loc' => $edit['loc'])); // Test a path not accessible to anonymous user. - $edit['loc'] = 'admin/config/people/accounts'; + $edit['loc'] = 'admin/people/accounts'; $this->drupalPost(NULL, $edit, t('Save')); $this->assertText(t('The custom link @link is either invalid or it cannot be accessed by anonymous users.', array('@link' => $edit['loc']))); $this->assertNoSitemapLink(array('type' => 'custom', 'loc' => $edit['loc'])); Index: xmlsitemap_user/xmlsitemap_user.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.install,v retrieving revision 1.9 diff -u -r1.9 xmlsitemap_user.install --- xmlsitemap_user/xmlsitemap_user.install 29 Apr 2010 16:19:03 -0000 1.9 +++ xmlsitemap_user/xmlsitemap_user.install 11 May 2010 20:48:59 -0000 @@ -18,7 +18,7 @@ $requirements['xmlsitemap_user_anonymous_permission'] = array( 'title' => $t('XML sitemap user'), 'value' => $t('Anonymous access to user profiles'), - 'description' => $t('In order to list user profile links in the sitemap, the anonymous user must have the access user profiles permission.', array('@perm-link' => url('admin/config/people/permissions', array('fragment' => 'module-user')))), + 'description' => $t('In order to list user profile links in the sitemap, the anonymous user must have the access user profiles permission.', array('@perm-link' => url('admin/people/permissions', array('fragment' => 'module-user')))), 'severity' => REQUIREMENT_ERROR, ); }