? node_to_posts.patch
? node_to_posts_2.patch
? sites/all/modules
? sites/default/settings.php
Index: includes/form.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/form.inc,v
retrieving revision 1.243
diff -u -p -r1.243 form.inc
--- includes/form.inc	11 Nov 2007 16:14:45 -0000	1.243
+++ includes/form.inc	12 Nov 2007 16:49:32 -0000
@@ -2149,7 +2149,7 @@ function form_clean_id($id = NULL, $flus
  * @code
  * function batch_test_finished($success, $results, $operations) {
  *   if ($success) {
- *     $message = format_plural(count($results), 'One node processed.', '@count nodes processed.');
+ *     $message = format_plural(count($results), 'One post processed.', '@count posts processed.');
  *   }
  *   else {
  *     $message = t('Finished with an error.');
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.601
diff -u -p -r1.601 comment.module
--- modules/comment/comment.module	9 Nov 2007 07:46:10 -0000	1.601
+++ modules/comment/comment.module	12 Nov 2007 16:49:32 -0000
@@ -761,8 +761,8 @@ function comment_save($edit) {
     }
   }
   else {
-    watchdog('content', 'Comment: unauthorized comment submitted or comment submitted to a closed node %subject.', array('%subject' => $edit['subject']), WATCHDOG_WARNING);
-    drupal_set_message(t('Comment: unauthorized comment submitted or comment submitted to a closed node %subject.', array('%subject' => $edit['subject'])), 'error');
+    watchdog('content', 'Comment: unauthorized comment submitted or comment submitted to a closed post %subject.', array('%subject' => $edit['subject']), WATCHDOG_WARNING);
+    drupal_set_message(t('Comment: unauthorized comment submitted or comment submitted to a closed post %subject.', array('%subject' => $edit['subject'])), 'error');
     return FALSE;
   }
 }
Index: modules/node/node.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.admin.inc,v
retrieving revision 1.8
diff -u -p -r1.8 node.admin.inc
--- modules/node/node.admin.inc	24 Oct 2007 14:38:38 -0000	1.8
+++ modules/node/node.admin.inc	12 Nov 2007 16:49:32 -0000
@@ -57,8 +57,8 @@ function node_configure_validate($form, 
  * Menu callback: confirm rebuilding of permissions.
  */
 function node_configure_rebuild_confirm() {
-  return confirm_form(array(), t('Are you sure you want to rebuild node permissions on the site?'),
-                  'admin/content/node-settings', t('This will wipe all current node permissions and rebuild them based on current settings. Rebuilding the permissions may take a while so please be patient. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
+  return confirm_form(array(), t('Are you sure you want to rebuild the permissions on site content?'),
+                  'admin/content/node-settings', t('This action rebuilds all permissions on site content, and may be a lengthy process. This action cannot be undone.'), t('Rebuild permissions'), t('Cancel'));
 }
 
 /**
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.898
diff -u -p -r1.898 node.module
--- modules/node/node.module	5 Nov 2007 15:14:54 -0000	1.898
+++ modules/node/node.module	12 Nov 2007 16:49:32 -0000
@@ -2108,7 +2108,7 @@ function node_access_rebuild($batch_mode
   }
 
   if (!isset($batch)) {
-    drupal_set_message(t('The node access table has been rebuilt.'));
+    drupal_set_message(t('Content permissions have been rebuilt.'));
     node_access_needs_rebuild(FALSE);
     cache_clear_all();
   }
@@ -2498,7 +2498,7 @@ function node_unpublish_by_keyword_actio
   $form['keywords'] = array(
     '#title' => t('Keywords'),
     '#type' => 'textarea',
-    '#description' => t('The node will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc.". Character sequences are case-sensitive.'),
+    '#description' => t('The post will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc.". Character sequences are case-sensitive.'),
     '#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '',
   );
   return $form;
Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.6
diff -u -p -r1.6 node.pages.inc
--- modules/node/node.pages.inc	22 Oct 2007 10:37:14 -0000	1.6
+++ modules/node/node.pages.inc	12 Nov 2007 16:49:32 -0000
@@ -407,7 +407,7 @@ function node_form_submit($form, &$form_
   else {
     // In the unlikely case something went wrong on save, the node will be
     // rebuilt and node form redisplayed the same way as in preview.
-    drupal_set_message(t('The node could not be saved.'), 'error');
+    drupal_set_message(t('The post could not be saved.'), 'error');
   }
 }
 
Index: modules/taxonomy/taxonomy.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.admin.inc,v
retrieving revision 1.6
diff -u -p -r1.6 taxonomy.admin.inc
--- modules/taxonomy/taxonomy.admin.inc	8 Nov 2007 16:23:17 -0000	1.6
+++ modules/taxonomy/taxonomy.admin.inc	12 Nov 2007 16:49:32 -0000
@@ -95,12 +95,12 @@ function taxonomy_form_vocabulary(&$form
   $form['multiple'] = array('#type' => 'checkbox',
     '#title' => t('Multiple select'),
     '#default_value' => $edit['multiple'],
-    '#description' => t('Allows nodes to have more than one term from this vocabulary (always true for free tagging).'),
+    '#description' => t('Allows posts to have more than one term from this vocabulary (always true for free tagging).'),
   );
   $form['required'] = array('#type' => 'checkbox',
     '#title' => t('Required'),
     '#default_value' => $edit['required'],
-    '#description' => t('If enabled, every node <strong>must</strong> have at least one term in this vocabulary.'),
+    '#description' => t('If enabled, every post <strong>must</strong> have at least one term in this vocabulary.'),
   );
   $form['weight'] = array('#type' => 'weight',
     '#title' => t('Weight'),
Index: modules/upload/upload.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/upload/upload.admin.inc,v
retrieving revision 1.3
diff -u -p -r1.3 upload.admin.inc
--- modules/upload/upload.admin.inc	17 Oct 2007 21:47:14 -0000	1.3
+++ modules/upload/upload.admin.inc	12 Nov 2007 16:49:32 -0000
@@ -78,7 +78,7 @@ function upload_admin_settings() {
     '#title' => t('List files by default'),
     '#default_value' => variable_get('upload_list_default', 1),
     '#options' => array(0 => t('No'), 1 => t('Yes')),
-    '#description' => t('Set whether files attached to nodes are listed or not in the node view by default.'),
+    '#description' => t('Display attached files when viewing a post.'),
   );
 
   $form['settings_general']['upload_extensions_default'] = array(
@@ -149,4 +149,4 @@ function upload_admin_settings() {
   $form['#validate'] = array('upload_admin_settings_validate');
 
   return system_settings_form($form);
-}
\ No newline at end of file
+}
Index: modules/upload/upload.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/upload/upload.module,v
retrieving revision 1.187
diff -u -p -r1.187 upload.module
--- modules/upload/upload.module	25 Oct 2007 09:05:45 -0000	1.187
+++ modules/upload/upload.module	12 Nov 2007 16:49:32 -0000
@@ -13,7 +13,7 @@
 function upload_help($path, $arg) {
   switch ($path) {
     case 'admin/help#upload':
-      $output = '<p>'. t('The upload module allows users to upload files to the site. The ability to upload files to a site is important for members of a community who want to share work. It is also useful to administrators who want to keep uploaded files connected to a node or page.') .'</p>';
+      $output = '<p>'. t('The upload module allows users to upload files to the site. The ability to upload files to a site is important for members of a community who want to share work. It is also useful to administrators who want to keep uploaded files connected to posts.') .'</p>';
       $output .= '<p>'. t('Users with the upload files permission can upload attachments. You can choose which post types can take attachments on the content types settings page. Each user role can be customized for the file size of uploads, and the dimension of image files.') .'</p>';
       $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@upload">Upload page</a>.', array('@upload' => 'http://drupal.org/handbook/modules/upload/')) .'</p>';
       return $output;
