Index: l10n_community/devel.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/devel.inc,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 devel.inc
--- l10n_community/devel.inc	22 Dec 2009 18:24:23 -0000	1.1.2.3
+++ l10n_community/devel.inc	1 Mar 2010 14:12:11 -0000
@@ -32,7 +32,7 @@ function l10n_server_generate_languages_
  */
 function l10n_server_generate_languages_form_submit($form_id, &$form_state) {
   include_once 'includes/locale.inc';
-  db_query("DELETE FROM {languages} WHERE language != 'en'");
+  db_query("DELETE FROM {languages} WHERE language <> 'en'");
   db_query('DELETE FROM {locales_target}');
   drupal_set_message(t('Languages deleted.'));
   $num = $form_state['values']['num'];
Index: l10n_community/translate.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/translate.inc,v
retrieving revision 1.1.2.7.2.31.2.14
diff -u -p -r1.1.2.7.2.31.2.14 translate.inc
--- l10n_community/translate.inc	24 Feb 2010 13:43:41 -0000	1.1.2.7.2.31.2.14
+++ l10n_community/translate.inc	1 Mar 2010 14:12:11 -0000
@@ -77,7 +77,7 @@ function l10n_community_filter_form(&$fo
     );
   }
 
-  // Always add releases option, so we can update it when 
+  // Always add releases option, so we can update it when
   // needed as the project changes with AHAH.
   $release_options = array('all' => t('All'));
   if (!empty($form_state['values']['project'])) {
@@ -102,7 +102,7 @@ function l10n_community_filter_form(&$fo
 
   if (count($contexts = l10n_community_get_contexts()) > 1) {
     $form['context'] = array(
-     '#title' => t('Context'),
+      '#title' => t('Context'),
       '#type' => 'select',
       '#options' => array('all' => t('All')) + $contexts,
       '#default_value' => $form_state['values']['context'],
@@ -261,28 +261,28 @@ function l10n_community_translate_form(&
   // strings in the database.
   $form = array(
     '#redirect' => array(
-      $_GET['q'], 
+      $_GET['q'],
       $redirect_url
     ),
     'langcode' => array(
-      '#type' => 'value', 
+      '#type' => 'value',
       '#value' => $language->language
     ),
     'pager_top' => array(
-      '#weight' => -10, 
+      '#weight' => -10,
       '#value' => $pager
     ),
     'strings' => array(
-      '#tree' => TRUE, 
+      '#tree' => TRUE,
       '#theme' => 'l10n_community_translate_table'
     ),
     'submit' => array(
-      '#type' => 'submit', 
-      '#value' => t('Save changes'), 
+      '#type' => 'submit',
+      '#value' => t('Save changes'),
       '#access' => user_access('submit suggestions')
     ),
     'pager_bottom' => array(
-      '#weight' => 10, 
+      '#weight' => 10,
       '#value' => $pager
     ),
   );
@@ -419,7 +419,7 @@ function _l10n_community_translate_trans
   $form = array(
     '#theme' => 'l10n_community_translate_translation',
     'original' => array(
-      '#type' => 'value', 
+      '#type' => 'value',
       '#value' => $string,
     ),
     'filters_match' => array(
@@ -658,7 +658,7 @@ function theme_l10n_community_translate_
  * Form submit callback for l10n_community_translate_form().
  *
  * @see l10n_community_translate_form().
- */ 
+ */
 function l10n_community_translate_form_submit($form, &$form_state) {
   global $user;
 
@@ -847,7 +847,7 @@ function l10n_community_get_strings($lan
         }
       }
       else {
-        // No parent translation. Pretend this does not exist. 
+        // No parent translation. Pretend this does not exist.
         // The display code will call for the suggestions.
         $string->translation = '';
       }
@@ -949,6 +949,6 @@ function l10n_community_string_details($
   }
   else {
     $output .= $usage_list;
-    return $output; 
+    return $output;
   }
 }
Index: l10n_community/tests/l10n_community.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/tests/Attic/l10n_community.test,v
retrieving revision 1.1.2.15.2.4
diff -u -p -r1.1.2.15.2.4 l10n_community.test
--- l10n_community/tests/l10n_community.test	24 Feb 2010 09:27:28 -0000	1.1.2.15.2.4
+++ l10n_community/tests/l10n_community.test	1 Mar 2010 14:12:12 -0000
@@ -619,18 +619,4 @@ class L10nServerTestCase extends DrupalW
     $this->drupalGet('user/logout');
   }
 
-  /**
-   * Debug functionality until simpletest built-in debugging is backported.
-   */
-  private function outputScreenContents($description = 'output', $basename = 'output') {
-    // This is a hack to get a directory that won't be cleaned up by simpletest
-    $file_dir = file_directory_path() .'/../simpletest_output_pages';
-    if (!is_dir($file_dir)) {
-      mkdir($file_dir, 0777, TRUE);
-    }
-    $output_path = "$file_dir/$basename.". $this->randomName(10) .'.html';
-    $rv = file_put_contents($output_path, $this->drupalGetContent());
-    $this->pass("$description: ". l('Contents of result page', $output_path));
-  }
-
 }
