=== modified file 'sites/all/modules/drupalorg/drupalorg/drupalorg-download.tpl.php'
--- sites/all/modules/drupalorg/drupalorg/drupalorg-download.tpl.php	2011-01-06 00:45:39 +0000
+++ sites/all/modules/drupalorg/drupalorg/drupalorg-download.tpl.php	2011-10-20 01:02:20 +0000
@@ -10,11 +10,14 @@
     </ul>
   </div>
 
-  <div class="grid-3 installation-profiles">
-    <h2>Installation Profiles</h2>
+  <div class="grid-3 distributions">
+    <h2>Distributions</h2>
     <ul class="flat">
-      <?php print $drupalorg_featured_install_profiles; ?>
-      <li class="last all"><a class="all" href="/project/installation+profiles">More Profiles</a></li>
+      <li><a href="/documentation/build/distributions">About Distributions</a></li>
+      <li><a href="/project/distributions?solrsort=sis_project_release_usage%20desc">Most Installed Distributions</a></li>
+      <li><a href="/project/distributions?solrsort=created%20desc">New Distributions</a></li>
+      <li><a href="/project/distributions?solrsort=ds_project_latest_activity%20desc">Most Active Distribitions</a></li>
+      <li class="last all"><a class="all" href="/project/distributions">Search for More Distributions</a></li>
     </ul>
   </div>
 

=== modified file 'sites/all/modules/drupalorg/drupalorg/drupalorg-home.tpl.php'
--- sites/all/modules/drupalorg/drupalorg/drupalorg-home.tpl.php	2011-03-16 00:02:27 +0000
+++ sites/all/modules/drupalorg/drupalorg/drupalorg-home.tpl.php	2011-11-26 12:43:00 +0000
@@ -2,10 +2,15 @@
   <div id="front-top-left-inner">
     <div class="block-content">
      <h2><a href="about">Why Choose Drupal?</a></h2>
-     <p>Use Drupal to build everything from personal blogs to enterprise applications. Thousands of add-on modules and designs let you build any site you can imagine.</p><p>Drupal is free, flexible, robust and constantly being improved by hundreds of thousands of passionate people from all over the world. Join us!</p>
+     <p>Use Drupal to build everything from personal blogs to enterprise applications. Thousands of add-on modules and designs let you build any site you can imagine. Join us!</p>
      <p class="front-get-started">
       <a href="start" class="link-button"><span>Get Started with Drupal</span></a>
      </p>
+     <h2><a href="project/distributions">Drupal Distributions</a></h2>
+     <p>Distributions package and configure themes and modules for feature-rich web sites. Current distributions include online communities, media, e-commerce, and more!</p>
+     <p class="front-get-started">
+      <a href="documentation/build/distributions" class="link-button"><span>Learn about Distributions</span></a>
+     </p>
     </div>
   </div>
 </div>
@@ -28,6 +33,7 @@
           <table class="front-current-activity">
             <tr><td><?php print $number_of_modules; ?></td><td><a href="project/modules">Modules</a></td></tr>
             <tr><td><?php print $number_of_themes; ?></td><td><a href="project/themes">Themes</a></td></tr>
+            <tr><td><?php print $number_of_distributions; ?></td><td><a href="project/distributions">Distributions</a></td></tr>
             <tr><td><?php print $number_of_git_accounts; ?></td><td><a href="commitlog">Developers</a></td></tr>
           </table>
           <table class="front-current-activity">

=== modified file 'sites/all/modules/drupalorg/drupalorg/drupalorg-start.tpl.php'
--- sites/all/modules/drupalorg/drupalorg/drupalorg-start.tpl.php	2011-10-18 07:07:43 +0000
+++ sites/all/modules/drupalorg/drupalorg/drupalorg-start.tpl.php	2011-11-26 13:02:53 +0000
@@ -6,13 +6,11 @@
 </div>
 <div class="grid-3 alpha">
   <div class="narrow-box">
-    <p>To get started with Drupal, you'll need the Drupal base system files either as <a href="/project/drupal">Drupal core</a> or a <a href="project/installation+profiles">pre-built distribution</a>, as well as a <a href="/hosting">web hosting provider</a>.</p>
+    <p><a href="/project/drupal">Drupal core</a> is a collection of files that you download to get started with Drupal.</p>
     <?php print $core_download_button; ?>
-    <p>Drupal 7 is recommended for most new websites. A large number of modules and themes are already available for it.</p>
-    <p>Many Drupal sites currently run on <a href="/project/drupal">Drupal 6</a>.</p>
-    <h5>Installation Profiles</h5>
-    <p>Drupal <a href="/project/installation+profiles">distributions</a> (also known as installation profiles) are pre-packaged website solutions for specific use cases. They include Drupal core as well as additional modules. More Drupal 7 installation profiles will become available in the near future.</p>
-  </div>
+    <p>Drupal <a href="/documentation/build/distributions">distributions</a> are pre-packaged collections of modules and themes, designed for specific types of sites.</p>
+    <a class="link-button" href="/project/distributions"><span>Find a Distribution</span></a>
+</div>
 </div>
 <div class="grid-3">
   <div class="narrow-box">

