diff --git a/utils/notifier/background.html b/utils/notifier/background.html new file mode 100644 index 00000000..a26e9fc4 --- /dev/null +++ b/utils/notifier/background.html @@ -0,0 +1,116 @@ + + + +
+ + diff --git a/utils/notifier/images/alert.png b/utils/notifier/images/alert.png new file mode 100644 index 00000000..7922898f Binary files /dev/null and b/utils/notifier/images/alert.png differ diff --git a/utils/notifier/images/alert2.png b/utils/notifier/images/alert2.png new file mode 100644 index 00000000..450c8eed Binary files /dev/null and b/utils/notifier/images/alert2.png differ diff --git a/utils/notifier/images/error.png b/utils/notifier/images/error.png new file mode 100644 index 00000000..17eadd96 Binary files /dev/null and b/utils/notifier/images/error.png differ diff --git a/utils/notifier/images/icon.png b/utils/notifier/images/icon.png new file mode 100644 index 00000000..b8f07100 Binary files /dev/null and b/utils/notifier/images/icon.png differ diff --git a/utils/notifier/images/normal.png b/utils/notifier/images/normal.png new file mode 100644 index 00000000..2a24fcba Binary files /dev/null and b/utils/notifier/images/normal.png differ diff --git a/utils/notifier/images/ttrss_logo.png b/utils/notifier/images/ttrss_logo.png new file mode 100644 index 00000000..243e8948 Binary files /dev/null and b/utils/notifier/images/ttrss_logo.png differ diff --git a/utils/notifier/lib/prototype.js b/utils/notifier/lib/prototype.js new file mode 100644 index 00000000..8613914b --- /dev/null +++ b/utils/notifier/lib/prototype.js @@ -0,0 +1,4170 @@ +/* Prototype JavaScript framework, version 1.6.0.1 + * (c) 2005-2007 Sam Stephenson + * + * Prototype is freely distributable under the terms of an MIT-style license. + * For details, see the Prototype web site: http://www.prototypejs.org/ + * + *--------------------------------------------------------------------------*/ + +var Prototype = { + Version: '1.6.0.1', + + Browser: { + IE: !!(window.attachEvent && !window.opera), + Opera: !!window.opera, + WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1, + Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1, + MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/) + }, + + BrowserFeatures: { + XPath: !!document.evaluate, + ElementExtensions: !!window.HTMLElement, + SpecificElementExtensions: + document.createElement('div').__proto__ && + document.createElement('div').__proto__ !== + document.createElement('form').__proto__ + }, + + ScriptFragment: ' + + + + + + + + + +Last update: N/A
+ + + +Copyright © 2010 Andrew Dolgov
+ + diff --git a/utils/notifier/style.css b/utils/notifier/style.css new file mode 100644 index 00000000..73bb5c0a --- /dev/null +++ b/utils/notifier/style.css @@ -0,0 +1,31 @@ +body { + margin : 2em; + padding : 0em; + font-family : sans-serif; + font-size : 12px; +} + +.floatingLogo { + float : right; +} + +a { + color : #4684ff; + text-decoration : none; +} + +a:hover { + color : black; +} + +h1 { + color : #88b0f0; + font-size : 18px; +} + +h2 { + color : gray; + font-size : 16px; +} + +