]> git.wh0rd.org - tt-rss.git/blame - modules/pref-feeds.php
rework feed dialog layouts
[tt-rss.git] / modules / pref-feeds.php
CommitLineData
ef8be8ea 1<?php
d20f3544 2
ef8be8ea
AD
3 function module_pref_feeds($link) {
4
d20f3544
AD
5 global $update_intervals;
6 global $purge_intervals;
16211ddb 7 global $update_methods;
d20f3544 8
ef8be8ea
AD
9 $subop = $_REQUEST["subop"];
10 $quiet = $_REQUEST["quiet"];
11
12 if ($subop == "massSubscribe") {
13 $ids = split(",", db_escape_string($_GET["ids"]));
14
15 $subscribed = array();
16
17 foreach ($ids as $id) {
18 $result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
19 WHERE id = '$id'");
20
21 $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
22 $title = db_escape_string(db_fetch_result($result, 0, "title"));
23
24 $title_orig = db_fetch_result($result, 0, "title");
25
26 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
27 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
28
29 if (db_num_rows($result) == 0) {
30 $result = db_query($link,
31 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
32 VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
33
34 array_push($subscribed, $title_orig);
35 }
36 }
37
38 if (count($subscribed) > 0) {
31cc42f6 39 $msg = "<b>".__('Subscribed to feeds:')."</b>".
0d32b41e
AD
40 "<ul class=\"nomarks\">";
41
ef8be8ea 42 foreach ($subscribed as $title) {
0d32b41e 43 $msg .= "<li>$title</li>";
ef8be8ea 44 }
0d32b41e
AD
45 $msg .= "</ul>";
46
47 print format_notice($msg);
ef8be8ea
AD
48 }
49 }
50
51 if ($subop == "browse") {
52
53 if (!ENABLE_FEED_BROWSER) {
31cc42f6 54 print __("Feed browser is administratively disabled.");
ef8be8ea
AD
55 return;
56 }
57
31cc42f6 58 print "<div id=\"infoBoxTitle\">".__('Other feeds: Top 25')."</div>";
ef8be8ea
AD
59
60 print "<div class=\"infoBoxContents\">";
61
31cc42f6 62 print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
ef8be8ea 63
ef8be8ea
AD
64 $owner_uid = $_SESSION["uid"];
65
66 $result = db_query($link, "SELECT feed_url,COUNT(id) AS subscribers
67 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
68 WHERE tf.feed_url = ttrss_feeds.feed_url
69 AND owner_uid = '$owner_uid') GROUP BY feed_url
70 ORDER BY subscribers DESC LIMIT 25");
71
72 print "<ul class='browseFeedList' id='browseFeedList'>";
73
74 $feedctr = 0;
75
76 while ($line = db_fetch_assoc($result)) {
77 $feed_url = $line["feed_url"];
78 $subscribers = $line["subscribers"];
79
80 $det_result = db_query($link, "SELECT site_url,title,id
81 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
82
83 $details = db_fetch_assoc($det_result);
84
85 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
86
87 if (file_exists($icon_file) && filesize($icon_file) > 0) {
88 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
89 "/".$details["id"].".ico\">";
90 } else {
91 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
92 }
93
94 $check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB'
95 type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
96
97 $class = ($feedctr % 2) ? "even" : "odd";
98
99 print "<li class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
47439031 100 "$feed_icon " . $details["title"] .
ef8be8ea
AD
101 "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
102
103 ++$feedctr;
104 }
105
106 if ($feedctr == 0) {
31cc42f6 107 print "<li>".__('No feeds found to subscribe.')."</li>";
ef8be8ea
AD
108 }
109
110 print "</ul>";
111
112 print "<div align='center'>
113 <input type=\"submit\" class=\"button\"
31cc42f6 114 onclick=\"feedBrowserSubscribe()\" value=\"".__('Subscribe')."\">
ef8be8ea 115 <input type='submit' class='button'
31cc42f6 116 onclick=\"closeInfoBox()\" value=\"".__('Cancel')."\"></div>";
ef8be8ea
AD
117
118 print "</div>";
119 return;
120 }
121
122 if ($subop == "editfeed") {
123 $feed_id = db_escape_string($_REQUEST["id"]);
124
125 $result = db_query($link,
126 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
127 owner_uid = " . $_SESSION["uid"]);
128
47439031
AD
129 $title = htmlspecialchars(db_fetch_result($result,
130 0, "title"));
ef8be8ea
AD
131
132 $icon_file = ICONS_DIR . "/$feed_id.ico";
133
134 if (file_exists($icon_file) && filesize($icon_file) > 0) {
135 $feed_icon = "<img width=\"16\" height=\"16\"
136 src=\"" . ICONS_URL . "/$feed_id.ico\">";
137 } else {
138 $feed_icon = "";
139 }
140
ecace165 141 print "<div id=\"infoBoxTitle\">".__('Feed Editor')."</div>";
ef8be8ea
AD
142
143 print "<div class=\"infoBoxContents\">";
144
e6312f6c 145 print "<form id=\"edit_feed_form\" onsubmit=\"return false\">";
ef8be8ea
AD
146
147 print "<input type=\"hidden\" name=\"id\" value=\"$feed_id\">";
148 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
149 print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
150
ecace165
AD
151 print "<div class=\"dlgSec\">".__("Feed")."</div>";
152 print "<div class=\"dlgSecCont\">";
ef8be8ea 153
ecace165
AD
154 /* Title */
155
156 print "<input style=\"font-size : 16px\" size=\"40\" onkeypress=\"return filterCR(event, feedEditSave)\"
157 name=\"title\" value=\"$title\">";
158
159 /* Feed URL */
ef8be8ea
AD
160
161 $feed_url = db_fetch_result($result, 0, "feed_url");
47439031
AD
162 $feed_url = htmlspecialchars(db_fetch_result($result,
163 0, "feed_url"));
ecace165
AD
164
165 print "<br/>";
166
167 print __('URL:') . " ";
168 print "<input size=\"40\" onkeypress=\"return filterCR(event, feedEditSave)\"
169 name=\"feed_url\" value=\"$feed_url\">";
170
171 /* Category */
ef8be8ea
AD
172
173 if (get_pref($link, 'ENABLE_FEED_CATS')) {
174
175 $cat_id = db_fetch_result($result, 0, "cat_id");
176
ecace165
AD
177 print "<br/>";
178
179 print __('Place in category:') . " ";
ef8be8ea
AD
180
181 $parent_feed = db_fetch_result($result, 0, "parent_feed");
182
183 if (sprintf("%d", $parent_feed) > 0) {
184 $disabled = "disabled";
185 } else {
186 $disabled = "";
187 }
188
ecace165 189 print_feed_cat_select($link, "cat_id", $cat_id, $disabled);
ef8be8ea
AD
190 }
191
ecace165 192 /* Link to */
ef8be8ea 193
ecace165 194 print "<br/>";
ef8be8ea 195
ecace165 196 print __('Link to feed:') . " ";
ef8be8ea
AD
197
198 $tmp_result = db_query($link, "SELECT COUNT(id) AS count
199 FROM ttrss_feeds WHERE parent_feed = '$feed_id'");
200
201 $linked_count = db_fetch_result($tmp_result, 0, "count");
202
203 $parent_feed = db_fetch_result($result, 0, "parent_feed");
204
205 if ($linked_count > 0) {
206 $disabled = "disabled";
207 } else {
208 $disabled = "";
209 }
210
ecace165 211 print "<select $disabled name=\"parent_feed\">";
ef8be8ea 212
31cc42f6 213 print "<option value=\"0\">".__('Not linked')."</option>";
ef8be8ea
AD
214
215 if (get_pref($link, 'ENABLE_FEED_CATS')) {
216 if ($cat_id) {
217 $cat_qpart = "AND cat_id = '$cat_id'";
218 } else {
219 $cat_qpart = "AND cat_id IS NULL";
220 }
221 }
222
223 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
224 WHERE id != '$feed_id' AND owner_uid = ".$_SESSION["uid"]." AND
225 (SELECT COUNT(id) FROM ttrss_feeds AS T2 WHERE T2.id = ttrss_feeds.parent_feed) = 0
226 $cat_qpart ORDER BY title");
227
228 if (db_num_rows($tmp_result) > 0) {
229 print "<option disabled>--------</option>";
230 }
231
232 while ($tmp_line = db_fetch_assoc($tmp_result)) {
233 if ($tmp_line["id"] == $parent_feed) {
234 $is_selected = "selected";
235 } else {
236 $is_selected = "";
237 }
238 printf("<option $is_selected value='%d'>%s</option>",
239 $tmp_line["id"], $tmp_line["title"]);
240 }
241
242 print "</select>";
ef8be8ea 243
ef8be8ea 244
ecace165 245 print "</div>";
ef8be8ea 246
ecace165
AD
247 print "<div class=\"dlgSec\">".__("Updating")."</div>";
248 print "<div class=\"dlgSecCont\">";
ef8be8ea 249
ecace165 250 /* Update Interval */
ef8be8ea 251
ecace165
AD
252 $update_interval = db_fetch_result($result, 0, "update_interval");
253
254 print_select_hash("update_interval", $update_interval, $update_intervals);
16211ddb 255
ecace165
AD
256 /* Update method */
257
258 if (ALLOW_SELECT_UPDATE_METHOD) {
34459667 259 $update_method = db_fetch_result($result, 0, "update_method");
ecace165
AD
260
261 print " " . __('using') . " ";
262 print_select_hash("update_method", $update_method, $update_methods);
34459667 263 }
16211ddb 264
ecace165
AD
265 /* Purge intl */
266
267 print "<br/>";
268
269 $purge_interval = db_fetch_result($result, 0, "purge_interval");
270
271 print __('Article purging:') . " ";
272
273 print_select_hash("purge_interval", $purge_interval, $purge_intervals);
274
275 print "</div>";
276 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
277 print "<div class=\"dlgSecCont\">";
278
47439031 279 $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
ef8be8ea 280
ecace165
AD
281 print __('Login:') . " ";
282 print "<input size=\"20\" onkeypress=\"return filterCR(event, feedEditSave)\"
283 name=\"auth_login\" value=\"$auth_login\">";
284
285 print " " . __("Password:") . " ";
ef8be8ea 286
47439031 287 $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
ef8be8ea 288
ecace165 289 print "<input size=\"20\" type=\"password\" name=\"auth_pass\"
ef8be8ea 290 onkeypress=\"return filterCR(event, feedEditSave)\"
ecace165 291 value=\"$auth_pass\">";
ef8be8ea 292
ecace165
AD
293 print "</div>";
294 print "<div class=\"dlgSec\">".__("Options")."</div>";
295 print "<div class=\"dlgSecCont\">";
ef8be8ea 296
ecace165 297 print "<div style=\"line-height : 100%\">";
ef8be8ea 298
ecace165
AD
299 print "<input type=\"checkbox\" name=\"private\" id=\"private\"
300 $checked>&nbsp;<label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
ef8be8ea
AD
301
302 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
303
304 if ($rtl_content) {
305 $checked = "checked";
306 } else {
307 $checked = "";
308 }
309
ecace165
AD
310 print "<br/><input type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
311 $checked>&nbsp;<label for=\"rtl_content\">".__('Right-to-left content')."</label>";
ef8be8ea
AD
312
313 $hidden = sql_bool_to_bool(db_fetch_result($result, 0, "hidden"));
314
315 if ($hidden) {
316 $checked = "checked";
317 } else {
318 $checked = "";
319 }
320
ecace165
AD
321 print "<br/><input type=\"checkbox\" id=\"hidden\" name=\"hidden\"
322 $checked>&nbsp;<label for=\"hidden\">".__('Hide from my feed list')."</label>";
ef8be8ea
AD
323
324 $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
325
326 if ($include_in_digest) {
327 $checked = "checked";
328 } else {
329 $checked = "";
330 }
331
ecace165 332 print "<br/><input type=\"checkbox\" id=\"include_in_digest\"
ef8be8ea 333 name=\"include_in_digest\"
ecace165 334 $checked>&nbsp;<label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
ef8be8ea 335
bc0f0785
AD
336 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
337
338 if ($cache_images) {
339 $checked = "checked";
340 } else {
341 $checked = "";
342 }
343
344 if (ENABLE_SIMPLEPIE && SIMPLEPIE_CACHE_IMAGES) {
345 $disabled = "";
346 $label_class = "";
347 } else {
348 $disabled = "disabled";
349 $label_class = "class='insensitive'";
350 }
351
ecace165 352 print "<br/><input type=\"checkbox\" id=\"cache_images\"
bc0f0785 353 name=\"cache_images\" $disabled
ecace165 354 $checked>&nbsp;<label $label_class for=\"cache_images\">".
bc0f0785
AD
355 __('Cache images locally')."</label>";
356
ef8be8ea 357
ecace165
AD
358 print "</div>";
359 print "</div>";
ef8be8ea
AD
360
361 print "</form>";
362
ecace165 363 print "<div class='dlgButtons'>
ef8be8ea 364 <input type=\"submit\" class=\"button\"
31cc42f6 365 onclick=\"return feedEditSave()\" value=\"".__('Save')."\">
ef8be8ea 366 <input type='submit' class='button'
31cc42f6 367 onclick=\"return feedEditCancel()\" value=\"".__('Cancel')."\"></div>";
ef8be8ea
AD
368
369 print "</div>";
370
371 return;
372 }
373
374 if ($subop == "editSave") {
375
376 $feed_title = db_escape_string(trim($_POST["title"]));
377 $feed_link = db_escape_string(trim($_POST["feed_url"]));
378 $upd_intl = db_escape_string($_POST["update_interval"]);
379 $purge_intl = db_escape_string($_POST["purge_interval"]);
380 $feed_id = db_escape_string($_POST["id"]);
381 $cat_id = db_escape_string($_POST["cat_id"]);
382 $auth_login = db_escape_string(trim($_POST["auth_login"]));
383 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
384 $parent_feed = db_escape_string($_POST["parent_feed"]);
385 $private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
386 $rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
387 $hidden = checkbox_to_sql_bool(db_escape_string($_POST["hidden"]));
388 $include_in_digest = checkbox_to_sql_bool(
389 db_escape_string($_POST["include_in_digest"]));
bc0f0785
AD
390 $cache_images = checkbox_to_sql_bool(
391 db_escape_string($_POST["cache_images"]));
16211ddb 392 $update_method = (int) db_escape_string($_POST["update_method"]);
ef8be8ea
AD
393
394 if (get_pref($link, 'ENABLE_FEED_CATS')) {
395 if ($cat_id && $cat_id != 0) {
396 $category_qpart = "cat_id = '$cat_id',";
397 $category_qpart_nocomma = "cat_id = '$cat_id'";
398 } else {
399 $category_qpart = 'cat_id = NULL,';
400 $category_qpart_nocomma = 'cat_id = NULL';
401 }
402 } else {
403 $category_qpart = "";
404 $category_qpart_nocomma = "";
405 }
406
407 if ($parent_feed && $parent_feed != 0) {
408 $parent_qpart = "parent_feed = '$parent_feed'";
409 } else {
410 $parent_qpart = 'parent_feed = NULL';
411 }
412
bc0f0785
AD
413 if (ENABLE_SIMPLEPIE && SIMPLEPIE_CACHE_IMAGES) {
414 $cache_images_qpart = "cache_images = $cache_images,";
415 } else {
416 $cache_images_qpart = "";
417 }
418
ef8be8ea
AD
419 $result = db_query($link, "UPDATE ttrss_feeds SET
420 $category_qpart $parent_qpart,
421 title = '$feed_title', feed_url = '$feed_link',
422 update_interval = '$upd_intl',
423 purge_interval = '$purge_intl',
424 auth_login = '$auth_login',
425 auth_pass = '$auth_pass',
426 private = $private,
427 rtl_content = $rtl_content,
428 hidden = $hidden,
bc0f0785 429 $cache_images_qpart
16211ddb
AD
430 include_in_digest = $include_in_digest,
431 update_method = '$update_method'
ef8be8ea
AD
432 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
433
434 if (get_pref($link, 'ENABLE_FEED_CATS')) {
435 # update linked feed categories
436 $result = db_query($link, "UPDATE ttrss_feeds SET
437 $category_qpart_nocomma WHERE parent_feed = '$feed_id' AND
438 owner_uid = " . $_SESSION["uid"]);
439 }
440 }
441
ef8be8ea
AD
442 if ($subop == "remove") {
443
444 if (!WEB_DEMO_MODE) {
445
446 $ids = split(",", db_escape_string($_GET["ids"]));
447
448 foreach ($ids as $id) {
449
450 if ($id > 0) {
451
452 db_query($link, "DELETE FROM ttrss_feeds
453 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
454
455 $icons_dir = ICONS_DIR;
456
457 if (file_exists($icons_dir . "/$id.ico")) {
458 unlink($icons_dir . "/$id.ico");
459 }
460 } else if ($id < -10) {
461
462 $label_id = -$id - 11;
463
464 db_query($link, "DELETE FROM ttrss_labels
465 WHERE id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
466 }
467 }
468 }
469 }
470
d1f0c584
AD
471 if ($subop == "clear") {
472 $id = db_escape_string($_GET["id"]);
473 clear_feed_articles($link, $id);
474 }
475
fee840fb
AD
476 if ($subop == "rescore") {
477 $ids = split(",", db_escape_string($_GET["ids"]));
478
479 foreach ($ids as $id) {
480
481 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
482
483 $result = db_query($link, "SELECT title, content, link, ref_id FROM
484 ttrss_user_entries, ttrss_entries
485 WHERE ref_id = id AND feed_id = '$id' AND
486 owner_uid = " .$_SESSION['uid']."
ef1b0366 487 ");
fee840fb
AD
488
489 $scores = array();
490
491 while ($line = db_fetch_assoc($result)) {
492
493 $article_filters = get_article_filters($filters, $line['title'],
494 $line['content'], $line['link']);
495
496 $new_score = calculate_article_score($article_filters);
497
498 if (!$scores[$new_score]) $scores[$new_score] = array();
499
500 array_push($scores[$new_score], $line['ref_id']);
501 }
502
503 foreach (array_keys($scores) as $s) {
504 if ($s > 1000) {
505 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
506 marked = true WHERE
95a948a5 507 ref_id IN (" . join(',', $scores[$s]) . ")");
1618a849
AD
508 } else if ($s < -500) {
509 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
510 unread = false WHERE
511 ref_id IN (" . join(',', $scores[$s]) . ")");
95a948a5
AD
512 } else {
513 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
514 ref_id IN (" . join(',', $scores[$s]) . ")");
515 }
516 }
517 }
518
519 print __("All done.");
520
521 }
522
523 if ($subop == "rescoreAll") {
524
525 $result = db_query($link,
526 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
527
528 while ($feed_line = db_fetch_assoc($result)) {
529
530 $id = $feed_line["id"];
531
532 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
533
534 $tmp_result = db_query($link, "SELECT title, content, link, ref_id FROM
535 ttrss_user_entries, ttrss_entries
536 WHERE ref_id = id AND feed_id = '$id' AND
537 owner_uid = " .$_SESSION['uid']."
538 ");
539
540 $scores = array();
541
542 while ($line = db_fetch_assoc($tmp_result)) {
543
544 $article_filters = get_article_filters($filters, $line['title'],
545 $line['content'], $line['link']);
546
547 $new_score = calculate_article_score($article_filters);
548
549 if (!$scores[$new_score]) $scores[$new_score] = array();
550
551 array_push($scores[$new_score], $line['ref_id']);
552 }
553
554 foreach (array_keys($scores) as $s) {
555 if ($s > 1000) {
556 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
557 marked = true WHERE
fee840fb
AD
558 ref_id IN (" . join(',', $scores[$s]) . ")");
559 } else {
560 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
561 ref_id IN (" . join(',', $scores[$s]) . ")");
562 }
563 }
564 }
565
566 print __("All done.");
567
568 }
569
ef8be8ea
AD
570 if ($subop == "add") {
571
572 if (!WEB_DEMO_MODE) {
573
f27de515
AD
574 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
575 $cat_id = db_escape_string($_REQUEST["cat_id"]);
576 $p_from = db_escape_string($_REQUEST["from"]);
577
578 /* only read authentication information from POST */
579
580 $auth_login = db_escape_string(trim($_POST["auth_login"]));
581 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
aa2122d4 582
e513a74a 583 if ($p_from != 'tt-rss') {
aa2122d4
AD
584 print "<html>
585 <head>
586 <title>Tiny Tiny RSS - Subscribe to feed...</title>
587 <link rel=\"stylesheet\" type=\"text/css\" href=\"quicksub.css\">
588 </head>
589 <body>
590 <img class=\"logo\" src=\"images/ttrss_logo.png\"
591 alt=\"Tiny Tiny RSS\"/>
e513a74a
AD
592 <h1>Subscribe to feed...</h1>
593 <div class=\"content\">";
aa2122d4 594 }
ef8be8ea 595
f27de515 596 if (subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass)) {
4dccf1ed 597 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
ef8be8ea 598 } else {
4dccf1ed 599 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
ef8be8ea 600 }
aa2122d4 601
e513a74a 602 if ($p_from != 'tt-rss') {
d70c5ae4 603 $tt_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'tt-rss.php', $_SERVER["REQUEST_URI"]);
aa2122d4 604
d70c5ae4
AD
605
606 $tp_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'prefs.php', $_SERVER["REQUEST_URI"]);
e513a74a
AD
607
608 print "<p><a href='$tt_uri'>Return to Tiny Tiny RSS</a> |";
609
610 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
611 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
612
613 $feed_id = db_fetch_result($result, 0, "id");
614
615 if ($feed_id) {
616 print "<a href='$tp_uri?tab=feedConfig&subop=editFeed:$feed_id'>
617 Edit subscription options</a> | ";
618 }
619
620 print "<a href='javascript:window.close()'>Close this window</a>.</p>";
aa2122d4 621
e513a74a 622 print "</div></body></html>";
aa2122d4
AD
623 return;
624 }
442d77f1 625
ef8be8ea
AD
626 }
627 }
628
ef8be8ea
AD
629 if ($subop == "categorize") {
630
631 if (!WEB_DEMO_MODE) {
632
633 $ids = split(",", db_escape_string($_GET["ids"]));
634
635 $cat_id = db_escape_string($_GET["cat_id"]);
636
637 if ($cat_id == 0) {
638 $cat_id_qpart = 'NULL';
639 } else {
640 $cat_id_qpart = "'$cat_id'";
641 }
642
643 db_query($link, "BEGIN");
644
645 foreach ($ids as $id) {
646
647 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
648 WHERE id = '$id' AND parent_feed IS NULL
649 AND owner_uid = " . $_SESSION["uid"]);
650
651 # update linked feed categories
652 db_query($link, "UPDATE ttrss_feeds SET
653 cat_id = $cat_id_qpart WHERE parent_feed = '$id' AND
654 owner_uid = " . $_SESSION["uid"]);
655
656 }
657
658 db_query($link, "COMMIT");
659 }
660
661 }
662
9c483746
AD
663 if ($subop == "editCats") {
664
9c483746
AD
665 $action = $_REQUEST["action"];
666
667 if ($action == "save") {
668
11f083e7
AD
669 $cat_title = db_escape_string(trim($_REQUEST["value"]));
670 $cat_id = db_escape_string($_GET["cid"]);
9c483746
AD
671
672 $result = db_query($link, "UPDATE ttrss_feed_categories SET
673 title = '$cat_title' WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
11f083e7
AD
674
675 print $_REQUEST["value"];
676
677 return;
678
9c483746
AD
679 }
680
11f083e7
AD
681 print "<div id=\"infoBoxTitle\">".__('Category editor')."</div>";
682
683 print "<div class=\"infoBoxContents\">";
684
685
9c483746
AD
686 if ($action == "add") {
687
688 if (!WEB_DEMO_MODE) {
689
690 $feed_cat = db_escape_string(trim($_GET["cat"]));
691
692 $result = db_query($link,
693 "SELECT id FROM ttrss_feed_categories
694 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
695
696 if (db_num_rows($result) == 0) {
697
698 $result = db_query($link,
699 "INSERT INTO ttrss_feed_categories (owner_uid,title)
700 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
701
702 } else {
703
4dccf1ed
AD
704 print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.",
705 $feed_cat));
9c483746
AD
706 }
707
708 }
709 }
710
711 if ($action == "remove") {
712
713 if (!WEB_DEMO_MODE) {
714
715 $ids = split(",", db_escape_string($_GET["ids"]));
716
717 foreach ($ids as $id) {
718
719 db_query($link, "BEGIN");
720
721 $result = db_query($link,
722 "SELECT count(id) as num_feeds FROM ttrss_feeds
723 WHERE cat_id = '$id'");
724
725 $num_feeds = db_fetch_result($result, 0, "num_feeds");
726
727 if ($num_feeds == 0) {
728 db_query($link, "DELETE FROM ttrss_feed_categories
729 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
730 } else {
731
31cc42f6 732 print format_warning(__("Unable to delete non empty feed categories."));
9c483746
AD
733
734 }
735
736 db_query($link, "COMMIT");
737 }
738 }
739 }
740
741 print "<div class=\"prefGenericAddBox\">
742 <input id=\"fadd_cat\"
1043a8c3 743 onkeypress=\"return filterCR(event, addFeedCat)\"
9c483746 744 onkeyup=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
b5015f72 745 onchange=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
9c483746
AD
746 size=\"40\">&nbsp;
747 <input
748 type=\"submit\" class=\"button\" disabled=\"true\" id=\"catadd_submit_btn\"
31cc42f6 749 onclick=\"javascript:addFeedCat()\" value=\"".__('Create category')."\"></div>";
9c483746
AD
750
751 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
752 WHERE owner_uid = ".$_SESSION["uid"]."
753 ORDER BY title");
754
755 print "<p>";
756
757 if (db_num_rows($result) != 0) {
758
759 print "<table width=\"100%\" class=\"prefFeedCatList\"
760 cellspacing=\"0\">";
761
762 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
e8d0177d
AD
763 ".__('Select:')."
764 <a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
765 <a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>
9c483746
AD
766 </td></tr>";
767
768 print "</table>";
769
770 print "<div class=\"prefFeedCatHolder\">";
771
e6312f6c 772 print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
9c483746
AD
773
774 print "<table width=\"100%\" class=\"prefFeedCatList\"
775 cellspacing=\"0\" id=\"prefFeedCatList\">";
9c483746
AD
776
777 $lnum = 0;
778
779 while ($line = db_fetch_assoc($result)) {
780
781 $class = ($lnum % 2) ? "even" : "odd";
782
783 $cat_id = $line["id"];
11f083e7 784 $this_row_id = "id=\"FCATR-$cat_id\"";
9c483746
AD
785
786 print "<tr class=\"$class\" $this_row_id>";
787
47439031 788 $edit_title = htmlspecialchars($line["title"]);
9c483746 789
11f083e7
AD
790 print "<td width='5%' align='center'><input
791 onclick='toggleSelectPrefRow(this, \"fcat\");'
792 type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
793
794 print "<td><span id=\"FCATT-$cat_id\">" .
795 $edit_title . "</span></td>";
9c483746
AD
796
797 print "</tr>";
798
799 ++$lnum;
800 }
801
802 print "</table>";
803
804 print "</form>";
805
806 print "</div>";
807
6f5b1e04 808 } else {
31cc42f6 809 print "<p>".__('No feed categories defined.')."</p>";
6f5b1e04 810 }
9c483746 811
6f5b1e04
AD
812 print "<div style='float : right'>
813 <input type='submit' class='button'
31cc42f6 814 onclick=\"selectTab('feedConfig')\" value=\"".__('Close this window')."\"></div>";
9c483746 815
6f5b1e04 816 print "<div id=\"catOpToolbar\">";
9c483746 817
11f083e7 818 print "
6f5b1e04 819 <input type=\"submit\" class=\"button\" disabled=\"true\"
31cc42f6 820 onclick=\"return removeSelectedFeedCats()\" value=\"".__('Remove')."\">";
11f083e7 821
9c483746
AD
822 print "</div>";
823
6f5b1e04
AD
824 print "</div>";
825
9c483746
AD
826 return;
827
828 }
829
ef8be8ea
AD
830 if ($quiet) return;
831
442d77f1
AD
832 set_pref($link, "_PREFS_ACTIVE_TAB", "feedConfig");
833
a3656a41 834 $result = db_query($link, "SELECT COUNT(id) AS num_errors
ef8be8ea
AD
835 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
836
a3656a41 837 $num_errors = db_fetch_result($result, 0, "num_errors");
ef8be8ea 838
a3656a41 839 if ($num_errors > 0) {
ef8be8ea 840
31cc42f6
AD
841 print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
842 __('Some feeds have update errors (click for details)')."</a>");
ef8be8ea
AD
843 }
844
845 $feed_search = db_escape_string($_GET["search"]);
846
847 if (array_key_exists("search", $_GET)) {
848 $_SESSION["prefs_feed_search"] = $feed_search;
849 } else {
850 $feed_search = $_SESSION["prefs_feed_search"];
851 }
852
853 print "<div class=\"feedEditSearch\">
3dc8ee84 854 <input id=\"feed_search\" size=\"20\" type=\"search\"
4cf6fc6a
AD
855 onfocus=\"javascript:disableHotkeys();\"
856 onblur=\"javascript:enableHotkeys();\"
ef8be8ea
AD
857 onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
858 <input type=\"submit\" class=\"button\"
a3c159c4 859 onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
ef8be8ea 860 </div>";
5e6f933a 861
442d77f1 862 print "<input onclick=\"javascript:displayDlg('quickAddFeed')\"
a349077c 863 type=\"submit\" id=\"subscribe_to_feed_btn\"
442d77f1 864 class=\"button\" value=\"".__('Subscribe to feed')."\">";
ef8be8ea
AD
865
866 if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
867 print " <input type=\"submit\" class=\"button\"
a349077c 868 id=\"top25_feeds_btn\"
a3c159c4 869 onclick=\"javascript:browseFeeds()\" value=\"".__('Top 25')."\">";
ef8be8ea
AD
870 }
871
ef8be8ea
AD
872 $feeds_sort = db_escape_string($_GET["sort"]);
873
874 if (!$feeds_sort || $feeds_sort == "undefined") {
875 $feeds_sort = $_SESSION["pref_sort_feeds"];
876 if (!$feeds_sort) $feeds_sort = "title";
877 }
878
879 $_SESSION["pref_sort_feeds"] = $feeds_sort;
880
881 if ($feed_search) {
882 $search_qpart = "(UPPER(F1.title) LIKE UPPER('%$feed_search%') OR
883 UPPER(F1.feed_url) LIKE UPPER('%$feed_search%')) AND";
884 } else {
885 $search_qpart = "";
886 }
887
400b60d8
AD
888 $show_last_article_info = false;
889 $show_last_article_checked = "";
890 $show_last_article_qpart = "";
891
892 if ($_GET["slat"] == "true") {
893 $show_last_article_info = true;
894 $show_last_article_checked = "checked";
fc2b26a6 895 $show_last_article_qpart = ", (SELECT ".SUBSTRING_FOR_DATE."(MAX(updated),1,16) FROM ttrss_user_entries,
400b60d8
AD
896 ttrss_entries WHERE ref_id = ttrss_entries.id
897 AND feed_id = F1.id) AS last_article";
d2ca9130
AD
898 } else if ($feeds_sort == "last_article") {
899 $feeds_sort = "title";
900 }
901
902 if (get_pref($link, 'ENABLE_FEED_CATS')) {
903 $order_by_qpart = "category,$feeds_sort,title";
904 } else {
905 $order_by_qpart = "$feeds_sort,title";
400b60d8
AD
906 }
907
ef8be8ea
AD
908 $result = db_query($link, "SELECT
909 F1.id,
910 F1.title,
911 F1.feed_url,
2ac6b765 912 ".SUBSTRING_FOR_DATE."(F1.last_updated,1,16) AS last_updated,
ef8be8ea
AD
913 F1.parent_feed,
914 F1.update_interval,
365f95dc 915 F1.last_error,
ef8be8ea
AD
916 F1.purge_interval,
917 F1.cat_id,
918 F2.title AS parent_title,
919 C1.title AS category,
920 F1.hidden,
400b60d8
AD
921 F1.include_in_digest
922 $show_last_article_qpart
ef8be8ea
AD
923 FROM
924 ttrss_feeds AS F1
925 LEFT JOIN ttrss_feeds AS F2
926 ON (F1.parent_feed = F2.id)
927 LEFT JOIN ttrss_feed_categories AS C1
928 ON (F1.cat_id = C1.id)
929 WHERE
930 $search_qpart F1.owner_uid = '".$_SESSION["uid"]."'
931 ORDER by $order_by_qpart");
932
933 if (db_num_rows($result) != 0) {
934
935// print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
936
937 print "<p><table width=\"100%\" cellspacing=\"0\"
938 class=\"prefFeedList\" id=\"prefFeedList\">";
400b60d8
AD
939 print "<tr><td class=\"selectPrompt\" colspan=\"8\">".
940 "<div style='float : right'>".
941 "<input id='show_last_article_times' type='checkbox' onchange='feedlistToggleSLAT()'
942 $show_last_article_checked><label
943 for='show_last_article_times'>".__('Show last article times')."</label></div>".
944 __('Select:')."
e8d0177d
AD
945 <a href=\"javascript:selectPrefRows('feed', true)\">".__('All')."</a>,
946 <a href=\"javascript:selectPrefRows('feed', false)\">".__('None')."</a>
ef8be8ea
AD
947 </td</tr>";
948
949 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
950 print "<tr class=\"title\">
951 <td width='5%' align='center'>&nbsp;</td>";
952
953 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
954 print "<td width='3%'>&nbsp;</td>";
955 }
956
c4b0f96c
AD
957 print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
958
959 if ($show_last_article_info) {
960 print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
961 }
962
963 print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
ef8be8ea
AD
964 }
965
966 $lnum = 0;
967
968 $cur_cat_id = -1;
969
970 while ($line = db_fetch_assoc($result)) {
971
972 $feed_id = $line["id"];
973 $cat_id = $line["cat_id"];
974
47439031
AD
975 $edit_title = htmlspecialchars($line["title"]);
976 $edit_cat = htmlspecialchars($line["category"]);
ef8be8ea
AD
977
978 $hidden = sql_bool_to_bool($line["hidden"]);
979
365f95dc
AD
980 $last_error = $line["last_error"];
981
3692e98f 982 if (!$edit_cat) $edit_cat = __("Uncategorized");
ef8be8ea
AD
983
984 $last_updated = $line["last_updated"];
985
7a74abd5
AD
986 if (!$last_updated) {
987 $last_updated = "&mdash;";
988 } else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
ef8be8ea
AD
989 $last_updated = smart_date_time(strtotime($last_updated));
990 } else {
991 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
992 $last_updated = date($short_date, strtotime($last_updated));
993 }
994
995 $last_article = $line["last_article"];
996
7a74abd5
AD
997 if (!$last_article) {
998 $last_article = "&mdash;";
999 } else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
ef8be8ea
AD
1000 $last_article = smart_date_time(strtotime($last_article));
1001 } else {
1002 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1003 $last_article = date($short_date, strtotime($last_article));
1004 }
1005
1006 if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
1007 $lnum = 0;
1008
1009 print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
1010
1011 print "<tr class=\"title\">
1012 <td width='5%'>&nbsp;</td>";
1013
1014 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
1015 print "<td width='3%'>&nbsp;</td>";
1016 }
1017
400b60d8
AD
1018 print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
1019
1020 if ($show_last_article_info) {
1021 print "<td width='20%' align='right'>
1022 <a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
1023 }
1024
1025 print "<td width='20%' align='right'>
1026 <a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
ef8be8ea
AD
1027
1028 $cur_cat_id = $cat_id;
1029 }
1030
1031 $class = ($lnum % 2) ? "even" : "odd";
1032 $this_row_id = "id=\"FEEDR-$feed_id\"";
1033
1034 print "<tr class=\"$class\" $this_row_id>";
1035
1036 $icon_file = ICONS_DIR . "/$feed_id.ico";
1037
1038 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1039 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL . "/$feed_id.ico\">";
1040 } else {
1041 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1042 }
1043
1044 print "<td class='feedSelect'><input onclick='toggleSelectPrefRow(this, \"feed\");'
1045 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
1046
a95da136
AD
1047 $onclick = "onclick='editFeed($feed_id)' title='".__('Click to edit')."'";
1048
ef8be8ea 1049 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
a95da136 1050 print "<td $onclick class='feedIcon'>$feed_icon</td>";
ef8be8ea
AD
1051 }
1052
ef8be8ea
AD
1053 if ($hidden) {
1054 $edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
ef8be8ea
AD
1055 $last_updated = "<span class=\"insensitive\">$last_updated</span>";
1056 $last_article = "<span class=\"insensitive\">$last_article</span>";
365f95dc
AD
1057 }
1058
1059 if ($last_error) {
1fc77c25 1060 $edit_title = "<span class=\"feed_error\">$edit_title</span>";
365f95dc
AD
1061 $last_updated = "<span class=\"feed_error\">$last_updated</span>";
1062 $last_article = "<span class=\"feed_error\">$last_article</span>";
ef8be8ea
AD
1063 }
1064
1065 $parent_title = $line["parent_title"];
1066 if ($parent_title) {
1067 $parent_title = "<span class='groupPrompt'>(linked to
1068 $parent_title)</span>";
1069 }
1070
a95da136 1071 print "<td $onclick>" . "$edit_title $parent_title" . "</td>";
ef8be8ea 1072
400b60d8 1073 if ($show_last_article_info) {
a95da136
AD
1074 print "<td align='right' $onclick>" .
1075 "$last_article</td>";
400b60d8 1076 }
ef8be8ea 1077
fe5bfa00 1078 print "<td $onclick align='right'>$last_updated</td>";
ef8be8ea
AD
1079
1080 print "</tr>";
1081
1082 ++$lnum;
1083 }
1084
1085 print "</table>";
1086
e88a65f4 1087 print "<p>";
c4a36709 1088
19d96beb
AD
1089 print "<div id=\"feedOpToolbar\">";
1090
1091 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1092
1093 print __('Selection:') . " ";
1094
1095 print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
1096
1097 print " <input type=\"submit\" class=\"button\" disabled=\"true\"
1098 onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
1099 __('Recategorize')."\">";
1100 }
1101
1102 print "</div>";
1103
c4a36709
AD
1104 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1105 <option value=\"facDefault\" selected>".__('Actions...')."</option>
1106 <option disabled>--------</option>
1107 <option style=\"color : #5050aa\" disabled>".__('Selection:')."</option>
1108 <option value=\"facEdit\">&nbsp;&nbsp;".__('Edit')."</option>
e88a65f4 1109 <option value=\"facPurge\">&nbsp;&nbsp;".__('Manual purge')."</option>
c4a36709 1110 <option value=\"facClear\">&nbsp;&nbsp;".__('Clear feed data')."</option>
fee840fb 1111 <option value=\"facRescore\">&nbsp;&nbsp;".__('Rescore articles')."</option>
c4a36709
AD
1112 <option value=\"facUnsubscribe\">&nbsp;&nbsp;".__('Unsubscribe')."</option>";
1113
1114 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1115
1116 print "<option disabled>--------</option>
1117 <option style=\"color : #5050aa\" disabled>".__('Other:')."</option>
1118 <option value=\"facEditCats\">&nbsp;&nbsp;".__('Edit categories')."
1119 </option>";
1120 }
1121
19d96beb 1122 print "</select>";
ef8be8ea
AD
1123 }
1124
a3c159c4 1125 print "<h3>".__('OPML')."</h3>
94a4ba88
AD
1126
1127 <div style='float : left'>
ef8be8ea 1128 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
999703d1
AD
1129 ".__('File:')." <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1130 <input type=\"hidden\" name=\"op\" value=\"Import\">
1131 <input class=\"button\" onclick=\"return validateOpmlImport();\"
a3c159c4 1132 type=\"submit\" value=\"".__('Import')."\">
94a4ba88
AD
1133 </form></div>";
1134
3692e98f 1135 print "&nbsp;";
94a4ba88
AD
1136
1137 print "<input type=\"submit\"
1138 class=\"button\" onclick=\"gotoExportOpml()\"
a3c159c4 1139 value=\"".__('Export OPML')."\">";
94a4ba88 1140
e4f4b46f 1141
755a43ee
AD
1142 print "<h3>" . __("Firefox Integration") . "</h3>";
1143
1144 print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.');
e635d56a 1145 print "</p><p> <a class='visibleLink' href='javascript:window.navigator.registerContentHandler(" .
755a43ee
AD
1146 "\"application/vnd.mozilla.maybe.feed\", " .
1147 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1148 __('Click here to register this site as a feed reader.') . "</a></p>";
1149
1150
e400230e 1151 print "<h3>".__("Published articles")."</h3>";
e4f4b46f
AD
1152
1153 if (!get_pref($link, "_PREFS_PUBLISH_KEY")) {
1154 set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());
1155 }
1156
e635d56a 1157 print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
e4f4b46f 1158
f56e3080 1159 $url_path = article_publish_url($link);
e4f4b46f 1160
562ecfcf 1161 print "<p><a class=\"visibleLink\" id=\"pubGenAddress\" target=\"_blank\" href=\"$url_path\">Link to published articles feed.</a></p>";
e4f4b46f 1162
8a8f7c55 1163 print "<p><input type=\"submit\" onclick=\"return pubRegenKey()\" class=\"button\"
e635d56a
AD
1164 value=\"".__('Generate another link')."\">";
1165 /* print " <input type=\"submit\" onclick=\"return pubToClipboard()\" class=\"button\"
1166 value=\"".__('Copy link to clipboard')."\">"; */
1167 print "</p>";
e4f4b46f 1168
ef8be8ea
AD
1169 }
1170?>