├── .gitignore ├── Microsoft.VC90.CRT ├── Microsoft.VC90.CRT.manifest ├── msvcm90.dll ├── msvcp90.dll └── msvcr90.dll ├── README ├── clean.bat ├── controller.py ├── controls.py ├── defaults.py ├── dummy.py ├── feeds.py ├── filters.py ├── icons ├── 16.png ├── 24.png ├── 256.png ├── 32.png ├── 48.png ├── about.png ├── accept.png ├── add.png ├── checked.png ├── cog.png ├── cog32.png ├── comment32.png ├── control_end.png ├── control_end_blue.png ├── control_fastforward.png ├── control_fastforward_blue.png ├── control_pause.png ├── control_pause_blue.png ├── control_play.png ├── control_play_blue.png ├── control_rewind.png ├── control_rewind_blue.png ├── control_start.png ├── control_start_blue.png ├── cross.png ├── cross_hover.png ├── delete.png ├── door_out.png ├── feed.ico ├── feed.png ├── feed.svg ├── feed32.png ├── feed_add.png ├── feed_delete.png ├── feed_disabled.png ├── feed_go.png ├── filter32.png ├── info32.png ├── information.png ├── transmit.png └── unchecked.png ├── idle.py ├── install.bat ├── installer.iss ├── ipc.py ├── license.txt ├── main.py ├── parsetab.py ├── patch ├── build_exe.py └── mf.py ├── popups.py ├── safe_pickle.py ├── settings.py ├── setup.py ├── sounds └── notification.wav ├── theme_default.py ├── themes ├── default │ ├── base.html │ ├── control_end.png │ ├── control_end_blue.png │ ├── control_fastforward.png │ ├── control_fastforward_blue.png │ ├── control_pause.png │ ├── control_pause_blue.png │ ├── control_play.png │ ├── control_play_blue.png │ ├── control_rewind.png │ ├── control_rewind_blue.png │ ├── control_start.png │ ├── control_start_blue.png │ ├── cross.png │ ├── cross_hover.png │ ├── feed.png │ ├── index.html │ └── style.css ├── minimal │ ├── base.html │ ├── cross.png │ ├── index.html │ └── style.css └── simons_quest │ ├── arrow_down.gif │ ├── base.html │ ├── bottom_left.png │ ├── bottom_right.png │ ├── horizontal.png │ ├── index.html │ ├── pixelette.eot │ ├── pixelette.ttf │ ├── style.css │ ├── top_left.png │ ├── top_right.png │ └── vertical.png ├── updater.py ├── util.py ├── view.py └── www ├── download.html ├── favicon.ico ├── firefox.html ├── images ├── contact.png ├── craigslist.png ├── edit_feed.png ├── feeds.png ├── firefox1.png ├── firefox2.png ├── firefox3.png ├── firefox4.png ├── firefox5.png ├── firefox6.png ├── icon.png ├── lifehacker.png ├── linux-desktop.png ├── linux-feeds.png ├── linux-options.png ├── linux-popups.png ├── logo.png ├── options.png ├── popup.png ├── popups.png ├── sidebar.png ├── sites │ ├── bbc.png │ ├── blogspot.png │ ├── cnet.png │ ├── cnn.png │ ├── craigslist.png │ ├── digg.png │ ├── ebay.png │ ├── engadget.png │ ├── espn.png │ ├── filehippo.png │ ├── gmail.png │ ├── google-blogs.png │ ├── google-finance.png │ ├── google-groups.png │ ├── google-news.png │ ├── linkedin.png │ ├── nytimes.png │ ├── reuters.png │ ├── slashdot.png │ ├── stackoverflow.png │ ├── twitter.png │ ├── wikipedia.png │ ├── wired.png │ ├── wordpress.png │ ├── xkcd.png │ ├── yelp.png │ └── youtube.png ├── superuser.png ├── themes │ ├── default.png │ ├── minimal.png │ └── simons_quest.png ├── weather.png └── yelp.png ├── index.html ├── pad.xml ├── popup ├── control_end.png ├── control_fastforward.png ├── control_pause.png ├── control_play.png ├── control_rewind.png ├── control_start.png ├── cross.png ├── feed.png └── index.html ├── screenshots.html ├── style.css ├── support.html ├── themes.html └── welcome.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Microsoft.VC90.CRT/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/Microsoft.VC90.CRT/msvcm90.dll -------------------------------------------------------------------------------- /Microsoft.VC90.CRT/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/Microsoft.VC90.CRT/msvcp90.dll -------------------------------------------------------------------------------- /Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/README -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/clean.bat -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/controller.py -------------------------------------------------------------------------------- /controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/controls.py -------------------------------------------------------------------------------- /defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/defaults.py -------------------------------------------------------------------------------- /dummy.py: -------------------------------------------------------------------------------- 1 | # used for dummy.__file__ to setup path 2 | -------------------------------------------------------------------------------- /feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/feeds.py -------------------------------------------------------------------------------- /filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/filters.py -------------------------------------------------------------------------------- /icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/16.png -------------------------------------------------------------------------------- /icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/24.png -------------------------------------------------------------------------------- /icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/256.png -------------------------------------------------------------------------------- /icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/32.png -------------------------------------------------------------------------------- /icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/48.png -------------------------------------------------------------------------------- /icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/about.png -------------------------------------------------------------------------------- /icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/accept.png -------------------------------------------------------------------------------- /icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/add.png -------------------------------------------------------------------------------- /icons/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/checked.png -------------------------------------------------------------------------------- /icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/cog.png -------------------------------------------------------------------------------- /icons/cog32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/cog32.png -------------------------------------------------------------------------------- /icons/comment32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/comment32.png -------------------------------------------------------------------------------- /icons/control_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_end.png -------------------------------------------------------------------------------- /icons/control_end_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_end_blue.png -------------------------------------------------------------------------------- /icons/control_fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_fastforward.png -------------------------------------------------------------------------------- /icons/control_fastforward_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_fastforward_blue.png -------------------------------------------------------------------------------- /icons/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_pause.png -------------------------------------------------------------------------------- /icons/control_pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_pause_blue.png -------------------------------------------------------------------------------- /icons/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_play.png -------------------------------------------------------------------------------- /icons/control_play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_play_blue.png -------------------------------------------------------------------------------- /icons/control_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_rewind.png -------------------------------------------------------------------------------- /icons/control_rewind_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_rewind_blue.png -------------------------------------------------------------------------------- /icons/control_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_start.png -------------------------------------------------------------------------------- /icons/control_start_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/control_start_blue.png -------------------------------------------------------------------------------- /icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/cross.png -------------------------------------------------------------------------------- /icons/cross_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/cross_hover.png -------------------------------------------------------------------------------- /icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/delete.png -------------------------------------------------------------------------------- /icons/door_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/door_out.png -------------------------------------------------------------------------------- /icons/feed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed.ico -------------------------------------------------------------------------------- /icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed.png -------------------------------------------------------------------------------- /icons/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed.svg -------------------------------------------------------------------------------- /icons/feed32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed32.png -------------------------------------------------------------------------------- /icons/feed_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed_add.png -------------------------------------------------------------------------------- /icons/feed_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed_delete.png -------------------------------------------------------------------------------- /icons/feed_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed_disabled.png -------------------------------------------------------------------------------- /icons/feed_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/feed_go.png -------------------------------------------------------------------------------- /icons/filter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/filter32.png -------------------------------------------------------------------------------- /icons/info32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/info32.png -------------------------------------------------------------------------------- /icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/information.png -------------------------------------------------------------------------------- /icons/transmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/transmit.png -------------------------------------------------------------------------------- /icons/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/icons/unchecked.png -------------------------------------------------------------------------------- /idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/idle.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/install.bat -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/installer.iss -------------------------------------------------------------------------------- /ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/ipc.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/license.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/main.py -------------------------------------------------------------------------------- /parsetab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/parsetab.py -------------------------------------------------------------------------------- /patch/build_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/patch/build_exe.py -------------------------------------------------------------------------------- /patch/mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/patch/mf.py -------------------------------------------------------------------------------- /popups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/popups.py -------------------------------------------------------------------------------- /safe_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/safe_pickle.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/setup.py -------------------------------------------------------------------------------- /sounds/notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/sounds/notification.wav -------------------------------------------------------------------------------- /theme_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/theme_default.py -------------------------------------------------------------------------------- /themes/default/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/base.html -------------------------------------------------------------------------------- /themes/default/control_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_end.png -------------------------------------------------------------------------------- /themes/default/control_end_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_end_blue.png -------------------------------------------------------------------------------- /themes/default/control_fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_fastforward.png -------------------------------------------------------------------------------- /themes/default/control_fastforward_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_fastforward_blue.png -------------------------------------------------------------------------------- /themes/default/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_pause.png -------------------------------------------------------------------------------- /themes/default/control_pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_pause_blue.png -------------------------------------------------------------------------------- /themes/default/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_play.png -------------------------------------------------------------------------------- /themes/default/control_play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_play_blue.png -------------------------------------------------------------------------------- /themes/default/control_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_rewind.png -------------------------------------------------------------------------------- /themes/default/control_rewind_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_rewind_blue.png -------------------------------------------------------------------------------- /themes/default/control_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_start.png -------------------------------------------------------------------------------- /themes/default/control_start_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/control_start_blue.png -------------------------------------------------------------------------------- /themes/default/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/cross.png -------------------------------------------------------------------------------- /themes/default/cross_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/cross_hover.png -------------------------------------------------------------------------------- /themes/default/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/feed.png -------------------------------------------------------------------------------- /themes/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/index.html -------------------------------------------------------------------------------- /themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/default/style.css -------------------------------------------------------------------------------- /themes/minimal/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/minimal/base.html -------------------------------------------------------------------------------- /themes/minimal/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/minimal/cross.png -------------------------------------------------------------------------------- /themes/minimal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/minimal/index.html -------------------------------------------------------------------------------- /themes/minimal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/minimal/style.css -------------------------------------------------------------------------------- /themes/simons_quest/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/arrow_down.gif -------------------------------------------------------------------------------- /themes/simons_quest/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/base.html -------------------------------------------------------------------------------- /themes/simons_quest/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/bottom_left.png -------------------------------------------------------------------------------- /themes/simons_quest/bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/bottom_right.png -------------------------------------------------------------------------------- /themes/simons_quest/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/horizontal.png -------------------------------------------------------------------------------- /themes/simons_quest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/index.html -------------------------------------------------------------------------------- /themes/simons_quest/pixelette.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/pixelette.eot -------------------------------------------------------------------------------- /themes/simons_quest/pixelette.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/pixelette.ttf -------------------------------------------------------------------------------- /themes/simons_quest/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/style.css -------------------------------------------------------------------------------- /themes/simons_quest/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/top_left.png -------------------------------------------------------------------------------- /themes/simons_quest/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/top_right.png -------------------------------------------------------------------------------- /themes/simons_quest/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/themes/simons_quest/vertical.png -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/updater.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/util.py -------------------------------------------------------------------------------- /view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/view.py -------------------------------------------------------------------------------- /www/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/download.html -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/firefox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/firefox.html -------------------------------------------------------------------------------- /www/images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/contact.png -------------------------------------------------------------------------------- /www/images/craigslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/craigslist.png -------------------------------------------------------------------------------- /www/images/edit_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/edit_feed.png -------------------------------------------------------------------------------- /www/images/feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/feeds.png -------------------------------------------------------------------------------- /www/images/firefox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox1.png -------------------------------------------------------------------------------- /www/images/firefox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox2.png -------------------------------------------------------------------------------- /www/images/firefox3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox3.png -------------------------------------------------------------------------------- /www/images/firefox4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox4.png -------------------------------------------------------------------------------- /www/images/firefox5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox5.png -------------------------------------------------------------------------------- /www/images/firefox6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/firefox6.png -------------------------------------------------------------------------------- /www/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/icon.png -------------------------------------------------------------------------------- /www/images/lifehacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/lifehacker.png -------------------------------------------------------------------------------- /www/images/linux-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/linux-desktop.png -------------------------------------------------------------------------------- /www/images/linux-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/linux-feeds.png -------------------------------------------------------------------------------- /www/images/linux-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/linux-options.png -------------------------------------------------------------------------------- /www/images/linux-popups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/linux-popups.png -------------------------------------------------------------------------------- /www/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/logo.png -------------------------------------------------------------------------------- /www/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/options.png -------------------------------------------------------------------------------- /www/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/popup.png -------------------------------------------------------------------------------- /www/images/popups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/popups.png -------------------------------------------------------------------------------- /www/images/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sidebar.png -------------------------------------------------------------------------------- /www/images/sites/bbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/bbc.png -------------------------------------------------------------------------------- /www/images/sites/blogspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/blogspot.png -------------------------------------------------------------------------------- /www/images/sites/cnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/cnet.png -------------------------------------------------------------------------------- /www/images/sites/cnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/cnn.png -------------------------------------------------------------------------------- /www/images/sites/craigslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/craigslist.png -------------------------------------------------------------------------------- /www/images/sites/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/digg.png -------------------------------------------------------------------------------- /www/images/sites/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/ebay.png -------------------------------------------------------------------------------- /www/images/sites/engadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/engadget.png -------------------------------------------------------------------------------- /www/images/sites/espn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/espn.png -------------------------------------------------------------------------------- /www/images/sites/filehippo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/filehippo.png -------------------------------------------------------------------------------- /www/images/sites/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/gmail.png -------------------------------------------------------------------------------- /www/images/sites/google-blogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/google-blogs.png -------------------------------------------------------------------------------- /www/images/sites/google-finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/google-finance.png -------------------------------------------------------------------------------- /www/images/sites/google-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/google-groups.png -------------------------------------------------------------------------------- /www/images/sites/google-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/google-news.png -------------------------------------------------------------------------------- /www/images/sites/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/linkedin.png -------------------------------------------------------------------------------- /www/images/sites/nytimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/nytimes.png -------------------------------------------------------------------------------- /www/images/sites/reuters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/reuters.png -------------------------------------------------------------------------------- /www/images/sites/slashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/slashdot.png -------------------------------------------------------------------------------- /www/images/sites/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/stackoverflow.png -------------------------------------------------------------------------------- /www/images/sites/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/twitter.png -------------------------------------------------------------------------------- /www/images/sites/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/wikipedia.png -------------------------------------------------------------------------------- /www/images/sites/wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/wired.png -------------------------------------------------------------------------------- /www/images/sites/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/wordpress.png -------------------------------------------------------------------------------- /www/images/sites/xkcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/xkcd.png -------------------------------------------------------------------------------- /www/images/sites/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/yelp.png -------------------------------------------------------------------------------- /www/images/sites/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/sites/youtube.png -------------------------------------------------------------------------------- /www/images/superuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/superuser.png -------------------------------------------------------------------------------- /www/images/themes/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/themes/default.png -------------------------------------------------------------------------------- /www/images/themes/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/themes/minimal.png -------------------------------------------------------------------------------- /www/images/themes/simons_quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/themes/simons_quest.png -------------------------------------------------------------------------------- /www/images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/weather.png -------------------------------------------------------------------------------- /www/images/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/images/yelp.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/index.html -------------------------------------------------------------------------------- /www/pad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/pad.xml -------------------------------------------------------------------------------- /www/popup/control_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_end.png -------------------------------------------------------------------------------- /www/popup/control_fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_fastforward.png -------------------------------------------------------------------------------- /www/popup/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_pause.png -------------------------------------------------------------------------------- /www/popup/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_play.png -------------------------------------------------------------------------------- /www/popup/control_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_rewind.png -------------------------------------------------------------------------------- /www/popup/control_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/control_start.png -------------------------------------------------------------------------------- /www/popup/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/cross.png -------------------------------------------------------------------------------- /www/popup/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/feed.png -------------------------------------------------------------------------------- /www/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/popup/index.html -------------------------------------------------------------------------------- /www/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/screenshots.html -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/style.css -------------------------------------------------------------------------------- /www/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/support.html -------------------------------------------------------------------------------- /www/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/themes.html -------------------------------------------------------------------------------- /www/welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/FeedNotifier/HEAD/www/welcome.xml --------------------------------------------------------------------------------