]> git.wh0rd.org - tt-rss.git/blob - classes/dlg.php
quickAddFeed: remove oauth notice, mention you can paste site URL
[tt-rss.git] / classes / dlg.php
1 <?php
2 class Dlg extends Handler_Protected {
3 private $param;
4
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"]);
9 print "<dlg>";
10 return true;
11 }
12 return false;
13 }
14
15 function after() {
16 print "</dlg>";
17 }
18
19 function exportData() {
20
21 print "<p style='text-align : center' id='export_status_message'>You need to prepare exported data first by clicking the button below.</p>";
22
23 print "<div align='center'>";
24 print "<button dojoType=\"dijit.form.Button\"
25 onclick=\"dijit.byId('dataExportDlg').prepare()\">".
26 __('Prepare data')."</button>";
27
28 print "<button dojoType=\"dijit.form.Button\"
29 onclick=\"dijit.byId('dataExportDlg').hide()\">".
30 __('Close this window')."</button>";
31
32 print "</div>";
33
34
35 }
36
37 function importOpml() {
38 header("Content-Type: text/html"); # required for iframe
39
40 print __("If you have imported labels and/or filters, you might need to reload preferences to see your new data.") . "</p>";
41
42 print "<div class=\"prefFeedOPMLHolder\">";
43 $owner_uid = $_SESSION["uid"];
44
45 db_query($this->link, "BEGIN");
46
47 print "<ul class='nomarks'>";
48
49 $opml = new Opml($this->link, $_REQUEST);
50
51 $opml->opml_import($_SESSION["uid"]);
52
53 print "</ul>";
54 print "</div>";
55
56 print "<div align='center'>";
57 print "<button dojoType=\"dijit.form.Button\"
58 onclick=\"dijit.byId('opmlImportDlg').execute()\">".
59 __('Close this window')."</button>";
60 print "</div>";
61
62 print "</div>";
63
64 //return;
65 }
66
67 function editPrefProfiles() {
68 print "<div dojoType=\"dijit.Toolbar\">";
69
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>";
77 print "</div></div>";
78
79 print "<div style=\"float : right\">";
80
81 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
82 required=\"1\">
83 <button dojoType=\"dijit.form.Button\"
84 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
85 __('Create profile')."</button></div>";
86
87 print "</div>";
88
89 $result = db_query($this->link, "SELECT title,id FROM ttrss_settings_profiles
90 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
91
92 print "<div class=\"prefFeedCatHolder\">";
93
94 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
95
96 print "<table width=\"100%\" class=\"prefFeedProfileList\"
97 cellspacing=\"0\" id=\"prefFeedProfileList\">";
98
99 print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
100
101 print "<td width='5%' align='center'><input
102 id='FCATC-0'
103 onclick='toggleSelectRow2(this);'
104 dojoType=\"dijit.form.CheckBox\"
105 type=\"checkbox\"></td>";
106
107 if (!$_SESSION["profile"]) {
108 $is_active = __("(active)");
109 } else {
110 $is_active = "";
111 }
112
113 print "<td><span>" .
114 __("Default profile") . " $is_active</span></td>";
115
116 print "</tr>";
117
118 $lnum = 1;
119
120 while ($line = db_fetch_assoc($result)) {
121
122 $class = ($lnum % 2) ? "even" : "odd";
123
124 $profile_id = $line["id"];
125 $this_row_id = "id=\"FCATR-$profile_id\"";
126
127 print "<tr class=\"placeholder\" $this_row_id>";
128
129 $edit_title = htmlspecialchars($line["title"]);
130
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>";
136
137 if ($_SESSION["profile"] == $line["id"]) {
138 $is_active = __("(active)");
139 } else {
140 $is_active = "";
141 }
142
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\">
147 var elem = this;
148 dojo.xhrPost({
149 url: 'backend.php',
150 content: {op: 'rpc', method: 'saveprofile',
151 value: this.value,
152 id: this.srcNodeRef.getAttribute('profile-id')},
153 load: function(response) {
154 elem.attr('value', response);
155 }
156 });
157 </script>
158 </span> $is_active</td>";
159
160 print "</tr>";
161
162 ++$lnum;
163 }
164
165 print "</table>";
166 print "</form>";
167 print "</div>";
168
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>
175 </div>";
176
177 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
178 __('Close this window')."</button>";
179 print "</div>";
180
181 }
182
183 function pubOPMLUrl() {
184 print "<title>".__('Public OPML URL')."</title>";
185 print "<content><![CDATA[";
186
187 $url_path = opml_publish_url($this->link);
188
189 print __("Your Public OPML URL is:");
190
191 print "<div class=\"tagCloudContainer\">";
192 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
193 print "</div>";
194
195 print "<div align='center'>";
196
197 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
198 __('Generate new URL')."</button> ";
199
200 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
201 __('Close this window')."</button>";
202
203 print "</div>";
204 print "]]></content>";
205
206 //return;
207 }
208
209 function explainError() {
210 print "<title>".__('Notice')."</title>";
211 print "<content><![CDATA[";
212
213 print "<div class=\"errorExplained\">";
214
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.");
217
218 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
219
220 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
221
222 }
223
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.");
226
227 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
228
229 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
230
231 }
232
233 print "</div>";
234
235 print "<div align='center'>";
236
237 print "<button onclick=\"return closeInfoBox()\">".
238 __('Close this window')."</button>";
239
240 print "</div>";
241 print "]]></content>";
242
243 //return;
244 }
245
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\">";
249
250 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
251 print "<div class=\"dlgSecCont\">";
252
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>";
257
258 print "<input style=\"font-size : 16px; width : 20em;\"
259 placeHolder=\"".__("Feed or site URL")."\"
260 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
261
262 print "<hr/>";
263
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"');
267 }
268
269 print "</div>";
270
271 print '<div id="feedDlg_feedsContainer" style="display : none">
272
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);
279 </script>
280 </select>'.
281 '</div></div>';
282
283 print "<div id='feedDlg_loginContainer' style='display : none'>
284
285 <div class=\"dlgSec\">".__("Authentication")."</div>
286 <div class=\"dlgSecCont\">".
287
288 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
289 placeHolder=\"".__("Login")."\"
290 style=\"width : 10em;\"> ".
291 " <input
292 placeHolder=\"".__("Password")."\"
293 dojoType=\"dijit.form.TextBox\" type='password'
294 style=\"width : 10em;\" name='pass'\">
295 </div></div>";
296
297
298 print "<div style=\"clear : both\">
299 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
300 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
301 <label for=\"feedDlg_loginCheck\">".
302 __('This feed requires authentication.')."</div>";
303
304 print "</form>";
305
306 print "<div class=\"dlgButtons\">
307 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
308
309 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
310 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
311 }
312
313 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
314 </div>";
315
316 //return;
317 }
318
319 function feedBrowser() {
320 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
321
322 $browser_search = db_escape_string($_REQUEST["search"]);
323
324 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
325 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
326
327 print "<div dojoType=\"dijit.Toolbar\">
328 <div style='float : right'>
329 <img style='display : none'
330 id='feed_browser_spinner' src='".
331 theme_image($this->link, 'images/indicator_white.gif')."'>
332 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
333 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
334 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
335 </div>";
336
337 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
338 <option value='1'>" . __('Popular feeds') . "</option>
339 <option value='2'>" . __('Feed archive') . "</option>
340 </select> ";
341
342 print __("limit:");
343
344 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
345
346 foreach (array(25, 50, 100, 200) as $l) {
347 $issel = ($l == $limit) ? "selected=\"1\"" : "";
348 print "<option $issel value=\"$l\">$l</option>";
349 }
350
351 print "</select> ";
352
353 print "</div>";
354
355 $owner_uid = $_SESSION["uid"];
356
357 print "<ul class='browseFeedList' id='browseFeedList'>";
358 print make_feed_browser($this->link, $search, 25);
359 print "</ul>";
360
361 print "<div align='center'>
362 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
363 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
364 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
365
366 }
367
368 function search() {
369 $this->params = explode(":", db_escape_string($_REQUEST["param"]), 2);
370
371 $active_feed_id = sprintf("%d", $this->params[0]);
372 $is_cat = $this->params[1] != "false";
373
374 print "<div class=\"dlgSec\">".__('Look for')."</div>";
375
376 print "<div class=\"dlgSecCont\">";
377
378 if (!SPHINX_ENABLED) {
379
380 print "<input dojoType=\"dijit.form.ValidationTextBox\"
381 style=\"font-size : 16px; width : 12em;\"
382 required=\"1\" name=\"query\" type=\"search\" value=''>";
383
384 print " " . __('match on')." ";
385
386 $search_fields = array(
387 "title" => __("Title"),
388 "content" => __("Content"),
389 "both" => __("Title or content"));
390
391 print_select_hash("match_on", 3, $search_fields,
392 'dojoType="dijit.form.Select"');
393 } else {
394 print "<input dojoType=\"dijit.form.ValidationTextBox\"
395 style=\"font-size : 16px; width : 20em;\"
396 required=\"1\" name=\"query\" type=\"search\" value=''>";
397 }
398
399
400 print "<hr/>".__('Limit search to:')." ";
401
402 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
403 <option value=\"all_feeds\">".__('All feeds')."</option>";
404
405 $feed_title = getFeedTitle($this->link, $active_feed_id);
406
407 if (!$is_cat) {
408 $feed_cat_title = getFeedCatTitle($this->link, $active_feed_id);
409 } else {
410 $feed_cat_title = getCategoryTitle($this->link, $active_feed_id);
411 }
412
413 if ($active_feed_id && !$is_cat) {
414 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
415 } else {
416 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
417 }
418
419 if ($is_cat) {
420 $cat_preselected = "selected=\"1\"";
421 }
422
423 if (get_pref($this->link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
424 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
425 } else {
426 //print "<option disabled>".__('This category')."</option>";
427 }
428
429 print "</select>";
430
431 print "</div>";
432
433 print "<div class=\"dlgButtons\">";
434
435 if (!SPHINX_ENABLED) {
436 print "<div style=\"float : left\">
437 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/redmine/wiki/tt-rss/SearchSyntax\">Search syntax</a>
438 </div>";
439 }
440
441 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
442 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
443 </div>";
444 }
445
446 function editArticleTags() {
447
448 print __("Tags for this article (separated by commas):")."<br>";
449
450 $tags = get_article_tags($this->link, $this->param);
451
452 $tags_str = join(", ", $tags);
453
454 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$this->param\">";
455 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
456 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
457
458 print "<table width='100%'><tr><td>";
459
460 print "<textarea dojoType=\"dijit.form.SimpleTextarea\" rows='4'
461 style='font-size : 12px; width : 100%' id=\"tags_str\"
462 name='tags_str'>$tags_str</textarea>
463 <div class=\"autocomplete\" id=\"tags_choices\"
464 style=\"display:none\"></div>";
465
466 print "</td></tr></table>";
467
468 print "<div class='dlgButtons'>";
469
470 print "<button dojoType=\"dijit.form.Button\"
471 onclick=\"dijit.byId('editTagsDlg').execute()\">".__('Save')."</button> ";
472 print "<button dojoType=\"dijit.form.Button\"
473 onclick=\"dijit.byId('editTagsDlg').hide()\">".__('Cancel')."</button>";
474 print "</div>";
475
476 }
477
478 function printTagCloud() {
479 print "<title>".__('Tag Cloud')."</title>";
480 print "<content><![CDATA[";
481
482 print "<div class=\"tagCloudContainer\">";
483
484 // from here: http://www.roscripts.com/Create_tag_cloud-71.html
485
486 $query = "SELECT tag_name, COUNT(post_int_id) AS count
487 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
488 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
489
490 $result = db_query($this->link, $query);
491
492 $tags = array();
493
494 while ($line = db_fetch_assoc($result)) {
495 $tags[$line["tag_name"]] = $line["count"];
496 }
497
498 if( count($tags) == 0 ){ return; }
499
500 ksort($tags);
501
502 $max_size = 32; // max font size in pixels
503 $min_size = 11; // min font size in pixels
504
505 // largest and smallest array values
506 $max_qty = max(array_values($tags));
507 $min_qty = min(array_values($tags));
508
509 // find the range of values
510 $spread = $max_qty - $min_qty;
511 if ($spread == 0) { // we don't want to divide by zero
512 $spread = 1;
513 }
514
515 // set the font-size increment
516 $step = ($max_size - $min_size) / ($spread);
517
518 // loop through the tag array
519 foreach ($tags as $key => $value) {
520 // calculate font-size
521 // find the $value in excess of $min_qty
522 // multiply by the font-size increment ($size)
523 // and add the $min_size set above
524 $size = round($min_size + (($value - $min_qty) * $step));
525
526 $key_escaped = str_replace("'", "\\'", $key);
527
528 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
529 $size . "px\" title=\"$value articles tagged with " .
530 $key . '">' . $key . '</a> ';
531 }
532
533
534
535 print "</div>";
536
537 print "<div align='center'>";
538 print "<button dojoType=\"dijit.form.Button\"
539 onclick=\"return closeInfoBox()\">".
540 __('Close this window')."</button>";
541 print "</div>";
542
543 print "]]></content>";
544 }
545
546 function printTagSelect() {
547
548 print "<title>" . __('Select item(s) by tags') . "</title>";
549 print "<content><![CDATA[";
550
551 print __("Match:"). "&nbsp;" .
552 "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\">&nbsp;Any&nbsp;";
553 print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" value=\"all\" name=\"tag_mode\">&nbsp;All&nbsp;";
554 print "&nbsp;tags.";
555
556 print "<select id=\"all_tags\" name=\"all_tags\" title=\"" . __('Which Tags?') . "\" multiple=\"multiple\" size=\"10\" style=\"width : 100%\">";
557 $result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags WHERE owner_uid = ".$_SESSION['uid']."
558 AND LENGTH(tag_name) <= 30 ORDER BY tag_name ASC");
559
560 while ($row = db_fetch_assoc($result)) {
561 $tmp = htmlspecialchars($row["tag_name"]);
562 print "<option value=\"" . str_replace(" ", "%20", $tmp) . "\">$tmp</option>";
563 }
564
565 print "</select>";
566
567 print "<div align='right'>";
568 print "<button dojoType=\"dijit.form.Button\" onclick=\"viewfeed(get_all_tags($('all_tags')),
569 get_radio_checked($('tag_mode')));\">" . __('Display entries') . "</button>";
570 print "&nbsp;";
571 print "<button dojoType=\"dijit.form.Button\"
572 onclick=\"return closeInfoBox()\">" .
573 __('Close this window') . "</button>";
574 print "</div>";
575
576 print "]]></content>";
577 }
578
579 function generatedFeed() {
580
581 print "<title>".__('View as RSS')."</title>";
582 print "<content><![CDATA[";
583
584 $this->params = explode(":", $this->param, 3);
585 $feed_id = db_escape_string($this->params[0]);
586 $is_cat = (bool) $this->params[1];
587
588 $key = get_feed_access_key($this->link, $feed_id, $is_cat);
589
590 $url_path = htmlspecialchars($this->params[2]) . "&key=" . $key;
591
592 print "<div class=\"dialogNotice\">" . __("You can view this feed as RSS using the following URL:") . "</div>";
593
594 print "<div class=\"tagCloudContainer\">";
595 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
596 print "</div>";
597
598 print "<div align='center'>";
599
600 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
601 __('Generate new URL')."</button> ";
602
603 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
604 __('Close this window')."</button>";
605
606 print "</div>";
607 print "]]></content>";
608
609 //return;
610 }
611
612 function newVersion() {
613
614 $version_data = check_for_update($this->link);
615 $version = $version_data['version'];
616 $id = $version_data['version_id'];
617
618 print "<div class='tagCloudContainer'>";
619
620 print T_sprintf("New version of Tiny Tiny RSS is available (%s).",
621 "<b>$version</b>");
622
623 print "</div>";
624
625 $details = "http://tt-rss.org/redmine/versions/show/$id";
626 $download = "http://tt-rss.org/#Download";
627
628 print "<p align='center'>".__("You can update using built-in updater in the Preferences or by using update.php")."</p>";
629
630 print "<div style='text-align : center'>";
631 print "<button dojoType=\"dijit.form.Button\"
632 onclick=\"return window.open('$details')\">".__("Details")."</button>";
633 print "<button dojoType=\"dijit.form.Button\"
634 onclick=\"return window.open('$download')\">".__("Download")."</button>";
635 print "<button dojoType=\"dijit.form.Button\"
636 onclick=\"return dijit.byId('newVersionDlg').hide()\">".
637 __('Close this window')."</button>";
638 print "</div>";
639
640 }
641
642 function customizeCSS() {
643 $value = get_pref($this->link, "USER_STYLESHEET");
644
645 $value = str_replace("<br/>", "\n", $value);
646
647 print "<div class=\"dialogNotice\">";
648 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");
649 print "</div>";
650
651 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
652 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
653 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
654
655 print "<table width='100%'><tr><td>";
656 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
657 style='font-size : 12px; width : 100%; height: 200px;'
658 placeHolder='body#ttrssMain { font-size : 14px; };'
659 name='value'>$value</textarea>";
660 print "</td></tr></table>";
661
662 print "<div class='dlgButtons'>";
663 print "<button dojoType=\"dijit.form.Button\"
664 onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
665 print "<button dojoType=\"dijit.form.Button\"
666 onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
667 print "</div>";
668
669 }
670
671 function addInstance() {
672 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-instances\">";
673 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"add\">";
674
675 print "<div class=\"dlgSec\">".__("Instance")."</div>";
676
677 print "<div class=\"dlgSecCont\">";
678
679 /* URL */
680
681 print __("URL:") . " ";
682
683 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
684 placeHolder=\"".__("Instance URL")."\"
685 regExp='^(http|https)://.*'
686 style=\"font-size : 16px; width: 20em\" name=\"access_url\">";
687
688 print "<hr/>";
689
690 $access_key = sha1(uniqid(rand(), true));
691
692 /* Access key */
693
694 print __("Access key:") . " ";
695
696 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
697 placeHolder=\"".__("Access key")."\" regExp='\w{40}'
698 style=\"width: 20em\" name=\"access_key\" id=\"instance_add_key\"
699 value=\"$access_key\">";
700
701 print "<p class='insensitive'>" . __("Use one access key for both linked instances.");
702
703 print "</div>";
704
705 print "<div class=\"dlgButtons\">
706 <div style='float : left'>
707 <button dojoType=\"dijit.form.Button\"
708 onclick=\"return dijit.byId('instanceAddDlg').regenKey()\">".
709 __('Generate new key')."</button>
710 </div>
711 <button dojoType=\"dijit.form.Button\"
712 onclick=\"return dijit.byId('instanceAddDlg').execute()\">".
713 __('Create link')."</button>
714 <button dojoType=\"dijit.form.Button\"
715 onclick=\"return dijit.byId('instanceAddDlg').hide()\"\">".
716 __('Cancel')."</button></div>";
717
718 return;
719 }
720
721 function dataImport() {
722 header("Content-Type: text/html"); # required for iframe
723
724 print "<div style='text-align : center'>";
725
726 if (is_file($_FILES['export_file']['tmp_name'])) {
727
728 perform_data_import($this->link, $_FILES['export_file']['tmp_name'], $_SESSION['uid']);
729
730 } else {
731 print "<p>" . T_sprintf("Could not upload file. You might need to adjust upload_max_filesize
732 in PHP.ini (current value = %s)", ini_get("upload_max_filesize")) . " or use CLI import tool.</p>";
733
734 }
735
736 print "<button dojoType=\"dijit.form.Button\"
737 onclick=\"dijit.byId('dataImportDlg').hide()\">".
738 __('Close this window')."</button>";
739
740 print "</div>";
741
742 }
743
744 function batchSubscribe() {
745 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
746 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
747
748 print "<table width='100%'><tr><td>
749 ".__("Add one valid RSS feed per line (no feed detection is done)")."
750 </td><td align='right'>";
751 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
752 print __('Place in category:') . " ";
753 print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
754 }
755 print "</td></tr><tr><td colspan='2'>";
756 print "<textarea
757 style='font-size : 12px; width : 100%; height: 200px;'
758 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
759 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
760
761 print "</td></tr><tr><td colspan='2'>";
762
763 print "<div id='feedDlg_loginContainer' style='display : none'>
764 " .
765 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
766 placeHolder=\"".__("Login")."\"
767 style=\"width : 10em;\"> ".
768 " <input
769 placeHolder=\"".__("Password")."\"
770 dojoType=\"dijit.form.TextBox\" type='password'
771 style=\"width : 10em;\" name='pass'\">".
772 "</div>";
773
774 print "</td></tr><tr><td colspan='2'>";
775
776 print "<div style=\"clear : both\">
777 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
778 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
779 <label for=\"feedDlg_loginCheck\">".
780 __('Feeds require authentication.')."</div>";
781
782 print "</form>";
783
784 print "</td></tr></table>";
785
786 print "<div class=\"dlgButtons\">
787 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
788 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
789 </div>";
790 }
791
792 }
793 ?>