]> git.wh0rd.org - tt-rss.git/commitdiff
integrate silk icons by Mark James
authorAndrew Dolgov <fox@fakecake.org>
Wed, 10 Jul 2013 09:09:12 +0000 (13:09 +0400)
committerAndrew Dolgov <fox@fakecake.org>
Wed, 10 Jul 2013 09:09:12 +0000 (13:09 +0400)
53 files changed:
README.md
classes/feeds.php
classes/pref/prefs.php
classes/pref/users.php
css/prefs.css
css/tt-rss.css
css/utility.css
images/alert.png
images/alert.svg [deleted file]
images/archive.png
images/close_notify.svg [deleted file]
images/collapse.png
images/cross.png [new file with mode: 0644]
images/feed.png [new file with mode: 0644]
images/filter.png [new file with mode: 0644]
images/folder.png [new file with mode: 0644]
images/fresh.png
images/information.png [new file with mode: 0644]
images/label.png
images/mark_set.png [new file with mode: 0644]
images/mark_set.svg [deleted file]
images/mark_unset.png [new file with mode: 0644]
images/mark_unset.svg [deleted file]
images/new_version.png
images/plugin.png [new file with mode: 0644]
images/plugin_disabled.png [new file with mode: 0644]
images/pub_set.png [new file with mode: 0644]
images/pub_set.svg [deleted file]
images/pub_unset.png [new file with mode: 0644]
images/pub_unset.svg [deleted file]
images/recently_read.png [deleted file]
images/score_half_high.png
images/score_half_low.png
images/score_high.png
images/score_low.png
images/score_neutral.png
images/sign_excl.svg [deleted file]
images/sign_info.svg [deleted file]
images/star.png [new file with mode: 0644]
images/tag.png
images/time.png [new file with mode: 0644]
images/user.png [new file with mode: 0644]
include/functions.php
install/index.php
js/PrefFilterTree.js
js/PrefLabelTree.js
js/functions.js
plugins/close_button/button.png
plugins/mail/mail.png
plugins/mailto/mail.png
plugins/mark_button/init.php
plugins/note/note.png
plugins/share/share.png

index 3aeea3319935d07477736d12f7fd9b712f2b735e..469184c87d8d61d1690c95e3ef02bd6ca7b200c7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -10,6 +10,8 @@ Licensed under GNU GPL version 2
 
 Copyright (c) 2005 Andrew Dolgov (unless explicitly stated otherwise).
 
