Changeset 3143 in subversion
- Timestamp:
- Nov 30, 2009 5:54:20 AM (3 years ago)
- Location:
- branches/devel-threads
- Files:
-
- 6 edited
-
THREADS (modified) (2 diffs)
-
program/js/app.js (modified) (3 diffs)
-
program/localization/en_US/labels.inc (modified) (1 diff)
-
skins/default/images/mail_footer.png (modified) (previous)
-
skins/default/mail.css (modified) (1 diff)
-
skins/default/templates/mail.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/devel-threads/THREADS
r3142 r3143 11 11 - use underlined subject for root with unread children (icon is still supported) 12 12 - on deleting messages the whole list isn't refreshed 13 - added 'expand unread' button 13 14 14 15 CHANGES IN RELATION TO TRUNK (for pasting into CHANGELOG after merge) … … 20 21 21 22 TODO (must have): 22 - threads caching, 23 - "Expand All Unread" button 23 - threads caching 24 24 TODO (other): 25 25 - performance: fetching all messages for list in "expand all" state only, -
branches/devel-threads/program/js/app.js
r3142 r3143 247 247 if (this.env.messagecount) { 248 248 this.enable_command('select-all', 'select-none', 'expunge', true); 249 this.enable_command('expand-all', ' collapse-all', this.env.threading);249 this.enable_command('expand-all', 'expand-unread', 'collapse-all', this.env.threading); 250 250 } 251 251 … … 4555 4555 this.enable_command('show', 'reply', 'reply-all', 'forward', 'moveto', 'delete', 4556 4556 'mark', 'viewsource', 'open', 'edit', 'download', 'print', 'load-attachment', 4557 'purge', 'expunge', 'select-all', 'select-none', 'sort', 'expand-all',4558 ' collapse-all', false);4557 'purge', 'expunge', 'select-all', 'select-none', 'sort', 4558 'expand-all', 'expand-unread', 'collapse-all', false); 4559 4559 } 4560 4560 break; … … 4572 4572 this.enable_command('purge', this.purge_mailbox_test()); 4573 4573 4574 this.enable_command('expand-all', ' collapse-all', this.env.threading && this.env.messagecount);4574 this.enable_command('expand-all', 'expand-unread', 'collapse-all', this.env.threading && this.env.messagecount); 4575 4575 4576 4576 if (response.action == 'list') -
branches/devel-threads/program/localization/en_US/labels.inc
r3125 r3143 158 158 $labels['threads'] = 'Threads'; 159 159 $labels['expand-all'] = 'Expand All'; 160 $labels['expand-unread'] = 'Expand Unread'; 160 161 $labels['collapse-all'] = 'Collapse All'; 161 162 -
branches/devel-threads/skins/default/mail.css
r3136 r3143 644 644 } 645 645 646 #listcontrols a.expand-unread { 647 background-position: -120px 0; 648 } 649 650 #listcontrols a.expand-unreadsel { 651 background-position: -120px -15px; 652 } 653 646 654 #countcontrols 647 655 { -
branches/devel-threads/skins/default/templates/mail.html
r3137 r3143 87 87 <span style="margin-left: 20px"><roundcube:label name="threads" />: </span> 88 88 <roundcube:button command="expand-all" type="link" title="expand-all" class="buttonPas expand-all" classAct="button expand-all" classSel="button expand-allsel" content=" " /> 89 <roundcube:button command="expand-unread" type="link" title="expand-unread" class="buttonPas expand-unread" classAct="button expand-unread" classSel="button expand-unreadsel" content=" " /> 89 90 <roundcube:button command="collapse-all" type="link" title="collapse-all" class="buttonPas collapse-all" classAct="button collapse-all" classSel="button collapse-allsel" content=" " /> 90 91 <roundcube:container name="listcontrols" id="listcontrols" />
Note: See TracChangeset
for help on using the changeset viewer.
