]> git.wh0rd.org - tt-rss.git/commitdiff
add note plugin
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 21 Dec 2011 06:58:06 +0000 (10:58 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 21 Dec 2011 06:58:06 +0000 (10:58 +0400)
classes/dlg.php
classes/feeds.php
classes/note_button.php [new file with mode: 0644]
classes/rpc.php
config.php-dist
include/functions.php
index.php
js/note_button.js [new file with mode: 0644]
js/viewfeed.js

index 8b088bc4e007732c49d39ef2384aa912767fe039..b0cfe4451c3b95814fed49509d6f1c654129cc2d 100644 (file)
@@ -883,32 +883,6 @@ class Dlg extends Protected_Handler {
 
        }
 
-       function editArticleNote() {
-               $result = db_query($this->link, "SELECT note FROM ttrss_user_entries WHERE
-                       ref_id = '$this->param' AND owner_uid = " . $_SESSION['uid']);
-
-               $note = db_fetch_result($result, 0, "note");
-
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$this->param\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setNote\">";
-
-               print "<table width='100%'><tr><td>";
-               print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
-                       style='font-size : 12px; width : 100%; height: 100px;'
-                       placeHolder='body#ttrssMain { font-size : 14px; };'
-                       name='note'>$note</textarea>";
-               print "</td></tr></table>";
-
-               print "<div class='dlgButtons'>";
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('editNoteDlg').execute()\">".__('Save')."</button> ";
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('editNoteDlg').hide()\">".__('Cancel')."</button>";
-               print "</div>";
-
-       }
-
        function addInstance() {
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"op\" value=\"pref-instances\">";
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"method\" value=\"add\">";
index 5d55f2f0289b845df182eb21fb88850d971df45c..1b2eb70ee20baf21d0e875124b48956a6c5fb853 100644 (file)
@@ -706,11 +706,6 @@ class Feeds extends Protected_Handler {
 \r
                                        //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);\r
 \r
-                                       $reply['content'] .= "<img src=\"images/art-pub-note.png\"\r
-                                               style=\"cursor : pointer\" style=\"cursor : pointer\"\r
-                                               onclick=\"editArticleNote($id)\"\r
-                                               alt='PubNote' title='".__('Edit article note')."'>";\r
-\r
                                        foreach ($button_plugins as $p) {\r
                                                $reply['content'] .= $p->render($id, $line);\r
                                        }\r
diff --git a/classes/note_button.php b/classes/note_button.php
new file mode 100644 (file)
index 0000000..794f177
--- /dev/null
@@ -0,0 +1,55 @@
+<?php
+class Note_Button extends Plugin_Button {
+       function render($article_id) {
+               return "<img src=\"".theme_image($this->link, "images/art-pub-note.png")."\"
+                               style=\"cursor : pointer\" style=\"cursor : pointer\"
+                               onclick=\"editArticleNote($article_id)\"
+                               class='tagsPic' title='".__('Edit article note')."'>";
+       }
+
+       function edit() {
+               $param = db_escape_string($_REQUEST['param']);
+
+               $result = db_query($this->link, "SELECT note FROM ttrss_user_entries WHERE
+                       ref_id = '$param' AND owner_uid = " . $_SESSION['uid']);
+
+               $note = db_fetch_result($result, 0, "note");
+
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"buttonPlugin\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin\" value=\"note\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin_method\" value=\"setNote\">";
+
+               print "<table width='100%'><tr><td>";
+               print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
+                       style='font-size : 12px; width : 100%; height: 100px;'
+                       placeHolder='body#ttrssMain { font-size : 14px; };'
+                       name='note'>$note</textarea>";
+               print "</td></tr></table>";
+
+               print "<div class='dlgButtons'>";
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('editNoteDlg').execute()\">".__('Save')."</button> ";
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('editNoteDlg').hide()\">".__('Cancel')."</button>";
+               print "</div>";
+
+       }
+
+       function setNote() {
+               $id = db_escape_string($_REQUEST["id"]);
+               $note = trim(strip_tags(db_escape_string($_REQUEST["note"])));
+
+               db_query($this->link, "UPDATE ttrss_user_entries SET note = '$note'
+                       WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
+
+               $formatted_note = format_article_note($id, $note);
+
+               print json_encode(array("note" => $formatted_note,
+                               "raw_length" => mb_strlen($note)));
+       }
+
+
+}
+?>
index 55ea05da9f166304c344559059a47d2bdcae15f2..8145b0407133adfeedb82c0977cde24ffefb8390 100644 (file)
@@ -693,19 +693,6 @@ class RPC extends Protected_Handler {
                }
        }
 
-       function setNote() {
-               $id = db_escape_string($_REQUEST["id"]);
-               $note = trim(strip_tags(db_escape_string($_REQUEST["note"])));
-
-               db_query($this->link, "UPDATE ttrss_user_entries SET note = '$note'
-                       WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
-
-               $formatted_note = format_article_note($id, $note);
-
-               print json_encode(array("note" => $formatted_note,
-                               "raw_length" => mb_strlen($note)));
-       }
-
        function genHash() {
                $hash = sha1(uniqid(rand(), true));
 
index fe691801ee8d0aaf4ebd45239086d61e6b6f6bbf..6aaf32476ae7820d89cf890f00d2fddeecbe75f6 100644 (file)
        // Displays an URL for users to provide feedback or comments regarding
        // this instance of tt-rss. Can lead to a forum, contact email, etc.
 
-       define('ARTICLE_BUTTON_PLUGINS', 'tweet,share,mail');
+       define('ARTICLE_BUTTON_PLUGINS', 'note,tweet,share,mail');
        // Comma-separated list of additional article action button plugins
        // to enable, like tweet button, etc.
-       // The following plugins are available: tweet, share, mail, readitlater
+       // The following plugins are available: note, tweet, share, mail, readitlater
 
        define('CONFIG_VERSION', 25);
        // Expected config version. Please update this option in config.php
index b00817563d03f86ae2bde13f989e710552c623c2..90acc103abab2463ae81a6d5c3df291c5b5f94d8 100644 (file)
                                                onclick=\"postOpenInNewTab(event, $id)\"
                                                alt='Zoom' title='".__('Open article in new tab')."'>";
 
-                               //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
-
-                               $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
-                                               class='tagsPic' style=\"cursor : pointer\"
-                                               onclick=\"editArticleNote($id)\"
-                                               alt='PubNote' title='".__('Edit article note')."'>";
-
                                $button_plugins = explode(",", ARTICLE_BUTTON_PLUGINS);
 
                                foreach ($button_plugins as $p) {
index 2b5548374e155d179d9f168a020d9b9e58a05c0d..dc217d900f409282bee6a6332dfe83693a80bc10 100644 (file)
--- a/index.php
+++ b/index.php
@@ -42,7 +42,7 @@
 
        <script type="text/javascript">
        <?php foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
-               $jsf = "js/${p}_button.js";
+               $jsf = "js/".trim($p)."_button.js";
                if (file_exists($jsf)) {
                        include $jsf;
                }
diff --git a/js/note_button.js b/js/note_button.js
new file mode 100644 (file)
index 0000000..c9347ab
--- /dev/null
@@ -0,0 +1,51 @@
+function editArticleNote(id) {
+       try {
+
+               var query = "backend.php?op=rpc&method=buttonPlugin&plugin=note&plugin_method=edit&param=" + param_escape(id);
+
+               if (dijit.byId("editNoteDlg"))
+                       dijit.byId("editNoteDlg").destroyRecursive();
+
+               dialog = new dijit.Dialog({
+                       id: "editNoteDlg",
+                       title: __("Edit article note"),
+                       style: "width: 600px",
+                       execute: function() {
+                               if (this.validate()) {
+                                       var query = dojo.objectToQuery(this.attr('value'));
+
+                                       notify_progress("Saving article note...", true);
+
+                                       new Ajax.Request("backend.php", {
+                                       parameters: query,
+                                       onComplete: function(transport) {
+                                               notify('');
+                                               dialog.hide();
+
+                                               var reply = JSON.parse(transport.responseText);
+
+                                               cache_delete("article:" + id);
+
+                                               var elem = $("POSTNOTE-" + id);
+
+                                               if (elem) {
+                                                       Element.hide(elem);
+                                                       elem.innerHTML = reply.note;
+
+                                                       if (reply.raw_length != 0)
+                                                               new Effect.Appear(elem);
+                                               }
+
+                                       }});
+                               }
+                       },
+                       href: query,
+               });
+
+               dialog.show();
+
+       } catch (e) {
+               exception_error("editArticleNote", e);
+       }
+}
+
index ab0d5e55f54f93917ff5fd3b140505e4506c4712..880abc6bd66c521f6cba2e3e2ea9fdafb38502a6 100644 (file)
@@ -1924,56 +1924,6 @@ function initHeadlinesMenu() {
        }
 }
 
-function editArticleNote(id) {
-       try {
-
-               var query = "backend.php?op=dlg&method=editArticleNote&param=" + param_escape(id);
-
-               if (dijit.byId("editNoteDlg"))
-                       dijit.byId("editNoteDlg").destroyRecursive();
-
-               dialog = new dijit.Dialog({
-                       id: "editNoteDlg",
-                       title: __("Edit article note"),
-                       style: "width: 600px",
-                       execute: function() {
-                               if (this.validate()) {
-                                       var query = dojo.objectToQuery(this.attr('value'));
-
-                                       notify_progress("Saving article note...", true);
-
-                                       new Ajax.Request("backend.php", {
-                                       parameters: query,
-                                       onComplete: function(transport) {
-                                               notify('');
-                                               dialog.hide();
-
-                                               var reply = JSON.parse(transport.responseText);
-
-                                               cache_delete("article:" + id);
-
-                                               var elem = $("POSTNOTE-" + id);
-
-                                               if (elem) {
-                                                       Element.hide(elem);
-                                                       elem.innerHTML = reply.note;
-
-                                                       if (reply.raw_length != 0)
-                                                               new Effect.Appear(elem);
-                                               }
-
-                                       }});
-                               }
-                       },
-                       href: query,
-               });
-
-               dialog.show();
-
-       } catch (e) {
-               exception_error("editArticleNote", e);
-       }
-}
 
 function player(elem) {
        var aid = elem.getAttribute("audio-id");