2 class Dlg extends Handler_Protected {
5 function before($method) {
6 if (parent::before($method)) {
7 header("Content-Type: text/xml; charset=utf-8");
8 $this->param = db_escape_string($_REQUEST["param"]);
19 function exportData() {
21 print "<p style='text-align : center' id='export_status_message'>You need to prepare exported data first by clicking the button below.</p>";
23 print "<div align='center'>";
24 print "<button dojoType=\"dijit.form.Button\"
25 onclick=\"dijit.byId('dataExportDlg').prepare()\">".
26 __('Prepare data')."</button>";
28 print "<button dojoType=\"dijit.form.Button\"
29 onclick=\"dijit.byId('dataExportDlg').hide()\">".
30 __('Close this window')."</button>";
37 function importOpml() {
38 header("Content-Type: text/html"); # required for iframe
40 print __("If you have imported labels and/or filters, you might need to reload preferences to see your new data.") . "</p>";
42 print "<div class=\"prefFeedOPMLHolder\">";
43 $owner_uid = $_SESSION["uid"];
45 db_query($this->link, "BEGIN");
47 print "<ul class='nomarks'>";
49 $opml = new Opml($this->link, $_REQUEST);
51 $opml->opml_import($_SESSION["uid"]);
56 print "<div align='center'>";
57 print "<button dojoType=\"dijit.form.Button\"
58 onclick=\"dijit.byId('opmlImportDlg').execute()\">".
59 __('Close this window')."</button>";
67 function editPrefProfiles() {
68 print "<div dojoType=\"dijit.Toolbar\">";
70 print "<div dojoType=\"dijit.form.DropDownButton\">".
71 "<span>" . __('Select')."</span>";
72 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
73 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
74 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
75 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
76 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
79 print "<div style=\"float : right\">";
81 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
83 <button dojoType=\"dijit.form.Button\"
84 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
85 __('Create profile')."</button></div>";
89 $result = db_query($this->link, "SELECT title,id FROM ttrss_settings_profiles
90 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
92 print "<div class=\"prefFeedCatHolder\">";
94 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
96 print "<table width=\"100%\" class=\"prefFeedProfileList\"
97 cellspacing=\"0\" id=\"prefFeedProfileList\">";
99 print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
101 print "<td width='5%' align='center'><input
103 onclick='toggleSelectRow2(this);'
104 dojoType=\"dijit.form.CheckBox\"
105 type=\"checkbox\"></td>";
107 if (!$_SESSION["profile"]) {
108 $is_active = __("(active)");
114 __("Default profile") . " $is_active</span></td>";
120 while ($line = db_fetch_assoc($result)) {
122 $class = ($lnum % 2) ? "even" : "odd";
124 $profile_id = $line["id"];
125 $this_row_id = "id=\"FCATR-$profile_id\"";
127 print "<tr class=\"placeholder\" $this_row_id>";
129 $edit_title = htmlspecialchars($line["title"]);
131 print "<td width='5%' align='center'><input
132 onclick='toggleSelectRow2(this);'
133 id='FCATC-$profile_id'
134 dojoType=\"dijit.form.CheckBox\"
135 type=\"checkbox\"></td>";
137 if ($_SESSION["profile"] == $line["id"]) {
138 $is_active = __("(active)");
143 print "<td><span dojoType=\"dijit.InlineEditBox\"
144 width=\"300px\" autoSave=\"false\"
145 profile-id=\"$profile_id\">" . $edit_title .
146 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
150 content: {op: 'rpc', method: 'saveprofile',
152 id: this.srcNodeRef.getAttribute('profile-id')},
153 load: function(response) {
154 elem.attr('value', response);
158 </span> $is_active</td>";
169 print "<div class='dlgButtons'>
170 <div style='float : left'>
171 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
172 __('Remove selected profiles')."</button>
173 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
174 __('Activate profile')."</button>
177 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
178 __('Close this window')."</button>";
183 function pubOPMLUrl() {
184 print "<title>".__('Public OPML URL')."</title>";
185 print "<content><![CDATA[";
187 $url_path = opml_publish_url($this->link);
189 print __("Your Public OPML URL is:");
191 print "<div class=\"tagCloudContainer\">";
192 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
195 print "<div align='center'>";
197 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
198 __('Generate new URL')."</button> ";
200 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
201 __('Close this window')."</button>";
204 print "]]></content>";
209 function explainError() {
210 print "<title>".__('Notice')."</title>";
211 print "<content><![CDATA[";
213 print "<div class=\"errorExplained\">";
215 if ($this->param == 1) {
216 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.");
218 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
220 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
224 if ($this->param == 3) {
225 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.");
227 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
229 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
235 print "<div align='center'>";
237 print "<button onclick=\"return closeInfoBox()\">".
238 __('Close this window')."</button>";
241 print "]]></content>";
246 function quickAddFeed() {
247 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
248 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
250 print "<div class=\"dlgSec\">".__("Feed")."</div>";
251 print "<div class=\"dlgSecCont\">";
253 print "<div style='float : right'>
254 <img style='display : none'
255 id='feed_add_spinner' src='".
256 theme_image($this->link, 'images/indicator_white.gif')."'></div>";
258 print "<input style=\"font-size : 16px; width : 20em;\"
259 placeHolder=\"".__("Feed URL")."\"
260 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
264 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
265 print __('Place in category:') . " ";
266 print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
271 print '<div id="feedDlg_feedsContainer" style="display : none">
273 <div class="dlgSec">' . __('Available feeds') . '</div>
274 <div class="dlgSecCont">'.
275 '<select id="feedDlg_feedContainerSelect"
276 dojoType="dijit.form.Select" size="3">
277 <script type="dojo/method" event="onChange" args="value">
278 dijit.byId("feedDlg_feedUrl").attr("value", value);
283 print "<div id='feedDlg_loginContainer' style='display : none'>
285 <div class=\"dlgSec\">".__("Authentication")."</div>
286 <div class=\"dlgSecCont\">".
288 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
289 placeHolder=\"".__("Login")."\"
290 style=\"width : 10em;\"> ".
292 placeHolder=\"".__("Password")."\"
293 dojoType=\"dijit.form.TextBox\" type='password'
294 style=\"width : 10em;\" name='pass'\">".
295 " <p class='insensitive'>".__("OAuth will be used automatically for Twitter feeds.")."</p>
299 print "<div style=\"clear : both\">
300 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
301 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
302 <label for=\"feedDlg_loginCheck\">".
303 __('This feed requires authentication.')."</div>";
307 print "<div class=\"dlgButtons\">
308 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
310 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
311 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
314 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
320 function feedBrowser() {
321 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
323 $browser_search = db_escape_string($_REQUEST["search"]);
325 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
326 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
328 print "<div dojoType=\"dijit.Toolbar\">
329 <div style='float : right'>
330 <img style='display : none'
331 id='feed_browser_spinner' src='".
332 theme_image($this->link, 'images/indicator_white.gif')."'>
333 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
334 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
335 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
338 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
339 <option value='1'>" . __('Popular feeds') . "</option>
340 <option value='2'>" . __('Feed archive') . "</option>
345 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
347 foreach (array(25, 50, 100, 200) as $l) {
348 $issel = ($l == $limit) ? "selected=\"1\"" : "";
349 print "<option $issel value=\"$l\">$l</option>";
356 $owner_uid = $_SESSION["uid"];
358 print "<ul class='browseFeedList' id='browseFeedList'>";
359 print make_feed_browser($this->link, $search, 25);
362 print "<div align='center'>
363 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
364 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
365 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
370 $this->params = explode(":", db_escape_string($_REQUEST["param"]), 2);
372 $active_feed_id = sprintf("%d", $this->params[0]);
373 $is_cat = $this->params[1] != "false";
375 print "<div class=\"dlgSec\">".__('Look for')."</div>";
377 print "<div class=\"dlgSecCont\">";
379 if (!SPHINX_ENABLED) {
381 print "<input dojoType=\"dijit.form.ValidationTextBox\"
382 style=\"font-size : 16px; width : 12em;\"
383 required=\"1\" name=\"query\" type=\"search\" value=''>";
385 print " " . __('match on')." ";
387 $search_fields = array(
388 "title" => __("Title"),
389 "content" => __("Content"),
390 "both" => __("Title or content"));
392 print_select_hash("match_on", 3, $search_fields,
393 'dojoType="dijit.form.Select"');
395 print "<input dojoType=\"dijit.form.ValidationTextBox\"
396 style=\"font-size : 16px; width : 20em;\"
397 required=\"1\" name=\"query\" type=\"search\" value=''>";
401 print "<hr/>".__('Limit search to:')." ";
403 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
404 <option value=\"all_feeds\">".__('All feeds')."</option>";
406 $feed_title = getFeedTitle($this->link, $active_feed_id);
409 $feed_cat_title = getFeedCatTitle($this->link, $active_feed_id);
411 $feed_cat_title = getCategoryTitle($this->link, $active_feed_id);
414 if ($active_feed_id && !$is_cat) {
415 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
417 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
421 $cat_preselected = "selected=\"1\"";
424 if (get_pref($this->link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
425 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
427 //print "<option disabled>".__('This category')."</option>";
434 print "<div class=\"dlgButtons\">";
436 if (!SPHINX_ENABLED) {
437 print "<div style=\"float : left\">
438 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/redmine/wiki/tt-rss/SearchSyntax\">Search syntax</a>
442 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
443 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
447 function quickAddFilter() {
448 $active_feed_id = db_escape_string($_REQUEST["param"]);
450 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
451 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"quiet\" value=\"1\">";
452 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"add\">";
453 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"csrf_token\" value=\"".$_SESSION['csrf_token']."\">";
455 $result = db_query($this->link, "SELECT id,description
456 FROM ttrss_filter_types ORDER BY description");
458 $filter_types = array();
460 while ($line = db_fetch_assoc($result)) {
461 //array_push($filter_types, $line["description"]);
462 $filter_types[$line["id"]] = __($line["description"]);
465 print "<div class=\"dlgSec\">".__("Match")."</div>";
467 print "<div class=\"dlgSecCont\">";
469 print "<span id=\"filterDlg_dateModBox\" style=\"display : none\">";
471 $filter_params = array(
472 "before" => __("before"),
473 "after" => __("after"));
475 print_select_hash("filter_date_modifier", "before",
476 $filter_params, 'dojoType="dijit.form.Select"');
478 print " </span>";
480 print "<input dojoType=\"dijit.form.ValidationTextBox\"
481 required=\"true\" id=\"filterDlg_regExp\"
482 style=\"font-size : 16px\"
483 name=\"reg_exp\" value=\"$reg_exp\"/>";
485 print "<span id=\"filterDlg_dateChkBox\" style=\"display : none\">";
486 print " <button dojoType=\"dijit.form.Button\"
487 onclick=\"return filterDlgCheckDate()\">".
488 __('Check it')."</button>";
491 print "<hr/>" . __("on field") . " ";
492 print_select_hash("filter_type", 1, $filter_types,
493 'onchange="filterDlgCheckType(this)" dojoType="dijit.form.Select"');
497 print __("in") . " ";
499 print "<span id='filterDlg_feeds'>";
500 print_feed_select($this->link, "feed_id", $active_feed_id,
501 'dojoType="dijit.form.FilteringSelect"');
504 print "<span id='filterDlg_cats' style='display : none'>";
505 print_feed_cat_select($this->link, "cat_id", $active_cat_id,
506 'dojoType="dijit.form.FilteringSelect"');
511 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
513 print "<div class=\"dlgSecCont\">";
515 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
516 onchange=\"filterDlgCheckAction(this)\">";
518 $result = db_query($this->link, "SELECT id,description FROM ttrss_filter_actions
521 while ($line = db_fetch_assoc($result)) {
522 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
527 print "<span id=\"filterDlg_paramBox\" style=\"display : none\">";
528 print " " . __("with parameters:") . " ";
529 print "<input dojoType=\"dijit.form.TextBox\"
530 id=\"filterDlg_actionParam\"
531 name=\"action_param\">";
533 print_label_select($this->link, "action_param_label", $action_param,
534 'id="filterDlg_actionParamLabel" dojoType="dijit.form.Select"');
538 print " "; // tiny layout hack
542 print "<div class=\"dlgSec\">".__("Options")."</div>";
543 print "<div class=\"dlgSecCont\">";
545 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
546 <label for=\"enabled\">".__('Enabled')."</label><hr/>";
548 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
549 <label for=\"inverse\">".__('Inverse match')."</label><hr/>";
551 # print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"cat_filter\" id=\"cat_filter\" onchange=\"filterDlgCheckCat(this)\">
552 # <label for=\"cat_filter\">".__('Apply to category')."</label><hr/>";
557 print "<div class=\"dlgButtons\">";
559 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').test()\">".
560 __('Test')."</button> ";
562 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
563 __('Create')."</button> ";
565 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
566 __('Cancel')."</button>";
571 function inactiveFeeds() {
573 if (DB_TYPE == "pgsql") {
574 $interval_qpart = "NOW() - INTERVAL '3 months'";
576 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
579 $result = db_query($this->link, "SELECT ttrss_feeds.title, ttrss_feeds.site_url,
580 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
581 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
582 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
583 ttrss_entries.id = ref_id AND
584 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
585 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
586 ttrss_user_entries.feed_id = ttrss_feeds.id AND
587 ttrss_entries.id = ref_id
588 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
589 ORDER BY last_article");
591 print "<div class=\"dialogNotice\">" . __("These feeds have not been updated with new content for 3 months (oldest first):") . "</div>";
593 print "<div dojoType=\"dijit.Toolbar\">";
594 print "<div dojoType=\"dijit.form.DropDownButton\">".
595 "<span>" . __('Select')."</span>";
596 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
597 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'all')\"
598 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
599 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'none')\"
600 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
601 print "</div></div>";
602 print "</div>"; #toolbar
604 print "<div class=\"inactiveFeedHolder\">";
606 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
610 while ($line = db_fetch_assoc($result)) {
612 $class = ($lnum % 2) ? "even" : "odd";
613 $feed_id = $line["id"];
614 $this_row_id = "id=\"FUPDD-$feed_id\"";
616 # class needed for selectTableRows()
617 print "<tr class=\"placeholder\" $this_row_id>";
619 $edit_title = htmlspecialchars($line["title"]);
621 # id needed for selectTableRows()
622 print "<td width='5%' align='center'><input
623 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
624 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
627 print "<a class=\"visibleLink\" href=\"#\" ".
628 "title=\"".__("Click to edit feed")."\" ".
629 "onclick=\"editFeed(".$line["id"].")\">".
630 htmlspecialchars($line["title"])."</a>";
632 print "</td><td class=\"insensitive\" align='right'>";
633 print make_local_datetime($this->link, $line['last_article'], false);
643 print "<div class='dlgButtons'>";
644 print "<div style='float : left'>";
645 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
646 .__('Unsubscribe from selected feeds')."</button> ";
649 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
650 __('Close this window')."</button>";
656 function feedsWithErrors() {
657 print "<div class=\"dialogNotice\">" . __("These feeds have not been updated because of errors:") . "</div>";
659 $result = db_query($this->link, "SELECT id,title,feed_url,last_error,site_url
660 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
662 print "<div dojoType=\"dijit.Toolbar\">";
663 print "<div dojoType=\"dijit.form.DropDownButton\">".
664 "<span>" . __('Select')."</span>";
665 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
666 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'all')\"
667 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
668 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'none')\"
669 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
670 print "</div></div>";
671 print "</div>"; #toolbar
673 print "<div class=\"inactiveFeedHolder\">";
675 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
679 while ($line = db_fetch_assoc($result)) {
681 $class = ($lnum % 2) ? "even" : "odd";
682 $feed_id = $line["id"];
683 $this_row_id = "id=\"FUPDD-$feed_id\"";
685 # class needed for selectTableRows()
686 print "<tr class=\"placeholder\" $this_row_id>";
688 $edit_title = htmlspecialchars($line["title"]);
690 # id needed for selectTableRows()
691 print "<td width='5%' align='center'><input
692 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
693 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
696 print "<a class=\"visibleLink\" href=\"#\" ".
697 "title=\"".__("Click to edit feed")."\" ".
698 "onclick=\"editFeed(".$line["id"].")\">".
699 htmlspecialchars($line["title"])."</a>: ";
701 print "<span class=\"insensitive\">";
702 print htmlspecialchars($line["last_error"]);
714 print "<div class='dlgButtons'>";
715 print "<div style='float : left'>";
716 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
717 .__('Unsubscribe from selected feeds')."</button> ";
720 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
721 __('Close this window')."</button>";
726 function editArticleTags() {
728 print __("Tags for this article (separated by commas):")."<br>";
730 $tags = get_article_tags($this->link, $this->param);
732 $tags_str = join(", ", $tags);
734 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$this->param\">";
735 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
736 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
738 print "<table width='100%'><tr><td>";
740 print "<textarea dojoType=\"dijit.form.SimpleTextarea\" rows='4'
741 style='font-size : 12px; width : 100%' id=\"tags_str\"
742 name='tags_str'>$tags_str</textarea>
743 <div class=\"autocomplete\" id=\"tags_choices\"
744 style=\"display:none\"></div>";
746 print "</td></tr></table>";
748 print "<div class='dlgButtons'>";
750 print "<button dojoType=\"dijit.form.Button\"
751 onclick=\"dijit.byId('editTagsDlg').execute()\">".__('Save')."</button> ";
752 print "<button dojoType=\"dijit.form.Button\"
753 onclick=\"dijit.byId('editTagsDlg').hide()\">".__('Cancel')."</button>";
758 function printTagCloud() {
759 print "<title>".__('Tag Cloud')."</title>";
760 print "<content><![CDATA[";
762 print "<div class=\"tagCloudContainer\">";
764 // from here: http://www.roscripts.com/Create_tag_cloud-71.html
766 $query = "SELECT tag_name, COUNT(post_int_id) AS count
767 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
768 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
770 $result = db_query($this->link, $query);
774 while ($line = db_fetch_assoc($result)) {
775 $tags[$line["tag_name"]] = $line["count"];
778 if( count($tags) == 0 ){ return; }
782 $max_size = 32; // max font size in pixels
783 $min_size = 11; // min font size in pixels
785 // largest and smallest array values
786 $max_qty = max(array_values($tags));
787 $min_qty = min(array_values($tags));
789 // find the range of values
790 $spread = $max_qty - $min_qty;
791 if ($spread == 0) { // we don't want to divide by zero
795 // set the font-size increment
796 $step = ($max_size - $min_size) / ($spread);
798 // loop through the tag array
799 foreach ($tags as $key => $value) {
800 // calculate font-size
801 // find the $value in excess of $min_qty
802 // multiply by the font-size increment ($size)
803 // and add the $min_size set above
804 $size = round($min_size + (($value - $min_qty) * $step));
806 $key_escaped = str_replace("'", "\\'", $key);
808 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
809 $size . "px\" title=\"$value articles tagged with " .
810 $key . '">' . $key . '</a> ';
817 print "<div align='center'>";
818 print "<button dojoType=\"dijit.form.Button\"
819 onclick=\"return closeInfoBox()\">".
820 __('Close this window')."</button>";
823 print "]]></content>";
826 function printTagSelect() {
828 print "<title>" . __('Select item(s) by tags') . "</title>";
829 print "<content><![CDATA[";
831 print __("Match:"). " " .
832 "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\"> Any ";
833 print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" value=\"all\" name=\"tag_mode\"> All ";
836 print "<select id=\"all_tags\" name=\"all_tags\" title=\"" . __('Which Tags?') . "\" multiple=\"multiple\" size=\"10\" style=\"width : 100%\">";
837 $result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags WHERE owner_uid = ".$_SESSION['uid']."
838 AND LENGTH(tag_name) <= 30 ORDER BY tag_name ASC");
840 while ($row = db_fetch_assoc($result)) {
841 $tmp = htmlspecialchars($row["tag_name"]);
842 print "<option value=\"" . str_replace(" ", "%20", $tmp) . "\">$tmp</option>";
847 print "<div align='right'>";
848 print "<button dojoType=\"dijit.form.Button\" onclick=\"viewfeed(get_all_tags($('all_tags')),
849 get_radio_checked($('tag_mode')));\">" . __('Display entries') . "</button>";
851 print "<button dojoType=\"dijit.form.Button\"
852 onclick=\"return closeInfoBox()\">" .
853 __('Close this window') . "</button>";
856 print "]]></content>";
859 function generatedFeed() {
861 print "<title>".__('View as RSS')."</title>";
862 print "<content><![CDATA[";
864 $this->params = explode(":", $this->param, 3);
865 $feed_id = db_escape_string($this->params[0]);
866 $is_cat = (bool) $this->params[1];
868 $key = get_feed_access_key($this->link, $feed_id, $is_cat);
870 $url_path = htmlspecialchars($this->params[2]) . "&key=" . $key;
872 print "<div class=\"dialogNotice\">" . __("You can view this feed as RSS using the following URL:") . "</div>";
874 print "<div class=\"tagCloudContainer\">";
875 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
878 print "<div align='center'>";
880 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
881 __('Generate new URL')."</button> ";
883 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
884 __('Close this window')."</button>";
887 print "]]></content>";
892 function newVersion() {
894 $version_data = check_for_update($this->link);
895 $version = $version_data['version'];
896 $id = $version_data['version_id'];
898 print "<div class='tagCloudContainer'>";
900 print T_sprintf("New version of Tiny Tiny RSS is available (%s).",
905 $details = "http://tt-rss.org/redmine/versions/show/$id";
906 $download = "http://tt-rss.org/#Download";
908 print "<p align='center'>".__("You can update using built-in updater in the Preferences or by using update.php")."</p>";
910 print "<div style='text-align : center'>";
911 print "<button dojoType=\"dijit.form.Button\"
912 onclick=\"return window.open('$details')\">".__("Details")."</button>";
913 print "<button dojoType=\"dijit.form.Button\"
914 onclick=\"return window.open('$download')\">".__("Download")."</button>";
915 print "<button dojoType=\"dijit.form.Button\"
916 onclick=\"return dijit.byId('newVersionDlg').hide()\">".
917 __('Close this window')."</button>";
922 function customizeCSS() {
923 $value = get_pref($this->link, "USER_STYLESHEET");
925 $value = str_replace("<br/>", "\n", $value);
927 print "<div class=\"dialogNotice\">";
928 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");
931 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
932 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
933 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
935 print "<table width='100%'><tr><td>";
936 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
937 style='font-size : 12px; width : 100%; height: 200px;'
938 placeHolder='body#ttrssMain { font-size : 14px; };'
939 name='value'>$value</textarea>";
940 print "</td></tr></table>";
942 print "<div class='dlgButtons'>";
943 print "<button dojoType=\"dijit.form.Button\"
944 onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
945 print "<button dojoType=\"dijit.form.Button\"
946 onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
951 function addInstance() {
952 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-instances\">";
953 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"add\">";
955 print "<div class=\"dlgSec\">".__("Instance")."</div>";
957 print "<div class=\"dlgSecCont\">";
961 print __("URL:") . " ";
963 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
964 placeHolder=\"".__("Instance URL")."\"
965 regExp='^(http|https)://.*'
966 style=\"font-size : 16px; width: 20em\" name=\"access_url\">";
970 $access_key = sha1(uniqid(rand(), true));
974 print __("Access key:") . " ";
976 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
977 placeHolder=\"".__("Access key")."\" regExp='\w{40}'
978 style=\"width: 20em\" name=\"access_key\" id=\"instance_add_key\"
979 value=\"$access_key\">";
981 print "<p class='insensitive'>" . __("Use one access key for both linked instances.");
985 print "<div class=\"dlgButtons\">
986 <div style='float : left'>
987 <button dojoType=\"dijit.form.Button\"
988 onclick=\"return dijit.byId('instanceAddDlg').regenKey()\">".
989 __('Generate new key')."</button>
991 <button dojoType=\"dijit.form.Button\"
992 onclick=\"return dijit.byId('instanceAddDlg').execute()\">".
993 __('Create link')."</button>
994 <button dojoType=\"dijit.form.Button\"
995 onclick=\"return dijit.byId('instanceAddDlg').hide()\"\">".
996 __('Cancel')."</button></div>";
1001 function dataImport() {
1002 header("Content-Type: text/html"); # required for iframe
1004 print "<div style='text-align : center'>";
1006 if (is_file($_FILES['export_file']['tmp_name'])) {
1008 perform_data_import($this->link, $_FILES['export_file']['tmp_name'], $_SESSION['uid']);
1011 print "<p>" . T_sprintf("Could not upload file. You might need to adjust upload_max_filesize
1012 in PHP.ini (current value = %s)", ini_get("upload_max_filesize")) . " or use CLI import tool.</p>";
1016 print "<button dojoType=\"dijit.form.Button\"
1017 onclick=\"dijit.byId('dataImportDlg').hide()\">".
1018 __('Close this window')."</button>";
1024 function batchSubscribe() {
1025 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1026 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
1028 print "<table width='100%'><tr><td>
1029 ".__("Add one valid RSS feed per line (no feed detection is done)")."
1030 </td><td align='right'>";
1031 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
1032 print __('Place in category:') . " ";
1033 print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
1035 print "</td></tr><tr><td colspan='2'>";
1037 style='font-size : 12px; width : 100%; height: 200px;'
1038 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
1039 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
1041 print "</td></tr><tr><td colspan='2'>";
1043 print "<div id='feedDlg_loginContainer' style='display : none'>
1045 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1046 placeHolder=\"".__("Login")."\"
1047 style=\"width : 10em;\"> ".
1049 placeHolder=\"".__("Password")."\"
1050 dojoType=\"dijit.form.TextBox\" type='password'
1051 style=\"width : 10em;\" name='pass'\">".
1052 " <p class='insensitive'>".__("OAuth will be used automatically for Twitter feeds.")."</p>
1055 print "</td></tr><tr><td colspan='2'>";
1057 print "<div style=\"clear : both\">
1058 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1059 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1060 <label for=\"feedDlg_loginCheck\">".
1061 __('Feeds require authentication.')."</div>";
1065 print "</td></tr></table>";
1067 print "<div class=\"dlgButtons\">
1068 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
1069 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>