From: Andrew Dolgov Date: Wed, 21 Dec 2011 06:58:06 +0000 (+0400) Subject: add note plugin X-Git-Tag: 1.5.8.1~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=55ad22fa5574f65fdd70cea5e3b91398ee18b62a;p=tt-rss.git add note plugin --- diff --git a/classes/dlg.php b/classes/dlg.php index 8b088bc4..b0cfe445 100644 --- a/classes/dlg.php +++ b/classes/dlg.php @@ -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 "param\">"; - print ""; - print ""; - - print "
"; - print ""; - print "
"; - - print "
"; - print " "; - print ""; - print "
"; - - } - function addInstance() { print ""; print ""; diff --git a/classes/feeds.php b/classes/feeds.php index 5d55f2f0..1b2eb70e 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -706,11 +706,6 @@ class Feeds extends Protected_Handler { //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES); - $reply['content'] .= "PubNote"; - foreach ($button_plugins as $p) { $reply['content'] .= $p->render($id, $line); } diff --git a/classes/note_button.php b/classes/note_button.php new file mode 100644 index 00000000..794f1773 --- /dev/null +++ b/classes/note_button.php @@ -0,0 +1,55 @@ +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 ""; + print ""; + print ""; + print ""; + print ""; + + print "
"; + print ""; + print "
"; + + print "
"; + print " "; + print ""; + print "
"; + + } + + 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))); + } + + +} +?> diff --git a/classes/rpc.php b/classes/rpc.php index 55ea05da..8145b040 100644 --- a/classes/rpc.php +++ b/classes/rpc.php @@ -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)); diff --git a/config.php-dist b/config.php-dist index fe691801..6aaf3247 100644 --- a/config.php-dist +++ b/config.php-dist @@ -200,10 +200,10 @@ // 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 diff --git a/include/functions.php b/include/functions.php index b0081756..90acc103 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3277,13 +3277,6 @@ onclick=\"postOpenInNewTab(event, $id)\" alt='Zoom' title='".__('Open article in new tab')."'>"; - //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES); - - $rv['content'] .= "PubNote"; - $button_plugins = explode(",", ARTICLE_BUTTON_PLUGINS); foreach ($button_plugins as $p) { diff --git a/index.php b/index.php index 2b554837..dc217d90 100644 --- a/index.php +++ b/index.php @@ -42,7 +42,7 @@