aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-11-18 08:58:23 +0100
committercedricbonhomme <devnull@localhost>2010-11-18 08:58:23 +0100
commit0b611d6e54ff7b17bd8ba417c3e9dbd5d0d77963 (patch)
tree0e6ed50ec9c85e1dc6d69a75792981ecf4119fc2
parentMinor bug fix. (diff)
downloadnewspipe-0b611d6e54ff7b17bd8ba417c3e9dbd5d0d77963.tar.gz
newspipe-0b611d6e54ff7b17bd8ba417c3e9dbd5d0d77963.tar.bz2
newspipe-0b611d6e54ff7b17bd8ba417c3e9dbd5d0d77963.zip
New free icons.
-rw-r--r--css/img/check-news.pngbin1286 -> 1383 bytes
-rw-r--r--css/img/email-follow.pngbin3547 -> 4056 bytes
-rw-r--r--css/img/history.pngbin1660 -> 3257 bytes
-rw-r--r--css/img/management.pngbin1395 -> 2916 bytes
-rw-r--r--css/img/mark-as-read.pngbin1315 -> 1762 bytes
-rwxr-xr-xpyAggr3g470r.py12
6 files changed, 6 insertions, 6 deletions
diff --git a/css/img/check-news.png b/css/img/check-news.png
index ba1faf3a..cce7df39 100644
--- a/css/img/check-news.png
+++ b/css/img/check-news.png
Binary files differ
diff --git a/css/img/email-follow.png b/css/img/email-follow.png
index 9116363a..4505c610 100644
--- a/css/img/email-follow.png
+++ b/css/img/email-follow.png
Binary files differ
diff --git a/css/img/history.png b/css/img/history.png
index eb89266a..2a57cc17 100644
--- a/css/img/history.png
+++ b/css/img/history.png
Binary files differ
diff --git a/css/img/management.png b/css/img/management.png
index 625e64b9..7bcbc384 100644
--- a/css/img/management.png
+++ b/css/img/management.png
Binary files differ
diff --git a/css/img/mark-as-read.png b/css/img/mark-as-read.png
index acdecd19..ffc90910 100644
--- a/css/img/mark-as-read.png
+++ b/css/img/mark-as-read.png
Binary files differ
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index fe634f00..2c651271 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -68,10 +68,10 @@ path = {'/css/style.css': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'/css/img/heart.png'}, \
'/css/img/heart_open.png': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'/css/img/heart_open.png'}, \
- '/css/img/email-unread.png': {'tools.staticfile.on': True, \
- 'tools.staticfile.filename':utils.path+'/css/img/email-unread.png'}, \
- '/css/img/heart-22x22.png': {'tools.staticfile.on': True, \
- 'tools.staticfile.filename':utils.path+'/css/img/heart-22x22.png'}, \
+ '/css/img/unread.png': {'tools.staticfile.on': True, \
+ 'tools.staticfile.filename':utils.path+'/css/img/unread.png'}, \
+ '/css/img/heart-32x32.png': {'tools.staticfile.on': True, \
+ 'tools.staticfile.filename':utils.path+'/css/img/heart-32x32.png'}, \
'/css/img/email-follow.png': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'/css/img/email-follow.png'}, \
'/css/img/cross.png': {'tools.staticfile.on': True, \
@@ -133,7 +133,7 @@ class Root:
html += '<a href="/history/"><img src="/css/img/history.png" title="History" /></a>\n'
html += '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
- html += """<a href="/list_favorites/"><img src="/css/img/heart-22x22.png" title="Your favorites (%s)" /></a>\n""" % \
+ html += """<a href="/list_favorites/"><img src="/css/img/heart-32x32.png" title="Your favorites (%s)" /></a>\n""" % \
(self.nb_favorites,)
html += """<a href="/list_notification/"><img src="/css/img/email-follow.png" title="Active e-mail notifications (%s)" /></a>\n""" % \
@@ -142,7 +142,7 @@ class Root:
html += '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
html += '<a href="/mark_as_read/All"><img src="/css/img/mark-as-read.png" title="Mark articles as read" /></a>\n'
if self.nb_unread_articles != 0:
- html += """<a href="/unread/All"><img src="/css/img/email-unread.png" title="Unread article(s): %s" /></a>\n""" % \
+ html += """<a href="/unread/All"><img src="/css/img/unread.png" title="Unread article(s): %s" /></a>\n""" % \
(self.nb_unread_articles,)
html += '<a href="/fetch/"><img src="/css/img/check-news.png" title="Check for news" /></a>\n'
bgstack15