? .svn
? connector_new_hmac.diff
? fixup-398398-5.patch
? fixup-398398-6.patch
? status-check-366722-1.patch.1
? acquia_agent/.svn
? acquia_agent/tests
? acquia_spi/.svn
? acquia_spi/tests
Index: acquia_agent/acquia_agent.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/acquia_connector/acquia_agent/acquia_agent.module,v
retrieving revision 1.13
diff -u -p -r1.13 acquia_agent.module
--- acquia_agent/acquia_agent.module	20 Mar 2009 14:37:52 -0000	1.13
+++ acquia_agent/acquia_agent.module	20 Mar 2009 15:47:57 -0000
@@ -327,7 +327,7 @@ function acquia_agent_theme_registry_alt
   if (isset($theme_registry['admin_menu_icon'])) {
     $theme_registry['admin_menu_icon']['function'] = 'acquia_agent_menu_icon';
   }
-  #retheme the modules page to add extra warnings inline
+  // Re-theme the modules page to add extra warnings inline.
   
   if (isset($theme_registry['system_modules'])) {
     $theme_registry['system_modules']['function'] = 'acquia_agent_system_modules';
@@ -522,10 +522,10 @@ function acquia_agent_form_system_module
     if (!module_exists('acquia_search') && empty($subscription['heartbeat_data']['search_service_enabled'])) {
       $form['status']['#disabled_modules'][] = 'acquia_search';
       if (empty($subscription['active'])) {
-        $message = t('Acquia Search requires an active subscription to the <a href="@network-url">Acquia Network</a>. Please enter your subscription keys on the <a href="@settings-url">settings page</a> and return here for further instructions.', array('@network-url' => 'http://acquia.com/network', '@settings-url' => url('admin/settings/acquia-agent')));
+        $message = t('Acquia Search requires an <a href="@network-url">Acquia Network subscription</a> that is in the Acquia Search beta program.', array('@network-url' => 'http://acquia.com/products-services/acquia-search', '@settings-url' => url('admin/settings/acquia-agent')));
       }
       else {
-        $message = t('Your Acquia Network subscription is not enabled for search. <a href="@url">Enable the Acquia Search network service</a>.', array('@url' => url($subscription['href'] . '/health/search')));
+        $message = t('To use Acquia Search, join the <a href="@url">Acquia Search beta program</a>.', array('@url' => url($subscription['href'] . '/health/search')));
       }
       $form['description']['acquia_search']['#extra'] = '<div style="padding-left:5px; margin:8px 0px" class="messages warning" id="acquia-agent-no-search">'. $message .'</div>';
     }
Index: acquia_agent/acquia_agent.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/acquia_connector/acquia_agent/acquia_agent.pages.inc,v
retrieving revision 1.2
diff -u -p -r1.2 acquia_agent.pages.inc
--- acquia_agent/acquia_agent.pages.inc	18 Mar 2009 09:12:40 -0000	1.2
+++ acquia_agent/acquia_agent.pages.inc	20 Mar 2009 15:47:57 -0000
@@ -107,7 +107,7 @@ function acquia_agent_set_validate($form
   }
   $identifier = $form_state['values']['acquia_identifier'];
   $key = $form_state['values']['acquia_key'];
-  
+
   // Don't make the XML-RPC call with empty values.
   if (!empty($identifier) && !empty($key)) {
     if (!acquia_agent_valid_credentials($identifier, $key)) {
@@ -154,7 +154,8 @@ function acquia_agent_change_submit($for
 
 /**
  * Override of the theme callback for the modules form.
- * Used to provide warnings when $form['description][$key]['#extra'] is set
+ *
+ * Used add extra rows when $form['description][$key]['#extra'] is set.
  *
  * @param $form
  *   An associative array containing the structure of the form.
@@ -221,23 +222,23 @@ function acquia_agent_system_modules($fo
       else {
         $row[] = '<strong>'. drupal_render($form['name'][$key]) .'</strong>';
       }
-      
+
       $row[] = array('data' => drupal_render($form['version'][$key]), 'class' => 'version');
       $row[] = array('data' => $description, 'class' => 'description');
-      
-      # Add the extra info inline above the affected module row
+
+      // Add the extra info inline above the affected module row
       if ($form['description'][$key]['#extra']) {
         $extra_row[] = array(
           'data' => $form['description'][$key]['#extra'],
           'colspan' => '4',
-          'style' => 'padding:0px',
+          'style' => 'padding:0',
         );
         $rows[] = array(
-          'style' => 'padding:0px',
+          'style' => 'padding:0',
           'data' => $extra_row,
         );
       }
-      
+
       $rows[] = $row;
     }
     $fieldset = array(
