phpdoc: added block tags, @version is set to Id:, removed Author: and Date:
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 1 Nov 2004 09:40:27 +0000 (09:40 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 1 Nov 2004 09:40:27 +0000 (09:40 +0000)
because author is Konstantin and date/last commiter is present in Id:
fixed: unchecked test of $msg
removed tabs.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8297 7612ce4b-ef26-0410-bec9-ea0150e637f0

12 files changed:
plugins/squirrelspell/modules/check_me.mod
plugins/squirrelspell/modules/crypto.mod
plugins/squirrelspell/modules/crypto_badkey.mod
plugins/squirrelspell/modules/edit_dic.mod
plugins/squirrelspell/modules/enc_setup.mod
plugins/squirrelspell/modules/forget_me.mod
plugins/squirrelspell/modules/forget_me_not.mod
plugins/squirrelspell/modules/index.php
plugins/squirrelspell/modules/init.mod
plugins/squirrelspell/modules/lang_change.mod
plugins/squirrelspell/modules/lang_setup.mod
plugins/squirrelspell/modules/options_main.mod

index 288ac4f6ca0ba74fbf38557b905acd31e57b48cf..40baaba34feb2683ea9da5f3cbd38fa82ac8b666 100644 (file)
  * the message to the spell-checker, parses the output, and loads
  * the interface window.
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 /**
@@ -99,7 +99,7 @@ if( check_php_version ( 4, 3 ) ) {
     for($i=1; $i<=2; $i++){
         while(!feof($pipes[$i]))
            array_push($sqspell_output, rtrim(fgetss($pipes[$i],999),"\n")); 
-       fclose($pipes[$i]);
+        fclose($pipes[$i]);
     }
     $sqspell_exitcode=proc_close($spell_proc);
 } else {
@@ -196,15 +196,15 @@ for ($i=0; $i<sizeof($sqspell_output); $i++){
     if (!$SQSPELL_EREG("\n$sqspell_word\n", $words)){
       $sqspell_symb=intval($tmparray[2])-1;
       if (!isset($misses[$sqspell_word])) {
-           $misses[$sqspell_word] = '_NONE';
-           $missed_words[$errors] = $sqspell_word;
-           $errors++;
+          $misses[$sqspell_word] = '_NONE';
+          $missed_words[$errors] = $sqspell_word;
+          $errors++;
       }
       if (isset($locations[$sqspell_word])) {
-           $locations[$sqspell_word] .= ', ';
+          $locations[$sqspell_word] .= ', ';
       } else {
-           $locations[$sqspell_word] = '';
-         }
+          $locations[$sqspell_word] = '';
+      }
       $locations[$sqspell_word] .= "$current_line:$sqspell_symb";
     }
   break;
@@ -370,23 +370,23 @@ if ($errors){
        <tr>
         <td colspan="4">
          <table border="0" cellpadding="0" cellspacing="3" width="100%">
-         <tr align="center" bgcolor="<?php echo $color[9] ?>">
+              <tr align="center" bgcolor="<?php echo $color[9] ?>">
            <?php
-           SpellLink('sqspellChange()',
-                     _("Change this word"),
-                     _("Change"));
-           SpellLink('sqspellChangeAll()',
-                     _("Change ALL occurances of this word"),
-                     _("Change All"));
-           SpellLink('sqspellIgnore()',
-                     _("Ignore this word"),
-                     _("Ignore"));
-           SpellLink('sqspellIgnoreAll()',
-                     _("Ignore ALL occurances this word"),
-                     _("Ignore All"));
-           SpellLink('sqspellRemember()',
-                     _("Add this word to your personal dictionary"),
-                     _("Add to Dic"));
+              SpellLink('sqspellChange()',
+                  _("Change this word"),
+                  _("Change"));
+              SpellLink('sqspellChangeAll()',
+                  _("Change ALL occurances of this word"),
+                  _("Change All"));
+              SpellLink('sqspellIgnore()',
+                  _("Ignore this word"),
+                  _("Ignore"));
+              SpellLink('sqspellIgnoreAll()',
+                  _("Ignore ALL occurances this word"),
+                  _("Ignore All"));
+              SpellLink('sqspellRemember()',
+                  _("Add this word to your personal dictionary"),
+                  _("Add to Dic"));
            ?>
           </tr>
          </table>
@@ -435,4 +435,4 @@ if ($errors){
  * End:
  * vim: syntax=php et ts=4
  */
-?>
+?>
\ No newline at end of file
index 21245041ccd9bc4ef7ba41c782cf6e07a6ce62f8..822397393d785b3cab5367f8e7ec495551813223 100644 (file)
@@ -4,16 +4,16 @@
  * --------------- 
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module handles the encryption/decryption of the user dictionary
  * if the user so chooses from the options page.
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 /**
index e8e8497908411bce8c8dc6387f1ecf96d64465a8..8e33050f5cd98e95a76cdb45ffd2be39a7264878 100644 (file)
@@ -4,16 +4,16 @@
  * ------------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module tries to decrypt the user dictionary with a newly provided
- * old password, or erases the file if everything else fails. :(         
+ * old password, or erases the file if everything else fails. :(
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SCRIPT_NAME;
index 90a7a6e9ea5707d03d30388c91ed2209c24a04b3..ead670d29552c74d29f9601eedb8f5194f347c68 100644 (file)
@@ -4,15 +4,15 @@
  * -------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module lets the user edit his/her personal dictionary.
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $color;
@@ -26,8 +26,8 @@ if (!$words){
    * Neo: "So are you."
    */
   sqspell_makePage(_("Personal Dictionary"), null, 
-                  '<p>' . _("No words in your personal dictionary.") 
-                  . '</p>');
+      '<p>' . _("No words in your personal dictionary.") 
+      . '</p>');
 } else {
   /**
    * We're loaded with booty.
@@ -52,18 +52,18 @@ if (!$words){
        * "header" message.
        */
       if (!isset($msg) || !$msg) {
-       $msg = $pre_msg;
+          $msg = $pre_msg;
       }
       $msg .= "<tr bgcolor=\"$color[0]\" align=\"center\"><th>"
-        . sprintf( _("%s dictionary"), $langs[$i] ) . '</th></tr>'
-        . '<tr><td align="center">'
-        . '<form method="post">'
-        . '<input type="hidden" name="MOD" value="forget_me" />'
-        . '<input type="hidden" name="sqspell_use_app" value="' 
-        . $langs[$i] . '" />'
-        . '<table border="0" width="95%" align="center">'
-        . '<tr>'
-        . "<td valign=\"top\">\n";
+          . sprintf( _("%s dictionary"), $langs[$i] ) . '</th></tr>'
+          . '<tr><td align="center">'
+          . '<form method="post">'
+          . '<input type="hidden" name="MOD" value="forget_me" />'
+          . '<input type="hidden" name="sqspell_use_app" value="' 
+          . $langs[$i] . '" />'
+          . '<table border="0" width="95%" align="center">'
+          . '<tr>'
+          . "<td valign=\"top\">\n";
       $words_ary=explode("\n", $lang_words);
       /**
        * There are two lines we need to remove:
@@ -77,26 +77,26 @@ if (!$words){
        * columns.
        */
       for ($j=0; $j<sizeof($words_ary); $j++){
-       if ($j==intval(sizeof($words_ary)/3) 
-           || $j==intval(sizeof($words_ary)/3*2)){
-         $msg .= "</td><td valign=\"top\">\n";
-       }
-       $msg .= "<input type=\"checkbox\" name=\"words_ary[]\" "
-          . 'value="'.htmlspecialchars($words_ary[$j]). '" /> '
-           . htmlspecialchars($words_ary[$j]) . "<br />\n";
+          if ($j==intval(sizeof($words_ary)/3) 
+              || $j==intval(sizeof($words_ary)/3*2)){
+              $msg .= "</td><td valign=\"top\">\n";
+          }
+          $msg .= "<input type=\"checkbox\" name=\"words_ary[]\" "
+              . 'value="'.htmlspecialchars($words_ary[$j]). '" /> '
+              . htmlspecialchars($words_ary[$j]) . "<br />\n";
       }
       $msg .= '</td></tr></table></td></tr>'
-        . "<tr bgcolor=\"$color[0]\" align=\"center\"><td>"
-        . '<input type="submit" value="' . _("Delete checked words") 
-        . '" /></form>'
-        . '</td></tr><tr><td><hr />'
-        . "</td></tr>\n";
+          . "<tr bgcolor=\"$color[0]\" align=\"center\"><td>"
+          . '<input type="submit" value="' . _("Delete checked words") 
+          . '" /></form>'
+          . '</td></tr><tr><td><hr />'
+          . "</td></tr>\n";
     }
   }
   /**
    * Check if all dictionaries were empty.
    */
