]> git.wh0rd.org - tt-rss.git/blobdiff - modules/popup-dialog.php
add article forwarding by email (closes #271)
[tt-rss.git] / modules / popup-dialog.php
index bfc1f248378e2748e83a9b7c5eccba3a3ff936e6..fb19212917235f87cd1332e134c1634bf9a473c4 100644 (file)
@@ -3,6 +3,215 @@
                $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>";
                        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)read_stampfile("update_daemon.stamp");
+                               $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
 
                                print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 
 
                        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)read_stampfile("update_daemon.stamp");
+                               $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
 
                                print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 
 
                        
                        print "<div align='center'>";
 
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return visitOfficialSite()\" 
-                               value=\"".__('Visit official site')."\"> ";
-
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return closeInfoBox()\" 
                                value=\"".__('Close this window')."\">";
 
                        print "<form id='feed_add_form' onsubmit='return false'>";
 
-                       print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
-                       print "<input type=\"hidden\" name=\"subop\" value=\"add\">"; 
-                       print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">"; 
+                       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\" onblur=\"javascript:enableHotkeys()\" 
+                       print "<input size=\"40\"
                                        onkeypress=\"return filterCR(event, subscribeToFeed)\"
-                                       onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
-                                       onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
-                                       onfocus=\"javascript:disableHotkeys()\" name=\"feed_url\"></td></tr>";
+                                       name=\"feed\" id=\"feed_url\">";
 
                        print "<br/>";
 
                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
                                print __('Place in category:') . " ";
-                               print_feed_cat_select($link, "cat_id");                 
+                               print_feed_cat_select($link, "cat");                    
                        }
 
                        print "</div>";
 
-
-/*                     print "<tr><td colspan='2'><div class='insensitive'>";
-
-                       print __("Some feeds require authentication. If you subscribe to such
-                               feed, you will have to enter your login and password in Feed Editor");
-
-                       print "</div></td></tr>"; */
-
-/*                     print "<div id='fadd_login_prompt'><br/>
-                               <a href='javascript:appearBlockElement(\"fadd_login_container\", 
-                               \"fadd_login_prompt\")'>".__('Click here if this feed requires authentication.')."</a></div>"; */
-
                        print "<div id='fadd_login_container' style='display:none'>
        
                                        <div class=\"dlgSec\">".__("Authentication")."</div>
                                        <div class=\"dlgSecCont\">".
 
-                                       __('Login:') . " <input name='auth_login' size=\"20\" 
-                                                       onfocus=\"javascript:disableHotkeys()\" 
-                                                       onfocus=\"javascript:disableHotkeys()\" 
+                                       __('Login:') . " <input name='login' size=\"20\" 
                                                        onkeypress=\"return filterCR(event, subscribeToFeed)\"> ".
                                        __('Password:') . "<input type='password'
-                                                       name='auth_pass' size=\"20\" 
-                                                       onfocus=\"javascript:disableHotkeys()\" 
-                                                       onfocus=\"javascript:disableHotkeys()\" 
+                                                       name='pass' size=\"20\" 
                                                        onkeypress=\"return filterCR(event, subscribeToFeed)\">
                                </div></div>";
 
                        print "</form>";
 
                        print "<div class=\"dlgButtons\">
-                               <input class=\"button\"
-                                       id=\"fadd_submit_btn\" disabled=\"true\"
-                                       type=\"submit\" onclick=\"return subscribeToFeed()\" value=\"".__('Subscribe')."\">
-                               <input class=\"button\"
-                                       type=\"submit\" onclick=\"return closeInfoBox()\" 
-                                       value=\"".__('Cancel')."\"></div>";
+                               <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=\"dlgSecCont\">";
 
-                       print "<input name=\"query\" size=\"20\" type=\"search\"
-                               onkeypress=\"return filterCR(event, search)\"
-                               onchange=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
-                               onkeyup=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
-                               value=\"\">";
+                       print "<input onkeypress=\"return filterCR(event, search)\"
+                               name=\"query\" size=\"20\" type=\"search\"      value=''>";
 
                        print " " . __('match on')." ";
 
                        print "</form>";
 
                        print "<div class=\"dlgButtons\">
-                       <input type=\"submit\" 
-                               class=\"button\" onclick=\"javascript:search()\" 
-                               id=\"search_submit_btn\" disabled=\"true\"
-                               value=\"".__('Search')."\">
-                       <input class=\"button\"
-                               type=\"submit\" onclick=\"javascript:searchCancel()\" 
-                               value=\"".__('Cancel')."\"></div>";
+                       <button onclick=\"javascript:search()\">".__('Search')."</button>
+                       <button onclick=\"javascript:closeInfoBox(true)\">".__('Cancel')."</button>
+                       </div>";
 
                        print "</div>";
 
                        print "&nbsp;</span>";
 
                        print "<input onkeypress=\"return filterCR(event, createFilter)\"
-                                        onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
-                                        onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
-                                        name=\"reg_exp\" size=\"30\" value=\"$reg_exp\">";
+                                name=\"reg_exp\" size=\"30\" value=\"$reg_exp\">";
 
                        print "<span id=\"filter_dlg_date_chk_box\" style=\"display : none\">";
                        print "&nbsp;<input class=\"button\"
 
                        print "<div class=\"dlgButtons\">";
 
