]> git.wh0rd.org - tt-rss.git/blob - modules/popup-dialog.php
rework feed update errors and inactive feeds dialogs
[tt-rss.git] / modules / popup-dialog.php
1 <?php
2 function module_popup_dialog($link) {
3 $id = $_REQUEST["id"];
4 $param = db_escape_string($_REQUEST["param"]);
5
6 print "<dlg id=\"$id\">";
7
8 if ($id == "importOpml") {
9 print "<div class=\"prefFeedOPMLHolder\">";
10 header("Content-Type: text/html"); # required for iframe
11
12 $owner_uid = $_SESSION["uid"];
13
14 db_query($link, "BEGIN");
15
16 /* create Imported feeds category just in case */
17
18 $result = db_query($link, "SELECT id FROM
19 ttrss_feed_categories WHERE title = 'Imported feeds' AND
20 owner_uid = '$owner_uid' LIMIT 1");
21
22 if (db_num_rows($result) == 0) {
23 db_query($link, "INSERT INTO ttrss_feed_categories
24 (title,owner_uid)
25 VALUES ('Imported feeds', '$owner_uid')");
26 }
27
28 db_query($link, "COMMIT");
29
30 /* Handle OPML import by DOMXML/DOMDocument */
31
32 if (function_exists('domxml_open_file')) {
33 print "<ul class='nomarks'>";
34 print "<li>".__("Importing using DOMXML.")."</li>";
35 require_once "opml_domxml.php";
36 opml_import_domxml($link, $owner_uid);
37 print "</ul>";
38 } else if (PHP_VERSION >= 5) {
39 print "<ul class='nomarks'>";
40 print "<li>".__("Importing using DOMDocument.")."</li>";
41 require_once "opml_domdoc.php";
42 opml_import_domdoc($link, $owner_uid);
43 print "</ul>";
44 } else {
45 print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
46 }
47
48 print "</div>";
49
50 print "<div align='center'>";
51 print "<button dojoType=\"dijit.form.Button\"
52 onclick=\"dijit.byId('opmlImportDlg').hide()\">".
53 __('Close this window')."</button>";
54 print "</div>";
55
56 print "</div>";
57
58 //return;
59 }
60
61 if ($id == "editPrefProfiles") {
62
63 print "<div dojoType=\"dijit.Toolbar\">";
64
65 # TODO: depends on selectTableRows() being broken for this list
66 # print "<div dojoType=\"dijit.form.DropDownButton\">".
67 # "<span>" . __('Select')."</span>";
68 # print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
69 # print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
70 # dojoType=\"dijit.MenuItem\">".__('All')."</div>";
71 # print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
72 # dojoType=\"dijit.MenuItem\">".__('None')."</div>";
73 # print "</div></div>";
74
75 # print "<div style='float : right'>";
76 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
77 required=\"1\">
78 <button dojoType=\"dijit.form.Button\"
79 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
80 __('Create profile')."</button></div>";
81
82 # print "</div>";
83
84
85 $result = db_query($link, "SELECT title,id FROM ttrss_settings_profiles
86 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
87
88 print "<div class=\"prefFeedCatHolder\">";
89
90 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
91
92 print "<table width=\"100%\" class=\"prefFeedProfileList\"
93 cellspacing=\"0\" id=\"prefFeedProfileList\">";
94
95 print "<tr class=\"\" id=\"FCATR-0\">"; #odd
96
97 print "<td width='5%' align='center'><input
98 onclick='toggleSelectRow2(this);'
99 dojoType=\"dijit.form.CheckBox\"
100 type=\"checkbox\"></td>";
101
102 if (!$_SESSION["profile"]) {
103 $is_active = __("(active)");
104 } else {
105 $is_active = "";
106 }
107
108 print "<td><span>" .
109 __("Default profile") . " $is_active</span></td>";
110
111 print "</tr>";
112
113 $lnum = 1;
114
115 while ($line = db_fetch_assoc($result)) {
116
117 $class = ($lnum % 2) ? "even" : "odd";
118
119 $profile_id = $line["id"];
120 $this_row_id = "id=\"FCATR-$profile_id\"";
121
122 print "<tr class=\"\" $this_row_id>";
123
124 $edit_title = htmlspecialchars($line["title"]);
125
126 print "<td width='5%' align='center'><input
127 onclick='toggleSelectRow2(this);'
128 dojoType=\"dijit.form.CheckBox\"
129 type=\"checkbox\"></td>";
130
131 if ($_SESSION["profile"] == $line["id"]) {
132 $is_active = __("(active)");
133 } else {
134 $is_active = "";
135 }
136
137 print "<td><span dojoType=\"dijit.InlineEditBox\"
138 width=\"300px\" autoSave=\"false\"
139 profile-id=\"$profile_id\">" . $edit_title .
140 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
141 var elem = this;
142 dojo.xhrPost({
143 url: 'backend.php',
144 content: {op: 'rpc', subop: 'saveprofile',
145 value: this.value,
146 id: this.srcNodeRef.getAttribute('profile-id')},
147 load: function(response) {
148 elem.attr('value', response);
149 }
150 });
151 </script>
152 </span> $is_active</td>";
153
154 print "</tr>";
155
156 ++$lnum;
157 }
158
159 print "</table>";
160 print "</form>";
161 print "</div>";
162
163 print "<div class='dlgButtons'>
164 <div style='float : left'>
165 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
166 __('Remove selected profiles')."</button>
167 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
168 __('Activate profile')."</button>
169 </div>";
170
171 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
172 __('Close this window')."</button>";
173 print "</div>";
174
175 }
176
177 if ($id == "pubOPMLUrl") {
178
179 print "<title>".__('Public OPML URL')."</title>";
180 print "<content><![CDATA[";
181
182 $url_path = opml_publish_url($link);
183
184 print __("Your Public OPML URL is:");
185
186 print "<div class=\"tagCloudContainer\">";
187 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
188 print "</div>";
189
190 print "<div align='center'>";
191
192 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
193 __('Generate new URL')."</button> ";
194
195 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
196 __('Close this window')."</button>";
197
198 print "</div>";
199 print "]]></content>";
200
201 //return;
202 }
203
204 if ($id == "explainError") {
205
206 print "<title>".__('Notice')."</title>";
207 print "<content><![CDATA[";
208
209 print "<div class=\"errorExplained\">";
210
211 if ($param == 1) {
212 print __("Update daemon is enabled in configuration, but daemon process is not running, which prevents all feeds from updating. Please start the daemon process or contact instance owner.");
213
214 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
215
216 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
217
218 }
219
220 if ($param == 3) {
221 print __("Update daemon is taking too long to perform a feed update. This could indicate a problem like crash or a hang. Please check the daemon process or contact instance owner.");
222
223 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
224
225 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
226
227 }
228
229 print "</div>";
230
231 print "<div align='center'>";
232
233 print "<button onclick=\"return closeInfoBox()\">".
234 __('Close this window')."</button>";
235
236 print "</div>";
237 print "]]></content>";
238
239 //return;
240 }
241
242 if ($id == "quickAddFeed") {
243
244 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
245 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"addfeed\">";
246
247 print "<div class=\"dlgSec\">".__("Feed")."</div>";
248 print "<div class=\"dlgSecCont\">";
249
250 print "<input style=\"font-size : 16px; width : 20em;\"
251 placeHolder=\"".__("Feed URL")."\"
252 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
253
254 print "<hr/>";
255
256 if (get_pref($link, 'ENABLE_FEED_CATS')) {
257 print __('Place in category:') . " ";
258 print_feed_cat_select($link, "cat", false, 'dojoType="dijit.form.Select"');
259 }
260
261 print "</div>";
262
263 print '<div id="feedDlg_feedsContainer" style="display : none">
264
265 <div class="dlgSec">' . __('Available feeds') . '</div>
266 <div class="dlgSecCont">'.
267 '<select id="feedDlg_feedContainerSelect"
268 dojoType="dijit.form.Select" size="3">
269 <script type="dojo/method" event="onChange" args="value">
270 dijit.byId("feedDlg_feedUrl").attr("value", value);
271 </script>
272 </select>'.
273 '</div></div>';
274
275 print "<div id='feedDlg_loginContainer' style='display : none'>
276
277 <div class=\"dlgSec\">".__("Authentication")."</div>
278 <div class=\"dlgSecCont\">".
279
280 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
281 placeHolder=\"".__("Login")."\"
282 style=\"width : 10em;\"> ".
283 " <input
284 placeHolder=\"".__("Password")."\"
285 dojoType=\"dijit.form.TextBox\" type='password'
286 style=\"width : 10em;\" name='pass'\">
287 </div></div>";
288
289
290 print "<div style=\"clear : both\">
291 <input type=\"checkbox\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
292 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
293 <label for=\"feedDlg_loginCheck\">".
294 __('This feed requires authentication.')."</div>";
295
296 print "</form>";
297
298 print "<div class=\"dlgButtons\">
299 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>
300 <button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>
301 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
302 </div>";
303
304 //return;
305 }
306
307 if ($id == "feedBrowser") {
308
309 $browser_search = db_escape_string($_REQUEST["search"]);
310
311 # print "<form onsubmit='return false;' display='inline'
312 # name='feed_browser' id='feed_browser'>";
313
314 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
315 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"updateFeedBrowser\">";
316
317 print "<div dojoType=\"dijit.Toolbar\">
318 <div style='float : right'>
319 <img style='display : none'
320 id='feed_browser_spinner' src='".
321 theme_image($link, 'images/indicator_white.gif')."'>
322 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
323 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
324 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
325 </div>";
326
327 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
328 <option value='1'>" . __('Popular feeds') . "</option>
329 <option value='2'>" . __('Feed archive') . "</option>
330 </select> ";
331
332 print __("limit:");
333
334 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
335
336 foreach (array(25, 50, 100, 200) as $l) {
337 $issel = ($l == $limit) ? "selected=\"1\"" : "";
338 print "<option $issel value=\"$l\">$l</option>";
339 }
340
341 print "</select> ";
342
343 print "</div>";
344
345 $owner_uid = $_SESSION["uid"];
346
347 print "<ul class='browseFeedList' id='browseFeedList'>";
348 print make_feed_browser($link, $search, 25);
349 print "</ul>";
350
351 print "<div align='center'>
352 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
353 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
354 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
355
356 }
357
358 if ($id == "search") {
359
360 $params = explode(":", db_escape_string($_REQUEST["param"]), 2);
361
362 $active_feed_id = sprintf("%d", $params[0]);
363 $is_cat = $params[1] != "false";
364
365 print "<div class=\"dlgSec\">".__('Look for')."</div>";
366
367 print "<div class=\"dlgSecCont\">";
368
369 if (!SPHINX_ENABLED) {
370
371 print "<input dojoType=\"dijit.form.ValidationTextBox\"
372 style=\"font-size : 16px; width : 12em;\"
373 required=\"1\" name=\"query\" type=\"search\" value=''>";
374
375 print " " . __('match on')." ";
376
377 $search_fields = array(
378 "title" => __("Title"),
379 "content" => __("Content"),
380 "both" => __("Title or content"));
381
382 print_select_hash("match_on", 3, $search_fields,
383 'dojoType="dijit.form.Select"');
384 } else {
385 print "<input dojoType=\"dijit.form.ValidationTextBox\"
386 style=\"font-size : 16px; width : 20em;\"
387 required=\"1\" name=\"query\" type=\"search\" value=''>";
388 }
389
390
391 print "<hr/>".__('Limit search to:')." ";
392
393 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
394 <option value=\"all_feeds\">".__('All feeds')."</option>";
395
396 $feed_title = getFeedTitle($link, $active_feed_id);
397
398 if (!$is_cat) {
399 $feed_cat_title = getFeedCatTitle($link, $active_feed_id);
400 } else {
401 $feed_cat_title = getCategoryTitle($link, $active_feed_id);
402 }
403
404 if ($active_feed_id && !$is_cat) {
405 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
406 } else {
407 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
408 }
409
410 if ($is_cat) {
411 $cat_preselected = "selected=\"1\"";
412 }
413
414 if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
415 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
416 } else {
417 //print "<option disabled>".__('This category')."</option>";
418 }
419
420 print "</select>";
421
422 print "</div>";
423
424 print "<div class=\"dlgButtons\">
425 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
426 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
427 </div>";
428 }
429
430 if ($id == "quickAddFilter") {
431
432 $active_feed_id = db_escape_string($_REQUEST["param"]);
433
434 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
435 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"quiet\" value=\"1\">";
436 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"add\">";
437
438 $result = db_query($link, "SELECT id,description
439 FROM ttrss_filter_types ORDER BY description");
440
441 $filter_types = array();
442
443 while ($line = db_fetch_assoc($result)) {
444 //array_push($filter_types, $line["description"]);
445 $filter_types[$line["id"]] = __($line["description"]);
446 }
447
448 print "<div class=\"dlgSec\">".__("Match")."</div>";
449
450 print "<div class=\"dlgSecCont\">";
451
452 print "<span id=\"filterDlg_dateModBox\" style=\"display : none\">";
453
454 $filter_params = array(
455 "before" => __("before"),
456 "after" => __("after"));
457
458 print_select_hash("filter_date_modifier", "before",
459 $filter_params, 'dojoType="dijit.form.Select"');
460
461 print "&nbsp;</span>";
462
463 print "<input dojoType=\"dijit.form.ValidationTextBox\"
464 required=\"true\" id=\"filterDlg_regExp\"
465 style=\"font-size : 16px\"
466 name=\"reg_exp\" value=\"$reg_exp\"/>";
467
468 print "<span id=\"filterDlg_dateChkBox\" style=\"display : none\">";
469 print "&nbsp;<button onclick=\"return filterDlgCheckDate()\">".
470 __('Check it')."</button>";
471 print "</span>";
472
473 print "<hr/>" . __("on field") . " ";
474 print_select_hash("filter_type", 1, $filter_types,
475 'onchange="filterDlgCheckType(this)" dojoType="dijit.form.Select"');
476
477 print "<hr/>";
478
479 print __("in") . " ";
480 print_feed_select($link, "feed_id", $active_feed_id,
481 'dojoType="dijit.form.FilteringSelect"');
482
483 print "</div>";
484
485 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
486
487 print "<div class=\"dlgSecCont\">";
488
489 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
490 onchange=\"filterDlgCheckAction(this)\">";
491
492 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
493 ORDER BY name");
494
495 while ($line = db_fetch_assoc($result)) {
496 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
497 }
498
499 print "</select>";
500
501 print "<span id=\"filterDlg_paramBox\" style=\"display : none\">";
502 print " " . __("with parameters:") . " ";
503 print "<input dojoType=\"dijit.form.TextBox\"
504 id=\"filterDlg_actionParam\"
505 name=\"action_param\">";
506
507 print_label_select($link, "action_param_label", $action_param,
508 'id="filterDlg_actionParamLabel" dojoType="dijit.form.Select"');
509
510 print "</span>";
511
512 print "&nbsp;"; // tiny layout hack
513
514 print "</div>";
515
516 print "<div class=\"dlgSec\">".__("Options")."</div>";
517 print "<div class=\"dlgSecCont\">";
518
519 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
520 <label for=\"enabled\">".__('Enabled')."</label><hr/>";
521
522 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
523 <label for=\"inverse\">".__('Inverse match')."</label>";
524
525 print "</div>";
526
527 print "<div class=\"dlgButtons\">";
528
529 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
530 __('Create')."</button> ";
531
532 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
533 __('Cancel')."</button>";
534
535 print "</div>";
536
537 //return;
538 }
539
540 if ($id == "inactiveFeeds") {
541
542 if (DB_TYPE == "pgsql") {
543 $interval_qpart = "NOW() - INTERVAL '3 months'";
544 } else {
545 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
546 }
547
548 $result = db_query($link, "SELECT ttrss_feeds.title, ttrss_feeds.site_url,
549 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
550 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
551 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
552 ttrss_entries.id = ref_id AND
553 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
554 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
555 ttrss_user_entries.feed_id = ttrss_feeds.id AND
556 ttrss_entries.id = ref_id
557 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
558 ORDER BY last_article");
559
560 print __("These feeds have not been updated with new content for 3 months (oldest first):");
561
562 print "<div class=\"inactiveFeedHolder\">";
563
564 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
565
566 $lnum = 1;
567
568 while ($line = db_fetch_assoc($result)) {
569
570 $class = ($lnum % 2) ? "even" : "odd";
571 $feed_id = $line["id"];
572 $this_row_id = "id=\"FUPDD-$feed_id\"";
573
574 print "<tr class=\"\" $this_row_id>";
575
576 $edit_title = htmlspecialchars($line["title"]);
577
578 print "<td width='5%' align='center'><input
579 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
580 type=\"checkbox\"></td>";
581 print "<td>";
582
583 print "<a class=\"visibleLink\" href=\"#\" ".
584 "title=\"".__("Click to edit feed")."\" ".
585 "onclick=\"editFeed(".$line["id"].")\">".
586 htmlspecialchars($line["title"])."</a>";
587
588 print "</td><td class=\"insensitive\" align='right'>";
589 print make_local_datetime($link, $line['last_article'], false);
590 print "</td>";
591 print "</tr>";
592
593 ++$lnum;
594 }
595
596 print "</table>";
597 print "</div>";
598
599 print "<div class='dlgButtons'>";
600 print "<div style='float : left'>";
601 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
602 .__('Unsubscribe from selected feeds')."</button> ";
603 print "</div>";
604
605 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
606 __('Close this window')."</button>";
607
608 print "</div>";
609
610 }
611
612 if ($id == "feedsWithErrors") {
613
614 # print "<title>".__('Feeds with update errors')."</title>";
615 # print "<content><![CDATA[";
616
617 print __("These feeds have not been updated because of errors:");
618
619 $result = db_query($link, "SELECT id,title,feed_url,last_error,site_url
620 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
621
622 print "<div class=\"inactiveFeedHolder\">";
623
624 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
625
626 $lnum = 1;
627
628 while ($line = db_fetch_assoc($result)) {
629
630 $class = ($lnum % 2) ? "even" : "odd";
631 $feed_id = $line["id"];
632 $this_row_id = "id=\"FUPDD-$feed_id\"";
633
634 print "<tr class=\"\" $this_row_id>";
635
636 $edit_title = htmlspecialchars($line["title"]);
637
638 print "<td width='5%' align='center'><input
639 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
640 type=\"checkbox\"></td>";
641 print "<td>";
642
643 print "<a class=\"visibleLink\" href=\"#\" ".
644 "title=\"".__("Click to edit feed")."\" ".
645 "onclick=\"editFeed(".$line["id"].")\">".
646 htmlspecialchars($line["title"])."</a>: ";
647
648 print "<span class=\"insensitive\">";
649 print htmlspecialchars($line["last_error"]);
650 print "</span>";
651
652 print "</td>";
653 print "</tr>";
654
655 ++$lnum;
656 }
657
658 print "</table>";
659 print "</div>";
660
661 print "<div class='dlgButtons'>";
662 print "<div style='float : left'>";
663 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
664 .__('Unsubscribe from selected feeds')."</button> ";
665 print "</div>";
666
667 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
668 __('Close this window')."</button>";
669
670 print "</div>";
671 }
672
673 if ($id == "editArticleTags") {
674
675 # print "<form id=\"tag_edit_form\" onsubmit='return false'>";
676
677 print __("Tags for this article (separated by commas):")."<br>";
678
679 $tags = get_article_tags($link, $param);
680
681 $tags_str = join(", ", $tags);
682
683 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
684 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
685 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"setArticleTags\">";
686
687 print "<table width='100%'><tr><td>";
688
689 print "<textarea dojoType=\"dijit.form.SimpleTextarea\" rows='4'
690 style='font-size : 12px; width : 100%' id=\"tags_str\"
691 name='tags_str'>$tags_str</textarea>
692 <div class=\"autocomplete\" id=\"tags_choices\"
693 style=\"display:none\"></div>";
694
695 print "</td></tr></table>";
696
697 # print "</form>";
698
699 print "<div class='dlgButtons'>";
700
701 print "<button dojoType=\"dijit.form.Button\"
702 onclick=\"dijit.byId('editTagsDlg').execute()\">".__('Save')."</button> ";
703 print "<button dojoType=\"dijit.form.Button\"
704 onclick=\"dijit.byId('editTagsDlg').hide()\">".__('Cancel')."</button>";
705 print "</div>";
706
707 }
708
709 if ($id == "printTagCloud") {
710 print "<title>".__('Tag Cloud')."</title>";
711 print "<content><![CDATA[";
712
713 # print __("Showing most popular tags ")." (<a
714 # href='javascript:toggleTags(true)'>".__('more tags')."</a>):<br/>";
715
716 print "<div class=\"tagCloudContainer\">";
717
718 printTagCloud($link);
719
720 print "</div>";
721
722 print "<div align='center'>";
723 print "<button dojoType=\"dijit.form.Button\"
724 onclick=\"return closeInfoBox()\">".
725 __('Close this window')."</button>";
726 print "</div>";
727
728 print "]]></content>";
729
730 //return;
731 }
732
733 if ($id == "emailArticle") {
734
735 $secretkey = sha1(uniqid(rand(), true));
736
737 $_SESSION['email_secretkey'] = $secretkey;
738
739 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"secretkey\" value=\"$secretkey\">";
740 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
741 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"sendEmail\">";
742
743 $result = db_query($link, "SELECT email, full_name FROM ttrss_users WHERE
744 id = " . $_SESSION["uid"]);
745
746 $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
747 $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
748
749 if (!$user_name) $user_name = $_SESSION['name'];
750
751 $_SESSION['email_replyto'] = $user_email;
752 $_SESSION['email_fromname'] = $user_name;
753
754 require_once "lib/MiniTemplator.class.php";
755
756 $tpl = new MiniTemplator;
757 $tpl_t = new MiniTemplator;
758
759 $tpl->readTemplateFromFile("templates/email_article_template.txt");
760
761 $tpl->setVariable('USER_NAME', $_SESSION["name"]);
762 $tpl->setVariable('USER_EMAIL', $user_email);
763 $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
764
765 // $tpl->addBlock('header');
766
767 $result = db_query($link, "SELECT link, content, title
768 FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
769 id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
770
771 if (db_num_rows($result) > 1) {
772 $subject = __("[Forwarded]") . " " . __("Multiple articles");
773 }
774
775 while ($line = db_fetch_assoc($result)) {
776
777 if (!$subject)
778 $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
779
780 $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
781 $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
782
783 $tpl->addBlock('article');
784 }
785
786 $tpl->addBlock('email');
787
788 $content = "";
789 $tpl->generateOutputToString($content);
790
791 print "<table width='100%'><tr><td>";
792
793 print __('From:');
794
795 print "</td><td>";
796
797 print "<input dojoType=\"dijit.form.TextBox\" disabled=\"1\" style=\"width : 30em;\"
798 value=\"$user_name <$user_email>\">";
799
800 print "</td></tr><tr><td>";
801
802 print __('To:');
803
804 print "</td><td>";
805
806 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
807 style=\"width : 30em;\"
808 name=\"destination\" id=\"emailArticleDlg_destination\">";
809
810 print "<div class=\"autocomplete\" id=\"emailArticleDlg_dst_choices\"
811 style=\"z-index: 30; display : none\"></div>";
812
813 print "</td></tr><tr><td>";
814
815 print __('Subject:');
816
817 print "</td><td>";
818
819 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
820 style=\"width : 30em;\"
821 name=\"subject\" value=\"$subject\" id=\"subject\">";
822
823 print "</td></tr>";
824
825 print "<tr><td colspan='2'><textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 100%' rows=\"20\"
826 name='content'>$content</textarea>";
827
828 print "</td></tr></table>";
829
830 print "<div class='dlgButtons'>";
831 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').execute()\">".__('Send e-mail')."</button> ";
832 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Cancel')."</button>";
833 print "</div>";
834
835 //return;
836 }
837
838 if ($id == "generatedFeed") {
839
840 print "<title>".__('View as RSS')."</title>";
841 print "<content><![CDATA[";
842
843 $params = explode(":", $param, 3);
844 $feed_id = db_escape_string($params[0]);
845 $is_cat = (bool) $params[1];
846
847 $key = get_feed_access_key($link, $feed_id, $is_cat);
848
849 $url_path = htmlspecialchars($params[2]) . "&key=" . $key;
850
851 print __("You can view this feed as RSS using the following URL:");
852
853 print "<div class=\"tagCloudContainer\">";
854 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
855 print "</div>";
856
857 print "<div align='center'>";
858
859 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
860 __('Generate new URL')."</button> ";
861
862 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
863 __('Close this window')."</button>";
864
865 print "</div>";
866 print "]]></content>";
867
868 //return;
869 }
870
871 if ($id == "newVersion") {
872 $version_data = check_for_update($link);
873 $version = $version_data['version'];
874 $id = $version_data['version_id'];
875
876 print "<div class='tagCloudContainer'>";
877
878 print T_sprintf("New version of Tiny Tiny RSS is available (%s).",
879 "<b>$version</b>");
880
881 print "</div>";
882
883 $details = "http://tt-rss.org/redmine/versions/show/$id";
884 $download = "http://tt-rss.org/#Download";
885
886 print "<div style='text-align : center'>";
887 print "<button dojoType=\"dijit.form.Button\"
888 onclick=\"return window.open('$details')\">".__("Details")."</button>";
889 print "<button dojoType=\"dijit.form.Button\"
890 onclick=\"return window.open('$download')\">".__("Download")."</button>";
891 print "<button dojoType=\"dijit.form.Button\"
892 onclick=\"return dijit.byId('newVersionDlg').hide()\">".
893 __('Close this window')."</button>";
894 print "</div>";
895
896 }
897
898 if ($id == "customizeCSS") {
899
900 $value = get_pref($link, "USER_STYLESHEET");
901
902 $value = str_replace("<br/>", "\n", $value);
903
904 print T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "tt-rss.css");
905
906 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
907 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"setpref\">";
908 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
909
910 print "<table width='100%'><tr><td>";
911 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
912 style='font-size : 12px; width : 100%; height: 200px;'
913 placeHolder='body#ttrssMain { font-size : 14px; };'
914 name='value'>$value</textarea>";
915 print "</td></tr></table>";
916
917 print "<div class='dlgButtons'>";
918 print "<button dojoType=\"dijit.form.Button\"
919 onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
920 print "<button dojoType=\"dijit.form.Button\"
921 onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
922 print "</div>";
923
924 }
925
926 if ($id == "editArticleNote") {
927
928 $result = db_query($link, "SELECT note FROM ttrss_user_entries WHERE
929 ref_id = '$param' AND owner_uid = " . $_SESSION['uid']);
930
931 $note = db_fetch_result($result, 0, "note");
932
933 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
934 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
935 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"setNote\">";
936
937 print "<table width='100%'><tr><td>";
938 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
939 style='font-size : 12px; width : 100%; height: 100px;'
940 placeHolder='body#ttrssMain { font-size : 14px; };'
941 name='note'>$note</textarea>";
942 print "</td></tr></table>";
943
944 print "<div class='dlgButtons'>";
945 print "<button dojoType=\"dijit.form.Button\"
946 onclick=\"dijit.byId('editNoteDlg').execute()\">".__('Save')."</button> ";
947 print "<button dojoType=\"dijit.form.Button\"
948 onclick=\"dijit.byId('editNoteDlg').hide()\">".__('Cancel')."</button>";
949 print "</div>";
950
951 }
952
953
954 print "</dlg>";
955 }
956 ?>