=== modified file 'sites/all/modules/drupalorg/drupalorg/drupalorg.module'
--- sites/all/modules/drupalorg/drupalorg/drupalorg.module	2011-10-04 00:25:44 +0000
+++ sites/all/modules/drupalorg/drupalorg/drupalorg.module	2011-11-26 12:42:28 +0000
@@ -371,6 +371,10 @@
     //$themes = db_result(db_query("SELECT COUNT(distinct prn.pid) FROM node n INNER JOIN project_release_nodes prn ON n.nid = prn.nid INNER JOIN term_node tn on prn.pid = tn.nid WHERE tn.tid = 15 AND prn.version_api_tid IN (87, 103)"));
     $stats['number_of_themes'] = number_format($themes);
 
+    // All Distributions
+    $distributions = db_result(db_query("SELECT COUNT(distinct p.nid) FROM {project_projects} p INNER JOIN {term_node} tn ON p.nid = tn.nid WHERE tn.tid = 31241"));
+    $stats['number_of_distributions'] = number_format($distributions);
+
     // Users: Count them.
     $stats['number_of_users'] = number_format(db_result(db_query('SELECT COUNT(*) FROM {users} WHERE uid > 0 AND status = 1 AND login > 0')));
 

=== modified file 'sites/all/modules/drupalorg/drupalorg_crosssite/drupalorg_crosssite.module'
--- sites/all/modules/drupalorg/drupalorg_crosssite/drupalorg_crosssite.module	2011-08-24 11:42:33 +0000
+++ sites/all/modules/drupalorg/drupalorg_crosssite/drupalorg_crosssite.module	2011-11-26 12:59:26 +0000
@@ -106,6 +106,7 @@
     array(
       'download'          => array('href' => 'download', 'title' => t('Download & Extend'), '#site' => 'main'),
       'download-core'     => array('href' => 'project/drupal', 'title' => t('Drupal Core'), '#site' => 'main', 'attributes' => array('title' => t('Download the latest version of the Drupal software'))),
+      'download-distributions' => array('href' => 'project/distributions', 'title' => t('Distributions'), '#site' => 'main', 'attributes' => array('title' => t('Download a pre-packaged Drupal product'))),
       'download-modules'  => array('href' => 'project/modules', 'title' => t('Modules'), '#site' => 'main', 'attributes' => array('title' => t('Download add-on features and functionality'))),
       'download-themes'   => array('href' => 'project/themes', 'title' => t('Themes'), '#site' => 'main', 'attributes' => array('title' => t('Download pre-designed styles for Drupal'))),
       'download-profiles' => array('href' => 'project/installation+profiles', 'title' => t('Installation Profiles'), '#site' => 'main', 'attributes' => array('title' => t('Download a pre-packaged Drupal site'))),
@@ -289,6 +290,7 @@
       $nav_content_links = array(
         'home'         => array('href' => 'download', 'title' => t('Download & Extend Home'), '#site' => 'main'),
         'core'         => array('href' => 'node/' . DRUPALORG_CORE_NID, 'title' => t('Drupal Core'), '#active' => drupalorg_crosssite_child_of('main', 'node/' . DRUPALORG_CORE_NID, $vars) || drupalorg_crosssite_child_of('main', 'project/drupal core', $vars), '#site' => 'main'),
+        'distributions' => array('href' => 'project/distributions', 'title' => t('Distributions'), '#site' => 'main', '#active' => drupalorg_crosssite_menu_path('main', 'project/distributions') || drupalorg_crosssite_in_breadcrumb('main', 'project/distributions', $vars)),
         'modules'      => array('href' => 'project/modules', 'title' => t('Modules'), '#site' => 'main', '#active' => drupalorg_crosssite_in_breadcrumb('main', 'project/modules', $vars) || drupalorg_crosssite_menu_path('main', '^project/modules')),
         'themes'       => array('href' => 'project/themes', 'title' => t('Themes'), '#site' => 'main', '#active' => drupalorg_crosssite_child_of('main', 'project/themes', $vars) || drupalorg_crosssite_child_of('main', 'project/theme engines', $vars)),
         'translations' => array('href' => '<front>', 'title' => t('Translations'), '#site' => 'localize', '#active' => drupalorg_crosssite_menu_site('localize') || drupalorg_crosssite_in_breadcrumb('main', 'project/translations', $vars)),
@@ -671,6 +673,7 @@
     'documentation' => t('Documentation'),
     'forum-issues' => t('Forums & Issues'),
     'group' => t('Groups'),
+    'distributions' => t('Distributions'),
   );
 }
 
@@ -1024,4 +1027,4 @@
         . $variables['block']->content;
     }
   }
-}
\ No newline at end of file
+}

