| Index: notification.js | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/notification.js | 
| @@ -0,0 +1,94 @@ | 
| +/* | 
| + * This file is part of Adblock Plus <http://adblockplus.org/>, | 
| + * Copyright (C) 2006-2013 Eyeo GmbH | 
| + * | 
| + * Adblock Plus is free software: you can redistribute it and/or modify | 
| + * it under the terms of the GNU General Public License version 3 as | 
| + * published by the Free Software Foundation. | 
| + * | 
| + * Adblock Plus is distributed in the hope that it will be useful, | 
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| + * GNU General Public License for more details. | 
| + * | 
| + * You should have received a copy of the GNU General Public License | 
| + * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| + */ | 
| + | 
| +var backgroundPage = chrome.extension.getBackgroundPage(); | 
| +var require = backgroundPage.require; | 
| + | 
| +var Utils = require("utils").Utils; | 
| +var Notification = require("notification").Notification; | 
| + | 
| +function getDocLinks(notification) | 
| +{ | 
| + if (!notification.links) | 
| + return []; | 
| + | 
| + var docLinks = []; | 
| + notification.links.forEach(function(link) | 
| + { | 
| + docLinks.push(Utils.getDocLink(link)); | 
| + }); | 
| + return docLinks; | 
| +} | 
| + | 
| +function insertMessage(element, text, links) | 
| +{ | 
| + var match = /^(.*?)<(a|strong)>(.*?)<\/\2>(.*)$/.exec(text); | 
| + if (!match) | 
| + { | 
| + element.appendChild(document.createTextNode(text)); | 
| + return; | 
| + } | 
| + | 
| + var before = match[1]; | 
| + var tagName = match[2]; | 
| + var value = match[3]; | 
| + var after = match[4]; | 
| + | 
| + insertMessage(element, before, links); | 
| + | 
| + var newElement = document.createElement(tagName); | 
| + if (tagName === "a" && links && links.length) | 
| + newElement.href = links.shift(); | 
| + insertMessage(newElement, value, links); | 
| + element.appendChild(newElement); | 
| + | 
| + insertMessage(element, after, links); | 
| +} | 
| + | 
| +window.addEventListener("load", function() | 
| +{ | 
| + var notification = backgroundPage.activeNotification; | 
| + if (!notification) | 
| + return; | 
| + | 
| + if (notification.onClicked) | 
| + notification.onClicked(); | 
| + | 
| + var texts = Notification.getLocalizedTexts(notification); | 
| + var titleElement = document.getElementById("title"); | 
| + titleElement.textContent = texts.title; | 
| + | 
| + var docLinks = getDocLinks(notification); | 
| + var messageElement = document.getElementById("message"); | 
| + insertMessage(messageElement, texts.message, docLinks); | 
| + | 
| + messageElement.addEventListener("click", function(event) | 
| + { | 
| + var link = event.target; | 
| + while (link && link !== messageElement && link.localName !== "a") | 
| + link = link.parentNode; | 
| + if (!link) | 
| + return; | 
| + event.preventDefault(); | 
| + event.stopPropagation(); | 
| + chrome.tabs.create({url: link.href}); | 
| + }); | 
| + | 
| + var notificationElement = document.getElementById("notification"); | 
| + notificationElement.className = notification.severity; | 
| + notificationElement.style.display = "block"; | 
| +}); |