alecpl
2008-10-22 06343d189ea9a58713fff0482b7cb8e48190f8a0
- Added option focus_on_new_message (#1485374)


10 files modified
34 ■■■■■ changed files
CHANGELOG 4 ●●●● patch | view | raw | blame | history
config/main.inc.php.dist 3 ●●●●● patch | view | raw | blame | history
program/js/app.js 10 ●●●●● patch | view | raw | blame | history
program/localization/en_GB/labels.inc 1 ●●●● patch | view | raw | blame | history
program/localization/en_US/labels.inc 1 ●●●● patch | view | raw | blame | history
program/localization/pl_PL/labels.inc 1 ●●●● patch | view | raw | blame | history
program/localization/ru_RU/labels.inc 1 ●●●● patch | view | raw | blame | history
program/steps/mail/check_recent.inc 3 ●●●●● patch | view | raw | blame | history
program/steps/settings/func.inc 9 ●●●● patch | view | raw | blame | history
program/steps/settings/save_prefs.inc 1 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,10 @@
CHANGELOG RoundCube Webmail
---------------------------
2008/10/22 (alec)
----------
- Added option focus_on_new_message (#1485374)
2008/10/18 (alec)
----------
- Fix html2text class autoloading on Windows (#1485505)
config/main.inc.php.dist
@@ -355,6 +355,9 @@
// default setting if preview pane is enabled
$rcmail_config['preview_pane'] = FALSE;
// focus new window if new message arrives
$rcmail_config['focus_on_new_message'] = true;
// Clear Trash on logout
$rcmail_config['logout_purge'] = FALSE;
program/js/app.js
@@ -3582,6 +3582,16 @@
      }
    };
  // notifies that a new message(s) has hit the mailbox
  this.new_message_focus = function()
    {
    // focus main window
    if (this.env.framed && window.parent)
      window.parent.focus();
    else
      window.focus();
    }
  // add row to contacts list
  this.add_contact_row = function(cid, cols, select)
    {
program/localization/en_GB/labels.inc
@@ -232,6 +232,7 @@
$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)';
$labels['2047folding'] = 'Full RFC 2047 (other)';
$labels['advancedoptions'] = 'Advanced options';
$labels['focusonnewmessage'] = 'Focus browser window on new message';
$labels['messagesdisplaying'] = 'Displaying Messages';
$labels['messagescomposition'] = 'Composing Messages';
$labels['folder'] = 'Folder';
program/localization/en_US/labels.inc
@@ -290,6 +290,7 @@
$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)';
$labels['2047folding'] = 'Full RFC 2047 (other)';
$labels['advancedoptions'] = 'Advanced options';
$labels['focusonnewmessage'] = 'Focus browser window on new message';
$labels['folder']  = 'Folder';
$labels['folders']  = 'Folders';
program/localization/pl_PL/labels.inc
@@ -231,6 +231,7 @@
$labels['autosavedraft'] = 'Automatyczny zapis tworzonej wiadomości';
$labels['everynminutes'] = 'co $n minut';
$labels['never'] = 'nigdy';
$labels['focusonnewmessage'] = 'Informuj przeglądarkę o nowej wiadomości';
$labels['folder'] = 'Folder';
$labels['folders'] = 'Foldery';
$labels['foldername'] = 'Nazwa folderu';
program/localization/ru_RU/labels.inc
@@ -237,6 +237,7 @@
$labels['miscfolding'] = 'RFC 2047/2231  (наибольшая совместимость)';
$labels['2047folding'] = 'RFC 2047  (для старых программ)';
$labels['advancedoptions'] = 'Дополнительные настройки';
$labels['focusonnewmessage'] = 'Фокусировать окно браузера при новом сообщении';
$labels['folder'] = 'Папка';
$labels['folders'] = 'Папки';
$labels['foldername'] = 'Имя папки';
program/steps/mail/check_recent.inc
@@ -41,6 +41,9 @@
      $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text());
      $OUTPUT->command('set_quota', rcmail_quota_content($IMAP->get_quota()));
      if (rcmail::get_instance()->config->get('focus_on_new_message',true))
        $OUTPUT->command('new_message_focus');
      // add new message headers to list
      $a_headers = array();
      for ($i=$recent_count, $id=$count_all-$recent_count+1; $i>0; $i--, $id++)
program/steps/settings/func.inc
@@ -148,6 +148,13 @@
  
  $table = new html_table(array('cols' => 2));
  if (!isset($no_override['focus_on_new_message'])) {
    $field_id = 'rcmfd_focus_on_new_message';
    $input_focus_on_new_message = new html_checkbox(array('name' => '_focus_on_new_message', 'id' => $field_id, 'value' => 1));
    $table->add('title', html::label($field_id, Q(rcube_label('focusonnewmessage'))));
    $table->add(null, $input_focus_on_new_message->show($config['focus_on_new_message']?1:0));
  }
  // show config parameter for preview pane
  if (!isset($no_override['preview_pane'])) {
    $field_id = 'rcmfd_preview';
@@ -294,7 +301,7 @@
    $table->add('title', html::label($field_id, Q(rcube_label('skipdeleted'))));
    $table->add(null, $input_purge->show($config['skip_deleted']?1:0));
  }
  // Trash purging on logout
  if (!isset($no_override['logout_purge'])) {
    $field_id = 'rcmfd_logout_purge';
program/steps/settings/save_prefs.inc
@@ -30,6 +30,7 @@
  'htmleditor'   => isset($_POST['_htmleditor']) ? TRUE : FALSE,
  'inline_images'   => isset($_POST['_inline_images']) ? TRUE : FALSE,
  'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE,
  'focus_on_new_message' => isset($_POST['_focus_on_new_message']) ? TRUE : FALSE,
  'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE,
  'skip_deleted' => isset($_POST['_skip_deleted']) ? TRUE : FALSE,
  'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE,