Changeset 3435 in subversion
- Timestamp:
- Mar 28, 2010 1:52:34 PM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 5 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/editor.js (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (1 diff)
-
program/steps/mail/sendmail.inc (modified) (1 diff)
-
skins/default/editor_content.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3429 r3435 2 2 =========================== 3 3 4 - Re-organize editor buttons, add blockquote and search buttons 5 - Make possible to write inside or after a quoted html message (#1485476) 4 6 - Fix bugs on unexpected IMAP connection close (#1486190, #1486270) 5 7 - Iloha's imap.inc rewritten into rcube_imap_generic class -
trunk/roundcubemail/program/js/editor.js
r3334 r3435 44 44 language : editor_lang, 45 45 plugins : 'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality' + (spellcheck ? ',spellchecker' : ''), 46 theme_advanced_buttons1 : 'bold,italic,underline, separator,justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,outdent,indent,separator,link,unlink,emotions,charmap,code,forecolor,backcolor,fontselect,fontsizeselect, separator' + (spellcheck ? ',spellchecker' : '') + ',undo,redo,image,media,ltr,rtl',47 theme_advanced_buttons2 : ' ',46 theme_advanced_buttons1 : 'bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,outdent,indent,ltr,rtl,blockquote,|,forecolor,backcolor,fontselect,fontsizeselect', 47 theme_advanced_buttons2 : 'link,unlink,code,|,emotions,charmap,image,media,|,search' + (spellcheck ? ',spellchecker' : '') + ',undo,redo', 48 48 theme_advanced_buttons3 : '', 49 49 theme_advanced_toolbar_location : 'top', -
trunk/roundcubemail/program/steps/mail/compose.inc
r3433 r3435 614 614 $MESSAGE->headers->date, 615 615 htmlspecialchars(Q($MESSAGE->get_header('from'), 'replace'), ENT_COMPAT, $RCMAIL->output->get_charset())); 616 $prefix .= '<blockquote type="cite" style="padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px; width:100%">';616 $prefix .= '<blockquote>'; 617 617 618 618 if ($RCMAIL->config->get('top_posting')) { -
trunk/roundcubemail/program/steps/mail/sendmail.inc
r3353 r3435 367 367 368 368 if (!$savedraft) { 369 // remove signature's div ID370 if ($isHtml)369 if ($isHtml) { 370 // remove signature's div ID 371 371 $message_body = preg_replace('/\s*id="_rc_sig"/', '', $message_body); 372 372 373 // add inline css for blockquotes 374 $bstyle = 'padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px; width:100%'; 375 $message_body = preg_replace('/<blockquote>/', 376 '<blockquote type="cite" style="'.$bstyle.'">', $message_body); 377 } 373 378 // generic footer for all messages 374 379 if (!empty($CONFIG['generic_message_footer'])) { -
trunk/roundcubemail/skins/default/editor_content.css
r3393 r3435 23 23 word-wrap: break-word; /* IE (and Safari) */ 24 24 } 25 blockquote 26 { 27 padding-left:5px; 28 border-left:#1010ff 2px solid; 29 margin-left:5px; 30 width:100%; 31 }
Note: See TracChangeset
for help on using the changeset viewer.
