Changeset a7c51ac in github
- Timestamp:
- Sep 12, 2011 2:44:56 AM (20 months ago)
- Branches:
- release-0.6
- Children:
- f593222
- Parents:
- d96dc63
- Files:
-
- 7 edited
-
CHANGELOG (modified) (1 diff)
-
plugins/managesieve/Changelog (modified) (1 diff)
-
plugins/managesieve/lib/rcube_sieve.php (modified) (2 diffs)
-
program/include/rcube_string_replacer.php (modified) (1 diff)
-
program/js/app.js (modified) (1 diff)
-
skins/default/images/listheader.gif (modified) (previous)
-
skins/default/mail.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rd96dc63 ra7c51ac 2 2 =========================== 3 3 4 - Fix text-overflow:ellipsis issues on messages list in FF7 and Webkit (#1488061) 5 - Fix handling of links with IP address 4 6 - Fix bug where message list filter was reset on folder compacting (#1488076) 5 7 -
plugins/managesieve/Changelog
r5375e84 ra7c51ac 1 - Fixed import from Horde-INGO (#1488064) 2 1 3 * version 4.3 [2011-07-28] 2 4 ----------------------------------------------------------- -
plugins/managesieve/lib/rcube_sieve.php
r5375e84 ra7c51ac 350 350 351 351 // Squirrelmail (Avelsieve) 352 if ($tokens = preg_split('/(#START_SIEVE_RULE.*END_SIEVE_RULE)\r?\n/', $script, -1, PREG_SPLIT_DELIM_CAPTURE)) { 353 foreach($tokens as $token) { 352 if (preg_match('/(#START_SIEVE_RULE.*END_SIEVE_RULE)\r?\n/', $script)) { 353 $tokens = preg_split('/(#START_SIEVE_RULE.*END_SIEVE_RULE)\r?\n/', $script, -1, PREG_SPLIT_DELIM_CAPTURE); 354 foreach ($tokens as $token) { 354 355 if (preg_match('/^#START_SIEVE_RULE.*/', $token, $matches)) { 355 356 $name[$i] = "unnamed rule ".($i+1); … … 367 368 } 368 369 // Horde (INGO) 369 else if ($tokens = preg_split('/(# .+)\r?\n/i', $script, -1, PREG_SPLIT_DELIM_CAPTURE)) { 370 else if (preg_match('/(# .+)\r?\n/', $script)) { 371 $tokens = preg_split('/(# .+)\r?\n/', $script, -1, PREG_SPLIT_DELIM_CAPTURE); 370 372 foreach($tokens as $token) { 371 if (preg_match('/^# (.+)/ i', $token, $matches)) {373 if (preg_match('/^# (.+)/', $token, $matches)) { 372 374 $name[$i] = $matches[1]; 373 375 $content .= "# rule:[" . $name[$i] . "]\n"; -
program/include/rcube_string_replacer.php
r96e24fa ra7c51ac 38 38 // Simplified domain expression for UTF8 characters handling 39 39 // Support unicode/punycode in top-level domain part 40 $utf_domain = '[^?&@"\'\\/()\s\r\t\n]+\\.([^\\x00-\\x 40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,})';40 $utf_domain = '[^?&@"\'\\/()\s\r\t\n]+\\.([^\\x00-\\x2f\\x3b-\\x40\\x5b-\\x60\\x7b-\\x7f]{2,}|xn--[a-z0-9]{2,})'; 41 41 $url1 = '.:;,'; 42 42 $url2 = 'a-z0-9%=#@+?&\\/_~\\[\\]-'; -
program/js/app.js
rd96dc63 ra7c51ac 321 321 if (this.gui_objects.qsearchbox) { 322 322 this.enable_command('search', 'reset-search', 'moveto', true); 323 $(this.gui_objects.qsearchbox).select();324 323 } 325 324 -
skins/default/mail.css
r24f812dc ra7c51ac 633 633 #messagelist thead tr td.sortedDESC 634 634 { 635 background-position: 0 -2 2px;635 background-position: 0 -26px; 636 636 } 637 637 … … 825 825 { 826 826 cursor: default; 827 display: inline-block;828 827 vertical-align: middle; 829 828 }
Note: See TracChangeset
for help on using the changeset viewer.
