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