* Header rearranged
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 27 Oct 2001 15:34:19 +0000 (15:34 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 27 Oct 2001 15:34:19 +0000 (15:34 +0000)
* Toggle all fixed for Konq
* Page selector now allows more customization
* Added default paramenter to get pref

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

functions/imap_general.php
functions/mailbox_display.php
functions/prefs.php
src/options.php
src/options_display.php

index f4acc08c642574d3d080d5462df50262224a10d8..09543e740060c0d6c190f6a1920cdf08d6e753bc 100755 (executable)
@@ -11,8 +11,8 @@
       return;
    define ('imap_general_php', true);
 
-   global $imap_general_debug;
-   $imap_general_debug = false;
+global $imap_general_debug;
+$imap_general_debug = false;
 
    /******************************************************************************
     **  Sets an unique session id in order to avoid simultanous sessions crash.
     ******************************************************************************/
 
    function sqimap_read_data_list ($imap_stream, $pre, $handle_errors,
-                                  &$response, &$message) {
-      global $color, $squirrelmail_language, $imap_general_debug;
+                                   &$response, &$message) {
+      global $color, $squirrelmail_language;
+global $imap_general_debug;
 
-      $read = "";
+      $read = '';
       $resultlist = array();
       
       $more_msgs = true;
             $size = $regs[1];
          } else if (ereg("^\\* [0-9]+ FETCH", $read, $regs)) {
             // Sizeless response, probably single-line
-            // For debugging purposes
-            if ($imap_general_debug) {
-               echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
-               flush();
-            }
+// For debugging purposes
+if ($imap_general_debug) {
+    echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
+    flush();
+}
             $size = 0;
             $data[] = $read;
             $read = fgets($imap_stream, 9096);
             while (strpos($read, "\n") === false) {
                $read .= fgets($imap_stream, 9096);
             }
-            // For debugging purposes
-            if ($imap_general_debug) {
-               echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
-               flush();
-            }
+// For debugging purposes
+if ($imap_general_debug) {
+    echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
+    flush();
+}
             // If we know the size, no need to look at the end parameters
             if ($size > 0) {
                if ($total_size == $size) {
@@ -83,9 +84,9 @@
                } else {
                   $data[] = $read;
                   $read = fgets($imap_stream, 9096);
-                 while (strpos($read, "\n") === false) {
-                    $read .= fgets($imap_stream, 9096);
-                 }
+                  while (strpos($read, "\n") === false) {
+                      $read .= fgets($imap_stream, 9096);
+                  }
                }
                $total_size += strlen($read);
             } else {
       $response = $regs[1];
       $message = trim($regs[2]);
       
-      if ($imap_general_debug) echo '--<br>';
+if ($imap_general_debug) echo '--<br>';
 
       if ($handle_errors == false)
           return $resultlist;
    }
 
    function sqimap_read_data ($imap_stream, $pre, $handle_errors, &$response, &$message) {
-       $res = sqimap_read_data_list($imap_stream, $pre, $handle_errors, $response, $message);
-       return $res[0];
+        $res = sqimap_read_data_list($imap_stream, $pre, $handle_errors, $response, $message);
+        return $res[0];
    }
-   
+
    /******************************************************************************
     **  Logs the user into the imap server.  If $hide is set, no error messages
     **  will be displayed.  This function returns the imap connection handle.
       $imap_stream = fsockopen ($imap_server_address, $imap_port,
          $error_number, $error_string, 15);
       $server_info = fgets ($imap_stream, 1024);
-      
+
       // Decrypt the password
       $password = OneTimePadDecrypt($password, $onetimepad);
 
          exit;
       }
 
-      fputs ($imap_stream, sqimap_session_id() . ' LOGIN "' . quoteIMAP($username) . 
+      fputs ($imap_stream, sqimap_session_id() . ' LOGIN "' . quoteIMAP($username) .
          '" "' . quoteIMAP($password) . "\"\r\n");
       $read = sqimap_read_data ($imap_stream, sqimap_session_id(), false, $response, $message);
 
                    printf (_("Unknown error: %s") . "<br>\n", $message);
                echo '<br>';
                echo _("Read data:") . "<br>\n";
-              if (is_array($read))
-              {
-                   foreach ($read as $line)
-                   {
-                       echo htmlspecialchars($line) . "<br>\n";
-                  }
+               if (is_array($read))
+               {
+                       foreach ($read as $line)
+                       {
+                           echo htmlspecialchars($line) . "<br>\n";
+                        }
                }
                exit;
             } else {
 
                // $squirrelmail_language is set by a cookie when
                // the user selects language and logs out
-               
+
                set_up_language($squirrelmail_language, true);
-               
+
                ?>
                   <html>
                      <body bgcolor="ffffff">
    }
 
    function sqimap_capability($imap_stream, $capability) {
-       global $sqimap_capabilities;
-       global $imap_general_debug;
-
-       if (!is_array($sqimap_capabilities)) {
-               fputs ($imap_stream, sqimap_session_id() . " CAPABILITY\r\n");
-               $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
-
-               $c = explode(' ', $read[0]);
-               for ($i=2; $i < count($c); $i++) {
-                       $cap_list = explode('=', $c[$i]);
-                       if (isset($cap_list[1]))
-                           $sqimap_capabilities[$cap_list[0]] = $cap_list[1];
-                       else
-                           $sqimap_capabilities[$cap_list[0]] = TRUE;
-               }
-       }
-       if (! isset($sqimap_capabilities[$capability]))
-          return false;
-       return $sqimap_capabilities[$capability];
-}
+        global $sqimap_capabilities;
+global $imap_general_debug;
+
+        if (!is_array($sqimap_capabilities)) {
+            fputs ($imap_stream, sqimap_session_id() . " CAPABILITY\r\n");
+            $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
+
+            $c = explode(' ', $read[0]);
+            for ($i=2; $i < count($c); $i++) {
+                $cap_list = explode('=', $c[$i]);
+                if (isset($cap_list[1]))
+                    $sqimap_capabilities[$cap_list[0]] = $cap_list[1];
+                else
+                    $sqimap_capabilities[$cap_list[0]] = TRUE;
+            }
+        }
+        if (! isset($sqimap_capabilities[$capability]))
+        return false;
+        return $sqimap_capabilities[$capability];
+    }
 
    /******************************************************************************
     **  Returns the delimeter between mailboxes:  INBOX/Test, or INBOX.Test... 
     ******************************************************************************/
    function sqimap_get_delimiter ($imap_stream = false) {
-      global $imap_general_debug;
+global $imap_general_debug;
       global $sqimap_delimiter;
       global $optional_delimiter;
 
 
       /* Do some caching here */
       if (!$sqimap_delimiter) {
-               if (sqimap_capability($imap_stream, "NAMESPACE")) {
-                       /* According to something that I can't find, this is supposed to work on all systems
-                          OS: This won't work in Courier IMAP.
-                          OS:  According to rfc2342 response from NAMESPACE command is:
-                          OS:  * NAMESPACE (PERSONAL NAMESPACES) (OTHER_USERS NAMESPACE) (SHARED NAMESPACES)
-                          OS:  We want to lookup all personal NAMESPACES...
-                       */
-                       fputs ($imap_stream, sqimap_session_id() . " NAMESPACE\r\n");
-                       $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
-                       if (eregi('\\* NAMESPACE +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL)', $read[0], $data)) {
-                               if (eregi('^\\( *\\((.*)\\) *\\)', $data[1], $data2))
-                                       $pn = $data2[1];
-                               $pna = explode(')(', $pn);
-                               while (list($k, $v) = each($pna))
-                               {
+        if (sqimap_capability($imap_stream, "NAMESPACE")) {
+            /* According to something that I can't find, this is supposed to work on all systems
+            OS: This won't work in Courier IMAP.
+            OS:  According to rfc2342 response from NAMESPACE command is:
+            OS:  * NAMESPACE (PERSONAL NAMESPACES) (OTHER_USERS NAMESPACE) (SHARED NAMESPACES)
+            OS:  We want to lookup all personal NAMESPACES...
+            */
+            fputs ($imap_stream, sqimap_session_id() . " NAMESPACE\r\n");
+            $read = sqimap_read_data($imap_stream, sqimap_session_id(), true, $a, $b);
+            if (eregi('\\* NAMESPACE +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL) +(\\( *\\(.+\\) *\\)|NIL)', $read[0], $data)) {
+                if (eregi('^\\( *\\((.*)\\) *\\)', $data[1], $data2))
+                    $pn = $data2[1];
+                $pna = explode(')(', $pn);
+                while (list($k, $v) = each($pna))
+                {
                     $lst = explode('"', $v);
                     if (isset($lst[3])) {
                         $pn[$lst[1]] = $lst[3];
                     } else {
                         $pn[$lst[1]] = '';
                     }
-                               }
-                       }
-                       $sqimap_delimiter = $pn[0];
-               } else {
-                       fputs ($imap_stream, ". LIST \"INBOX\" \"\"\r\n");
-                       $read = sqimap_read_data($imap_stream, '.', true, $a, $b);
-                       $quote_position = strpos ($read[0], '"');
-                       $sqimap_delimiter = substr ($read[0], $quote_position+1, 1);
-               }
-       }
-       return $sqimap_delimiter;
+                }
+            }
+            $sqimap_delimiter = $pn[0];
+        } else {
+            fputs ($imap_stream, ". LIST \"INBOX\" \"\"\r\n");
+            $read = sqimap_read_data($imap_stream, '.', true, $a, $b);
+            $quote_position = strpos ($read[0], '"');
+            $sqimap_delimiter = substr ($read[0], $quote_position+1, 1);
+        }
+    }
+    return $sqimap_delimiter;
    }
 
 
       $read_ary = sqimap_read_data ($imap_stream, sqimap_session_id(), true, $result, $message);
       for ($i = 0; $i < count($read_ary); $i++) {
          if (ereg("[^ ]+ +([^ ]+) +EXISTS", $read_ary[$i], $regs)) {
-           return $regs[1];
+            return $regs[1];
          }
       }
       return "BUG!  Couldn't get number of messages in $mailbox!";
index 9636d06de8f761ea9c9bbed5a13575db9e4c1346..43836e1ca5973f043ca00e413a76e80b2d2a4e41 100644 (file)
@@ -13,6 +13,8 @@
        return;
    define('mailbox_display_php', true);
 
+   define( 'PG_SEL_MAX', 10 );         // Default value for page_selector_max
+
    function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage, $where, $what) {
       global $checkall;
       global $color, $msgs, $msort;
             $re_abbr = # Add more here!
                'vedr|sv|' .    # Danish
                're|aw';        # English
-            if (eregi("^($re_abbr):[ ]*(.*)$", $messages[$j]['SUBJECT-SORT'], $regs))
+
+            if (eregi( "^($re_abbr):[ ]*(.*)$", $messages[$j]['SUBJECT-SORT'], $regs))
                $messages[$j]['SUBJECT-SORT'] = $regs[2];
 
             $num = 0;
 
       $Message = '';
       if ($startMessage < $endMessage) {
-         $Message = _("Viewing messages") ." <B>$startMessage</B> ". _("to") ." <B>$endMessage</B> ($numMessages " . _("total") . ")\n";
+         $Message = _("Viewing messages") .":<br><B>$startMessage</B> ". _("to") ." <B>$endMessage</B> ($numMessages " . _("total") . ")\n";
       } elseif ($startMessage == $endMessage) {
-         $Message = _("Viewing message") ." <B>$startMessage</B> ($numMessages " . _("total") . ")\n";
+         $Message = _("Viewing message") .":<br><B>$startMessage</B> ($numMessages " . _("total") . ")\n";
       }
 
       if ($sort == 6) {
 
       // Page selector block. Following code computes page links.
       $mMore = '';
-      if( getPref($data_dir, $username, 'page_selector') && $numMessages > $show_num ) {
-
-        $j = intval( $numMessages / $show_num );
+      if( !getPref($data_dir, $username, 'page_selector') &&
+          $numMessages > $show_num ) {
+        $j = intval( $numMessages / $show_num );  // Max pages
+        $k = max( 1, $j / getPref($data_dir, $username, 'page_selector_max', PG_SEL_MAX ) );
         if( $numMessages % $show_num <> 0 )
                 $j++;
         $startMessage = min( $startMessage, $numMessages );
-        for( $i = 0; $i < $j; $i++ ) {
-
-                $start = ( ( $i * $show_num ) + 1 );
-
-                if( $startMessage >= $start &&
-                $startMessage < $start + $show_num ) {
-                $mMore .= '<b>' . ($i+1) . '</b> ';
-                } else {
-                $mMore .= "<a href=\"right_main.php?use_mailbox_cache=$use_mailbox_cache&startMessage=$start" .
-                        "&mailbox=$urlMailbox\" TARGET=\"right\">" .
-                        ($i+1) .
-                        '</a> ';
-                }
+        $p = intval( $startMessage / $show_num ) + 1;
+        $i = 1;
+        while( $i < $p ) {
+            $pg = intval( $i );
+            $start = ( ($pg-1) * $show_num ) + 1;
+            $mMore .= "<a href=\"right_main.php?use_mailbox_cache=$use_mailbox_cache&startMessage=$start" .
+                    "&mailbox=$urlMailbox\" TARGET=\"right\">$pg</a> ";
+            $i+=$k;
+        }
+        $mMore .= "<b>$p</b> ";
+        $i += $k;
+        while( $i <= $j ) {
+            $pg = intval( $i );
+            $start = ( ($pg-1) * $show_num ) + 1;
+            $mMore .= "<a href=\"right_main.php?use_mailbox_cache=$use_mailbox_cache&startMessage=$start" .
+                    "&mailbox=$urlMailbox\" TARGET=\"right\">$pg</a> ";
+            $i+=$k;
         }
         $mMore .= ' | ';
       }
       echo "</td></tr>\n";
 
       echo "<TR BGCOLOR=\"$color[4]\"><TD>";
-      echo '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>';
-      echo "$lMore$mMore$rMore</td><td align=right>\n";
-      if (!$startMessage) $startMessage=1;
+      echo "<table BGCOLOR=\"$color[4]\" ".
+           'width="100%" cellpadding="0" cellspacing="2" border="0"><tr><td>';
+      echo "$lMore$mMore$rMore</td><td align=right>";
+      if (!$startMessage)
+          $startMessage=1;
       ShowSelectAllLink($startMessage, $sort);
-
       echo '</td></tr></table></td></tr></table>'; /** End of message-list table */
 
       do_hook('mailbox_index_after');
 
       /** This is the beginning of the message list table.  It wraps around all messages */
       echo '<TABLE WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">';
-      if ($Message) {
-         echo "<TR BGCOLOR=\"$color[4]\"><TD align=center>$Message</td></tr>\n";
-      }
 
       echo "<TR BGCOLOR=\"$color[4]\"><TD>";
-      echo '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>';
-      echo "$More</td><td align=right>\n";
-      ShowSelectAllLink($startMessage, $sort);
-      echo '</td></tr></table></td></tr>';
 
       /** The delete and move options */
       echo "<TR><TD BGCOLOR=\"$color[0]\">";
       echo "\n<FORM name=messageList method=post action=\"$moveURL\">\n";
       echo "<TABLE BGCOLOR=\"$color[0]\" COLS=2 BORDER=0 cellpadding=0 cellspacing=0 width=100%>\n";
 
-      echo "   <TR>\n";
-      echo "      <TD WIDTH=60% ALIGN=LEFT VALIGN=CENTER NOWRAP>\n";
-      echo '         <SMALL>&nbsp;' . _("Move selected to:") . "</SMALL>\n";
-      echo "      </TD>\n";
-      echo "      <TD>&nbsp;</TD>\n";
-      echo "      <TD WIDTH=\"1%\" ALIGN=RIGHT NOWRAP>\n";
-      echo '         <SMALL>&nbsp;' . _("Transform Selected Messages") . ": &nbsp; </SMALL><BR>\n";
-      echo "      </TD>\n";
-      echo "   </TR>\n";
-      echo "   <TR>\n";
-      echo "      <TD ALIGN=LEFT VALIGN=CENTER NOWRAP>\n";
-      echo '         <SMALL>&nbsp;<TT><SELECT NAME="targetMailbox">';
+      echo "   <TR>\n" .
+           "      <TD ALIGN=LEFT VALIGN=CENTER NOWRAP>\n" .
+           '         <SMALL>&nbsp;' . _("Move selected to:") . "</SMALL>\n" .
+           "      </TD>\n" .
+           "      <TD rowspan=2><center>$Message</TD>\n" .
+           "      <TD ALIGN=RIGHT NOWRAP>\n" .
+           '         <SMALL>&nbsp;' . _("Transform Selected Messages") . ": &nbsp; </SMALL><BR>\n" .
+           "      </TD>\n" .
+           "   </TR>\n" .
+           "   <TR>\n" .
+           "      <TD ALIGN=LEFT VALIGN=CENTER NOWRAP>\n" .
+           '         <SMALL>&nbsp;<TT><SELECT NAME="targetMailbox">';
 
       $boxes = sqimap_mailbox_list($imapConnection);
       for ($i = 0; $i < count($boxes); $i++) {
       echo '         </SELECT></TT></SMALL>';
       echo "         <SMALL><INPUT TYPE=SUBMIT NAME=\"moveButton\" VALUE=\"" . _("Move") . "\"></SMALL>\n";
       echo "      </TD>\n";
-      echo "      <TD>&nbsp;</TD>\n";
       echo "      <TD ALIGN=RIGHT NOWRAP>&nbsp;&nbsp;&nbsp;\n";
       if (! $auto_expunge) {
          echo '         <INPUT TYPE=SUBMIT NAME="expungeButton" VALUE="'. _("Expunge") .'">&nbsp;'. _("mailbox") ."&nbsp;\n";
       }
+
       echo "         <INPUT TYPE=SUBMIT NAME=\"markRead\" VALUE=\"". _("Read")."\">\n";
       echo "         <INPUT TYPE=SUBMIT NAME=\"markUnread\" VALUE=\"". _("Unread")."\">\n";
       echo "         <INPUT TYPE=SUBMIT VALUE=\"". _("Delete") . "\">&nbsp;\n";
+
       echo "      </TD>\n";
       echo "   </TR>\n";
       echo "</TABLE>\n";
       do_hook('mailbox_form_before');
       echo '</TD></TR>';
 
+      echo "<tr  bgcolor=\"$color[4]\"><td colspan=3>\n";
+      echo "<table bgcolor=\"$color[4]\" cellpadding=2".
+           ' width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>';
+      echo "$More</td><td align=right>";
+      ShowSelectAllLink($startMessage, $sort);
+      echo "</td></tr></table>\n</td></tr>";
+
       echo "<TR><TD BGCOLOR=\"$color[0]\">";
       echo "<TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=";
       if ($GLOBALS['alt_index_colors']) {
       echo "</TR>\n";
    }
 
+/* ----------------------------------------------------------------------- */
+
    function ShowSortButton($sort, $mailbox, $Up, $Down) {
       if ($sort != $Up && $sort != $Down) {
          $img = 'sort_none.gif';
    {
        global $checkall, $PHP_SELF, $what, $where, $mailbox;
 
-       // This code is from Philippe Mingo <mingo@rotedic.com>
-
-       ?>
+       ?>&nbsp;
 <script language="JavaScript">
 <!--
 function CheckAll() {
   for (var i = 0; i < document.messageList.elements.length; i++) {
-    if( document.messageList.elements[i].name.substr( 0, 3 ) == 'msg') {
+    if( document.messageList.elements[i].type == 'checkbox' ) {
       document.messageList.elements[i].checked =
         !(document.messageList.elements[i].checked);
     }
   }
 }
-window.document.write('<a href="#" onClick="CheckAll();"><?php echo
- _("Toggle All") ?></A>');
+window.document.write('<input type=button onClick="CheckAll();" value="<?php echo
+ _("Toggle All") ?>">');
 //-->
 </script><noscript>
 <?PHP
index 0042efe7ae7c1d63145c4543fb9a701c32a838f6..4f9d2a6871b81b03e75a8d6925760a686e8ea8b9 100644 (file)
    
    
    /** returns the value for $string **/
-   function getPref($data_dir, $username, $string) {
+   function getPref($data_dir, $username, $string, $default = '') {
       global $prefs_cache;
-      
+
       cachePrefValues($data_dir, $username);
-      
+
       if (isset($prefs_cache[$string]))
           return $prefs_cache[$string];
-      return '';
+      else
+        return $default;
    }
 
 
index 37d478c14574c9df8e5e843ed71d7e659b6c9a70..651c3ca8f16270547eecd119a9c8999b7d83823e 100644 (file)
          removePref($data_dir, $username, 'include_self_reply_all');
       }
 
-      if (isset($pageselector)) {
-         setPref($data_dir, $username, 'page_selector', 1);
+      if (isset($pageselectormax)) {
+         setPref($data_dir, $username, 'page_selector_max', $pageselectormax);
       } else {
+         removePref($data_dir, $username, 'page_selector_max', 0 );
+      }
+
+      if (isset($pageselector)) {
          removePref($data_dir, $username, 'page_selector');
+      } else {
+         setPref($data_dir, $username, 'page_selector', 1);
       }
 
       do_hook('options_display_save');
index 004277a33ad4c451584d9f26cda0a52da42c43c9..2ee032b0fbc2086db79cd6477563cbdbd3e5d701 100644 (file)
@@ -84,7 +84,7 @@
    if (isset($show_num))
       echo '         <tt><input type="text" size="5" name="shownum" value="'.$show_num.'"></tt><br>';
    else
-      echo '         <tt><input type="text" size="5" name="shownum" value="25"></tt><br>'; 
+      echo '         <tt><input type="text" size="5" name="shownum" value="25"></tt><br>';
 ?>
             </td>
          </tr>
@@ -235,7 +235,7 @@ echo _("Yes, show me the HTML version of a mail message, if it is available.");
             </td>
          </tr>
          <tr>
-            <td align=right>
+            <td align=right valign=middle>
                <?php echo _("Include Self"); ?>:
             </td>
             <td>
@@ -247,14 +247,16 @@ echo _("Yes, show me the HTML version of a mail message, if it is available.");
             </td>
          </tr>
          <tr>
-            <td align=right>
-               <?php echo _("Page Selector"); ?>:
-            </td>
-            <td>
-               <input type=checkbox name=pageselector <?php
-        if (getPref($data_dir, $username, 'page_selector') != '' )
-                echo " checked";
-        echo '> ' . _("Show page selector");
+            <td align=right valign=middle>
+               <?php
+    echo _("Page Selector") . ': </td><td>';
+    echo '<input type=checkbox name=pageselector';
+    if (!getPref($data_dir, $username, 'page_selector') )
+                echo ' checked';
+    echo '> ' . _("Show page selector") . ' ';
+    $psw = getPref($data_dir, $username, 'page_selector_max', 10 );
+    echo "<input name=pageselectormax size=3  value=\"$psw\">";
+    echo ' ' . _("pages max");
                  ?>
             </td>
          </tr>
@@ -265,6 +267,7 @@ echo _("Yes, show me the HTML version of a mail message, if it is available.");
                <input type="submit" value="<?php echo _("Submit"); ?>"name="submit_display">
             </td>
          </tr>
+
       </table>
    </form>