-                       print "<input type=\"submit\" 
-                               id=\"infobox_submit\"
-                               class=\"button\" onclick=\"return createFilter()\" 
-                               disabled=\"true\" value=\"".__('Create')."\"> ";
+                       print "<button onclick=\"return createFilter()\">".
+                               __('Create')."</button> ";
 
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"".__('Cancel')."\">";
+                       print "<button onclick=\"return closeInfoBox()\">".__('Cancel').
+                               "</button>";
 
                        print "</div>";
 
 
                        print "<div align='center'>";
 
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"".__('Close')."\">";
+                       print "<button onclick=\"return closeInfoBox()\">".
+                               __('Close this window')."</button>";
 
                        print "</div>";
 
                                        style=\"display:none\"></div>   
                        </td></tr>";
 
-/*                     print "<tr><td>".__('Add existing tag:')."</td>";
-
-                       $result = db_query($link, "SELECT DISTINCT tag_name FROM ttrss_tags 
-                               WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY tag_name");
-
-                       $found_tags = array();
-
-                       array_push($found_tags, '');
-
-                       while ($line = db_fetch_assoc($result)) {
-                               array_push($found_tags, truncate_string($line["tag_name"], 20));
-                       }
-
-                       print "<td align='right'>";
-
-                       print_select("found_tags", '', $found_tags, "onchange=\"javascript:editTagsInsert()\"");
-
-                       print "</td>"; 
-
-                       print "</tr>"; */
-
                        print "</table>";
 
                        print "</form>";
 
                        print "<div align='right'>";
 
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return editTagsSave()\" 
-                               value=\"".__('Save')."\"> ";
-
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"".__('Cancel')."\">";
-
+                       print "<button onclick=\"return editTagsSave()\">".__('Save')."</button> ";
+                       print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";
 
                        print "</div>";
 
                }
 
                if ($id == "printTagCloud") {
-                       print "<div id=\"infoBoxTitle\">".__('Tag cloud')."</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Tag Cloud')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
                        print __("Showing most popular tags ")." (<a 
                        print "</div>";
 
                        print "<div align='center'>";
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"".__('Close this window')."\">";
+                       print "<button onclick=\"return closeInfoBox()\">".
+                               __('Close this window')."</button>";
                        print "</div>";
 
                        print "</div>";
                        return;
                }
 
-/*             if ($id == "offlineDownload") {
-                       print "<div id=\"infoBoxTitle\">".__('Download articles')."</div>";
+               if ($id == "emailArticle") {
+
+                       print "<div id=\"infoBoxTitle\">".__('Forward article by email')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form name='download_ops_form' id='download_ops_form'>";
+                       print "<form id=\"article_email_form\" onsubmit='return false'>";
 
-                       print "<div class=\"dlgSec\">".__("Download")."</div>";
+                       $secretkey = sha1(make_password(10));
 
-                       print "<div class=\"dlgSecCont\">";
+                       $_SESSION['email_secretkey'] = $secretkey;
 
-                       $amount = array(
-                               50  => 50,
-                               100 => 100,
-                               250 => 250,
-                               500 => 500);
+                       print "<input type=\"hidden\" name=\"secretkey\" value=\"$secretkey\">";
+                       print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
+                       print "<input type=\"hidden\" name=\"subop\" value=\"sendEmail\">"; 
 
-                       print_select_hash("amount", 50, $amount);
+                       require_once "lib/MiniTemplator.class.php";
 
-                       print " " . __("latest articles for offline reading.");
+                       $tpl = new MiniTemplator;
+                       $tpl_t = new MiniTemplator;
 
-                       print "<br/>";
+                       $tpl->readTemplateFromFile("templates/email_article_template.txt");
 
-                       print "<input checked='yes' type='checkbox' name='unread_only' id='unread_only'>";
-                       print "<label for='unread_only'>".__('Only include unread articles')."</label>";
+                       $result = db_query($link, "SELECT link, content, title
+                               FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
+                               id = '$param' AND owner_uid = " . $_SESSION["uid"]);
 
-                       print "</div>";
+                       $line = db_fetch_assoc($result);
+
+                       $subject = htmlspecialchars(__("[Forwarded]") . " " . $line["title"]);
+
+                       $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
+
+/*                     $tpl->setVariable('ARTICLE_EXCERPT', 
+                               truncate_string(strip_tags($line["content"]), 200)); */
+
+                       $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
+
+                       $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"]);
+
+                       //print "<input type=\"hidden\" name=\"replyto\" value=\"$user_email\">"; 
+                       //print "<input type=\"hidden\" name=\"fromname\" value=\"$user_name\">"; 
+
+                       $_SESSION['email_replyto'] = $user_email;
+                       $_SESSION['email_fromname'] = $user_name;
+
+                       $tpl->setVariable('USER_NAME', $_SESSION["name"]);
+                       $tpl->setVariable('USER_EMAIL', $user_email);
+                       $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
+
+                       $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\">
-                               <input class=\"button\"
-                                       type=\"submit\" onclick=\"return initiate_offline_download(0, this)\" value=\"".__('Download')."\">
-                               <input class=\"button\"
-                                       type=\"submit\" onclick=\"return closeInfoBox()\" 
-                                       value=\"".__('Cancel')."\"></div>";
+                       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'>