? book_default.patch
Index: modules/book/book.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.install,v
retrieving revision 1.22
diff -u -p -r1.22 book.install
--- modules/book/book.install	15 May 2008 21:19:24 -0000	1.22
+++ modules/book/book.install	7 Jul 2008 11:24:29 -0000
@@ -25,10 +25,10 @@ function book_uninstall() {
 function _book_install_type_create() {
   // Create an additional node type.
   $book_node_type = array(
-    'type' => 'book',
-    'name' => t('Book page'),
+    'type' => 'page',
+    'name' => t('Page'),
     'module' => 'node',
-    'description' => t('A <em>book page</em> is a page of content, organized into a collection of related entries collectively known as a <em>book</em>. A <em>book page</em> automatically displays links to adjacent pages, providing a simple navigation system for organizing and reviewing structured content.'),
+    'description' => t('A <em>page</em>, has default settings suitable for posting information that rarely changes, such as an <em>About us</em> section. Pages do not appear on the front page by default, and can be organized into hiearchies called <em>books</em>, providing a simple navigation system for organizing and reviewing structured content.'),
     'custom' => TRUE,
     'modified' => TRUE,
     'locked' => FALSE,
@@ -39,8 +39,8 @@ function _book_install_type_create() {
   // Default to not promoted.
   variable_set('node_options_book', array('status'));
   // Use this default type for adding content to books.
-  variable_set('book_allowed_types', array('book'));
-  variable_set('book_child_type', 'book');
+  variable_set('book_allowed_types', array('page'));
+  variable_set('book_child_type', 'page');
 }
 
 /**
Index: modules/book/book.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.test,v
retrieving revision 1.3
diff -u -p -r1.3 book.test
--- modules/book/book.test	15 May 2008 21:19:24 -0000	1.3
+++ modules/book/book.test	7 Jul 2008 11:24:29 -0000
@@ -142,13 +142,13 @@ class BookTestCase extends DrupalWebTest
     $edit['book[bid]'] = $book_nid;
 
     if ($parent !== NULL) {
-      $this->drupalPost('node/add/book', $edit, t('Change book (update list of parents)'));
+      $this->drupalPost('node/add/page', $edit, t('Change book (update list of parents)'));
 
       $edit['book[plid]'] = $parent;
       $this->drupalPost(NULL, $edit, t('Save'));
     }
     else {
-      $this->drupalPost('node/add/book', $edit, t('Save'));
+      $this->drupalPost('node/add/page', $edit, t('Save'));
     }
 
     // Check to make sure the book node was created.
Index: profiles/default/default.profile
===================================================================
RCS file: /cvs/drupal/drupal/profiles/default/default.profile,v
retrieving revision 1.26
diff -u -p -r1.26 default.profile
--- profiles/default/default.profile	24 Jun 2008 21:26:48 -0000	1.26
+++ profiles/default/default.profile	7 Jul 2008 11:24:29 -0000
@@ -8,7 +8,7 @@
  *   An array of modules to enable.
  */
 function default_profile_modules() {
-  return array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog');
+  return array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog', 'book');
 }
 
 /**
@@ -96,21 +96,10 @@ function default_profile_tasks(&$task, $
   // documentation at: http://api.drupal.org/api/HEAD/function/hook_node_info.
   $types = array(
     array(
-      'type' => 'page',
-      'name' => st('Page'),
-      'module' => 'node',
-      'description' => st("A <em>page</em>, similar in form to an <em>article</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page."),
-      'custom' => TRUE,
-      'modified' => TRUE,
-      'locked' => FALSE,
-      'help' => '',
-      'min_word_count' => '',
-    ),
-    array(
       'type' => 'article',
       'name' => st('Article'),
       'module' => 'node',
-      'description' => st("An <em>article</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with an <em>article</em> entry. By default, an <em>article</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments."),
+      'description' => st("An <em>article</em>, has default settings suitable for posting press releases, site announcements, and or blog entries. Articles are automatically featured on the site's initial home page and allow tagging and comments by default."),
       'custom' => TRUE,
       'modified' => TRUE,
       'locked' => FALSE,