-  if (!$msg) {
+  if (! isset($msg)) {
     $msg = '<p>' . _("No words in your personal dictionary.") . '</p>';
   } else {
     $msg .= '</table>';
index dd5ad95142033c5f48d777b1838c3d94ab1a7d77..451dfd41ce4b00ef0e20e5acece214571d9c7656 100644 (file)
@@ -4,16 +4,16 @@
  * --------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module shows the user a nice invitation to encrypt or decypt        
  * his/her personal dictionary and explains the caveats of such a decision. 
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SQSPELL_CRYPTO; 
@@ -88,7 +88,7 @@ if ($SQSPELL_CRYPTO){
         . '</form>';
 }
 sqspell_makePage(_("Personal Dictionary Crypto Settings"), 
-                "crypto_settings.js", $msg);
+    "crypto_settings.js", $msg);
 
 /**
  * For Emacs weenies:
index 129c3af9aa4ace4f74514ecd0d0748e37970baf7..7507f9265633a314d6a01abe0c591ceb85f6d8ff 100644 (file)
@@ -4,16 +4,18 @@
  * --------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module deletes the words from the user dictionary. Called
  * after EDIT_DIC module.                                        
  *
- * $Id$
+ * 
  *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SQSPELL_VERSION;
@@ -79,7 +81,7 @@ if (sizeof($words_ary)){
    * Click on some words first, Einstein!
    */
   sqspell_makePage(_("Personal Dictionary"), null, 
-                  '<p>' . _("No changes requested.") . '</p>');
+      '<p>' . _("No changes requested.") . '</p>');
 }
 
 /**
index 85f94d636872af5c078271953a1e697b3b1d52ad..0e647ba228db62759d56be95db3e777726bc4f6e 100644 (file)
@@ -4,15 +4,16 @@
  * ------------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module saves the added words into the user dictionary. Called
  * after CHECK_ME module.                                            
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SQSPELL_VERSION, $SQSPELL_APP_DEFAULT;
@@ -52,7 +53,7 @@ if (!$words){
     $lang_words=sqspell_getLang($words, $langs[$i]);
     if ($langs[$i]==$sqspell_use_app){
       if (!$lang_words) {
-       $lang_words="# $langs[$i]\n";
+          $lang_words="# $langs[$i]\n";
       }
       $lang_words .= $new_words;
     }
index 2e6f370455259ff37a8ba8442a8f09db6a6c3557..b4d05f776fde788d73613562f73e43814a017c7d 100644 (file)
@@ -1,19 +1,16 @@
 <?php
-
-   /**
-    **  index.php -- Displays the main frameset
-    **
-    **  Copyright (c) 1999-2004 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Redirects to the login page.
-    **
-    **  $Id$
-    * @package plugins
-    * @subpackage squirrelspell
-    **/
-
-   header("Location:../../../src/login.php\n\n");
-   exit();
-
-?>
+/**
+ * index.php -- Displays the main frameset
+ *
+ * Copyright (c) 1999-2004 The SquirrelMail development team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Redirects to the login page.
+ *
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
+ */
+header("Location:../../../src/login.php\n\n");
+exit();
+?>
\ No newline at end of file
index 6d384be3703862b9379b2daa911903a6c75cb60c..c0aaebbaa3ba0582e71290616051202d92384031 100644 (file)
@@ -4,15 +4,15 @@
  * ---------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Initial loading of the popup window interface.
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 /**
index 3617e5fed8084b9a7aecc0493a10b023b454cc5a..3519a903e4415c115e303bf1b3ccec71a0b8153c 100644 (file)
@@ -4,16 +4,16 @@
  * ----------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module changes the international dictionaries selection
  * for the user. Called after LANG_SETUP module.                
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
 
 global $SQSPELL_APP_DEFAULT;
@@ -40,19 +40,19 @@ if (sizeof($use_langs)){
        * to make the default dictionary first in line.
        */
       if (in_array($lang_default, $use_langs)){
-       /**
-        * See if the user was dumb and chose a default dictionary
-        * to be something other than the ones he selected.
-        */
-       $hold = array_shift($use_langs);
-       $lang_string = join(", ", $use_langs);
-       $lang_string = str_replace("$lang_default", "$hold", $lang_string);
-       $lang_string = $lang_default . ", " . $lang_string;
+          /**
+           * See if the user was dumb and chose a default dictionary
+           * to be something other than the ones he selected.
+           */
+          $hold = array_shift($use_langs);
+          $lang_string = join(", ", $use_langs);
+          $lang_string = str_replace("$lang_default", "$hold", $lang_string);
+          $lang_string = $lang_default . ", " . $lang_string;
       } else {
-       /** 
-        * Yes, he is dumb.
-        */
-       $lang_string = join(', ', $use_langs);
+          /** 
+           * Yes, he is dumb.
+           */
+          $lang_string = join(', ', $use_langs);
       }
     } else {
       /**
@@ -86,13 +86,13 @@ if (sizeof($use_langs)){
 }
 $old_lang_string = join(", ", $langs);
 $words = str_replace("# LANG: $old_lang_string", "# LANG: $lang_string", 
-                    $words);
+     $words);
 /**
  * Write it down where the sun don't shine.
  */
 sqspell_writeWords($words);
 sqspell_makePage(_("International Dictionaries Preferences Updated"), 
-                null, $msg);
+    null, $msg);
 
 /**
  * For Emacs weenies:
@@ -101,4 +101,4 @@ sqspell_makePage(_("International Dictionaries Preferences Updated"),
  * End:
  * vim: syntax=php
  */
-?>
+?>
\ No newline at end of file
index f1a1d8896499fc2df28fe0b1a2715ea18c8337dd..94868ce7bc376049f5e36e3be6ade086c6ad9f14 100644 (file)
@@ -4,16 +4,16 @@
  * ---------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module displays available dictionaries to the user and lets 
  * him/her choose which ones s/he wants to check messages with.     
  *
- * $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
     
 global $SQSPELL_APP;
index 8ebe5193f19f5d1c69627442428df62466f536d9..a559bcb0fcd28d3394943f4a73e634651e1c62d4 100644 (file)
@@ -3,15 +3,15 @@
  * options_main.mod
  * ----------------
  * Squirrelspell module
- * Copyright (c) 1999-2003 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Default page called when accessing SquirrelSpell's options.
  *
- *  $Id$
- *
- * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
- * @version $Date$
+ * @author Konstantin Riabitsev <icon@duke.edu>
+ * @version $Id$
+ * @package plugins
+ * @subpackage squirrelspell
  */
     
 global $SQSPELL_APP;