+Uses Silk icons by Mark James: http://www.famfamfam.com/lab/icons/silk/
+
 ## Requirements
 
 * Compatible web browser (http://tt-rss.org/wiki/CompatibleBrowsers)
index b15875bd31143357e852e98563a6452752b84209..89b2f71284e48bf52090e92e5fa70465dea20cb3 100644 (file)
@@ -74,7 +74,7 @@ class Feeds extends Handler_Protected {
                        <a href=\"#\"
                                title=\"".__("View as RSS feed")."\"
                                onclick=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">
-                               <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/pub_set.svg\"></a>";
+                               <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/pub_set.png\"></a>";
 
                $reply .= "</span>";
 
@@ -323,24 +323,24 @@ class Feeds extends Handler_Protected {
 
                                if (sql_bool_to_bool($line["marked"])) {
                                        $marked_pic = "<img
-                                               src=\"images/mark_set.svg\"
+                                               src=\"images/mark_set.png\"
                                                class=\"markedPic\" alt=\"Unstar article\"
                                                onclick='toggleMark($id)'>";
                                        $class .= " marked";
                                } else {
                                        $marked_pic = "<img
-                                               src=\"images/mark_unset.svg\"
+                                               src=\"images/mark_unset.png\"
                                                class=\"markedPic\" alt=\"Star article\"
                                                onclick='toggleMark($id)'>";
                                }
 
                                if (sql_bool_to_bool($line["published"])) {
-                                       $published_pic = "<img src=\"images/pub_set.svg\"
+                                       $published_pic = "<img src=\"images/pub_set.png\"
                                                class=\"pubPic\"
                                                        alt=\"Unpublish article\" onclick='togglePub($id)'>";
                                        $class .= " published";
                                } else {
-                                       $published_pic = "<img src=\"images/pub_unset.svg\"
+                                       $published_pic = "<img src=\"images/pub_unset.png\"
                                                class=\"pubPic\"
                                                alt=\"Publish article\" onclick='togglePub($id)'>";
                                }
@@ -395,7 +395,7 @@ class Feeds extends Handler_Protected {
                                if ($has_feed_icon) {
                                        $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
                                } else {
-                                       $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.svg\" alt=\"\">";
+                                       $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.png\" alt=\"\">";
                                }
 
                                $entry_site_url = $line["site_url"];
@@ -638,7 +638,7 @@ class Feeds extends Handler_Protected {
                                                        $reply['content'] .= "&nbsp;";
 
                                                        $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
-                                                       $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.svg'></a>";
+                                                       $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
 
                                                        $reply['content'] .= "</div>";
                                                }
index 32071e3b31680ff00a89b215650babb7467d6cd8..3dfe95241592f0670e5574cf7a903763a3fefcdf 100644 (file)
@@ -765,7 +765,9 @@ class Pref_Prefs extends Handler_Protected {
                                                dojoType=\"dijit.form.CheckBox\" $checked
                                                type=\"checkbox\"></td>";
 
-                               print "<td>$name</td>";
+                               $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
+
+                               print "<td><img src='images/$plugin_icon' alt=''> $name</td>";
                                print "<td>" . htmlspecialchars($about[1]);
                                if (@$about[4]) {
                                        print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
@@ -818,11 +820,13 @@ class Pref_Prefs extends Handler_Protected {
 
                                print "<tr class='$rowclass'>";
 
+                               $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
+
                                print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
                                        dojoType=\"dijit.form.CheckBox\" $checked $disabled
                                        type=\"checkbox\"></td>";
 
-                               print "<td><label for='FPCHK-$name'>$name</label></td>";
+                               print "<td><label for='FPCHK-$name'><img src='images/$plugin_icon' alt=''> $name</label></td>";
                                print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label>";
                                if (@$about[4]) {
                                        print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
index 8a0202483d04be9a092c35fe244e7e7acbc4119d..6db7d558b5d1702a7196a520bdd3f2529e9b10b3 100644 (file)
@@ -418,7 +418,7 @@ class Pref_Users extends Handler_Protected {
 
                                $onclick = "onclick='editUser($uid, event)' title='".__('Click to edit')."'";
 
-                               print "<td $onclick>" . $line["login"] . "</td>";
+                               print "<td $onclick><img src='images/user.png' class='markedPic' alt=''> " . $line["login"] . "</td>";
 
                                if (!$line["email"]) $line["email"] = "&nbsp;";
 
index 1cc8b7b0366ab4d7743866bd52ed29b798f143b7..502a53be97dfe2633c03b2bf2e2a03ae3c47c15e 100644 (file)
@@ -98,6 +98,14 @@ table.prefPluginsList td label, table.prefUserList td {
        cursor : pointer;
 }
 
+table.prefPluginsList label {
+       white-space : nowrap;
+}
+
+table.prefPluginsList label img {
+       vertical-align : middle;
+}
+
 table.prefErrorLog tr.errrow td {
        font-size : 10px;
 }
index bdf1bf72a84ad5b65158b1876909e4ad54dd4dd1..94bc5826c14d68e4ab81eb912a74b8ed3e02af07 100644 (file)
@@ -299,7 +299,7 @@ div.error {
 }
 
 div.warning img, div.notice img, div.error img {
-       margin-right : 4px;
+       margin : 4px;
        vertical-align : middle;
 }
 
@@ -660,29 +660,18 @@ div.dlgButtons {
 }
 
 span.labelColorIndicator {
-       height : 14px;
-       width : 14px;
+       height : 16px;
+       width : 16px;
+       border-radius : 4px;
        line-height : 14px;
+       vertical-align : middle;
        font-size : 9px;
        display : inline-block;
-       border : 1px solid black;
-       background-color : #fff7d5;     
-       color : #063064;
-       text-align : center;
-       margin-right : 2px;
-}
-
-span.labelColorIndicator2 {
-       height : 14px;
-       width : 14px;
-       font-size : 9px;
-       display : inline-block;
-       border : 1px solid black;
+       border : 1px solid #ccc;
        background-color : #fff7d5;     
        color : #063064;
        text-align : center;
-       margin-right : 2px;
-       vertical-align : bottom;
+       box-shadow : 0px 0px 1px 0px rgba(0,0,0,0.1);
 }
 
 div#cmdline {
@@ -894,6 +883,7 @@ div.fatalError textarea {
 img.feedIcon, img.tinyFeedIcon {
        width : 16px;
        height : 16px;
+       line-height : 16px;
        vertical-align : middle;
        display : inline-block;
 }
@@ -1070,6 +1060,11 @@ div.hl.active {
        margin-right : 25px;
 }
 
+#feedTree img.feedIcon {
+       position : relative;
+       top : -2px;
+}
+
 body#ttrssMain #feedTree .dijitTreeRow {
        padding : 2px 0px 2px;
        height : 22px;
@@ -1078,8 +1073,8 @@ body#ttrssMain #feedTree .dijitTreeRow {
        color : #333;
 }
 
-.dijitFolderClosed,
-.dijitFolderOpened {
+body#ttrssMain #feedTree .dijitFolderClosed,
+body#ttrssMain #feedTree .dijitFolderOpened {
        display : none;
 }
 
index 029fa9cb3ac8d4ca18e322953dd49b9c30e6fa19..f342223e3ed149b6f90541c6c4e6e4f301e38654 100644 (file)
@@ -86,7 +86,7 @@ div.error {
 }
 
 div.warning img, div.notice img, div.error img {
-       margin-right : 4px;
+       margin : 4px;
        vertical-align : middle;
 }
 
index 9687c4cf1b4875d79083c04564549456185f4733..c37bd062e60c3b38fc82e4d1f236a8ac2fae9d8c 100644 (file)
Binary files a/images/alert.png and b/images/alert.png differ
diff --git a/images/alert.svg b/images/alert.svg
deleted file mode 100644 (file)
index 237f66c..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg2985"
-   version="1.1"
-   inkscape:version="0.48.4 r9939"
-   inkscape:export-filename="Y:\public_html\testbox\tt-irc\images\alert.png"
-   inkscape:export-xdpi="102.17"
-   inkscape:export-ydpi="102.17"
-   sodipodi:docname="alert.svg">
-  <defs
-     id="defs2987" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.197802"
-     inkscape:cx="0.97227717"
-     inkscape:cy="13.508447"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1600"
-     inkscape:window-height="1137"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata2990">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="star"
-       style="opacity:1;fill:#d40000;fill-opacity:1"
-       id="path2993"
-       sodipodi:sides="3"
-       sodipodi:cx="4.7752476"
-       sodipodi:cy="2.3499999"
-       sodipodi:r1="8.1370182"
-       sodipodi:r2="4.0685091"
-       sodipodi:arg1="0.52359878"
-       sodipodi:arg2="1.5707963"
-       inkscape:flatsided="false"
-       inkscape:rounded="0"
-       inkscape:randomized="0"
-       d="m 11.822112,6.418509 -7.0468643,0 -7.0468646,0 3.5234322,-6.10276355 3.5234323,-6.10276375 3.5234322,6.10276356 z"
-       inkscape:transform-center-y="-2.0342545"
-       transform="translate(3.2247524,7.6842546)" />
-    <text
-       xml:space="preserve"
-       style="font-size:11px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Sans Bold"
-       x="6.1657715"
-       y="12.508285"
-       id="text3767"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3769"
-         x="6.1657715"
-         y="12.508285">!</tspan></text>
-  </g>
-</svg>
index 1afa254f79c37a7ff603e127846ccf0e18057fe3..8443c23eb944cf8ef49c9d13cd496502f46f1885 100644 (file)
Binary files a/images/archive.png and b/images/archive.png differ
diff --git a/images/close_notify.svg b/images/close_notify.svg
deleted file mode 100644 (file)
index b3a17e0..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg2985"
-   version="1.1"
-   inkscape:version="0.48.2 r9819"
-   sodipodi:docname="close_notify.svg">
-  <defs
-     id="defs2987" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#88b0f0"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.197802"
-     inkscape:cx="0.97227717"
-     inkscape:cy="8"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1920"
-     inkscape:window-height="1138"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata2990">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#454545;stroke-width:0.73948608000000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-       id="path2997"
-       sodipodi:cx="6.6673269"
-       sodipodi:cy="7.1702971"
-       sodipodi:rx="5.270792"
-       sodipodi:ry="5.270792"
-       d="m 11.938119,7.1702971 a 5.270792,5.270792 0 1 1 -10.5415841,0 5.270792,5.270792 0 1 1 10.5415841,0 z"
-       transform="matrix(1.3522905,0,0,1.3522905,-1.0161629,-1.6963247)" />
-    <path
-       style="fill:none;stroke:#454545;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;opacity:1"
-       d="M 4.4322613,4.4322611 11.567739,11.567739"
-       id="path3771"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:none;stroke:#454545;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;opacity:1"
-       d="M 11.567739,4.432261 4.432261,11.567739"
-       id="path3771-1"
-       inkscape:connector-curvature="0" />
-  </g>
-</svg>
index 5adbd5e1c2ef8c93c7b03cdc04030d5a9daee7c7..79b3446452fc67b5be46a388f00fc181961ac0ed 100644 (file)
Binary files a/images/collapse.png and b/images/collapse.png differ
diff --git a/images/cross.png b/images/cross.png
new file mode 100644 (file)
index 0000000..1514d51
Binary files /dev/null and b/images/cross.png differ
diff --git a/images/feed.png b/images/feed.png
new file mode 100644 (file)
index 0000000..315c4f4
Binary files /dev/null and b/images/feed.png differ
diff --git a/images/filter.png b/images/filter.png
new file mode 100644 (file)
index 0000000..9757fc6
Binary files /dev/null and b/images/filter.png differ
diff --git a/images/folder.png b/images/folder.png
new file mode 100644 (file)
index 0000000..784e8fa
Binary files /dev/null and b/images/folder.png differ
index f5b741a1961239981bffec376af05c41ea111009..b7bfcd15fb2f7ce658185bd7ef4729815e2f18b9 100644 (file)
Binary files a/images/fresh.png and b/images/fresh.png differ
diff --git a/images/information.png b/images/information.png
new file mode 100644 (file)
index 0000000..12cd1ae
Binary files /dev/null and b/images/information.png differ
index aea67c4fd54543b96847cb09d4ce5c856b0d58b7..83d12924ff3847904f13ce02fe7d96ee1a6012c7 100644 (file)
Binary files a/images/label.png and b/images/label.png differ
diff --git a/images/mark_set.png b/images/mark_set.png
new file mode 100644 (file)
index 0000000..b88c857
Binary files /dev/null and b/images/mark_set.png differ
diff --git a/images/mark_set.svg b/images/mark_set.svg
deleted file mode 100644 (file)
index 1942d14..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16.000000px"
-   height="16.000000px"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.42"
-   sodipodi:docbase="/home/fox/public_html/testbox/tt-rss/images"
-   sodipodi:docname="mark_set.svg"
-   inkscape:export-filename="/home/fox/public_html/testbox/tt-rss/images/mark_set.png"
-   inkscape:export-xdpi="90.000000"
-   inkscape:export-ydpi="90.000000">
-  <defs
-     id="defs4" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0000000"
-     inkscape:pageshadow="2"
-     inkscape:zoom="31.678384"
-     inkscape:cx="6.9004349"
-     inkscape:cy="7.4155540"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     inkscape:window-width="1600"
-     inkscape:window-height="1131"
-     inkscape:window-x="0"
-     inkscape:window-y="25"
-     showguides="true"
-     inkscape:guide-bbox="true" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="star"
-       style="opacity:1.0000000;fill:#a8cdfd;fill-opacity:1.0000000;stroke:#4f9dfd;stroke-width:0.99999938;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
-       id="path1306"
-       sodipodi:sides="5"
-       sodipodi:cx="7.3551731"
-       sodipodi:cy="1.6684607"
-       sodipodi:r1="6.3745561"
-       sodipodi:r2="3.1872780"
-       sodipodi:arg1="0.78539816"
-       sodipodi:arg2="1.4137167"
-       inkscape:flatsided="false"
-       inkscape:rounded="0.0000000"
-       inkscape:randomized="0.0000000"
-       d="M 11.862665,6.1759525 L 7.8537732,4.8164981 L 4.4611852,7.3482318 L 4.5152876,3.1154547 L 1.0590984,0.67126048 L 5.1014272,-0.58528520 L 6.3579728,-4.6276140 L 8.8021671,-1.1714248 L 13.034944,-1.2255272 L 10.503210,2.1670609 L 11.862665,6.1759525 z "
-       transform="matrix(-0.707107,-0.707107,0.707107,-0.707107,12.02111,14.98939)" />
-  </g>
-</svg>
diff --git a/images/mark_unset.png b/images/mark_unset.png
new file mode 100644 (file)
index 0000000..537e2f0
Binary files /dev/null and b/images/mark_unset.png differ
diff --git a/images/mark_unset.svg b/images/mark_unset.svg
deleted file mode 100644 (file)
index 4b31d31..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16.000000px"
-   height="16.000000px"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="mark_unset.svg"
-   inkscape:export-filename="/home/fox/public_html/testbox/tt-rss/images/mark_unset.png"
-   inkscape:export-xdpi="90.000000"
-   inkscape:export-ydpi="90.000000"
-   version="1.1">
-  <defs
-     id="defs4" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0000000"
-     inkscape:pageshadow="2"
-     inkscape:zoom="7.919596"
-     inkscape:cx="-13.509597"
-     inkscape:cy="-5.9527534"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     inkscape:window-width="1600"
-     inkscape:window-height="1131"
-     inkscape:window-x="0"
-     inkscape:window-y="25"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     showgrid="false"
-     inkscape:window-maximized="0" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="star"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#88b0f0;stroke-width:0.99999938000000022;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1306"
-       sodipodi:sides="5"
-       sodipodi:cx="7.3551731"
-       sodipodi:cy="1.6684607"
-       sodipodi:r1="6.3745561"
-       sodipodi:r2="3.1872780"
-       sodipodi:arg1="0.78539816"
-       sodipodi:arg2="1.4137167"
-       inkscape:flatsided="false"
-       inkscape:rounded="0.0000000"
-       inkscape:randomized="0.0000000"
-       d="M 11.862665,6.1759525 L 7.8537732,4.8164981 L 4.4611852,7.3482318 L 4.5152876,3.1154547 L 1.0590984,0.67126048 L 5.1014272,-0.58528520 L 6.3579728,-4.6276140 L 8.8021671,-1.1714248 L 13.034944,-1.2255272 L 10.503210,2.1670609 L 11.862665,6.1759525 z "
-       transform="matrix(-0.707107,-0.707107,0.707107,-0.707107,12.02111,14.98939)" />
-  </g>
-</svg>
index 878f7a4fb3a4535e9111f98f7fff4cced7385ad0..1ebb193243780b8eb1919a51ef27c2a0d36ccec2 100644 (file)
Binary files a/images/new_version.png and b/images/new_version.png differ
diff --git a/images/plugin.png b/images/plugin.png
new file mode 100644 (file)
index 0000000..6187b15
Binary files /dev/null and b/images/plugin.png differ
diff --git a/images/plugin_disabled.png b/images/plugin_disabled.png
new file mode 100644 (file)
index 0000000..f4f6be5
Binary files /dev/null and b/images/plugin_disabled.png differ
diff --git a/images/pub_set.png b/images/pub_set.png
new file mode 100644 (file)
index 0000000..315c4f4
Binary files /dev/null and b/images/pub_set.png differ
diff --git a/images/pub_set.svg b/images/pub_set.svg
deleted file mode 100644 (file)
index c13a5c3..0000000
+++ /dev/null
@@ -1,184 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   version="1.1"
-   width="16"
-   height="16"
-   id="RSSicon"
-   viewBox="0 0 32 32"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="mark_set.svg">
-  <metadata
-     id="metadata34">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1600"
-     inkscape:window-height="1137"
-     id="namedview32"
-     showgrid="false"
-     inkscape:zoom="23.953242"
-     inkscape:cx="6.5252922"
-     inkscape:cy="10.694533"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="RSSicon" />
-  <defs
-     id="defs3">
-    <linearGradient
-       x1="30.059999"
-       y1="30.059999"
-       x2="225.94"
-       y2="225.94"
-       id="RSSg"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-224)">
-      <stop
-         offset="0.0"
-         stop-color="#E3702D"
-         id="stop6" />
-      <stop
-         offset="0.1071"
-         stop-color="#EA7D31"
-         id="stop8" />
-      <stop
-         offset="0.3503"
-         stop-color="#F69537"
-         id="stop10" />
-      <stop
-         offset="0.5"
-         stop-color="#FB9E3A"
-         id="stop12" />
-      <stop
-         offset="0.7016"
-         stop-color="#EA7C31"
-         id="stop14" />
-      <stop
-         offset="0.8866"
-         stop-color="#DE642B"
-         id="stop16" />
-      <stop
-         offset="1.0"
-         stop-color="#D95B29"
-         id="stop18" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#RSSg"
-       id="linearGradient3029"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-224)"
-       x1="30.059999"
-       y1="30.059999"
-       x2="225.94"
-       y2="225.94" />
-    <filter
-       id="filter3031"
-       inkscape:label="Desaturate"
-       x="0"
-       y="0"
-       width="1"
-       height="1"
-       inkscape:menu="Color"
-       inkscape:menu-tooltip="Render in shades of gray by reducing saturation to zero"
-       color-interpolation-filters="sRGB">
-      <feColorMatrix
-         id="feColorMatrix3033"
-         type="saturate"
-         values="0" />
-    </filter>
-    <filter
-       id="filter3035"
-       inkscape:label="Desaturate"
-       x="0"
-       y="0"
-       width="1"
-       height="1"
-       inkscape:menu="Color"
-       inkscape:menu-tooltip="Render in shades of gray by reducing saturation to zero"
-       color-interpolation-filters="sRGB">
-      <feColorMatrix
-         id="feColorMatrix3037"
-         type="saturate"
-         values="0" />
-    </filter>
-  </defs>
-  <g
-     id="g3021"
-     transform="matrix(0.10305878,0,0,0.10305878,2.808475,25.893644)"
-     style="opacity:1">
-    <rect
-       style="fill:#cc5d15;"
-       id="rect20"
-       y="-224"
-       x="0"
-       ry="55"
-       rx="55"
-       height="256"
-       width="256" />
-    <rect
-       style="fill:#f49c52;"
-       id="rect22"
-       y="-219"
-       x="5"
-       ry="50"
-       rx="50"
-       height="246"
-       width="246" />
-    <rect
-       style="fill:url(#linearGradient3029);"
-       id="rect24"
-       y="-214"
-       x="10"
-       ry="47"
-       rx="47"
-       height="236"
-       width="236" />
-    <circle
-       transform="translate(0,-224)"
-       style="fill:#ffffff;"
-       sodipodi:ry="24"
-       sodipodi:rx="24"
-       sodipodi:cy="189"
-       sodipodi:cx="68"
-       id="circle26"
-       r="24"
-       cy="189"
-       cx="68"
-       d="m 92,189 c 0,13.25483 -10.745166,24 -24,24 -13.254834,0 -24,-10.74517 -24,-24 0,-13.25483 10.745166,-24 24,-24 13.254834,0 24,10.74517 24,24 z" />
-    <path
-       style="fill:#ffffff;"
-       inkscape:connector-curvature="0"
-       id="path28"
-       d="M 160,-11 H 126 A 82,82 0 0 0 44,-93 v -34 a 116,116 0 0 1 116,116 z" />
-    <path
-       style="fill:#ffffff;"
-       inkscape:connector-curvature="0"
-       id="path30"
-       d="M 184,-11 A 140,140 0 0 0 44,-151 v -35 a 175,175 0 0 1 175,175 z" />
-  </g>
-</svg>
diff --git a/images/pub_unset.png b/images/pub_unset.png
new file mode 100644 (file)
index 0000000..3629d4c
Binary files /dev/null and b/images/pub_unset.png differ
diff --git a/images/pub_unset.svg b/images/pub_unset.svg
deleted file mode 100644 (file)
index 7b823fc..0000000
+++ /dev/null
@@ -1,149 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   version="1.1"
-   width="16"
-   height="16"
-   id="RSSicon"
-   viewBox="0 0 32 32"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="pub_unset.svg">
-  <metadata
-     id="metadata34">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1600"
-     inkscape:window-height="1137"
-     id="namedview32"
-     showgrid="false"
-     inkscape:zoom="23.953242"
-     inkscape:cx="6.0451902"
-     inkscape:cy="5.8935127"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="RSSicon" />
-  <defs
-     id="defs3">
-    <linearGradient
-       x1="30.059999"
-       y1="30.059999"
-       x2="225.94"
-       y2="225.94"
-       id="RSSg"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-224)">
-      <stop
-         offset="0.0"
-         stop-color="#E3702D"
-         id="stop6" />
-      <stop
-         offset="0.1071"
-         stop-color="#EA7D31"
-         id="stop8" />
-      <stop
-         offset="0.3503"
-         stop-color="#F69537"
-         id="stop10" />
-      <stop
-         offset="0.5"
-         stop-color="#FB9E3A"
-         id="stop12" />
-      <stop
-         offset="0.7016"
-         stop-color="#EA7C31"
-         id="stop14" />
-      <stop
-         offset="0.8866"
-         stop-color="#DE642B"
-         id="stop16" />
-      <stop
-         offset="1.0"
-         stop-color="#D95B29"
-         id="stop18" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#RSSg"
-       id="linearGradient3029"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-224)"
-       x1="30.059999"
-       y1="30.059999"
-       x2="225.94"
-       y2="225.94" />
-  </defs>
-  <rect
-     width="27.385"
-     height="27.385"
-     rx="5.8834963"
-     ry="5.8834963"
-     x="2.3074989"
-     y="2.3075001"
-     id="rect20"
-     style="fill:#909090;fill-opacity:1" />
-  <rect
-     width="26.315275"
-     height="26.315275"
-     rx="5.3486328"
-     ry="5.3486328"
-     x="2.8423624"
-     y="2.8423634"
-     id="rect22"
-     style="fill:#a0a0a0;fill-opacity:0.94117647" />
-  <rect
-     width="25.245548"
-     height="25.245548"
-     rx="5.0277152"
-     ry="5.0277152"
-     x="3.3772256"
-     y="3.3772268"
-     id="rect24"
-     style="fill:#c0c0c0;fill-opacity:1" />
-  <circle
-     d="m 92,189 c 0,13.25483 -10.745166,24 -24,24 -13.254834,0 -24,-10.74517 -24,-24 0,-13.25483 10.745166,-24 24,-24 13.254834,0 24,10.74517 24,24 z"
-     cx="68"
-     cy="189"
-     r="24"
-     id="circle26"
-     sodipodi:cx="68"
-     sodipodi:cy="189"
-     sodipodi:rx="24"
-     sodipodi:ry="24"
-     style="fill:#ffffff"
-     transform="matrix(0.10697266,0,0,0.10697266,2.307499,2.3075002)" />
-  <path
-     d="M 19.423125,25.092677 H 15.786054 A 8.7717581,8.7717581 0 0 0 7.014296,16.320919 v -3.637071 a 12.408829,12.408829 0 0 1 12.408829,12.408829 z"
-     id="path28"
-     inkscape:connector-curvature="0"
-     style="fill:#ffffff" />
-  <path
-     d="M 21.990468,25.092677 A 14.976172,14.976172 0 0 0 7.014296,10.116504 V 6.3724612 A 18.720216,18.720216 0 0 1 25.734512,25.092677 z"
-     id="path30"
-     inkscape:connector-curvature="0"
-     style="fill:#ffffff" />
-</svg>
diff --git a/images/recently_read.png b/images/recently_read.png
deleted file mode 100644 (file)
index ac1bf17..0000000
Binary files a/images/recently_read.png and /dev/null differ
index 205429aba8bc3a70ee5a221fe7bc7845d3644a44..058ad261f520490be9d3fc2e322392fdedfd1cbd 100644 (file)
Binary files a/images/score_half_high.png and b/images/score_half_high.png differ
index 62da70043e7badbc7b523e9201a7966174aa5a82..57619706d10d9736b1849a83f2c5694fbe09c53b 100644 (file)
Binary files a/images/score_half_low.png and b/images/score_half_low.png differ
index 0ab5c07cba66cbaf80ab2da731781a6b117e3f54..058ad261f520490be9d3fc2e322392fdedfd1cbd 100644 (file)
Binary files a/images/score_high.png and b/images/score_high.png differ
index 7a18affc9cccea02dd4e3f125964b59b355a4806..57619706d10d9736b1849a83f2c5694fbe09c53b 100644 (file)
Binary files a/images/score_low.png and b/images/score_low.png differ
index 22d44f8efcfbe60e6fea94a6d7e6d726b918498b..a9af8d44bf3c001adc41e3774f526bd1d1448b1f 100644 (file)
Binary files a/images/score_neutral.png and b/images/score_neutral.png differ
diff --git a/images/sign_excl.svg b/images/sign_excl.svg
deleted file mode 100644 (file)
index eb5e6dd..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="32px"
-   height="32px"
-   id="svg7311"
-   version="1.1"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="sign_excl.svg">
-  <defs
-     id="defs7313" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="11.197802"
-     inkscape:cx="-11.862611"
-     inkscape:cy="16"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1600"
-     inkscape:window-height="1137"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata7316">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="fill:#eb6363;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-       id="path6540-7"
-       sodipodi:cx="3.409934"
-       sodipodi:cy="4.3416462"
-       sodipodi:rx="14.271205"
-       sodipodi:ry="14.271205"
-       d="m 17.681139,4.3416462 a 14.271205,14.271205 0 1 1 -28.54241,0 14.271205,14.271205 0 1 1 28.54241,0 z"
-       transform="translate(12.590066,11.658354)"
-       inkscape:export-xdpi="73.07"
-       inkscape:export-ydpi="73.07" />
-    <text
-       xml:space="preserve"
-       style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
-       x="11.482422"
-       y="24.308594"
-       id="text6542-9"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan6544-5"
-         x="11.482422"
-         y="24.308594"
-         style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;font-family:Georgia;-inkscape-font-specification:Georgia Bold">!</tspan></text>
-  </g>
-</svg>
diff --git a/images/sign_info.svg b/images/sign_info.svg
deleted file mode 100644 (file)
index b5a3e9f..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="32px"
-   height="32px"
-   id="svg2985"
-   version="1.1"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="sign_info.svg"
-   inkscape:export-filename="Y:\public_html\testbox\tt-rss\images\sign_info.png"
-   inkscape:export-xdpi="67.5"
-   inkscape:export-ydpi="67.5">
-  <defs
-     id="defs2987" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="2.7994505"
-     inkscape:cx="6.8311272"
-     inkscape:cy="-22.339561"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1600"
-     inkscape:window-height="1137"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata2990">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="fill:#88b0f0;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-       id="path6540"
-       sodipodi:cx="3.409934"
-       sodipodi:cy="4.3416462"
-       sodipodi:rx="14.271205"
-       sodipodi:ry="14.271205"
-       d="m 17.681139,4.3416462 a 14.271205,14.271205 0 1 1 -28.54241,0 14.271205,14.271205 0 1 1 28.54241,0 z"
-       transform="translate(12.590066,11.658354)"
-       inkscape:export-xdpi="73.07"
-       inkscape:export-ydpi="73.07" />
-    <text
-       xml:space="preserve"
-       style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Times New Roman;-inkscape-font-specification:Times New Roman"
-       x="11.763672"
-       y="25.070313"
-       id="text6542"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan6544"
-         x="11.763672"
-         y="25.070313"
-         style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;font-family:Georgia;-inkscape-font-specification:Georgia Bold">i</tspan></text>
-  </g>
-</svg>
diff --git a/images/star.png b/images/star.png
new file mode 100644 (file)
index 0000000..b88c857
Binary files /dev/null and b/images/star.png differ
index 5fe6596ec6bd249707ea0102f7d6f45291c765f0..80547e92794c853ec6615f096a376e71966d7a39 100644 (file)
Binary files a/images/tag.png and b/images/tag.png differ
diff --git a/images/time.png b/images/time.png
new file mode 100644 (file)
index 0000000..911da3f
Binary files /dev/null and b/images/time.png differ
diff --git a/images/user.png b/images/user.png
new file mode 100644 (file)
index 0000000..79f35cc
Binary files /dev/null and b/images/user.png differ
index bcded7e5fe54b2bc1dc3c01324072ff6fe4d9a9f..603a865a165b47f61af613977d8b6dddc4f66060 100644 (file)
                        return "images/archive.png";
                        break;
                case -1:
-                       return "images/mark_set.svg";
+                       return "images/star.png";
                        break;
                case -2:
-                       return "images/pub_set.svg";
+                       return "images/feed.png";
                        break;
                case -3:
                        return "images/fresh.png";
                        break;
                case -4:
-                       return "images/tag.png";
+                       return "images/folder.png";
                        break;
                case -6:
-                       return "images/recently_read.png";
+                       return "images/time.png";
                        break;
                default:
                        if ($id < LABEL_BASE_INDEX) {
        function format_warning($msg, $id = "") {
                global $link;
                return "<div class=\"warning\" id=\"$id\">
-                       <span><img src=\"images/sign_excl.svg\"></span><span>$msg</span></div>";
+                       <span><img src=\"images/alert.png\"></span><span>$msg</span></div>";
        }
 
        function format_notice($msg, $id = "") {
                global $link;
                return "<div class=\"notice\" id=\"$id\">
-                       <span><img src=\"images/sign_info.svg\"></span><span>$msg</span></div>";
+                       <span><img src=\"images/information.png\"></span><span>$msg</span></div>";
        }
 
        function format_error($msg, $id = "") {
                global $link;
                return "<div class=\"error\" id=\"$id\">
-                       <span><img src=\"images/sign_excl.svg\"></span><span>$msg</span></div>";
+                       <span><img src=\"images/alert.png\"></span><span>$msg</span></div>";
        }
 
        function print_notice($msg) {
index f71a779faa5ea186b13f0426cda02e458f23e1ff..440954537a2d08d4acf2e3ca4d3dfbd1ff2b034d 100644 (file)
        }
 
        function print_error($msg) {
-               print "<div class='error'><span><img src='../images/sign_excl.svg'></span>
+               print "<div class='error'><span><img src='../images/alert.png'></span>
                        <span>$msg</span></div>";
        }
 
        function print_notice($msg) {
                print "<div class=\"notice\">
-                       <span><img src=\"../images/sign_info.svg\"></span><span>$msg</span></div>";
+                       <span><img src=\"../images/information.png\"></span><span>$msg</span></div>";
        }
 
        function db_connect($host, $user, $pass, $db, $type, $port = false) {
index 4e49075bd0144b653db883ddb3e5649ce7f02850..d9391c13587accc5694ce904fed3f1f75e2d875b 100644 (file)
@@ -32,6 +32,14 @@ dojo.declare("fox.PrefFilterTree", lib.CheckBoxTree, {
                        dojo.place(param, tnode.rowNode, 'first');
                }
 
+               if (this.model.store.getValue(args.item, 'id') != 'root') {
+                       var img = dojo.doc.createElement('img');
+                       img.src ='images/filter.png';
+                       img.className = 'markedPic';
+                       tnode._filterIconNode = img;
+                       dojo.place(tnode._filterIconNode, tnode.labelNode, 'before');
+               }
+
                return tnode;
        },
 
index 05a0c15b69812658b57f94dc7b2ffed2a943dbb4..2f7dc0f534df5059d6877b03de0569231501ad06 100644 (file)
@@ -22,7 +22,7 @@ dojo.declare("fox.PrefLabelTree", lib.CheckBoxTree, {
                if (type == 'label') {
                        var span = dojo.doc.createElement('span');
                        span.innerHTML = '&alpha;';
-                       span.className = 'labelColorIndicator2';
+                       span.className = 'labelColorIndicator';
                        span.id = 'LICID-' + bare_id;
 
                        span.setStyle({
@@ -38,6 +38,6 @@ dojo.declare("fox.PrefLabelTree", lib.CheckBoxTree, {
        },
        getIconClass: function (item, opened) {
                return (!item || this.model.mayHaveChildren(item)) ? (opened ? "dijitFolderOpened" : "dijitFolderClosed") : "invisible";
-       }, 
+       },
 });
 
index 8691c1ee5d29b8a75c4303aff90df9c89b40c77e..b9b3aa44e1e110c768bf3719cd098916cfa63ada 100644 (file)
@@ -232,7 +232,7 @@ function notify_real(msg, no_hide, n_type) {
                msg = "<span><img src='images/sign_info.svg'></span>" + msg;
        }
 
-       msg += " <span><img src=\"images/close_notify.svg\" class=\"close\" title=\"" +
+       msg += " <span><img src=\"images/cross.png\" class=\"close\" title=\"" +
                __("Click to close") + "\" onclick=\"notify('')\"></span>";
 
 //     msg = "<img src='images/live_com_loading.gif'> " + msg;
index b04aed79688e96ccff52e3bc42524de734562de4..1514d51a3cf1b67e1c5b9ada36f1fd474e2d214a 100644 (file)
Binary files a/plugins/close_button/button.png and b/plugins/close_button/button.png differ
index 4d3fe77518805144908c88ad8ece76b4d1acac0e..7348aed77fe6a64c2210a202f12c6eccae7fcf24 100644 (file)
Binary files a/plugins/mail/mail.png and b/plugins/mail/mail.png differ
index fcdcbd6042ed9217e4e06eb8119dbe16fad26800..2c49f78a657c1ba1ec0ca6a28455721b20d4ec50 100644 (file)
Binary files a/plugins/mailto/mail.png and b/plugins/mailto/mail.png differ
index 971b12932eca44b704fa18cc120267fb9c3b3f20..103475251f59fe606b3cdbc86b7a4586e6fb8019 100644 (file)
@@ -21,7 +21,7 @@ class Mark_Button extends Plugin {
                if (get_pref("COMBINED_DISPLAY_MODE")) {
                        if (sql_bool_to_bool($line["marked"])) {
                                $marked_pic = "<img
-                                       src=\"images/mark_set.svg\"
+                                       src=\"images/mark_set.png\"
                                        class=\"markedPic\" alt=\"Unstar article\"
                                        onclick='toggleMark($id)'>";
                        } else {
index 7f9f3fc3f685eff6d38d25bbab205e2d190e7b09..244e6ca045c50a130086ac388b560a12761544b4 100644 (file)
Binary files a/plugins/note/note.png and b/plugins/note/note.png differ
index 3b6398f4a76a16a6694444c4c93bde8ffda17093..25eacb7c2524142262d68bf729c5e2b61adfd6d4 100644 (file)
Binary files a/plugins/share/share.png and b/plugins/share/share.png differ