From: Andrew Dolgov Date: Sat, 21 Mar 2009 19:58:32 +0000 (+0300) Subject: update translations X-Git-Tag: 1.3.2~3 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=2b38f79c86ad9199f39fa8efac1c0e89c6f3a465 update translations --- diff --git a/functions.php b/functions.php index 4c867f26..648ab343 100644 --- a/functions.php +++ b/functions.php @@ -395,14 +395,10 @@ $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl; } else if (substr($linkUrl, 0, 7) == 'http://') { $faviconURL = $linkUrl; + } else if (substr($url, -1, 1) == '/') { + $faviconURL = $url.$linkUrl; } else { - $pos = strrpos($url, "/"); - // no "/" in url or "/" is part of "://" - if ($pos === false || $pos == (strpos($url, "://")+2)) { - $faviconURL = $url.'/'.$linkUrl; - } else { - $faviconURL = substr($url, 0, $pos+1).$linkUrl; - } + $faviconURL = $url.'/'.$linkUrl; } } else { @@ -458,7 +454,7 @@ $http_response = fgets( $socket, 22 ); - $responses = "/(200 OK)|(30[123])/"; + $responses = "/(200 OK)|(30[0-9] Moved)/"; if ( preg_match($responses, $http_response) ) { fclose($socket); return true; @@ -1384,7 +1380,7 @@ if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) { _debug("update_rss_feed: new feed, catching it up..."); } - catchup_feed($link, $feed, false, $owner_uid); + catchup_feed($link, $feed, false); } if (!$hidden) { @@ -2120,9 +2116,7 @@ } } - function catchup_feed($link, $feed, $cat_view, $owner_uid) { - - if (!$owner_uid) $owner_uid = $_SESSION['uid']; + function catchup_feed($link, $feed, $cat_view) { if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) { @@ -2137,7 +2131,8 @@ } $tmp_result = db_query($link, "SELECT id - FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid"); + FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " . + $_SESSION["uid"]); while ($tmp_line = db_fetch_assoc($tmp_result)) { @@ -2145,7 +2140,7 @@ db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() - WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid"); + WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]); } } else if ($feed == -2) { @@ -2153,7 +2148,7 @@ db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*) FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0 - AND unread = true AND owner_uid = $owner_uid"); + AND unread = true AND owner_uid = " . $_SESSION["uid"]); } } else if ($feed > 0) { @@ -2174,12 +2169,12 @@ db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() WHERE (feed_id = '$feed' OR $children_qpart) - AND owner_uid = $owner_uid"); + AND owner_uid = " . $_SESSION["uid"]); } else { db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() - WHERE feed_id = '$feed' AND owner_uid = $owner_uid"); + WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]); } } else if ($feed < 0 && $feed > -10) { // special, like starred @@ -2187,13 +2182,13 @@ if ($feed == -1) { db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() - WHERE marked = true AND owner_uid = $owner_uid"); + WHERE marked = true AND owner_uid = ".$_SESSION["uid"]); } if ($feed == -2) { db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() - WHERE published = true AND owner_uid = $owner_uid"); + WHERE published = true AND owner_uid = ".$_SESSION["uid"]); } if ($feed == -3) { @@ -2211,7 +2206,7 @@ ttrss_user_entries WHERE $match_part AND unread = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND - owner_uid = $owner_uid"); + owner_uid = ".$_SESSION["uid"]); $affected_ids = array(); @@ -2225,7 +2220,7 @@ if ($feed == -4) { db_query($link, "UPDATE ttrss_user_entries SET unread = false,last_read = NOW() - WHERE owner_uid = $owner_uid"); + WHERE owner_uid = ".$_SESSION["uid"]); } } else if ($feed < -10) { // label @@ -2235,11 +2230,11 @@ db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2 SET unread = false, last_read = NOW() WHERE label_id = '$label_id' AND unread = true - AND owner_uid = '$owner_uid' AND ref_id = article_id"); + AND owner_uid = '".$_SESSION["uid"]."' AND ref_id = article_id"); } - ccache_update($link, $feed, $owner_uid, $cat_view); + ccache_update($link, $feed, $_SESSION["uid"], $cat_view); } else { // tag db_query($link, "BEGIN"); @@ -2247,7 +2242,7 @@ $tag_name = db_escape_string($feed); $result = db_query($link, "SELECT post_int_id FROM ttrss_tags - WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid"); + WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]); while ($line = db_fetch_assoc($result)) { db_query($link, "UPDATE ttrss_user_entries SET @@ -3406,7 +3401,6 @@ guid, ttrss_entries.id,ttrss_entries.title, updated, - note, unread,feed_id,marked,published,link,last_read, ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms, $vfeed_query_part @@ -3437,7 +3431,6 @@ $result = db_query($link, "SELECT guid, - note, ttrss_entries.id as id,title, updated, unread,feed_id, @@ -3466,10 +3459,6 @@ function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat, $limit, $search, $search_mode, $match_on) { - $note_style = "background-color : #fff7d5; border-width : 1px; ". - "padding : 5px; border-style : dashed; border-color : #e7d796;". - "margin-top : 5px; color : #9a8c59;"; - if (!$limit) $limit = 30; $qfh_ret = queryFeedHeadlines($link, $feed, @@ -3509,14 +3498,8 @@ print "" . htmlspecialchars($line["title"]) . ""; - print ""; - print $line["note"]; - print ""; - } - print "]]>"; + print ""; print ""; } @@ -4538,8 +4521,7 @@ ".SUBSTRING_FOR_DATE."(updated,1,16) as updated, (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url, num_comments, - author, - note + author FROM ttrss_entries,ttrss_user_entries WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]); @@ -4613,7 +4595,7 @@ if (!$entry_comments) $entry_comments = " "; # placeholder print "
- Tags "; + Tags"; if (!$zoom_mode) { print "$tags_str @@ -4633,14 +4615,6 @@ style=\"cursor : pointer\" style=\"cursor : pointer\" onclick=\"zoomToArticle($id)\" alt='Zoom' title='".__('Show article summary in new window')."'>"; - - $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES); - - print "PubNote"; - } print "
"; print "
$entry_comments
"; @@ -4660,12 +4634,6 @@ print $article_content; - print "
"; - if ($line['note']) { - print format_article_note($id, $line['note']); - } - print "
"; - $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE post_id = '$id' AND content_url != ''"); @@ -5202,13 +5170,6 @@ // print "
"; print sanitize_rss($link, $line["content_preview"]); - - print "
"; - if ($line['note']) { - print format_article_note($id, $line['note']); - } - print "
"; - $article_content = $line["content_preview"]; $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE @@ -5293,22 +5254,13 @@ " "; - print "$marked_pic "; - print "$published_pic "; - print "$marked_pic "; + print "$published_pic "; + print "Zoom "; - - $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES); - - print "PubNote"; - - print ""; + title='".__('Show article summary in new window')."'>"; $tags_str = format_tags_string(get_article_tags($link, $id), $id); @@ -5322,9 +5274,9 @@ print ""; - print "Toggle: - ".__('toggle unread').""; + Unread"; print "
"; print ""; @@ -5754,19 +5706,6 @@ value = 0 WHERE owner_uid = '$owner_uid'"); } - function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) { - - if (!$is_cat) { - $table = "ttrss_counters_cache"; - } else { - $table = "ttrss_cat_counters_cache"; - } - - db_query($link, "DELETE FROM $table WHERE - feed_id = '$feed_id' AND owner_uid = '$owner_uid'"); - - } - function ccache_update_all($link, $owner_uid) { if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) { @@ -5875,8 +5814,6 @@ $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid); } - db_query($link, "BEGIN"); - $result = db_query($link, "SELECT feed_id FROM $table WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1"); @@ -5892,8 +5829,6 @@ ($feed_id, $unread, $owner_uid, NOW())"); } - db_query($link, "COMMIT"); - if ($feed_id > 0 && $prev_unread != $unread) { if (!$is_cat) { @@ -6123,19 +6058,4 @@ return $labels_str; } - - function format_article_note($id, $note) { - - $note_escaped = htmlspecialchars($note, ENT_QUOTES); - - $str = "
"; - $str .= "
"; - $str .= "". - __('edit note').""; - $str .= "
"; - $str .= $note; - $str .= "
"; - - return $str; - } ?> diff --git a/images/art-pub-note.png b/images/art-pub-note.png deleted file mode 100755 index 5d3008f2..00000000 Binary files a/images/art-pub-note.png and /dev/null differ diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo index 380ccc87..36807713 100644 Binary files a/locale/fr_FR/LC_MESSAGES/messages.mo and b/locale/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po index 89ab9f59..d03fe90b 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2007-11-20 23:01+0100\n" "Last-Translator: Thibaut Cousin \n" "Language-Team: Français \n" @@ -111,12 +111,16 @@ msgid "Unknown error" msgstr "Erreur inconnue" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "Ce logiciel nécessite XmlHttpRequest " +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" #: errors.php:8 -msgid "This program requires cookies " -msgstr "Les cookies doivent être activés pour ce logiciel " +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" #: errors.php:11 msgid "Backend sanity check failed" @@ -1849,11 +1853,6 @@ msgstr "Ce flux" msgid "Create Filter" msgstr "Créer un filtre" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "description" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2213,14 +2212,6 @@ msgstr "Filtre %s créé" msgid "Create filter" msgstr "Créer un filtre" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "" - #: modules/pref-filters.php:404 #, fuzzy msgid "Field" @@ -2366,10 +2357,6 @@ msgstr "Sélectionner un thème" msgid "Change theme" msgstr "Modifier le thème" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Oui" @@ -2759,6 +2746,15 @@ msgstr "Correspondance sur :" msgid "Internal error: Function not implemented" msgstr "" +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "Ce logiciel nécessite XmlHttpRequest " + +#~ msgid "This program requires cookies " +#~ msgstr "Les cookies doivent être activés pour ce logiciel " + +#~ msgid "description" +#~ msgstr "description" + #~ msgid "display tags" #~ msgstr "afficher les étiquettes" diff --git a/locale/hu_HU/LC_MESSAGES/messages.mo b/locale/hu_HU/LC_MESSAGES/messages.mo index 1e0813be..cbe5f001 100644 Binary files a/locale/hu_HU/LC_MESSAGES/messages.mo and b/locale/hu_HU/LC_MESSAGES/messages.mo differ diff --git a/locale/hu_HU/LC_MESSAGES/messages.po b/locale/hu_HU/LC_MESSAGES/messages.po index ba4acd31..a5c42b4a 100644 --- a/locale/hu_HU/LC_MESSAGES/messages.po +++ b/locale/hu_HU/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.2.19\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2008-02-03 22:22::+0100\n" "Last-Translator: MiszterX \n" "Language-Team: HUNGARIAN \n" @@ -111,11 +111,15 @@ msgid "Unknown error" msgstr "Ismeretlen hiba" #: errors.php:5 -msgid "This program requires XmlHttpRequest " +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." msgstr "" #: errors.php:8 -msgid "This program requires cookies " +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." msgstr "" #: errors.php:11 @@ -1776,12 +1780,6 @@ msgstr "Ez a feed" msgid "Create Filter" msgstr "Szárő készítése" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -#, fuzzy -msgid "description" -msgstr "Kiválasztottakat" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2134,14 +2132,6 @@ msgstr "" msgid "Create filter" msgstr "Szárő készítése" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "" - #: modules/pref-filters.php:404 #, fuzzy msgid "Field" @@ -2285,10 +2275,6 @@ msgstr "Kinézet választó" msgid "Change theme" msgstr "Kinlzet megváltozatása" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Igen" @@ -2669,6 +2655,10 @@ msgstr "Egyezés ezzel:" msgid "Internal error: Function not implemented" msgstr "" +#, fuzzy +#~ msgid "description" +#~ msgstr "Kiválasztottakat" + #~ msgid "Loading help..." #~ msgstr "Segítség betöltése..." diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo index ac28ccb5..db953c7d 100644 Binary files a/locale/it_IT/LC_MESSAGES/messages.mo and b/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po index 232b75e6..e79e38d8 100644 --- a/locale/it_IT/LC_MESSAGES/messages.po +++ b/locale/it_IT/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ttrss-1.2.30\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2009-01-03 16:43+0100\n" "Last-Translator: Andrea Zagli \n" "Language-Team: Italian \n" @@ -107,12 +107,20 @@ msgid "Unknown error" msgstr "Errore sconosciuto" #: errors.php:5 -msgid "This program requires XmlHttpRequest " +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." msgstr "" +"Questo programma richiede XmlHttpRequest per funzionare correttamente. Il " +"browser sembra non supportarla." #: errors.php:8 -msgid "This program requires cookies " +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." msgstr "" +"Questo programma richiede i cookie per funzionare correttamente. Il browser " +"sembra non supportarli." #: errors.php:11 msgid "Backend sanity check failed" @@ -1833,12 +1841,6 @@ msgstr "Questo notiziario" msgid "Create Filter" msgstr "Crea filtro" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -#, fuzzy -msgid "description" -msgstr "Selezione" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2184,14 +2186,6 @@ msgstr "Filtro %s creato" msgid "Create filter" msgstr "Crea filtro" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "" - #: modules/pref-filters.php:404 msgid "Field" msgstr "Campo" @@ -2332,10 +2326,6 @@ msgstr "Seleziona tema" msgid "Change theme" msgstr "Cambia tema" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Sì" @@ -2700,6 +2690,10 @@ msgstr "Corrisponde a:" msgid "Internal error: Function not implemented" msgstr "Errore interno: funzione non implementata" +#, fuzzy +#~ msgid "description" +#~ msgstr "Selezione" + #~ msgid "display tags" #~ msgstr "visualizza etichette" @@ -2758,8 +2752,8 @@ msgstr "Errore interno: funzione non implementata" #~ "\t\t\tIn base all'insieme di caratteri attuale del database si " #~ "potrebbero avere delle corruzioni dei dati (caratteri accentati persi, " #~ "ecc.). \n" -#~ "\t\t\tDopo l'aggiornamento, occorre impostare l'opzione a " -#~ "«utf8» MYSQL_CHARSET in config.php." +#~ "\t\t\tDopo l'aggiornamento, occorre impostare l'opzione a «utf8» " +#~ "MYSQL_CHARSET in config.php." #~ msgid "Converting database..." #~ msgstr "Conversione del database..." @@ -3047,20 +3041,6 @@ msgstr "Errore interno: funzione non implementata" #~ msgid "Test" #~ msgstr "Prova" -#~ msgid "" -#~ "This program requires XmlHttpRequest to function properly. Your browser " -#~ "doesn't seem to support it." -#~ msgstr "" -#~ "Questo programma richiede XmlHttpRequest per funzionare correttamente. Il " -#~ "browser sembra non supportarla." - -#~ msgid "" -#~ "This program requires cookies to function properly. Your browser doesn't " -#~ "seem to support them." -#~ msgstr "" -#~ "Questo programma richiede i cookie per funzionare correttamente. Il " -#~ "browser sembra non supportarli." - #~ msgid "Filter expression" #~ msgstr "Espressione del filtro" diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo index c033df85..88b75a07 100644 Binary files a/locale/ja_JP/LC_MESSAGES/messages.mo and b/locale/ja_JP/LC_MESSAGES/messages.mo differ diff --git a/locale/ja_JP/LC_MESSAGES/messages.po b/locale/ja_JP/LC_MESSAGES/messages.po index 111447df..33e410fa 100644 --- a/locale/ja_JP/LC_MESSAGES/messages.po +++ b/locale/ja_JP/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tt-rss unstable\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2008-09-25 12:43+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" @@ -108,12 +108,16 @@ msgid "Unknown error" msgstr "未知のエラー" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "このプログラムは、XmlHttpRequest を要求します" +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" #: errors.php:8 -msgid "This program requires cookies " -msgstr "このプログラムはクッキーを要求します" +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" #: errors.php:11 msgid "Backend sanity check failed" @@ -1774,11 +1778,6 @@ msgstr "このフィード" msgid "Create Filter" msgstr "フィルターを作成する" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "説明" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2124,14 +2123,6 @@ msgstr "フィルター %s を作成しました" msgid "Create filter" msgstr "フィルターを作成する" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "filter_type_descr" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "action_description" - #: modules/pref-filters.php:404 #, fuzzy msgid "Field" @@ -2273,10 +2264,6 @@ msgstr "テーマを選択する" msgid "Change theme" msgstr "テーマを変更する" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "はい" @@ -2634,6 +2621,21 @@ msgstr "対象項目:" msgid "Internal error: Function not implemented" msgstr "インターナルエラー: 機能が実装されていません" +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "このプログラムは、XmlHttpRequest を要求します" + +#~ msgid "This program requires cookies " +#~ msgstr "このプログラムはクッキーを要求します" + +#~ msgid "description" +#~ msgstr "説明" + +#~ msgid "filter_type_descr" +#~ msgstr "filter_type_descr" + +#~ msgid "action_description" +#~ msgstr "action_description" + #~ msgid "display tags" #~ msgstr "タグの表示" diff --git a/locale/nb_NO/LC_MESSAGES/messages.mo b/locale/nb_NO/LC_MESSAGES/messages.mo index 88cb33f2..3b003ad6 100644 Binary files a/locale/nb_NO/LC_MESSAGES/messages.mo and b/locale/nb_NO/LC_MESSAGES/messages.mo differ diff --git a/locale/nb_NO/LC_MESSAGES/messages.po b/locale/nb_NO/LC_MESSAGES/messages.po index 6192f638..dd1588ea 100644 --- a/locale/nb_NO/LC_MESSAGES/messages.po +++ b/locale/nb_NO/LC_MESSAGES/messages.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Tiny Tiny RSS 1.2.21\n" +"Project-Id-Version: Tiny Tiny RSS 1.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" -"PO-Revision-Date: 2009-02-20 13:47+0100\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" +"PO-Revision-Date: 2009-03-21 19:22+0100\n" "Last-Translator: Christian Lomsdalen \n" "Language-Team: Norwegian BokmÃ¥l \n" "MIME-Version: 1.0\n" @@ -108,12 +108,20 @@ msgid "Unknown error" msgstr "Ukjent feil" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "Dette programmet krever XmlHttpRequest " +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" +"Dette programmet krever XmlHttpRequest for Ã¥ fungere slik det skal. Din " +"nettleser ser ikke ut til Ã¥ støtte dette." #: errors.php:8 -msgid "This program requires cookies " -msgstr "Dette programmet krever informasjonskapsler pÃ¥slÃ¥tt" +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" +"Dette programmet krever cookies for Ã¥ fungere ordentlig. Din nettleser ser " +"ikke ut til Ã¥ støtte dette." #: errors.php:11 msgid "Backend sanity check failed" @@ -1770,11 +1778,6 @@ msgstr "Denne nyhetsstrømmen" msgid "Create Filter" msgstr "Lag filter" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "beskrivelse" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2116,14 +2119,6 @@ msgstr "Laget filter %s" msgid "Create filter" msgstr "Lag filter" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "Beskrivelse av filtertype" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "Handlingsbeskrivelse" - #: modules/pref-filters.php:404 msgid "Field" msgstr "Felt" @@ -2262,10 +2257,6 @@ msgstr "Velg utseende" msgid "Change theme" msgstr "Endre utseende" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "kort beskrivelse" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Ja" @@ -2630,19 +2621,35 @@ msgstr "Match pÃ¥:" msgid "Internal error: Function not implemented" msgstr "Intern feil: funksjonen er ikke implementert" -#~ msgid "" -#~ "This program requires XmlHttpRequest to function properly. Your browser " -#~ "doesn't seem to support it." -#~ msgstr "" -#~ "Dette programmet krever XmlHttpRequest for Ã¥ fungere slik det skal. Din " -#~ "nettleser ser ikke ut til Ã¥ støtte dette." +#~ msgid "Publish article with a note" +#~ msgstr "Publiser artikkelen med et notat" -#~ msgid "" -#~ "This program requires cookies to function properly. Your browser doesn't " -#~ "seem to support them." -#~ msgstr "" -#~ "Dette programmet krever cookies for Ã¥ fungere ordentlig. Din nettleser " -#~ "ser ikke ut til Ã¥ støtte dette." +#~ msgid "toggle unread" +#~ msgstr "Merk som ulest" + +#~ msgid "edit note" +#~ msgstr "Endre notat" + +#~ msgid "Please enter a note for this article:" +#~ msgstr "Vennligst skriv inn et notat for denne artikkelen:" + +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "Dette programmet krever XmlHttpRequest " + +#~ msgid "This program requires cookies " +#~ msgstr "Dette programmet krever informasjonskapsler pÃ¥slÃ¥tt" + +#~ msgid "description" +#~ msgstr "beskrivelse" + +#~ msgid "filter_type_descr" +#~ msgstr "Beskrivelse av filtertype" + +#~ msgid "action_description" +#~ msgstr "Handlingsbeskrivelse" + +#~ msgid "short_desc" +#~ msgstr "kort beskrivelse" #~ msgid "display tags" #~ msgstr "Vis stikkord" @@ -2668,9 +2675,6 @@ msgstr "Intern feil: funksjonen er ikke implementert" #~ msgid "Address changed." #~ msgstr "Adresse er endret" -#~ msgid "Please enter label title:" -#~ msgstr "Vennligst skriv inn merkelapp:" - #~ msgid "" #~ "Rescore articles in all feeds? This operation may take a lot of time." #~ msgstr "" diff --git a/locale/pt_BR/LC_MESSAGES/messages.mo b/locale/pt_BR/LC_MESSAGES/messages.mo index d6e88e46..e31ede0f 100644 Binary files a/locale/pt_BR/LC_MESSAGES/messages.mo and b/locale/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/messages.po b/locale/pt_BR/LC_MESSAGES/messages.po index 7bf396ee..4189c1b0 100644 --- a/locale/pt_BR/LC_MESSAGES/messages.po +++ b/locale/pt_BR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tt-rss 1.2.14.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2007-10-24 00:47-0200\n" "Last-Translator: Marcelo Jorge VIeira (metal) \n" "Language-Team: Portuguese/Brazil\n" @@ -111,12 +111,16 @@ msgid "Unknown error" msgstr "Erro desconhecido" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "Este programa requer XmlHttpRequest" +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" #: errors.php:8 -msgid "This program requires cookies " -msgstr "Este programa requer cookies " +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" #: errors.php:11 msgid "Backend sanity check failed" @@ -1771,11 +1775,6 @@ msgstr "" msgid "Create Filter" msgstr "Criar um usuário" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "descrição" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2127,14 +2126,6 @@ msgstr "" msgid "Create filter" msgstr "" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "filter_type_descr" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "action_description" - #: modules/pref-filters.php:404 #, fuzzy msgid "Field" @@ -2277,10 +2268,6 @@ msgstr "Selecionar o tema" msgid "Change theme" msgstr "Mudar Tema" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "short_desc" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Sim" @@ -2665,6 +2652,24 @@ msgstr "" msgid "Internal error: Function not implemented" msgstr "" +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "Este programa requer XmlHttpRequest" + +#~ msgid "This program requires cookies " +#~ msgstr "Este programa requer cookies " + +#~ msgid "description" +#~ msgstr "descrição" + +#~ msgid "filter_type_descr" +#~ msgstr "filter_type_descr" + +#~ msgid "action_description" +#~ msgstr "action_description" + +#~ msgid "short_desc" +#~ msgstr "short_desc" + #~ msgid "Please select only one category." #~ msgstr "Por favor selecione somente uma categoria." diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo index a99c5307..a98afcad 100644 Binary files a/locale/ru_RU/LC_MESSAGES/messages.mo and b/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po index d5d9c15d..13fafac2 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.po +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2009-01-26 08:36+0400\n" "Last-Translator: Max Kamashev \n" "Language-Team: Русский \n" @@ -114,12 +114,18 @@ msgid "Unknown error" msgstr "Неизвестная ошибка" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "Этой программе нужен XmlHttpRequest " +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" +"Программе требуется функционал XmlHttpRequest. Ваш браузер его не " +"поддерживает." #: errors.php:8 -msgid "This program requires cookies " -msgstr "Этой программе нужны включённые куки" +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "Для работы программы необходимы куки. Ваш браузер их не поддерживает." #: errors.php:11 msgid "Backend sanity check failed" @@ -1799,11 +1805,6 @@ msgstr "Этот канал" msgid "Create Filter" msgstr "Создать фильтр" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "описание" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2145,14 +2146,6 @@ msgstr "Добавлен фильтр %s" msgid "Create filter" msgstr "Создать фильтр" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "описание типа фильтра" - -#: modules/pref-filters.php:393 -msgid "action_description" -msgstr "описание действия" - #: modules/pref-filters.php:404 msgid "Field" msgstr "Поле" @@ -2293,10 +2286,6 @@ msgstr "Выбор темы" msgid "Change theme" msgstr "Изменить тему" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "краткое описание" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "Да" @@ -2659,6 +2648,24 @@ msgstr "Соответствие:" msgid "Internal error: Function not implemented" msgstr "Внутренняя ошибка: Функция не реализована" +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "Этой программе нужен XmlHttpRequest " + +#~ msgid "This program requires cookies " +#~ msgstr "Этой программе нужны включённые куки" + +#~ msgid "description" +#~ msgstr "описание" + +#~ msgid "filter_type_descr" +#~ msgstr "описание типа фильтра" + +#~ msgid "action_description" +#~ msgstr "описание действия" + +#~ msgid "short_desc" +#~ msgstr "краткое описание" + #~ msgid "display tags" #~ msgstr "показать теги" @@ -2809,19 +2816,6 @@ msgstr "Внутренняя ошибка: Функция не реализов #~ msgid "Fatal Error" #~ msgstr "Фатальная Ошибка" -#~ msgid "" -#~ "This program requires XmlHttpRequest to function properly. Your browser " -#~ "doesn't seem to support it." -#~ msgstr "" -#~ "Программе требуется функционал XmlHttpRequest. Ваш браузер его не " -#~ "поддерживает." - -#~ msgid "" -#~ "This program requires cookies to function properly. Your browser doesn't " -#~ "seem to support them." -#~ msgstr "" -#~ "Для работы программы необходимы куки. Ваш браузер их не поддерживает." - #~ msgid "Modify score" #~ msgstr "Изменить оценку" diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo index 2cf4755b..d076aa71 100644 Binary files a/locale/zh_CN/LC_MESSAGES/messages.mo and b/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po index 77a647ed..f7cc51a8 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.po +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tiny Tiny RSS1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-20 15:55+0300\n" +"POT-Creation-Date: 2009-03-21 22:58+0300\n" "PO-Revision-Date: 2007-08-19 19:03+0800\n" "Last-Translator: sluke \n" "Language-Team: hicode.org \n" @@ -107,12 +107,16 @@ msgid "Unknown error" msgstr "未知错误" #: errors.php:5 -msgid "This program requires XmlHttpRequest " -msgstr "本程序需要xmlhttprequest支持" +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" #: errors.php:8 -msgid "This program requires cookies " -msgstr "本程序需要开启cookies" +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" #: errors.php:11 msgid "Backend sanity check failed" @@ -1814,11 +1818,6 @@ msgstr "本feed" msgid "Create Filter" msgstr "创建过滤器" -#: modules/popup-dialog.php:242 modules/popup-dialog.php:293 -#: modules/pref-filters.php:39 modules/pref-filters.php:96 -msgid "description" -msgstr "描述" - #: modules/popup-dialog.php:245 modules/pref-filters.php:42 #: modules/pref-filters.php:402 msgid "Match" @@ -2176,15 +2175,6 @@ msgstr "创建过滤器 %s" msgid "Create filter" msgstr "创建过滤器" -#: modules/pref-filters.php:392 -msgid "filter_type_descr" -msgstr "" - -#: modules/pref-filters.php:393 -#, fuzzy -msgid "action_description" -msgstr "描述" - #: modules/pref-filters.php:404 #, fuzzy msgid "Field" @@ -2330,10 +2320,6 @@ msgstr "选择模板" msgid "Change theme" msgstr "更改模板" -#: modules/pref-prefs.php:388 -msgid "short_desc" -msgstr "short_desc" - #: modules/pref-prefs.php:400 modules/pref-prefs.php:405 msgid "Yes" msgstr "是" @@ -2726,6 +2712,22 @@ msgstr "匹配:" msgid "Internal error: Function not implemented" msgstr "" +#~ msgid "This program requires XmlHttpRequest " +#~ msgstr "本程序需要xmlhttprequest支持" + +#~ msgid "This program requires cookies " +#~ msgstr "本程序需要开启cookies" + +#~ msgid "description" +#~ msgstr "描述" + +#, fuzzy +#~ msgid "action_description" +#~ msgstr "描述" + +#~ msgid "short_desc" +#~ msgstr "short_desc" + #~ msgid "display tags" #~ msgstr "显示标签" diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php index 8b22bf85..afcd82d3 100644 --- a/modules/backend-rpc.php +++ b/modules/backend-rpc.php @@ -87,9 +87,8 @@ } if ($subop == "publ") { - $pub = $_REQUEST["pub"]; - $id = db_escape_string($_REQUEST["id"]); - $note = trim(strip_tags(db_escape_string($_REQUEST["note"]))); + $pub = $_GET["pub"]; + $id = db_escape_string($_GET["id"]); if ($pub == "1") { $pub = "true"; @@ -97,36 +96,18 @@ $pub = "false"; } - if ($note != 'undefined') { - $note_qpart = "note = '$note',"; - } - // FIXME this needs collision testing - $result = db_query($link, "UPDATE ttrss_user_entries SET - $note_qpart - published = $pub + $result = db_query($link, "UPDATE ttrss_user_entries SET published = $pub WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]); - - print ""; - - print ""; + print ""; getGlobalCounters($link); getLabelCounters($link); if (get_pref($link, 'ENABLE_FEED_CATS')) { getCategoryCounters($link); } - print ""; - - if ($note != 'undefined') { - $note_size = strlen($note); - print ""; - print ""; - print ""; - } - - print ""; + print ""; return; } diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php index 36a0e4d3..fae1fbe2 100644 --- a/modules/pref-feeds.php +++ b/modules/pref-feeds.php @@ -702,12 +702,8 @@ if (file_exists($icons_dir . "/$id.ico")) { unlink($icons_dir . "/$id.ico"); } - - ccache_remove($link, $id, $_SESSION["uid"]); - } else { label_remove($link, -11-$id, $_SESSION["uid"]); - ccache_remove($link, -11-$id, $_SESSION["uid"]); } } } @@ -996,9 +992,6 @@ if ($num_feeds == 0) { db_query($link, "DELETE FROM ttrss_feed_categories WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]); - - ccache_remove($link, $id, $_SESSION["uid"], true); - } else { print format_warning(__("Unable to delete non empty feed categories.")); @@ -1376,28 +1369,26 @@ print ""; diff --git a/sanity_check.php b/sanity_check.php index 51dc1b5f..e813f368 100644 --- a/sanity_check.php +++ b/sanity_check.php @@ -2,7 +2,7 @@ require_once "functions.php"; define('EXPECTED_CONFIG_VERSION', 18); - define('SCHEMA_VERSION', 55); + define('SCHEMA_VERSION', 54); if (!file_exists("config.php")) { print "Fatal Error: You forgot to copy diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index ac057fd5..65e4ffb4 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -138,7 +138,6 @@ create table ttrss_user_entries ( published bool not null default 0, last_read datetime, score int not null default 0, - note text, unread bool not null default 1, index (ref_id), foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE, @@ -225,7 +224,7 @@ create table ttrss_tags (id integer primary key auto_increment, create table ttrss_version (schema_version int not null) TYPE=InnoDB; -insert into ttrss_version values (55); +insert into ttrss_version values (54); create table ttrss_enclosures (id serial not null primary key, content_url text not null, diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 57d2e95d..eecc1d29 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -126,7 +126,6 @@ create table ttrss_user_entries ( published boolean not null default false, last_read timestamp, score int not null default 0, - note text, unread boolean not null default true); -- create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id); @@ -201,7 +200,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid); create table ttrss_version (schema_version int not null); -insert into ttrss_version values (55); +insert into ttrss_version values (54); create table ttrss_enclosures (id serial not null primary key, content_url text not null, diff --git a/schema/versions/mysql/55.sql b/schema/versions/mysql/55.sql deleted file mode 100644 index 75f55b3c..00000000 --- a/schema/versions/mysql/55.sql +++ /dev/null @@ -1,7 +0,0 @@ -begin; - -alter table ttrss_user_entries add column note text; - -update ttrss_version set schema_version = 55; - -commit; diff --git a/schema/versions/pgsql/55.sql b/schema/versions/pgsql/55.sql deleted file mode 100644 index 75f55b3c..00000000 --- a/schema/versions/pgsql/55.sql +++ /dev/null @@ -1,7 +0,0 @@ -begin; - -alter table ttrss_user_entries add column note text; - -update ttrss_version set schema_version = 55; - -commit; diff --git a/tt-rss.css b/tt-rss.css index 3946d6fc..22c8a40c 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -66,34 +66,9 @@ div.postReply div.postEnclosures { div.postReply img.tagsPic { width : 16px; height : 16px; - margin-left : 4px; vertical-align : middle; } -div.articleNote div.articleNoteOps { - float : right; - color : #9a8c59; -} - -div.articleNote div.articleNoteOps a { - color : #9a8c59; -} - -div.articleNote div.articleNoteOps a:hover { - color : black; -} - -div.articleNote { - background-color : #fff7d5; - border-width : 1px; - padding : 5px; - border-style : dashed; - border-color : #e7d796; - font-size : 8px; - margin-top : 5px; - color : #9a8c59; -} - div.postReply span.author { font-size : 12px; } @@ -2185,11 +2160,3 @@ div#offlineModeDrop { color : #909090; } -optgroup { - color : #5050aa; - font-style : normal; -} - -option { - color : black; -} diff --git a/tt-rss.php b/tt-rss.php index 2dcc9ca1..7a492f84 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -188,25 +188,26 @@ window.onload = init; diff --git a/version.php b/version.php index 4946d7e8..e4e7cb85 100644 --- a/version.php +++ b/version.php @@ -1,3 +1,3 @@ diff --git a/viewfeed.js b/viewfeed.js index d21e3e62..be1a442e 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -15,39 +15,6 @@ var post_under_pointer = false; var last_requested_article = false; -function toggle_published_callback(transport) { - try { - if (transport.responseXML) { - - all_counters_callback2(transport); - - var note = transport.responseXML.getElementsByTagName("note")[0]; - - if (note) { - var note_id = note.getAttribute("id"); - var note_size = note.getAttribute("size"); - var note_content = note.firstChild.nodeValue; - - var container = $('POSTNOTE-' + note_id); - - cache_invalidate(note_id); - - if (container) { - if (note_size == "0") { - Element.hide(container); - } else { - container.innerHTML = note_content; - Element.show(container); - } - } - } - } - - } catch (e) { - exception_error("toggle_published_callback", e, transport); - } -} - function catchup_callback2(transport, callback) { try { debug("catchup_callback2 " + transport + ", " + callback); @@ -625,19 +592,13 @@ function toggleMark(id, client_only, no_effects) { } } -function togglePub(id, client_only, no_effects, note) { +function togglePub(id, client_only, no_effects) { try { var query = "backend.php?op=rpc&id=" + id + "&subop=publ"; query = query + "&afid=" + getActiveFeedId(); - - if (note != undefined) { - query = query + "¬e=" + param_escape(note); - } else { - query = query + "¬e=undefined"; - } if (tagsAreDisplayed()) { query = query + "&omode=tl"; @@ -652,10 +613,11 @@ function togglePub(id, client_only, no_effects, note) { var vfeedu = $("FEEDU--2"); var crow = $("RROW-" + id); - if (mark_img.src.match("pub_unset") || note != undefined) { + if (mark_img.src.match("pub_unset")) { mark_img.src = mark_img.src.replace("pub_unset", "pub_set"); mark_img.alt = __("Unpublish article"); query = query + "&pub=1"; + } else { //mark_img.src = "images/pub_unset.png"; @@ -673,7 +635,7 @@ function togglePub(id, client_only, no_effects, note) { if (!client_only) { new Ajax.Request(query, { onComplete: function(transport) { - toggle_published_callback(transport); + all_counters_callback2(transport); } }); } @@ -2185,18 +2147,3 @@ function toggleHeadlineActions() { exception_error("toggleHeadlineActions", e); } } - -function publishWithNote(id, def_note) { - try { - if (!def_note) def_note = ''; - - var note = prompt(__("Please enter a note for this article:"), def_note); - - if (note != undefined) { - togglePub(id, false, false, note); - } - - } catch (e) { - exception_error("publishWithNote", e); - } -}