]> git.wh0rd.org - tt-rss.git/blame - classes/feeds.php
use w3c gradient definition
[tt-rss.git] / classes / feeds.php
CommitLineData
6afcbcd1
AD
1<?php
2require_once "colors.php";
3
4class Feeds extends Handler_Protected {
5
6 function csrf_ignore($method) {
1c9bda91 7 $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
6afcbcd1
AD
8
9 return array_search($method, $csrf_ignored) !== false;
10 }
11
6afcbcd1 12 private function format_headline_subtoolbar($feed_site_url, $feed_title,
ca5d9be4 13 $feed_id, $is_cat, $search,
6afcbcd1
AD
14 $search_mode, $view_mode, $error) {
15
16 $page_prev_link = "viewFeedGoPage(-1)";
17 $page_next_link = "viewFeedGoPage(1)";
18 $page_first_link = "viewFeedGoPage(0)";
19
20 $catchup_page_link = "catchupPage()";
21 $catchup_feed_link = "catchupCurrentFeed()";
22 $catchup_sel_link = "catchupSelection()";
23
24 $archive_sel_link = "archiveSelection()";
25 $delete_sel_link = "deleteSelection()";
26
27 $sel_all_link = "selectArticles('all')";
28 $sel_unread_link = "selectArticles('unread')";
29 $sel_none_link = "selectArticles('none')";
30 $sel_inv_link = "selectArticles('invert')";
31
32 $tog_unread_link = "selectionToggleUnread()";
33 $tog_marked_link = "selectionToggleMarked()";
34 $tog_published_link = "selectionTogglePublished()";
35
36 $set_score_link = "setSelectionScore()";
37
38 if ($is_cat) $cat_q = "&is_cat=$is_cat";
39
40 if ($search) {
ca5d9be4 41 $search_q = "&q=$search&smode=$search_mode";
6afcbcd1
AD
42 } else {
43 $search_q = "";
44 }
45
46 $rss_link = htmlspecialchars(get_self_url_prefix() .
47 "/public.php?op=rss&id=$feed_id$cat_q$search_q");
48
49 // right part
50
51 $reply .= "<span class='r'>";
e43a9c4a 52 $reply .= "<span id='selected_prompt'></span>";
6afcbcd1
AD
53 $reply .= "<span id='feed_title'>";
54
55 if ($feed_site_url) {
56 $target = "target=\"_blank\"";
57 $reply .= "<a title=\"".__("Visit the website")."\" $target href=\"$feed_site_url\">".
58 truncate_string($feed_title,30)."</a>";
59
60 if ($error) {
61 $reply .= " (<span class=\"error\" title=\"$error\">Error</span>)";
62 }
63
64 } else {
65 $reply .= $feed_title;
66 }
67
68 $reply .= "</span>";
69
70 $reply .= "
71 <a href=\"#\"
72 title=\"".__("View as RSS feed")."\"
fb54e3b1 73 onclick=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">
6afcbcd1
AD
74 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/pub_set.svg\"></a>";
75
76 $reply .= "</span>";
77
78 // left part
79
80 $reply .= __('Select:')."
81 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
82 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
83 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
84 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
85
86 $reply .= " ";
87
88 $reply .= "<select dojoType=\"dijit.form.Select\"
89 onchange=\"headlineActionsChange(this)\">";
90 $reply .= "<option value=\"false\">".__('More...')."</option>";
91
92 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
93
94 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
95 <option value=\"$tog_marked_link\">".__('Starred')."</option>
96 <option value=\"$tog_published_link\">".__('Published')."</option>";
97
98 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
99
100 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
101 $reply .= "<option value=\"$set_score_link\">".__('Set score')."</option>";
102
103 if ($feed_id != "0") {
104 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
105 } else {
106 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
107 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
108
109 }
110
111 global $pluginhost;
112
113 if ($pluginhost->get_plugin("mail")) {
114 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
115 "</option>";
116 }
117
1d5cf085
AD
118 if ($pluginhost->get_plugin("mailto")) {
119 $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
120 "</option>";
121 }
122
6afcbcd1
AD
123 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
124
3dd0306f 125 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
6afcbcd1 126
fb54e3b1 127 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
6afcbcd1
AD
128
129 $reply .= "</select>";
130
131 //$reply .= "</div>";
132
133 //$reply .= "</h2";
134
ceb78471
AD
135 foreach ($pluginhost->get_hooks($pluginhost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
136 echo $p->hook_headline_toolbar_button($feed_id, $is_cat);
137 }
138
6afcbcd1
AD
139 return $reply;
140 }
141
142 private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
143 $next_unread_feed, $offset, $vgr_last_feed = false,
144 $override_order = false, $include_children = false) {
145
146 if (isset($_REQUEST["DevForceUpdate"]))
147 header("Content-Type: text/plain");
148
149 $disable_cache = false;
150
151 $reply = array();
152
e0deff39
AD
153 $rgba_cache = array();
154
fa9e88c3 155 $timing_info = microtime(true);
6afcbcd1
AD
156
157 $topmost_article_ids = array();
158
159 if (!$offset) $offset = 0;
160 if ($method == "undefined") $method = "";
161
162 $method_split = explode(":", $method);
163
164 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
165 // Update the feed if required with some basic flood control
166
167 $result = db_query($this->link,
8349a32e 168 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6afcbcd1
AD
169 FROM ttrss_feeds WHERE id = '$feed'");
170
171 if (db_num_rows($result) != 0) {
172 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
173 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
6afcbcd1 174
8349a32e 175 if (!$cache_images && time() - $last_updated > 120 || isset($_REQUEST['DevForceUpdate'])) {
6afcbcd1
AD
176 include "rssfuncs.php";
177 update_rss_feed($this->link, $feed, true, true);
178 } else {
179 db_query($this->link, "UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
180 WHERE id = '$feed'");
181 }
182 }
183 }
184
185 if ($method_split[0] == "MarkAllReadGR") {
186 catchup_feed($this->link, $method_split[1], false);
187 }
188
189 // FIXME: might break tag display?
190
191 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
192 $result = db_query($this->link,
193 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
194
195 if (db_num_rows($result) == 0) {
196 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
197 }
198 }
199
3972bf59 200 @$search = db_escape_string($this->link, $_REQUEST["query"]);
6afcbcd1
AD
201
202 if ($search) {
203 $disable_cache = true;
204 }
205
3972bf59 206 @$search_mode = db_escape_string($this->link, $_REQUEST["search_mode"]);
6afcbcd1
AD
207
208 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
209
210// error_log("format_headlines_list: [" . $feed . "] method [" . $method . "]");
211 if( $search_mode == '' && $method != '' ){
212 $search_mode = $method;
213 }
214// error_log("search_mode: " . $search_mode);
a413f53e 215
e92a353b 216 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
a413f53e
AD
217 global $pluginhost;
218
219 $handler = $pluginhost->get_feed_handler(
220 PluginHost::feed_to_pfeed_id($feed));
221
222 // function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false, $ignore_vfeed_group = false) {
223
224 if ($handler) {
225 $options = array(
226 "limit" => $limit,
227 "view_mode" => $view_mode,
228 "cat_view" => $cat_view,
229 "search" => $search,
230 "search_mode" => $search_mode,
231 "override_order" => $override_order,
232 "offset" => $offset,
233 "owner_uid" => $_SESSION["uid"],
234 "filter" => false,
235 "since_id" => 0,
236 "include_children" => $include_children);
237
238 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
239 $options);
240 }
241
242 } else {
243 $qfh_ret = queryFeedHeadlines($this->link, $feed, $limit, $view_mode, $cat_view,
244 $search, $search_mode, $override_order, $offset, 0,
245 false, 0, $include_children);
246 }
6afcbcd1
AD
247
248 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
249
250 $result = $qfh_ret[0];
251 $feed_title = $qfh_ret[1];
252 $feed_site_url = $qfh_ret[2];
253 $last_error = $qfh_ret[3];
6afcbcd1
AD
254
255 $vgroup_last_feed = $vgr_last_feed;
256
257 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
258 $feed_title,
ca5d9be4 259 $feed, $cat_view, $search, $search_mode, $view_mode,
6afcbcd1
AD
260 $last_error);
261
262 $headlines_count = db_num_rows($result);
263
264 /* if (get_pref($this->link, 'COMBINED_DISPLAY_MODE')) {
265 $button_plugins = array();
266 foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
267 $pclass = "button_" . trim($p);
268
269 if (class_exists($pclass)) {
270 $plugin = new $pclass($link);
271 array_push($button_plugins, $plugin);
272 }
273 }
274 } */
275
276 global $pluginhost;
277
278 if (db_num_rows($result) > 0) {
279
280 $lnum = $offset;
281
282 $num_unread = 0;
283 $cur_feed_title = '';
284
285 $fresh_intl = get_pref($this->link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
286
287 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
288
f0540b59
AD
289 $expand_cdm = get_pref($this->link, 'CDM_EXPANDED');
290
6afcbcd1
AD
291 while ($line = db_fetch_assoc($result)) {
292 $class = ($lnum % 2) ? "even" : "odd";
293
294 $id = $line["id"];
295 $feed_id = $line["feed_id"];
296 $label_cache = $line["label_cache"];
297 $labels = false;
6afcbcd1
AD
298
299 if ($label_cache) {
300 $label_cache = json_decode($label_cache, true);
301
302 if ($label_cache) {
303 if ($label_cache["no-labels"] == 1)
304 $labels = array();
305 else
306 $labels = $label_cache;
307 }
308 }
309
310 if (!is_array($labels)) $labels = get_article_labels($this->link, $id);
311
6afcbcd1
AD
312 $labels_str = "<span id=\"HLLCTR-$id\">";
313 $labels_str .= format_article_labels($labels, $id);
314 $labels_str .= "</span>";
315
316 if (count($topmost_article_ids) < 3) {
317 array_push($topmost_article_ids, $id);
318 }
319
035d7a5a 320 if (sql_bool_to_bool($line["unread"])) {
6afcbcd1
AD
321 $class .= " Unread";
322 ++$num_unread;
6afcbcd1
AD
323 }
324
035d7a5a
AD
325 if (sql_bool_to_bool($line["marked"])) {
326 $marked_pic = "<img
2a3b6de0 327 src=\"images/mark_set.svg\"
6afcbcd1 328 class=\"markedPic\" alt=\"Unstar article\"
035d7a5a
AD
329 onclick='toggleMark($id)'>";
330 $class .= " marked";
6afcbcd1 331 } else {
035d7a5a 332 $marked_pic = "<img
2a3b6de0 333 src=\"images/mark_unset.svg\"
6afcbcd1 334 class=\"markedPic\" alt=\"Star article\"
035d7a5a 335 onclick='toggleMark($id)'>";
6afcbcd1
AD
336 }
337
035d7a5a
AD
338 if (sql_bool_to_bool($line["published"])) {
339 $published_pic = "<img src=\"images/pub_set.svg\"
340 class=\"pubPic\"
341 alt=\"Unpublish article\" onclick='togglePub($id)'>";
342 $class .= " published";
6afcbcd1 343 } else {
035d7a5a
AD
344 $published_pic = "<img src=\"images/pub_unset.svg\"
345 class=\"pubPic\"
346 alt=\"Publish article\" onclick='togglePub($id)'>";
6afcbcd1
AD
347 }
348
349# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
350# $line["title"] . "</a>";
351
352# $content_link = "<a
353# href=\"" . htmlspecialchars($line["link"]) . "\"
354# onclick=\"view($id,$feed_id);\">" .
355# $line["title"] . "</a>";
356
357# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
358# $line["title"] . "</a>";
359
be574731
AD
360 $updated_fmt = make_local_datetime($this->link, $line["updated"], false);
361 $date_entered_fmt = T_sprintf("Imported at %s",
362 make_local_datetime($this->link, $line["date_entered"], false));
6afcbcd1
AD
363
364 if (get_pref($this->link, 'SHOW_CONTENT_PREVIEW')) {
365 $content_preview = truncate_string(strip_tags($line["content_preview"]),
366 100);
367 }
368
369 $score = $line["score"];
370
2a3b6de0 371 $score_pic = "images/" . get_score_pic($score);
6afcbcd1
AD
372
373/* $score_title = __("(Click to change)");
374 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
375 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
376
377 $score_pic = "<img class='hlScorePic' score='$score' onclick='changeScore($id, this)' src=\"$score_pic\"
378 title=\"$score\">";
379
380 if ($score > 500) {
381 $hlc_suffix = "H";
382 } else if ($score < -100) {
383 $hlc_suffix = "L";
384 } else {
385 $hlc_suffix = "";
386 }
387
388 $entry_author = $line["author"];
389
390 if ($entry_author) {
884f2aee 391 $entry_author = " &mdash; $entry_author";
6afcbcd1
AD
392 }
393
394 $has_feed_icon = feed_has_icon($feed_id);
395
396 if ($has_feed_icon) {
397 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
398 } else {
399 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.svg\" alt=\"\">";
400 }
401
08dfc223
AD
402 $entry_site_url = $line["site_url"];
403
6afcbcd1
AD
404 if (!get_pref($this->link, 'COMBINED_DISPLAY_MODE')) {
405
406 if (get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
407 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
408
409 $cur_feed_title = $line["feed_title"];
410 $vgroup_last_feed = $feed_id;
411
412 $cur_feed_title = htmlspecialchars($cur_feed_title);
413
36b4cf2f 414 $vf_catchup_link = "(<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('Mark as read')."</a>)";
6afcbcd1
AD
415
416 $reply['content'] .= "<div class='cdmFeedTitle'>".
417 "<div style=\"float : right\">$feed_icon_img</div>".
36b4cf2f 418 "<a class='title' href=\"#\" onclick=\"viewfeed($feed_id)\">".
6afcbcd1
AD
419 $line["feed_title"]."</a> $vf_catchup_link</div>";
420
421 }
422 }
423
d2f3467b 424 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
425 onmouseout='postMouseOut($id)'";
426
3ab417c2 427 $reply['content'] .= "<div class='hl $class' id='RROW-$id' $mouseover_attrs>";
6afcbcd1
AD
428
429 $reply['content'] .= "<div class='hlLeft'>";
430
524de8dc
AD
431 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
432 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
7e27c914 433 class='rchk'>";
6afcbcd1
AD
434
435 $reply['content'] .= "$marked_pic";
436 $reply['content'] .= "$published_pic";
437
438 $reply['content'] .= "</div>";
439
440 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
814fa4ef
AD
441 class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
442 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title\"
bf1dc420 443 href=\"" . htmlspecialchars($line["link"]) . "\"
6afcbcd1
AD
444 onclick=\"\">" .
445 truncate_string($line["title"], 200);
446
447 if (get_pref($this->link, 'SHOW_CONTENT_PREVIEW')) {
448 if ($content_preview) {
449 $reply['content'] .= "<span class=\"contentPreview\"> - $content_preview</span>";
450 }
451 }
452
453 $reply['content'] .= "</a></span>";
454
455 $reply['content'] .= $labels_str;
456
e17e99fb
AD
457 $reply['content'] .= "</div>";
458
459 $reply['content'] .= "<span class=\"hlUpdated\">";
460
b830cca7
J
461 if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
462 if (@$line["feed_title"]) {
cf2f643e 463 $reply['content'] .= "<div class=\"hlFeed\">
e17e99fb 464 <a href=\"#\" onclick=\"viewfeed($feed_id)\">".
af2941db 465 truncate_string($line["feed_title"],30)."</a>
cf2f643e 466 </div>";
6afcbcd1 467 }
b830cca7 468 }
6afcbcd1 469
be574731
AD
470 $reply['content'] .= "<span title='$date_entered_fmt'>$updated_fmt</span>
471 </span>";
472
6afcbcd1
AD
473 $reply['content'] .= "<div class=\"hlRight\">";
474
475 $reply['content'] .= $score_pic;
476
477 if ($line["feed_title"] && !get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
478
479 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
480 style=\"cursor : pointer\"
481 title=\"".htmlspecialchars($line['feed_title'])."\">
482 $feed_icon_img<span>";
483 }
484
485 $reply['content'] .= "</div>";
486 $reply['content'] .= "</div>";
487
488 } else {
489
84d952f1
AD
490 $line["tags"] = get_article_tags($this->link, $id, $_SESSION["uid"], $line["tag_cache"]);
491 unset($line["tag_cache"]);
492
493 $line["content"] = sanitize($this->link, $line["content_preview"],
bfd61d3f 494 sql_bool_to_bool($line['hide_images']), false, $entry_site_url);
84d952f1
AD
495
496 foreach ($pluginhost->get_hooks($pluginhost::HOOK_RENDER_ARTICLE_CDM) as $p) {
497 $line = $p->hook_render_article_cdm($line);
498 }
499
6afcbcd1
AD
500 if (get_pref($this->link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
501 if ($feed_id != $vgroup_last_feed) {
502
503 $cur_feed_title = $line["feed_title"];
504 $vgroup_last_feed = $feed_id;
505
506 $cur_feed_title = htmlspecialchars($cur_feed_title);
507
36b4cf2f 508 $vf_catchup_link = "(<a class='catchup' onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
6afcbcd1
AD
509
510 $has_feed_icon = feed_has_icon($feed_id);
511
512 if ($has_feed_icon) {
513 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
514 } else {
515 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
516 }
517
518 $reply['content'] .= "<div class='cdmFeedTitle'>".
519 "<div style=\"float : right\">$feed_icon_img</div>".
36b4cf2f 520 "<a href=\"#\" class='title' onclick=\"viewfeed($feed_id)\">".
6afcbcd1
AD
521 $line["feed_title"]."</a> $vf_catchup_link</div>";
522 }
523 }
524
d2f3467b 525 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
526 onmouseout='postMouseOut($id)'";
527
a0ddecb9 528 $expanded_class = $expand_cdm ? "expanded" : "expandable";
3ac153f1
AD
529
530 $reply['content'] .= "<div class=\"cdm $expanded_class $class\"
6afcbcd1
AD
531 id=\"RROW-$id\" $mouseover_attrs'>";
532
2cfbb448 533 //setting feed headline background color, needs to change text color based on dark/light
63c323f7 534 $fav_color = $line['favicon_avg_color'];
e0deff39
AD
535
536 require_once "colors.php";
537
538 if ($fav_color) {
539 if (!isset($rgba_cache[$feed_id]))
540 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
541
542 $rgba = $rgba_cache[$feed_id];
543
85eea71e
AD
544 // W3C definition seems to work in FF and Chrome
545 $row_background = "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);";
546
547 /* $row_background = "background-image : -moz-linear-gradient(left, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);".
548 "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);";
549 "background-image : -webkit-gradient(linear, left top, right top, color-stop( 50%, rgba(255,255,255,0)),
550 color-stop(100%, rgba($rgba, 0.2)));"; */
e0deff39
AD
551
552 } else {
553 $row_background = "";
554 }
555
556 $reply['content'] .= "<div class=\"cdmHeader\" style=\"$row_background\">";
bdb7d62e 557 $reply['content'] .= "<div style=\"vertical-align : middle\">";
6afcbcd1 558
524de8dc
AD
559 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
560 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
7e27c914 561 class='rchk'>";
6afcbcd1
AD
562
563 $reply['content'] .= "$marked_pic";
564 $reply['content'] .= "$published_pic";
565
566 $reply['content'] .= "</div>";
567
814fa4ef 568 $reply['content'] .= "<span id=\"RTITLE-$id\"
6afcbcd1
AD
569 onclick=\"return cdmClicked(event, $id);\"
570 class=\"titleWrap$hlc_suffix\">
571 <a class=\"title\"
6afcbcd1
AD
572 target=\"_blank\" href=\"".
573 htmlspecialchars($line["link"])."\">".
574 $line["title"] .
82d69730 575 " <span class=\"author\">$entry_author</span></a>";
6afcbcd1
AD
576
577 $reply['content'] .= $labels_str;
578
414191d4
AD
579 $reply['content'] .= "<span class='collapseBtn' style='display : none'>
580 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
581 title=\"".__("Collapse article")."\"/></span>";
582
6afcbcd1
AD
583 if (!$expand_cdm)
584 $content_hidden = "style=\"display : none\"";
585 else
586 $excerpt_hidden = "style=\"display : none\"";
587
588 $reply['content'] .= "<span $excerpt_hidden
589 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
6afcbcd1
AD
590 $reply['content'] .= "</span>";
591
d56ec700
AD
592 if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
593 if (@$line["feed_title"]) {
594 $reply['content'] .= "<div class=\"hlFeed\">
595 <a href=\"#\" onclick=\"viewfeed($feed_id)\">".
af2941db 596 truncate_string($line["feed_title"],30)."</a>
d56ec700
AD
597 </div>";
598 }
599 }
600
be574731
AD
601 $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
602 $updated_fmt</span>";
e17e99fb
AD
603
604 $reply['content'] .= "<div style=\"vertical-align : middle\">";
6afcbcd1
AD
605 $reply['content'] .= "$score_pic";
606
607 if (!get_pref($this->link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
608 $reply['content'] .= "<span style=\"cursor : pointer\"
609 title=\"".htmlspecialchars($line["feed_title"])."\"
610 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
611 }
612 $reply['content'] .= "</div>";
613
614 $reply['content'] .= "</div>";
615
616 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
617 onclick=\"return cdmClicked(event, $id);\"
618 id=\"CICD-$id\">";
619
b999f4c7
AD
620 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
621 if ($line['note']) {
622 $reply['content'] .= format_article_note($id, $line['note']);
623 }
624 $reply['content'] .= "</div>";
625
626
6afcbcd1
AD
627 $reply['content'] .= "<div class=\"cdmContentInner\">";
628
629 if ($line["orig_feed_id"]) {
630
631 $tmp_result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
632 WHERE id = ".$line["orig_feed_id"]);
633
634 if (db_num_rows($tmp_result) != 0) {
635
636 $reply['content'] .= "<div clear='both'>";
637 $reply['content'] .= __("Originally from:");
638
639 $reply['content'] .= "&nbsp;";
640
641 $tmp_line = db_fetch_assoc($tmp_result);
642
643 $reply['content'] .= "<a target='_blank'
644 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
645 $tmp_line['title'] . "</a>";
646
647 $reply['content'] .= "&nbsp;";
648
649 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
650 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.svg'></a>";
651
652 $reply['content'] .= "</div>";
653 }
654 }
655
6afcbcd1 656 $reply['content'] .= "<span id=\"CWRAP-$id\">";
6afcbcd1 657
b74c5134
AD
658// if (!$expand_cdm) {
659 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
f0540b59
AD
660 $reply['content'] .= htmlspecialchars($line["content"]);
661 $reply['content'] .= "</span.";
662
b74c5134
AD
663// } else {
664// $reply['content'] .= $line["content"];
665// }
6afcbcd1 666
f0540b59 667 $reply['content'] .= "</span>";
6afcbcd1
AD
668
669 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
670
33de3d37 671 $reply['content'] .= format_article_enclosures($this->link, $id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
6afcbcd1
AD
672
673 $reply['content'] .= "</div>";
674
675 $reply['content'] .= "<div class=\"cdmFooter\">";
676
ccb2b8dd
AD
677 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
678 $reply['content'] .= $p->hook_article_left_button($line);
679 }
680
42ecc25b 681 $tags_str = format_tags_string($line["tags"], $id);
6afcbcd1 682
2a3b6de0 683 $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
6afcbcd1
AD
684 <span id=\"ATSTR-$id\">$tags_str</span>
685 <a title=\"".__('Edit tags for this article')."\"
686 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
687
688 $num_comments = $line["num_comments"];
689 $entry_comments = "";
690
691 if ($num_comments > 0) {
692 if ($line["comments"]) {
693 $comments_url = htmlspecialchars($line["comments"]);
694 } else {
695 $comments_url = htmlspecialchars($line["link"]);
696 }
697 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
698 } else {
699 if ($line["comments"] && $line["link"] != $line["comments"]) {
700 $entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
701 }
702 }
703
704 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
705
706 $reply['content'] .= "<div style=\"float : right\">";
707
035d7a5a
AD
708// $reply['content'] .= "$marked_pic";
709// $reply['content'] .= "$published_pic";
710
6afcbcd1
AD
711 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_BUTTON) as $p) {
712 $reply['content'] .= $p->hook_article_button($line);
713 }
714
715 $reply['content'] .= "</div>";
716 $reply['content'] .= "</div>";
717
718 $reply['content'] .= "</div>";
719
720 $reply['content'] .= "</div>";
721
722 }
723
724 ++$lnum;
725 }
726
727 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
728
729 } else {
730 $message = "";
731
732 switch ($view_mode) {
733 case "unread":
734 $message = __("No unread articles found to display.");
735 break;
736 case "updated":
737 $message = __("No updated articles found to display.");
738 break;
739 case "marked":
740 $message = __("No starred articles found to display.");
741 break;
742 default:
f822a8e5 743 if ($feed < LABEL_BASE_INDEX) {
8d192d02 744 $message = __("No articles found to display. You can assign articles to labels manually from article header context menu (applies to all selected articles) or use a filter.");
6afcbcd1
AD
745 } else {
746 $message = __("No articles found to display.");
747 }
748 }
749
750 if (!$offset && $message) {
751 $reply['content'] .= "<div class='whiteBox'>$message";
752
919984a4 753 $reply['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1
AD
754
755 $result = db_query($this->link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
756 WHERE owner_uid = " . $_SESSION['uid']);
757
758 $last_updated = db_fetch_result($result, 0, "last_updated");
759 $last_updated = make_local_datetime($this->link, $last_updated, false);
760
761 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
762
763 $result = db_query($this->link, "SELECT COUNT(id) AS num_errors
764 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
765
766 $num_errors = db_fetch_result($result, 0, "num_errors");
767
768 if ($num_errors > 0) {
769 $reply['content'] .= "<br/>";
770 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
771 __('Some feeds have update errors (click for details)')."</a>";
772 }
773 $reply['content'] .= "</span></p></div>";
774 }
775 }
776
777 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
778
779 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
780 $vgroup_last_feed, $reply);
781 }
782
783 function catchupAll() {
784 db_query($this->link, "UPDATE ttrss_user_entries SET
1bad74ea 785 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
6afcbcd1
AD
786 ccache_zero_all($this->link, $_SESSION["uid"]);
787 }
788
6afcbcd1 789 function view() {
fa9e88c3 790 $timing_info = microtime(true);
6afcbcd1
AD
791
792 $reply = array();
793
794 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
795
3972bf59 796 $omode = db_escape_string($this->link, $_REQUEST["omode"]);
6afcbcd1 797
3972bf59
AD
798 $feed = db_escape_string($this->link, $_REQUEST["feed"]);
799 $method = db_escape_string($this->link, $_REQUEST["m"]);
800 $view_mode = db_escape_string($this->link, $_REQUEST["view_mode"]);
f17cac6b 801 $limit = 30;
6afcbcd1 802 @$cat_view = $_REQUEST["cat"] == "true";
3972bf59
AD
803 @$next_unread_feed = db_escape_string($this->link, $_REQUEST["nuf"]);
804 @$offset = db_escape_string($this->link, $_REQUEST["skip"]);
805 @$vgroup_last_feed = db_escape_string($this->link, $_REQUEST["vgrlf"]);
806 $order_by = db_escape_string($this->link, $_REQUEST["order_by"]);
6afcbcd1
AD
807
808 if (is_numeric($feed)) $feed = (int) $feed;
809
810 /* Feed -5 is a special case: it is used to display auxiliary information
811 * when there's nothing to load - e.g. no stuff in fresh feed */
812
813 if ($feed == -5) {
814 print json_encode($this->generate_dashboard_feed($this->link));
815 return;
816 }
817
818 $result = false;
819
f822a8e5
AD
820 if ($feed < LABEL_BASE_INDEX) {
821 $label_feed = feed_to_label_id($feed);
6afcbcd1
AD
822 $result = db_query($this->link, "SELECT id FROM ttrss_labels2 WHERE
823 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
824 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
825 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
826 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
827 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
828 $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
829 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
830 }
831
832 if ($result && db_num_rows($result) == 0) {
833 print json_encode($this->generate_error_feed($this->link, __("Feed not found.")));
834 return;
835 }
836
837 /* Updating a label ccache means recalculating all of the caches
838 * so for performance reasons we don't do that here */
839
840 if ($feed >= 0) {
841 ccache_update($this->link, $feed, $_SESSION["uid"], $cat_view);
842 }
843
844 set_pref($this->link, "_DEFAULT_VIEW_MODE", $view_mode);
6afcbcd1
AD
845 set_pref($this->link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
846
06b0777f
AD
847 /* bump login timestamp if needed */
848 if (time() - $_SESSION["last_login_update"] > 3600) {
849 db_query($this->link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
850 $_SESSION["uid"]);
851 $_SESSION["last_login_update"] = time();
852 }
853
6afcbcd1
AD
854 if (!$cat_view && is_numeric($feed) && $feed > 0) {
855 db_query($this->link, "UPDATE ttrss_feeds SET last_viewed = NOW()
856 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
857 }
858
859 $reply['headlines'] = array();
860
861 if (!$next_unread_feed)
862 $reply['headlines']['id'] = $feed;
863 else
864 $reply['headlines']['id'] = $next_unread_feed;
865
866 $reply['headlines']['is_cat'] = (bool) $cat_view;
867
868 $override_order = false;
869
6afcbcd1 870 switch ($order_by) {
f3b2e7d4
AD
871 case "title":
872 $override_order = "ttrss_entries.title";
873 break;
874 case "date_reverse":
875 $override_order = "date_entered, updated";
876 break;
877 case "feed_dates":
878 $override_order = "updated DESC";
879 break;
6afcbcd1
AD
880 }
881
882 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
883
884 $ret = $this->format_headlines_list($feed, $method,
885 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
886 $vgroup_last_feed, $override_order, true);
887
b389aeb7 888 //$topmost_article_ids = $ret[0];
6afcbcd1
AD
889 $headlines_count = $ret[1];
890 $returned_feed = $ret[2];
891 $disable_cache = $ret[3];
892 $vgroup_last_feed = $ret[4];
893
894 $reply['headlines']['content'] =& $ret[5]['content'];
895 $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
896
897 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
898
899 $reply['headlines-info'] = array("count" => (int) $headlines_count,
900 "vgroup_last_feed" => $vgroup_last_feed,
901 "disable_cache" => (bool) $disable_cache);
902
6afcbcd1
AD
903 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
904
905 $reply['runtime-info'] = make_runtime_info($this->link);
906
907 print json_encode($reply);
908
909 }
910
911 private function generate_dashboard_feed($link) {
912 $reply = array();
913
914 $reply['headlines']['id'] = -5;
915 $reply['headlines']['is_cat'] = false;
916
917 $reply['headlines']['toolbar'] = '';
918 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
919
919984a4 920 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1
AD
921
922 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
923 WHERE owner_uid = " . $_SESSION['uid']);
924
925 $last_updated = db_fetch_result($result, 0, "last_updated");
926 $last_updated = make_local_datetime($link, $last_updated, false);
927
928 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
929
930 $result = db_query($link, "SELECT COUNT(id) AS num_errors
931 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
932
933 $num_errors = db_fetch_result($result, 0, "num_errors");
934
935 if ($num_errors > 0) {
936 $reply['headlines']['content'] .= "<br/>";
937 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
938 __('Some feeds have update errors (click for details)')."</a>";
939 }
940 $reply['headlines']['content'] .= "</span></p>";
941
942 $reply['headlines-info'] = array("count" => 0,
943 "vgroup_last_feed" => '',
944 "unread" => 0,
945 "disable_cache" => true);
946
947 return $reply;
948 }
949
950 private function generate_error_feed($link, $error) {
951 $reply = array();
952
953 $reply['headlines']['id'] = -6;
954 $reply['headlines']['is_cat'] = false;
955
956 $reply['headlines']['toolbar'] = '';
957 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
958
959 $reply['headlines-info'] = array("count" => 0,
960 "vgroup_last_feed" => '',
961 "unread" => 0,
962 "disable_cache" => true);
963
964 return $reply;
965 }
966
1c9bda91
AD
967 function quickAddFeed() {
968 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
969 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
970
971 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
972 print "<div class=\"dlgSecCont\">";
973
974 print "<div style='float : right'>
975 <img style='display : none'
976 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
977
978 print "<input style=\"font-size : 16px; width : 20em;\"
979 placeHolder=\"".__("Feed or site URL")."\"
980 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
981
982 print "<hr/>";
983
984 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
985 print __('Place in category:') . " ";
986 print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
987 }
988
989 print "</div>";
990
991 print '<div id="feedDlg_feedsContainer" style="display : none">
992
993 <div class="dlgSec">' . __('Available feeds') . '</div>
994 <div class="dlgSecCont">'.
995 '<select id="feedDlg_feedContainerSelect"
996 dojoType="dijit.form.Select" size="3">
997 <script type="dojo/method" event="onChange" args="value">
998 dijit.byId("feedDlg_feedUrl").attr("value", value);
999 </script>
1000 </select>'.
1001 '</div></div>';
1002
1003 print "<div id='feedDlg_loginContainer' style='display : none'>
1004
1005 <div class=\"dlgSec\">".__("Authentication")."</div>
1006 <div class=\"dlgSecCont\">".
1007
1008 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1009 placeHolder=\"".__("Login")."\"
1010 style=\"width : 10em;\"> ".
1011 " <input
1012 placeHolder=\"".__("Password")."\"
1013 dojoType=\"dijit.form.TextBox\" type='password'
1014 style=\"width : 10em;\" name='pass'\">
1015 </div></div>";
1016
1017
1018 print "<div style=\"clear : both\">
1019 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1020 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1021 <label for=\"feedDlg_loginCheck\">".
1022 __('This feed requires authentication.')."</div>";
1023
1024 print "</form>";
1025
1026 print "<div class=\"dlgButtons\">
1027 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1028
1029 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1030 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1031 }
1032
1033 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1034 </div>";
1035
1036 //return;
1037 }
1038
1039 function feedBrowser() {
1040 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1041
1042 $browser_search = db_escape_string($this->link, $_REQUEST["search"]);
1043
1044 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1045 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
1046
1047 print "<div dojoType=\"dijit.Toolbar\">
1048 <div style='float : right'>
1049 <img style='display : none'
1050 id='feed_browser_spinner' src='images/indicator_white.gif'>
1051 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1052 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1053 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1054 </div>";
1055
1056 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1057 <option value='1'>" . __('Popular feeds') . "</option>
1058 <option value='2'>" . __('Feed archive') . "</option>
1059 </select> ";
1060
1061 print __("limit:");
1062
1063 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1064
1065 foreach (array(25, 50, 100, 200) as $l) {
1066 $issel = ($l == $limit) ? "selected=\"1\"" : "";
1067 print "<option $issel value=\"$l\">$l</option>";
1068 }
1069
1070 print "</select> ";
1071
1072 print "</div>";
1073
1074 $owner_uid = $_SESSION["uid"];
1075
1076 require_once "feedbrowser.php";
1077
1078 print "<ul class='browseFeedList' id='browseFeedList'>";
1079 print make_feed_browser($this->link, $search, 25);
1080 print "</ul>";
1081
1082 print "<div align='center'>
1083 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1084 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1085 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1086
1087 }
1088
1089 function search() {
1090 $this->params = explode(":", db_escape_string($this->link, $_REQUEST["param"]), 2);
1091
1092 $active_feed_id = sprintf("%d", $this->params[0]);
1093 $is_cat = $this->params[1] != "false";
1094
1095 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1096
1097 print "<div class=\"dlgSecCont\">";
1098
1099 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1100 style=\"font-size : 16px; width : 20em;\"
1101 required=\"1\" name=\"query\" type=\"search\" value=''>";
1102
1103 print "<hr/>".__('Limit search to:')." ";
1104
1105 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
1106 <option value=\"all_feeds\">".__('All feeds')."</option>";
1107
1108 $feed_title = getFeedTitle($this->link, $active_feed_id);
1109
1110 if (!$is_cat) {
1111 $feed_cat_title = getFeedCatTitle($this->link, $active_feed_id);
1112 } else {
1113 $feed_cat_title = getCategoryTitle($this->link, $active_feed_id);
1114 }
1115
1116 if ($active_feed_id && !$is_cat) {
1117 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
1118 } else {
1119 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
1120 }
1121
1122 if ($is_cat) {
1123 $cat_preselected = "selected=\"1\"";
1124 }
1125
1126 if (get_pref($this->link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
1127 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
1128 } else {
1129 //print "<option disabled>".__('This category')."</option>";
1130 }
1131
1132 print "</select>";
1133
1134 print "</div>";
1135
1136 print "<div class=\"dlgButtons\">";
1137
1138 if (!SPHINX_ENABLED) {
1139 print "<div style=\"float : left\">
1140 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">Search syntax</a>
1141 </div>";
1142 }
1143
1144 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
1145 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
1146 </div>";
1147 }
1148
1149
6afcbcd1
AD
1150}
1151?>