Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.190
diff -u -p -r1.190 install.php
--- install.php	30 Jul 2009 19:32:19 -0000	1.190
+++ install.php	10 Aug 2009 21:40:54 -0000
@@ -674,7 +674,7 @@ function install_display_output($output,
     // Let the theming function know when every step of the installation has
     // been completed.
     $active_task = $install_state['installation_finished'] ? NULL : $install_state['active_task'];
-    drupal_add_region_content('left', theme_task_list(install_tasks_to_display($install_state), $active_task));
+    drupal_add_region_content('sidebar_first', theme_task_list(install_tasks_to_display($install_state), $active_task));
   }
   print theme($install_state['database_tables_exist'] ? 'maintenance_page' : 'install_page', $output);
   exit;
Index: update.php
===================================================================
RCS file: /cvs/drupal/drupal/update.php,v
retrieving revision 1.294
diff -u -p -r1.294 update.php
--- update.php	3 Aug 2009 19:37:37 -0000	1.294
+++ update.php	10 Aug 2009 21:40:55 -0000
@@ -240,7 +240,7 @@ function update_task_list($active = NULL
     'finished' => 'Review log',
   );
 
-  drupal_add_region_content('left', theme('task_list', $tasks, $active));
+  drupal_add_region_content('sidebar_first', theme('task_list', $tasks, $active));
 }
 
 /**
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.956
diff -u -p -r1.956 common.inc
--- includes/common.inc	8 Aug 2009 20:52:32 -0000	1.956
+++ includes/common.inc	10 Aug 2009 21:41:09 -0000
@@ -3826,7 +3826,7 @@ function drupal_set_page_content($conten
  *   A string or array representing the content of a page. The array consists of
  *   the following keys:
  *   - #type: Value is always 'page'. This pushes the theming through page.tpl.php (required).
- *   - #show_blocks: A marker which suppresses left/right regions if FALSE (optional).
+ *   - #show_blocks: A marker which suppresses sidebar regions if FALSE (optional).
  *   - #show_messages: Suppress drupal_get_message() items. Used by Batch API (optional).
  *
  * @see hook_page_alter()
@@ -3841,7 +3841,7 @@ function drupal_render_page($page) {
     $page = element_info('page');
   }
   // Modules alter the $page as needed. Blocks are populated into regions like
-  // 'left', 'footer', etc.
+  // 'sidebar_first', 'footer', etc.
   drupal_alter('page', $page);
 
   return drupal_render($page);
Index: modules/block/block.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.api.php,v
retrieving revision 1.4
diff -u -p -r1.4 block.api.php
--- modules/block/block.api.php	8 Jun 2009 09:23:50 -0000	1.4
+++ modules/block/block.api.php	10 Aug 2009 21:41:09 -0000
@@ -57,7 +57,7 @@ function hook_block_list() {
     'info' => t('An exciting block provided by Mymodule.'),
     'weight' => 0,
     'status' => 1,
-    'region' => 'left',
+    'region' => 'sidebar_first',
     // BLOCK_CACHE_PER_ROLE will be assumed for block 0.
   );
 
Index: modules/system/system.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.api.php,v
retrieving revision 1.59
diff -u -p -r1.59 system.api.php
--- modules/system/system.api.php	8 Aug 2009 22:52:59 -0000	1.59
+++ modules/system/system.api.php	10 Aug 2009 21:41:14 -0000
@@ -304,9 +304,9 @@ function hook_css_alter(&$css) {
  * The $page array contains top level elements for each block region:
  * @code
  *   $page['header']
- *   $page['left']
+ *   $page['sidebar_first']
  *   $page['content']
- *   $page['right']
+ *   $page['sidebar_second']
  *   $page['footer']
  * @endcode
  *
@@ -330,8 +330,8 @@ function hook_css_alter(&$css) {
  *
  * Blocks may be referenced by their module/delta pair within a region:
  * @code
- *   // The login block in the left sidebar region.
- *   $page['left']['user-login']['#block'];
+ *   // The login block in the first sidebar region.
+ *   $page['sidebar_first']['user-login']['#block'];
  * @endcode
  *
  * @param $page
Index: profiles/expert/expert.profile
===================================================================
RCS file: /cvs/drupal/drupal/profiles/expert/expert.profile,v
retrieving revision 1.11
diff -u -p -r1.11 expert.profile
--- profiles/expert/expert.profile	28 Jul 2009 12:13:47 -0000	1.11
+++ profiles/expert/expert.profile	10 Aug 2009 21:41:14 -0000
@@ -40,7 +40,7 @@ function expert_profile_site_setup(&$ins
       'theme' => 'garland',
       'status' => 1,
       'weight' => 0,
-      'region' => 'left',
+      'region' => 'sidebar_first',
       'pages' => '',
       'cache' => -1,
     ),
@@ -50,7 +50,7 @@ function expert_profile_site_setup(&$ins
       'theme' => 'garland',
       'status' => 1,
       'weight' => 0,
-      'region' => 'left',
+      'region' => 'sidebar_first',
       'pages' => '',
       'cache' => -1,
     ),
@@ -60,7 +60,7 @@ function expert_profile_site_setup(&$ins
       'theme' => 'garland',
       'status' => 1,
       'weight' => 1,
-      'region' => 'left',
+      'region' => 'sidebar_first',
       'pages' => '',
       'cache' => -1,
     ),
