summaryrefslogtreecommitdiff
path: root/modules/popup-dialog.php
blob: c37e392e6953cd3e3573718004e6539a982655fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
<?php
	function module_popup_dialog($link) {
		$id = $_REQUEST["id"];
		$param = db_escape_string($_REQUEST["param"]);

		if ($id == "importOpml") {
			print "<div id=\"infoBoxTitle\">".__('OPML Import')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<div class=\"prefFeedCatHolder\">";

			$owner_uid = $_SESSION["uid"];

			db_query($link, "BEGIN");

			/* create Imported feeds category just in case */

			$result = db_query($link, "SELECT id FROM
				ttrss_feed_categories WHERE title = 'Imported feeds' AND
				owner_uid = '$owner_uid' LIMIT 1");

			if (db_num_rows($result) == 0) {
				db_query($link, "INSERT INTO ttrss_feed_categories
					(title,owner_uid) 
						VALUES ('Imported feeds', '$owner_uid')");
			}

			db_query($link, "COMMIT");

			/* Handle OPML import by DOMXML/DOMDocument */

			if (function_exists('domxml_open_file')) {
				print "<ul class='nomarks'>";
				print "<li>".__("Importing using DOMXML.")."</li>";
				require_once "opml_domxml.php";
				opml_import_domxml($link, $owner_uid);
				print "</ul>";
			} else if (PHP_VERSION >= 5) {
				print "<ul class='nomarks'>";
				print "<li>".__("Importing using DOMDocument.")."</li>";
				require_once "opml_domdoc.php";
				opml_import_domdoc($link, $owner_uid);
				print "</ul>";
			} else {
				print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
			}

			print "</div>";

			print "<div align='center'>";

			print "<button onclick=\"return opmlImportDone()\">".
				__('Close this window')."</button>";

			print "</div>";

			print "<script type=\"text/javascript\">";
			print "parent.opmlImportHandler(this)";
			print "</script>";

			print "</div></div>";

			return;
		}

		if ($id == "editPrefProfiles") {

			print "<div id=\"infoBoxTitle\">".__('Settings Profiles')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<div><input id=\"fadd_profile\" 
					onkeypress=\"return filterCR(event, addPrefProfile)\"
					size=\"40\">
					<button onclick=\"javascript:addPrefProfile()\">".
					__('Create profile')."</button></div>";

			print "<p>";

			$result = db_query($link, "SELECT title,id FROM ttrss_settings_profiles
				WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");

			print	__('Select:')." 
				<a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
				<a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>";

			print "<div class=\"prefFeedCatHolder\">";

			print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";

			print "<table width=\"100%\" class=\"prefFeedCatList\" 
				cellspacing=\"0\" id=\"prefFeedCatList\">";

			print "<tr class=\"odd\" id=\"FCATR-0\">";

			print "<td width='5%' align='center'><input 
				onclick='toggleSelectPrefRow(this, \"fcat\");' 
				type=\"checkbox\" id=\"FCCHK-0\"></td>";

			if (!$_SESSION["profile"]) {
				$is_active = __("(active)");
			} else {
				$is_active = "";
			}

			print "<td><span id=\"FCATT-0\">" . 
				__("Default profile") . " $is_active</span></td>";
				
			print "</tr>";

			$lnum = 1;
			
			while ($line = db_fetch_assoc($result)) {
	
				$class = ($lnum % 2) ? "even" : "odd";
	
				$cat_id = $line["id"];
				$this_row_id = "id=\"FCATR-$cat_id\"";
	
				print "<tr class=\"$class\" $this_row_id>";
	
				$edit_title = htmlspecialchars($line["title"]);
	
				print "<td width='5%' align='center'><input 
					onclick='toggleSelectPrefRow(this, \"fcat\");' 
					type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";

				if ($_SESSION["profile"] == $line["id"]) {
					$is_active = __("(active)");
				} else {
					$is_active = "";
				}

				print "<td><span id=\"FCATT-$cat_id\">" . 
					$edit_title . "</span> $is_active</td>";
				
				print "</tr>";
	
				++$lnum;
			}

			print "</table>";
			print "</form>";
			print "</div>";

			print "<div class='dlgButtons'>
				<div style='float : left'>
				<button onclick=\"return removeSelectedPrefProfiles()\">".
				__('Remove')."</button>
				<button onclick=\"return activatePrefProfile()\">".
				__('Activate')."</button>
				</div>";

			print "<button onclick=\"return closeInfoBox()\">".
				__('Close this window')."</button>";

			print "</div></div>";

			return;
		}

		if ($id == "pubUrl") {

			print "<div id=\"infoBoxTitle\">".__('Published Articles')."</div>";
			print "<div class=\"infoBoxContents\">";
	
			$url_path = article_publish_url($link);

			print __("Your Published articles feed URL is:");

			print "<div class=\"tagCloudContainer\">";
			print "<a id='pub_feed_url' href='$url_path' target='_blank'>$url_path</a>";
			print "</div>";

			print "<div align='center'>";

			print "<button onclick=\"return pubRegenKey()\">".
				__('Generate new URL')."</button> ";

			print "<input class=\"button\"
				type=\"submit\" onclick=\"return closeInfoBox()\" 
				value=\"".__('Close this window')."\">";

			print "</div></div>";

			return;
		}

		if ($id == "pubOPMLUrl") {

			print "<div id=\"infoBoxTitle\">".__('Public OPML URL')."</div>";
			print "<div class=\"infoBoxContents\">";
	
			$url_path = opml_publish_url($link);

			print __("Your Public OPML URL is:");

			print "<div class=\"tagCloudContainer\">";
			print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
			print "</div>";

			print "<div align='center'>";

			print "<button onclick=\"return opmlRegenKey()\">".
				__('Generate new URL')."</button> ";

			print "<input class=\"button\"
				type=\"submit\" onclick=\"return closeInfoBox()\" 
				value=\"".__('Close this window')."\">";

			print "</div></div>";

			return;
		}

		if ($id == "explainError") {

			print "<div id=\"infoBoxTitle\">".__('Notice')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<div class=\"errorExplained\">";

			if ($param == 1) {
				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.");

				$stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");

				print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 

			}

			if ($param == 2) {
				$msg = check_for_update($link);

				if (!$msg) {
					print __("You are running the latest version of Tiny Tiny RSS. The fact that you are seeing this dialog is probably a bug.");
				} else {
					print $msg;
				}

			}

			if ($param == 3) {
				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.");

				$stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");

				print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 

			}

			print "</div>";
			
			print "<div align='center'>";

			print "<input class=\"button\"
				type=\"submit\" onclick=\"return closeInfoBox()\" 
				value=\"".__('Close this window')."\">";

			print "</div></div>";

			return;
		}

		if ($id == "quickAddFeed") {

			print "<div id=\"infoBoxTitle\">".__('Subscribe to Feed')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<form id='feed_add_form' onsubmit='return false'>";

			print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
			print "<input type=\"hidden\" name=\"subop\" value=\"addfeed\">"; 
			//print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">"; 

			print "<div class=\"dlgSec\">".__("Feed")."</div>";
			print "<div class=\"dlgSecCont\">";

			print __("URL:") . " ";

			print "<input size=\"40\"
					onkeypress=\"return filterCR(event, subscribeToFeed)\"
					name=\"feed\" id=\"feed_url\">";

			print "<br/>";

			if (get_pref($link, 'ENABLE_FEED_CATS')) {
				print __('Place in category:') . " ";
				print_feed_cat_select($link, "cat");			
			}

			print "</div>";

			print "<div id='fadd_login_container' style='display:none'>
	
					<div class=\"dlgSec\">".__("Authentication")."</div>
					<div class=\"dlgSecCont\">".

					__('Login:') . " <input name='login' size=\"20\" 
							onkeypress=\"return filterCR(event, subscribeToFeed)\"> ".
					__('Password:') . "<input type='password'
							name='pass' size=\"20\" 
							onkeypress=\"return filterCR(event, subscribeToFeed)\">
				</div></div>";


			print "<div style=\"clear : both\">				
				<input type=\"checkbox\" id=\"fadd_login_check\" 
						onclick='checkboxToggleElement(this, \"fadd_login_container\")'>
					<label for=\"fadd_login_check\">".
					__('This feed requires authentication.')."</div>";

			print "</form>";

			print "<div class=\"dlgButtons\">
				<button class=\"button\" id=\"fadd_submit_btn\"
					onclick=\"return subscribeToFeed()\">".__('Subscribe')."</button>
				<button onclick=\"return displayDlg('feedBrowser')\">".__('More feeds')."</button>
				<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button></div>";
			
			return;
		}

		if ($id == "feedBrowser") {

			print "<div id=\"infoBoxTitle\">".__('Feed Browser')."</div>";
			
			print "<div class=\"infoBoxContents\">";

			$browser_search = db_escape_string($_REQUEST["search"]);
			
			print "<form onsubmit='return false;' display='inline' 
				name='feed_browser' id='feed_browser'>";

			print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
			print "<input type=\"hidden\" name=\"subop\" value=\"updateFeedBrowser\">"; 

			print "
				<div style='float : right'>
				<img style='display : none' 
					id='feed_browser_spinner' src='".
					theme_image($link, 'images/indicator_white.gif')."'>
				<input name=\"search\" size=\"20\" type=\"search\"
					onchange=\"javascript:updateFeedBrowser()\" value=\"$browser_search\">
				<button onclick=\"javascript:updateFeedBrowser()\">".__('Search')."</button>
			</div>";

			print " <select name=\"mode\" onchange=\"updateFeedBrowser()\">
				<option value='1'>" . __('Popular feeds') . "</option>
				<option value='2'>" . __('Feed archive') . "</option>
				</select> ";

			print __("limit:");

			print " <select name=\"limit\" onchange='updateFeedBrowser()'>";

			foreach (array(25, 50, 100, 200) as $l) {
				$issel = ($l == $limit) ? "selected" : "";
				print "<option $issel>$l</option>";
			}
			
			print "</select> ";

			print "<p>";

			$owner_uid = $_SESSION["uid"];

/*			print	__('Select:')." 
				<a href=\"javascript:selectPrefRows('fbrowse', true)\">".__('All')."</a>,
					<a href=\"javascript:selectPrefRows('fbrowse', false)\">".__('None')."</a>"; */

			print "<ul class='browseFeedList' id='browseFeedList'>";
			print_feed_browser($link, $search, 25);
			print "</ul>";

			print "<div align='center'>
				<button onclick=\"feedBrowserSubscribe()\">".__('Subscribe')."</button>
				<button style='display : none' id='feed_archive_remove' onclick=\"feedArchiveRemove()\">".__('Remove')."</button>
				<button onclick=\"closeInfoBox()\" >".__('Cancel')."</button></div>";

			print "</div>";
			return;
		}

		if ($id == "search") {

			print "<div id=\"infoBoxTitle\">".__('Search')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<form id='search_form'  onsubmit='return false'>";

			#$active_feed_id = db_escape_string($_REQUEST["param"]);

			$params = split(":", db_escape_string($_REQUEST["param"]));

			$active_feed_id = sprintf("%d", $params[0]);
			$is_cat = $params[1] == "true";

			print "<div class=\"dlgSec\">".__('Look for')."</div>";

			print "<div class=\"dlgSecCont\">";

			print "<input onkeypress=\"return filterCR(event, search)\"
				name=\"query\" size=\"20\" type=\"search\"	value=''>";

			print " " . __('match on')." ";

			$search_fields = array(
				"title" => __("Title"),
				"content" => __("Content"),
				"both" => __("Title or content"));

			print_select_hash("match_on", 3, $search_fields); 


			print "<br/>".__('Limit search to:')." ";
			
			print "<select name=\"search_mode\">
				<option value=\"all_feeds\">".__('All feeds')."</option>";
			
			$feed_title = getFeedTitle($link, $active_feed_id);

			if (!$is_cat) {
				$feed_cat_title = getFeedCatTitle($link, $active_feed_id);
			} else {
				$feed_cat_title = getCategoryTitle($link, $active_feed_id);
			}
			
			if ($active_feed_id && !$is_cat) {				
				print "<option selected value=\"this_feed\">$feed_title</option>";
			} else {
				print "<option disabled>".__('This feed')."</option>";
			}

			if ($is_cat) {
			  	$cat_preselected = "selected";
			}

			if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
				print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
			} else {
				//print "<option disabled>".__('This category')."</option>";
			}

			print "</select>"; 

			print "</div>";

			print "</form>";

			print "<div class=\"dlgButtons\">
			<button onclick=\"javascript:search()\">".__('Search')."</button>
			<button onclick=\"javascript:closeInfoBox(true)\">".__('Cancel')."</button>
			</div>";

			print "</div>";

			return;

		}

		if ($id == "quickAddFilter") {

			$active_feed_id = db_escape_string($_REQUEST["param"]);

			print "<div id=\"infoBoxTitle\">".__('Create Filter')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<form id=\"filter_add_form\" onsubmit='return false'>";

			print "<input type=\"hidden\" name=\"op\" value=\"pref-filters\">";
			print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
			print "<input type=\"hidden\" name=\"subop\" value=\"add\">"; 
		
			$result = db_query($link, "SELECT id,description 
				FROM ttrss_filter_types ORDER BY description");
	
			$filter_types = array();
	
			while ($line = db_fetch_assoc($result)) {
				//array_push($filter_types, $line["description"]);
				$filter_types[$line["id"]] = __($line["description"]);
			}

			print "<div class=\"dlgSec\">".__("Match")."</div>";

			print "<div class=\"dlgSecCont\">";

			print "<span id=\"filter_dlg_date_mod_box\" style=\"display : none\">";
			print __("Date") . " ";

			$filter_params = array(
				"before" => __("before"),
				"after" => __("after"));

			print_select_hash("filter_date_modifier", "before", $filter_params);

			print "&nbsp;</span>";

			print "<input onkeypress=\"return filterCR(event, createFilter)\"
				 name=\"reg_exp\" size=\"30\" value=\"$reg_exp\">";

			print "<span id=\"filter_dlg_date_chk_box\" style=\"display : none\">";
			print "&nbsp;<input class=\"button\"
				type=\"submit\" onclick=\"return filterDlgCheckDate()\" 
				value=\"".__('Check it')."\">";
			print "</span>";

			print "<br/> " . __("on field") . " ";
			print_select_hash("filter_type", 1, $filter_types,
				'onchange="filterDlgCheckType(this)"');

			print "<br/>";

			print __("in") . " ";
			print_feed_select($link, "feed_id", $active_feed_id);

			print "</div>";

			print "<div class=\"dlgSec\">".__("Perform Action")."</div>";

			print "<div class=\"dlgSecCont\">";

			print "<select name=\"action_id\"
				onchange=\"filterDlgCheckAction(this)\">";
	
			$result = db_query($link, "SELECT id,description FROM ttrss_filter_actions 
				ORDER BY name");

			while ($line = db_fetch_assoc($result)) {
				printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
			}
	
			print "</select>";

			print "<span id=\"filter_dlg_param_box\" style=\"display : none\">";
			print " " . __("with parameters:") . " ";
			print "<input size=\"20\"
					onkeypress=\"return filterCR(event, createFilter)\"
					name=\"action_param\">";

			print_label_select($link, "action_param_label", $action_param);

			print "</span>";

			print "&nbsp;"; // tiny layout hack

			print "</div>";

			print "<div class=\"dlgSec\">".__("Options")."</div>";
			print "<div class=\"dlgSecCont\">";

			print "<div style=\"line-height : 100%\">";

			print "<input type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
					<label for=\"enabled\">".__('Enabled')."</label><br/>";

			print "<input type=\"checkbox\" name=\"inverse\" id=\"inverse\">
				<label for=\"inverse\">".__('Inverse match')."</label>";

			print "</div>";
			print "</div>";

			print "</form>";

			print "<div class=\"dlgButtons\">";

			print "<button onclick=\"return createFilter()\">".
				__('Create')."</button> ";

			print "<button onclick=\"return closeInfoBox()\">".__('Cancel').
				"</button>";

			print "</div>";

//			print "</td></tr></table>"; 

			return;
		}

		if ($id == "feedUpdateErrors") {

			print "<div id=\"infoBoxTitle\">".__('Update Errors')."</div>";
			print "<div class=\"infoBoxContents\">";

			print __("These feeds have not been updated because of errors:");

			$result = db_query($link, "SELECT id,title,feed_url,last_error
			FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);

			print "<ul class='feedErrorsList'>";

			while ($line = db_fetch_assoc($result)) {
				print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " . 
					"<em>" . $line["last_error"] . "</em>";
			}

			print "</ul>";

			print "<div align='center'>";

			print "<button onclick=\"return closeInfoBox()\">".
				__('Close this window')."</button>";

			print "</div>";

			return;
		}

		if ($id == "editArticleTags") {

			print "<div id=\"infoBoxTitle\">".__('Edit Tags')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<form id=\"tag_edit_form\" onsubmit='return false'>";

			print __("Tags for this article (separated by commas):")."<br>";

			$tags = get_article_tags($link, $param);

			$tags_str = join(", ", $tags);

			print "<table width='100%'>";

			print "<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>";

			print "<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str' 
				name='tags_str'>$tags_str</textarea>
			<div class=\"autocomplete\" id=\"tags_choices\" 
					style=\"display:none\"></div>	
			</td></tr>";

			print "</table>";

			print "</form>";

			print "<div align='right'>";

			print "<button onclick=\"return editTagsSave()\">".__('Save')."</button> ";
			print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";

			print "</div>";

			return;
		}

		if ($id == "printTagCloud") {
			print "<div id=\"infoBoxTitle\">".__('Tag Cloud')."</div>";
			print "<div class=\"infoBoxContents\">";

			print __("Showing most popular tags ")." (<a 
			href='javascript:toggleTags(true)'>".__('more tags')."</a>):<br/>"; 

			print "<div class=\"tagCloudContainer\">";

			printTagCloud($link);

			print "</div>";

			print "<div align='center'>";
			print "<button onclick=\"return closeInfoBox()\">".
				__('Close this window')."</button>";
			print "</div>";

			print "</div>";

			return;
		}

		if ($id == "emailArticle") {

			print "<div id=\"infoBoxTitle\">".__('Forward article by email')."</div>";
			print "<div class=\"infoBoxContents\">";

			print "<form id=\"article_email_form\" onsubmit='return false'>";

			$secretkey = sha1(make_password(10));

			$_SESSION['email_secretkey'] = $secretkey;

			print "<input type=\"hidden\" name=\"secretkey\" value=\"$secretkey\">";
			print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
			print "<input type=\"hidden\" name=\"subop\" value=\"sendEmail\">"; 

			$result = db_query($link, "SELECT email FROM ttrss_users WHERE
				id = " . $_SESSION["uid"]);

			$user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
			$user_name = htmlspecialchars($_SESSION["name"]);

			$_SESSION['email_replyto'] = $user_email;
			$_SESSION['email_fromname'] = $user_name;

			require_once "lib/MiniTemplator.class.php";

			$tpl = new MiniTemplator;
			$tpl_t = new MiniTemplator;

			$tpl->readTemplateFromFile("templates/email_article_template.txt");

			$tpl->setVariable('USER_NAME', $_SESSION["name"]);
			$tpl->setVariable('USER_EMAIL', $user_email);
			$tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);

//			$tpl->addBlock('header');

			$result = db_query($link, "SELECT link, content, title
				FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
				id IN ($param) AND owner_uid = " . $_SESSION["uid"]);

			if (db_num_rows($result) > 1) {
				$subject = __("[Forwarded]") . " " . __("Multiple articles");
			}

			while ($line = db_fetch_assoc($result)) {

				if (!$subject)
					$subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);

				$tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
				$tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));

				$tpl->addBlock('article');
			}

			$tpl->addBlock('email');

			$content = "";
			$tpl->generateOutputToString($content);

			print "<table width='100%'><tr><td>";

			print __('From:');

			print "</td><td>";

			print "<input size=\"40\" disabled
					onkeypress=\"return filterCR(event, false)\"
					value=\"$user_name <$user_email>\">";

			print "</td></tr><tr><td>";

			print __('To:');

			print "</td><td>";

			print "<input size=\"40\"
					onkeypress=\"return filterCR(event, false)\"
					name=\"destination\" id=\"destination\">";

			print "<div class=\"autocomplete\" id=\"destination_choices\" 
					style=\"display:none\"></div>";	

			print "</td></tr><tr><td>";

			print __('Subject:');

			print "</td><td>";

			print "<input size=\"60\" class=\"iedit\"
					onkeypress=\"return filterCR(event, false)\"
					name=\"subject\" value=\"$subject\" id=\"subject\">";

			print "</td></tr></table>";

			print "<textarea rows='10' class='iedit' style='font-size : small'
				name='content'>$content</textarea>";

			print "</form>";

			print "<div class='dlgButtons'>";

			print "<button onclick=\"return emailArticleDo()\">".__('Send e-mail')."</button> ";
			print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";

			print "</div>";

			return;
		}

		print "<div id='infoBoxTitle'>Internal Error</div>
			<div id='infoBoxContents'>
			<p>Unknown dialog <b>$id</b></p>
			</div></div>";
	
	}
?>