From ef2e7b3f9d264ec146d4dae257b1e295ab3b462a Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Tue, 21 Apr 2015 12:45:58 +0200 Subject: updates - plugins as a separate git folder --- plugins/newmail_notifier/newmail_notifier.js | 200 --------------------------- 1 file changed, 200 deletions(-) delete mode 100644 plugins/newmail_notifier/newmail_notifier.js (limited to 'plugins/newmail_notifier/newmail_notifier.js') diff --git a/plugins/newmail_notifier/newmail_notifier.js b/plugins/newmail_notifier/newmail_notifier.js deleted file mode 100644 index 79911f26e..000000000 --- a/plugins/newmail_notifier/newmail_notifier.js +++ /dev/null @@ -1,200 +0,0 @@ -/** - * New Mail Notifier plugin script - * - * @author Aleksander Machniak - * - * @licstart The following is the entire license notice for the - * JavaScript code in this file. - * - * Copyright (c) 2013, The Roundcube Dev Team - * - * The JavaScript code in this page is free software: you can redistribute it - * and/or modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of - * the License, or (at your option) any later version. - * - * @licend The above is the entire license notice - * for the JavaScript code in this file. - */ - -if (window.rcmail && rcmail.env.task == 'mail') { - rcmail.addEventListener('plugin.newmail_notifier', newmail_notifier_run); - rcmail.addEventListener('actionbefore', newmail_notifier_stop); - rcmail.addEventListener('init', function() { - // bind to messages list select event, so favicon will be reverted on message preview too - if (rcmail.message_list) - rcmail.message_list.addEventListener('select', newmail_notifier_stop); - }); -} - -// Executes notification methods -function newmail_notifier_run(prop) -{ - if (prop.basic) - newmail_notifier_basic(); - if (prop.sound) - newmail_notifier_sound(); - if (prop.desktop) - newmail_notifier_desktop(rcmail.gettext('body', 'newmail_notifier')); -} - -// Stops notification -function newmail_notifier_stop(prop) -{ - // revert original favicon - if (rcmail.env.favicon_href && rcmail.env.favicon_changed && (!prop || prop.action != 'check-recent')) { - $('').replaceAll('link[rel="shortcut icon"]'); - rcmail.env.favicon_changed = 0; - } - - // Remove IE icon overlay if we're pinned to Taskbar - try { - if(window.external.msIsSiteMode()) { - window.external.msSiteModeClearIconOverlay(); - } - } catch(e) {} -} - -// Basic notification: window.focus and favicon change -function newmail_notifier_basic() -{ - var w = rcmail.is_framed() ? window.parent : window, - path = rcmail.assets_path('plugins/newmail_notifier'); - - w.focus(); - - // we cannot simply change a href attribute, we must to replace the link element (at least in FF) - var link = $('').attr('href', path + '/favicon.ico'), - oldlink = $('link[rel="shortcut icon"]', w.document); - - if (!rcmail.env.favicon_href) - rcmail.env.favicon_href = oldlink.attr('href'); - - rcmail.env.favicon_changed = 1; - link.replaceAll(oldlink); - - // Add IE icon overlay if we're pinned to Taskbar - try { - if (window.external.msIsSiteMode()) { - window.external.msSiteModeSetIconOverlay(path + '/overlay.ico', rcmail.gettext('title', 'newmail_notifier')); - } - } catch(e) {} -} - -// Sound notification -function newmail_notifier_sound() -{ - var elem, src = rcmail.assets_path('plugins/newmail_notifier/sound'), - plugin = navigator.mimeTypes ? navigator.mimeTypes['audio/mp3'] : {}; - - // Internet Explorer does not support wav files, - // support in other browsers depends on enabled plugins, - // so we use wav as a fallback - src += bw.ie || (plugin && plugin.enabledPlugin) ? '.mp3' : '.wav'; - - // HTML5 - try { - elem = $('