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