? sites.repository
? modules/user/user.module.pdo
? profiles/small_business
Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal/drupal/CHANGELOG.txt,v
retrieving revision 1.268
diff -u -p -r1.268 CHANGELOG.txt
--- CHANGELOG.txt	20 May 2008 20:13:34 -0000	1.268
+++ CHANGELOG.txt	24 Jun 2008 21:44:15 -0000
@@ -738,7 +738,7 @@ Drupal 4.0.0, 2002-06-15
     * Changed output to valid XHTML.
     * Improved multiple sites using the same Drupal database support.
     * Added support for session IDs in URLs instead of cookies.
-    * Made the type of content on the front page configurable.
+    * Made the type of content on the home page configurable.
     * Made each cloud site have its own settings.
     * Modules and themes can now be enabled/disabled using the administration pages.
     * Added URL abstraction for links.
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.772
diff -u -p -r1.772 common.inc
--- includes/common.inc	18 Jun 2008 03:36:23 -0000	1.772
+++ includes/common.inc	24 Jun 2008 21:44:16 -0000
@@ -1226,7 +1226,7 @@ function format_date($timestamp, $type =
  * @param $path
  *   The Drupal path being linked to, such as "admin/content/node", or an
  *   existing URL like "http://drupal.org/".  The special path
- *   '<front>' may also be given and will generate the site's base URL.
+ *   '<home>' may also be given and will generate the site's base URL.
  * @param $options
  *   An associative array of additional options, with the following keys:
  *     'query'
@@ -1326,8 +1326,8 @@ function url($path = NULL, $options = ar
   // Preserve the original path before aliasing.
   $original_path = $path;
 
-  // The special path '<front>' links to the default front page.
-  if ($path == '<front>') {
+  // The special path '<home>' links to the default home page.
+  if ($path == '<home>') {
     $path = '';
   }
   elseif (!empty($path) && !$options['alias']) {
@@ -1404,7 +1404,7 @@ function drupal_attributes($attributes =
  *     - If you provide only the path (e.g. "admin/content/node"), it is
  *       considered an internal link. In this case, it must be a system URL
  *       as the url() function will generate the alias.
- *     - If you provide '<front>', it generates a link to the site's
+ *     - If you provide '<home>', it generates a link to the site's
  *       base URL (again via the url() function).
  *     - If you provide a path, and 'alias' is set to TRUE (see below), it is
  *       used as is.
@@ -1439,7 +1439,7 @@ function l($text, $path, $options = arra
     );
 
   // Append active class.
-  if ($path == $_GET['q'] || ($path == '<front>' && drupal_is_front_page())) {
+  if ($path == $_GET['q'] || ($path == '<home>' && drupal_is_front_page())) {
     if (isset($options['attributes']['class'])) {
       $options['attributes']['class'] .= ' active';
     }
Index: includes/menu.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/menu.inc,v
retrieving revision 1.277
diff -u -p -r1.277 menu.inc
--- includes/menu.inc	24 Jun 2008 21:29:47 -0000	1.277
+++ includes/menu.inc	24 Jun 2008 21:44:16 -0000
@@ -934,7 +934,7 @@ function menu_tree_page_data($menu_name 
           $args = array($menu_name, $item['href']);
           $placeholders = "'%s'";
           if (drupal_is_front_page()) {
-            $args[] = '<front>';
+            $args[] = '<home>';
             $placeholders .= ", '%s'";
           }
           $parents = db_fetch_array(db_query("SELECT p1, p2, p3, p4, p5, p6, p7, p8 FROM {menu_links} WHERE menu_name = '%s' AND link_path IN (" . $placeholders . ")", $args));
@@ -1540,7 +1540,7 @@ function menu_set_active_trail($new_trai
   }
   elseif (!isset($trail)) {
     $trail = array();
-    $trail[] = array('title' => t('Home'), 'href' => '<front>', 'localized_options' => array(), 'type' => 0);
+    $trail[] = array('title' => t('Home'), 'href' => '<home>', 'localized_options' => array(), 'type' => 0);
     $item = menu_get_item();
 
     // Check whether the current item is a local task (displayed as a tab).
@@ -1583,7 +1583,7 @@ function menu_set_active_trail($new_trai
       }
     }
     // Make sure the current page is in the trail (needed for the page title),
-    // but exclude tabs and the front page.
+    // but exclude tabs and the home page.
     $last = count($trail) - 1;
     if ($trail[$last]['href'] != $item['href'] && !(bool)($item['type'] & MENU_IS_LOCAL_TASK) && !drupal_is_front_page()) {
       $trail[] = $item;
@@ -1605,7 +1605,7 @@ function menu_get_active_trail() {
 function menu_get_active_breadcrumb() {
   $breadcrumb = array();
 
-  // No breadcrumb for the front page.
+  // No breadcrumb for the home page.
   if (drupal_is_front_page()) {
     return $breadcrumb;
   }
@@ -1620,7 +1620,7 @@ function menu_get_active_breadcrumb() {
     $end = end($active_trail);
 
     // Don't show a link to the current page in the breadcrumb trail.
-    if ($item['href'] == $end['href'] || ($item['type'] == MENU_DEFAULT_LOCAL_TASK && $end['href'] != '<front>')) {
+    if ($item['href'] == $end['href'] || ($item['type'] == MENU_DEFAULT_LOCAL_TASK && $end['href'] != '<home>')) {
       array_pop($breadcrumb);
     }
   }
@@ -1883,9 +1883,9 @@ function menu_link_save(&$item) {
 
   drupal_alter('menu_link', $item, $menu);
 
-  // This is the easiest way to handle the unique internal path '<front>',
+  // This is the easiest way to handle the unique internal path '<home>',
   // since a path marked as external does not need to match a router path.
-  $item['_external'] = menu_path_is_external($item['link_path'])  || $item['link_path'] == '<front>';
+  $item['_external'] = menu_path_is_external($item['link_path'])  || $item['link_path'] == '<home>';
   // Load defaults.
   $item += array(
     'menu_name' => 'navigation',
@@ -2415,7 +2415,7 @@ function menu_path_is_external($path) {
 /**
  * Checks whether the site is off-line for maintenance.
  *
- * This function will log the current user out and redirect to front page
+ * This function will log the current user out and redirect to home page
  * if the current user has no 'administer site configuration' permission.
  *
  * @return
@@ -2461,7 +2461,7 @@ function menu_valid_path($form_item) {
   $path = $form_item['link_path'];
   // We indicate that a menu administrator is running the menu access check.
   $menu_admin = TRUE;
-  if ($path == '<front>' || menu_path_is_external($path)) {
+  if ($path == '<home>' || menu_path_is_external($path)) {
     $item = array('access' => TRUE);
   }
   elseif (preg_match('/\/\%/', $path)) {
Index: includes/path.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/path.inc,v
retrieving revision 1.23
diff -u -p -r1.23 path.inc
--- includes/path.inc	18 Jun 2008 03:36:23 -0000	1.23
+++ includes/path.inc	24 Jun 2008 21:44:16 -0000
@@ -205,10 +205,10 @@ function drupal_set_title($title = NULL)
 }
 
 /**
- * Check if the current page is the front page.
+ * Check if the current page is the home page.
  *
  * @return
- *   Boolean value: TRUE if the current page is the front page; FALSE if otherwise.
+ *   Boolean value: TRUE if the current page is the home page; FALSE if otherwise.
  */
 function drupal_is_front_page() {
   // As drupal_init_path updates $_GET['q'] with the 'site_frontpage' path,
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.427
diff -u -p -r1.427 theme.inc
--- includes/theme.inc	18 Jun 2008 16:22:13 -0000	1.427
+++ includes/theme.inc	24 Jun 2008 21:44:16 -0000
@@ -1118,7 +1118,7 @@ function theme_links($links, $attributes
       if ($i == $num_links) {
         $class .= ' last';
       }
-      if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<front>' && drupal_is_front_page()))) {
+      if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<home>' && drupal_is_front_page()))) {
         $class .= ' active';
       }
       $output .= '<li class="' . $class . '">';
@@ -1578,7 +1578,7 @@ function theme_more_link($url, $title) {
  * close of the body tag.
  *
  * @param $main (optional)
- *   Whether the current page is the front page of the site.
+ *   Whether the current page is the home page of the site.
  * @return
  *   A string containing the results of the hook_footer() calls.
  */
@@ -1751,7 +1751,7 @@ function template_preprocess(&$variables
     if (user_access('access administration pages')) {
       $variables['is_admin'] = TRUE;
     }
-    // Flag front page status.
+    // Flag home page status.
     $variables['is_front'] = drupal_is_front_page();
     // Tell all templates by which kind of user they're viewed.
     $variables['logged_in'] = ($user->uid > 0);
@@ -1858,7 +1858,7 @@ function template_preprocess_page(&$vari
   // Compile a list of classes that are going to be applied to the body element.
   // This allows advanced theming based on context (home page, node of certain type, etc.).
   $body_classes = array();
-  // Add a class that tells us whether we're on the front page or not.
+  // Add a class that tells us whether we're on the home page or not.
   $body_classes[] = $variables['is_front'] ? 'front' : 'not-front';
   // Add a class that tells us whether the page is viewed by an authenticated user or not.
   $body_classes[] = $variables['logged_in'] ? 'logged-in' : 'not-logged-in';
Index: modules/block/block.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.admin.inc,v
retrieving revision 1.17
diff -u -p -r1.17 block.admin.inc
--- modules/block/block.admin.inc	15 May 2008 21:30:02 -0000	1.17
+++ modules/block/block.admin.inc	24 Jun 2008 21:44:16 -0000
@@ -234,7 +234,7 @@ function block_admin_configure(&$form_st
   }
   else {
     $options = array(t('Show on every page except the listed pages.'), t('Show on only the listed pages.'));
-    $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>'));
+    $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %home is the home page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%home' => '<home>'));
 
     if ($access) {
       $options[] = t('Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only).');
Index: modules/blog/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v
retrieving revision 1.306
diff -u -p -r1.306 blog.module
--- modules/blog/blog.module	22 May 2008 19:27:13 -0000	1.306
+++ modules/blog/blog.module	24 Jun 2008 21:44:16 -0000
@@ -63,7 +63,7 @@ function blog_help($path, $arg) {
     case 'admin/help#blog':
       $output  = '<p>' . t('The blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>, and the blog entries are most often displayed in descending order by creation time.') . '</p>';
       $output .= '<p>' . t('There is an (optional) <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user\'s blog entries. The <em>Blog entry</em> menu item under <em>Create content</em> allows new blog entries to be created.') . '</p>';
-      $output .= '<p>' . t('Each blog entry is displayed with an automatic link to other blogs created by the same user. By default, blog entries have comments enabled and are automatically promoted to the site front page. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/build/block'))) . '</p>';
+      $output .= '<p>' . t('Each blog entry is displayed with an automatic link to other blogs created by the same user. By default, blog entries have comments enabled and are automatically promoted to the site home page. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/build/block'))) . '</p>';
       $output .= '<p>' . t('When using the aggregator module an automatic <em>blog it</em> icon is displayed next to the items in a feed\'s <em>latest items</em> block. Clicking this icon populates a <em>blog entry</em> with a title (the title of the feed item) and body (a link to the source item on its original site and illustrative content suitable for use in a block quote). Blog authors can use this feature to easily comment on items of interest that appear in aggregator feeds from other sites. To use this feature, be sure to <a href="@modules">enable</a> the aggregator module, <a href="@feeds">add and configure</a> a feed from another site, and <a href="@blocks">position</a> the feed\'s <em>latest items</em> block.', array('@modules' => url('admin/build/modules'), '@feeds' => url('admin/content/aggregator'), '@blocks' => url('admin/build/block'))) . '</p>';
       $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@blog">Blog module</a>.', array('@blog' => 'http://drupal.org/handbook/modules/blog/')) . '</p>';
       return $output;
Index: modules/book/book.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.module,v
retrieving revision 1.465
diff -u -p -r1.465 book.module
--- modules/book/book.module	16 Jun 2008 23:18:12 -0000	1.465
+++ modules/book/book.module	24 Jun 2008 21:44:16 -0000
@@ -644,7 +644,7 @@ function book_build_active_trail($book_l
 
   if (!isset($trail)) {
     $trail = array();
-    $trail[] = array('title' => t('Home'), 'href' => '<front>', 'localized_options' => array());
+    $trail[] = array('title' => t('Home'), 'href' => '<home>', 'localized_options' => array());
 
     $tree = menu_tree_all_data($book_link['menu_name'], $book_link);
     $curr = array_shift($tree);
Index: modules/menu/menu.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu/menu.admin.inc,v
retrieving revision 1.30
diff -u -p -r1.30 menu.admin.inc
--- modules/menu/menu.admin.inc	14 Apr 2008 17:48:37 -0000	1.30
+++ modules/menu/menu.admin.inc	24 Jun 2008 21:44:17 -0000
@@ -257,7 +257,7 @@ function menu_edit_item(&$form_state, $t
       '#type' => 'textfield',
       '#title' => t('Path'),
       '#default_value' => $path,
-      '#description' => t('The path this menu item links to. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.', array('%front' => '<front>', '%add-node' => 'node/add', '%drupal' => 'http://drupal.org')),
+      '#description' => t('The path this menu item links to. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %home to link to the home page.', array('%home' => '<home>', '%add-node' => 'node/add', '%drupal' => 'http://drupal.org')),
       '#required' => TRUE,
     );
     $form['delete'] = array(
Index: modules/menu/menu.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu/menu.test,v
retrieving revision 1.2
diff -u -p -r1.2 menu.test
--- modules/menu/menu.test	30 May 2008 07:30:51 -0000	1.2
+++ modules/menu/menu.test	24 Jun 2008 21:44:17 -0000
@@ -175,7 +175,7 @@ class MenuTestCase extends DrupalWebTest
    * @param string $menu_name Menu name.
    * @return object Menu item created.
    */
-  function addMenuItem($plid = 0, $link = '<front>', $menu_name = 'navigation') {
+  function addMenuItem($plid = 0, $link = '<home>', $menu_name = 'navigation') {
     // View add menu item page.
     $this->drupalGet("admin/build/menu-customize/$menu_name/add");
     $this->assertResponse(200);
Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.54
diff -u -p -r1.54 content_types.inc
--- modules/node/content_types.inc	12 Jun 2008 19:07:36 -0000	1.54
+++ modules/node/content_types.inc	24 Jun 2008 21:44:17 -0000
@@ -155,7 +155,7 @@ function node_type_form(&$form_state, $t
     '#default_value' => variable_get('node_options_' . $type->type, array('status', 'promote')),
     '#options' => array(
       'status' => t('Published'),
-      'promote' => t('Promoted to front page'),
+      'promote' => t('Promoted to home page'),
       'sticky' => t('Sticky at top of lists'),
       'revision' => t('Create new revision'),
     ),
Index: modules/node/node.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.admin.inc,v
retrieving revision 1.22
diff -u -p -r1.22 node.admin.inc
--- modules/node/node.admin.inc	14 Apr 2008 17:48:38 -0000	1.22
+++ modules/node/node.admin.inc	24 Jun 2008 21:44:17 -0000
@@ -106,12 +106,12 @@ function node_node_operations() {
       'callback arguments' => array('updates' => array('status' => 0)),
     ),
     'promote' => array(
-      'label' => t('Promote to front page'),
+      'label' => t('Promote to home page'),
       'callback' => 'node_mass_update',
       'callback arguments' => array('updates' => array('status' => 1, 'promote' => 1)),
     ),
     'demote' => array(
-      'label' => t('Demote from front page'),
+      'label' => t('Demote from home page'),
       'callback' => 'node_mass_update',
       'callback arguments' => array('updates' => array('promote' => 0)),
     ),
Index: modules/node/node.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.install,v
retrieving revision 1.6
diff -u -p -r1.6 node.install
--- modules/node/node.install	15 Apr 2008 08:39:03 -0000	1.6
+++ modules/node/node.install	24 Jun 2008 21:44:17 -0000
@@ -73,7 +73,7 @@ function node_schema() {
         'default' => 0,
       ),
       'promote' => array(
-        'description' => t('Boolean indicating whether the node should be displayed on the front page.'),
+        'description' => t('Boolean indicating whether the node should be displayed on the home page.'),
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.967
diff -u -p -r1.967 node.module
--- modules/node/node.module	26 May 2008 17:12:55 -0000	1.967
+++ modules/node/node.module	24 Jun 2008 21:44:17 -0000
@@ -65,7 +65,7 @@ function node_help($path, $arg) {
 
   switch ($path) {
     case 'admin/help#node':
-      $output = '<p>' . 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.') . '</p>';
+      $output = '<p>' . 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 home 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.') . '</p>';
       $output .= '<p>' . t('Though each post on your site is a node, each post is also of a particular <a href="@content-type">content type</a>. <a href="@content-type">Content types</a> 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 <em>Publishing options</em> and other workflow controls. By default, the two content types in a standard Drupal installation are <em>Page</em> and <em>Story</em>. Use the <a href="@content-type">content types page</a> 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/build/types'))) . '</p>';
       $output .= '<p>' . t('The administrative <a href="@content">content page</a> allows you to review and manage your site content. The <a href="@post-settings">post settings page</a> sets certain options for the display of posts. The node module makes a number of permissions available for each content type, which may be set by role on the <a href="@permissions">permissions page</a>.', array('@content' => url('admin/content/node'), '@post-settings' => url('admin/content/node-settings'), '@permissions' => url('admin/user/permissions'))) . '</p>';
       $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@node">Node module</a>.', array('@node' => 'http://drupal.org/handbook/modules/node/')) . '</p>';
@@ -1351,7 +1351,7 @@ function node_ranking() {
       'score' => 'n.sticky',
     ),
     'promote' => array(
-      'title' => t('Content is promoted to the front page'),
+      'title' => t('Content is promoted to the home page'),
       // The promote flag is either 0 or 1, which is automatically normalized.
       'score' => 'n.promote',
     ),
@@ -1490,7 +1490,7 @@ function node_menu() {
 
   $items['admin/content/node-settings'] = array(
     'title' => 'Post settings',
-    'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
+    'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the home page.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('node_configure'),
     'access arguments' => array('administer nodes'),
@@ -1506,7 +1506,7 @@ function node_menu() {
 
   $items['admin/build/types'] = array(
     'title' => 'Content types',
-    'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
+    'description' => 'Manage posts by content type, including default status, home page promotion, etc.',
     'page callback' => 'node_overview_types',
     'access arguments' => array('administer content types'),
   );
@@ -1805,7 +1805,7 @@ function node_page_default() {
     $default_message .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/settings'))) . '</li>';
     $default_message .= '<li>' . t('<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.', array('@modules' => url('admin/build/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '</li>';
     $default_message .= '<li>' . t('<strong>Customize your website design</strong> To change the "look and feel" of your website, visit the <a href="@themes">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href="@download_themes">Drupal themes download section</a>.', array('@themes' => url('admin/build/themes'), '@download_themes' => 'http://drupal.org/project/themes')) . '</li>';
-    $default_message .= '<li>' . t('<strong>Start posting content</strong> Finally, you can <a href="@content">create content</a> for your website. This message will disappear once you have promoted a post to the front page.', array('@content' => url('node/add'))) . '</li>';
+    $default_message .= '<li>' . t('<strong>Start posting content</strong> Finally, you can <a href="@content">create content</a> for your website. This message will disappear once you have promoted a post to the home page.', array('@content' => url('node/add'))) . '</li>';
     $default_message .= '</ol>';
     $default_message .= '<p>' . t('For more information, please refer to the <a href="@help">help section</a>, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '</p>';
 
@@ -2614,7 +2614,7 @@ function node_action_info() {
     ),
     'node_promote_action' => array(
       'type' => 'node',
-      'description' => t('Promote post to front page'),
+      'description' => t('Promote post to home page'),
       'configurable' => FALSE,
       'behavior' => array('changes_node_property'),
       'hooks' => array(
@@ -2624,7 +2624,7 @@ function node_action_info() {
     ),
     'node_unpromote_action' => array(
       'type' => 'node',
-      'description' => t('Remove post from front page'),
+      'description' => t('Remove post from home page'),
       'configurable' => FALSE,
       'behavior' => array('changes_node_property'),
       'hooks' => array(
@@ -2704,7 +2704,7 @@ function node_make_unsticky_action(&$nod
  */
 function node_promote_action(&$node, $context = array()) {
   $node->promote = 1;
-  watchdog('action', 'Promoted @type %title to front page.', array('@type' => node_get_types('name', $node), '%title' => $node->title));
+  watchdog('action', 'Promoted @type %title to home page.', array('@type' => node_get_types('name', $node), '%title' => $node->title));
 }
 
 /**
@@ -2713,7 +2713,7 @@ function node_promote_action(&$node, $co
  */
 function node_unpromote_action(&$node, $context = array()) {
   $node->promote = 0;
-  watchdog('action', 'Removed @type %title from front page.', array('@type' => node_get_types('name', $node), '%title' => $node->title));
+  watchdog('action', 'Removed @type %title from home page.', array('@type' => node_get_types('name', $node), '%title' => $node->title));
 }
 
 /**
Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.30
diff -u -p -r1.30 node.pages.inc
--- modules/node/node.pages.inc	14 Apr 2008 17:48:38 -0000	1.30
+++ modules/node/node.pages.inc	24 Jun 2008 21:44:17 -0000
@@ -209,7 +209,7 @@ function node_form(&$form_state, $node) 
   );
   $form['options']['promote'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Promoted to front page'),
+    '#title' => t('Promoted to home page'),
     '#default_value' => $node->promote,
   );
   $form['options']['sticky'] = array(
@@ -514,7 +514,7 @@ function node_delete_confirm_submit($for
     node_delete($form_state['values']['nid']);
   }
 
-  $form_state['redirect'] = '<front>';
+  $form_state['redirect'] = '<home>';
 }
 
 /**
Index: modules/node/node.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.tpl.php,v
retrieving revision 1.4
diff -u -p -r1.4 node.tpl.php
--- modules/node/node.tpl.php	25 Jan 2008 21:21:44 -0000	1.4
+++ modules/node/node.tpl.php	24 Jun 2008 21:44:17 -0000
@@ -34,13 +34,13 @@
  * Node status variables:
  * - $teaser: Flag for the teaser state.
  * - $page: Flag for the full page state.
- * - $promote: Flag for front page promotion state.
+ * - $promote: Flag for home page promotion state.
  * - $sticky: Flags for sticky post setting.
  * - $status: Flag for published status.
  * - $comment: State of comment settings for the node.
  * - $readmore: Flags true if the teaser content of the node cannot hold the
  *   main body content.
- * - $is_front: Flags true when presented in the front page.
+ * - $is_front: Flags true when presented in the home page.
  * - $logged_in: Flags true when the current user is a logged-in member.
  * - $is_admin: Flags true when the current user is an administrator.
  *
Index: modules/system/block.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/block.tpl.php,v
retrieving revision 1.6
diff -u -p -r1.6 block.tpl.php
--- modules/system/block.tpl.php	14 Apr 2008 17:48:41 -0000	1.6
+++ modules/system/block.tpl.php	24 Jun 2008 21:44:17 -0000
@@ -18,7 +18,7 @@
  * - $zebra: Same output as $block_zebra but independent of any block region.
  * - $block_id: Counter dependent on each block region.
  * - $id: Same output as $block_id but independent of any block region.
- * - $is_front: Flags true when presented in the front page.
+ * - $is_front: Flags true when presented in the home page.
  * - $logged_in: Flags true when the current user is a logged-in member.
  * - $is_admin: Flags true when the current user is an administrator.
  *
Index: modules/system/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/page.tpl.php,v
retrieving revision 1.11
diff -u -p -r1.11 page.tpl.php
--- modules/system/page.tpl.php	24 Jan 2008 09:42:51 -0000	1.11
+++ modules/system/page.tpl.php	24 Jun 2008 21:44:17 -0000
@@ -14,7 +14,7 @@
  * - $css: An array of CSS files for the current page.
  * - $directory: The directory the theme is located in, e.g. themes/garland or
  *   themes/garland/minelli.
- * - $is_front: TRUE if the current page is the front page. Used to toggle the mission statement.
+ * - $is_front: TRUE if the current page is the home page. Used to toggle the mission statement.
  * - $logged_in: TRUE if the user is registered and signed in.
  * - $is_admin: TRUE if the user has permission to access administration pages.
  *
@@ -33,8 +33,8 @@
  *   path, whether the user is logged in, and so on.
  *
  * Site identity:
- * - $front_page: The URL of the front page. Use this instead of $base_path,
- *   when linking to the front page. This includes the language domain or prefix.
+ * - $front_page: The URL of the home page. Use this instead of $base_path,
+ *   when linking to the home page. This includes the language domain or prefix.
  * - $logo: The path to the logo image, as defined in theme configuration.
  * - $site_name: The name of the site, empty when display has been disabled
  *   in theme settings.
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.76
diff -u -p -r1.76 system.admin.inc
--- modules/system/system.admin.inc	10 May 2008 07:32:02 -0000	1.76
+++ modules/system/system.admin.inc	24 Jun 2008 21:44:17 -0000
@@ -1212,7 +1212,7 @@ function system_site_information_setting
     '#type' => 'textarea',
     '#title' => t('Mission'),
     '#default_value' => variable_get('site_mission', ''),
-    '#description' => t("Your site's mission or focus statement (often prominently displayed on the front page).")
+    '#description' => t("Your site's mission or focus statement (often prominently displayed on the home page).")
   );
   $form['site_footer'] = array(
     '#type' => 'textarea',
@@ -1229,7 +1229,7 @@ function system_site_information_setting
   );
   $form['site_frontpage'] = array(
     '#type' => 'textfield',
-    '#title' => t('Default front page'),
+    '#title' => t('Default home page'),
     '#default_value' => variable_get('site_frontpage', 'node'),
     '#size' => 40,
     '#description' => t('The home page displays content from this relative URL. If unsure, specify "node".'),
@@ -1249,7 +1249,7 @@ function system_site_information_setting
   if ($error = user_validate_mail($form_state['values']['site_mail'])) {
     form_set_error('site_mail', $error);
   }
-  // Validate front page path.
+  // Validate home page path.
   $item = array('link_path' => $form_state['values']['site_frontpage']);
   $normal_path = drupal_get_normal_path($item['link_path']);
   if ($item['link_path'] != $normal_path) {
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.602
diff -u -p -r1.602 system.module
--- modules/system/system.module	7 May 2008 19:17:50 -0000	1.602
+++ modules/system/system.module	24 Jun 2008 21:44:17 -0000
@@ -513,7 +513,7 @@ function system_menu() {
   // Settings:
   $items['admin/settings/site-information'] = array(
     'title' => 'Site information',
-    'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+    'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, home page and more.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('system_site_information_settings'),
     'access arguments' => array('administer site configuration'),
Index: modules/trigger/trigger.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/trigger/trigger.module,v
retrieving revision 1.17
diff -u -p -r1.17 trigger.module
--- modules/trigger/trigger.module	6 May 2008 12:18:53 -0000	1.17
+++ modules/trigger/trigger.module	24 Jun 2008 21:44:18 -0000
@@ -14,7 +14,7 @@ function trigger_help($path, $arg) {
   $explanation = '<p>' . t('Triggers are system events, such as when new content is added or when a user logs in. Trigger module combines these triggers with actions (functional tasks), such as unpublishing content or e-mailing an administrator. The <a href="@url">Actions settings page</a> contains a list of existing actions and provides the ability to create and configure additional actions.', array('@url' => url('admin/settings/actions'))) . '</p>';
   switch ($path) {
     case 'admin/build/trigger/comment':
-      return $explanation . '<p>' . t('Below you can assign actions to run when certain comment-related triggers happen. For example, you could promote a post to the front page when a comment is added.') . '</p>';
+      return $explanation . '<p>' . t('Below you can assign actions to run when certain comment-related triggers happen. For example, you could promote a post to the home page when a comment is added.') . '</p>';
     case 'admin/build/trigger/node':
       return $explanation . '<p>' . t('Below you can assign actions to run when certain content-related triggers happen. For example, you could send an e-mail to an administrator when a post is created or updated.') . '</p>';
     case 'admin/build/trigger/cron':
Index: modules/trigger/trigger.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/trigger/trigger.test,v
retrieving revision 1.3
diff -u -p -r1.3 trigger.test
--- modules/trigger/trigger.test	2 Jun 2008 17:39:12 -0000	1.3
+++ modules/trigger/trigger.test	24 Jun 2008 21:44:18 -0000
@@ -101,12 +101,12 @@ class TriggerContentTestCase extends Dru
       'node_promote_action' => array(
         'property' => 'promote',
         'expected' => 1,
-        'name' => t('promote post to front page'),
+        'name' => t('promote post to home page'),
       ),
       'node_unpromote_action' => array(
         'property' => 'promote',
         'expected' => 0,
-        'name' => t('remove post from front page'),
+        'name' => t('remove post from home page'),
       ),
     );
     return $info[$action];
