Changeset 25d8ba6 in github
- Timestamp:
- Jun 30, 2006 6:02:28 PM (7 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 5084427
- Parents:
- a894ba5
- Files:
-
- 8 edited
-
CHANGELOG (modified) (1 diff)
-
INSTALL (modified) (1 diff)
-
program/include/rcube_imap.inc (modified) (1 diff)
-
program/js/app.js (modified) (7 diffs)
-
program/lib/imap.inc (modified) (1 diff)
-
program/localization/fr/labels.inc (modified) (1 diff)
-
program/steps/mail/check_recent.inc (modified) (1 diff)
-
program/steps/mail/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
ra894ba5 r25d8ba6 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2006/06/30 (richs) 5 ---------- 6 - Fixed empty INBOX compatibility bug (Patch #1443200) 7 - Temporarily fixed French "compact" localization (Patch #1483862) 8 - Fixed "Select All" not working with Delete interface button (Bug #1332434) 9 - Fixed messsage list column compatibility with Konqueror (Bug #1395711) 10 - Fixed "unread count" in window title when count changed (Bug #1483812) 11 - Fixed DB error when deleting from message table (Patch #1483835) 3 12 4 13 2006/06/29 (richs) -
INSTALL
rfd372599 r25d8ba6 10 10 - error_reporting E_ALL & ~E_NOTICE (or lower) 11 11 - file_uploads on (for attachment upload features) 12 - memory_limit (increase as suitable to support large attachments) 12 13 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP 13 14 * A database with permission to create tables -
program/include/rcube_imap.inc
ra894ba5 r25d8ba6 1061 1061 foreach ($a_uids as $uid) 1062 1062 { 1063 $index = array_search($uid, $a_cache_index);1064 $start_index = min($index, $start_index);1063 if(($index = array_search($uid, $a_cache_index)) !== FALSE) 1064 $start_index = min($index, $start_index); 1065 1065 } 1066 1066 -
program/js/app.js
ra894ba5 r25d8ba6 1453 1453 for (var n in this.list_rows) { 1454 1454 if (!filter || this.list_rows[n][filter]==true) 1455 this.last_selected = n; 1455 1456 this.highlight_row(n, true); 1456 1457 } … … 3011 3012 }; 3012 3013 3014 // for reordering column array, Konqueror workaround 3015 this.set_message_coltypes = function(coltypes) 3016 { 3017 this.coltypes = coltypes; 3018 } 3013 3019 3014 3020 // create a table row in the message list … … 3043 3049 3044 3050 // add each submitted col 3045 for (var c in cols) 3046 { 3051 for (var n = 0; n < this.coltypes.length; n++) 3052 { 3053 var c = this.coltypes[n]; 3047 3054 col = document.createElement('TD'); 3048 3055 col.className = String(c).toLowerCase(); … … 3088 3095 if (!this.gui_objects.mailboxlist) 3089 3096 return false; 3090 3097 3098 if (mbox==this.env.mailbox) 3099 set_title = true; 3100 3091 3101 var item, reg, text_obj; 3092 3102 mbox = String(mbox).toLowerCase().replace(this.mbox_expression, ''); … … 3105 3115 else 3106 3116 text_obj.innerHTML = text_obj.innerHTML.replace(reg, ''); 3107 3117 3108 3118 // set the right classes 3109 3119 this.set_classname(item, 'unread', count>0 ? true : false); … … 3112 3122 // set unread count to window title 3113 3123 reg = /^\([0-9]+\)\s+/i; 3114 if (set_title && count && document.title)3124 if (set_title && document.title) 3115 3125 { 3116 3126 var doc_title = String(document.title); … … 3122 3132 else 3123 3133 document.title = doc_title.replace(reg, ''); 3124 }3125 // remove unread count from window title3126 else if (document.title)3127 {3128 document.title = document.title.replace(reg, '');3129 3134 } 3130 3135 }; -
program/lib/imap.inc
r6eeb17d r25d8ba6 676 676 $index_field = strtoupper($index_field); 677 677 678 if ( empty($message_set)) return array();678 if ((empty($message_set)) || ($message_set == "1:0")) return array(); 679 679 680 680 //$fields_a["DATE"] = ($IMAP_USE_INTERNAL_DATE?6:1); -
program/localization/fr/labels.inc
rc8c1e0ef r25d8ba6 109 109 $labels['unread'] = 'Non lus'; 110 110 111 $labels['compact'] = 'Compresser';111 //$labels['compact'] = 'Compresser'; 112 112 $labels['empty'] = 'Vider'; 113 113 $labels['purge'] = 'Purger'; -
program/steps/mail/check_recent.inc
rc8c1e0ef r25d8ba6 33 33 $unread_count = $IMAP->messagecount(NULL, 'UNSEEN', TRUE); 34 34 35 $commands .= sprintf("this.set_unread_count('%s', %d , true);\n", addslashes($mbox_name), $unread_count);35 $commands .= sprintf("this.set_unread_count('%s', %d);\n", addslashes($mbox_name), $unread_count); 36 36 $commands .= sprintf("this.set_env('messagecount', %d);\n", $count); 37 37 $commands .= sprintf("this.set_rowcount('%s');\n", rcmail_get_messagecount_text()); -
program/steps/mail/func.inc
ra894ba5 r25d8ba6 501 501 $a_show_cols[$f] = 'to'; 502 502 503 $commands .= sprintf("this.set_message_coltypes(%s);\n", array2js($a_show_cols)); 504 503 505 // loop through message headers 504 506 for ($n=0; $a_headers[$n]; $n++)
Note: See TracChangeset
for help on using the changeset viewer.
