String update
[squirrelmail.git] / plugins / bug_report / bug_report.php
CommitLineData
15e6162e 1<?php
2
3/**
4 * bug_report.php
5 *
6 * This generates the bug report data, gives information about where
7 * it will be sent to and what people will do with it, and provides
8 * a button to show the bug report mail message in order to actually
9 * send it.
10 *
6c84ba1e 11 * Copyright (c) 1999-2005 The SquirrelMail development team
15e6162e 12 * Licensed under the GNU GPL. For full terms see the file COPYING.
13 *
598294a7 14 * This is a standard SquirrelMail 1.2 API for plugins.
15e6162e 15 *
2a880038 16 * @version $Id$
ea5f4b8e 17 * @package plugins
18 * @subpackage bug_report
15e6162e 19 */
d79e01f5 20
ea5f4b8e 21/**
22 * @ignore
23 */
8d6a115b 24define('SM_PATH','../../');
d79e01f5 25
04f6008a 26require_once(SM_PATH . 'include/validate.php');
27
42a73e49 28// loading form functions
29require_once(SM_PATH . 'functions/forms.php');
30
0b0e96c5 31displayPageHeader($color, 'None');
d79e01f5 32
595848f9 33include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
c64dbf73 34include_once(SM_PATH . 'plugins/bug_report/functions.php');
595848f9 35global $body;
d3190325 36
07aeb697 37$body_top = "I subscribe to the squirrelmail-users mailing list.\n" .
ddc94fcb 38 " [ ] True - No need to CC me when replying\n" .
39 " [ ] False - Please CC me when replying\n" .
40 "\n" .
41 "This bug occurs when I ...\n" .
42 " ... view a particular message\n" .
43 " ... use a specific plugin/function\n" .
44 " ... try to do/view/use ....\n" .
45 "\n\n\n" .
46 "The description of the bug:\n\n\n" .
47 "I can reproduce the bug by:\n\n\n" .
48 "(Optional) I got bored and found the bug occurs in:\n\n\n" .
49 "(Optional) I got really bored and here's a fix:\n\n\n" .
50 "----------------------------------------------\n\n";
d79e01f5 51
595848f9 52$body = htmlspecialchars($body_top) . $body;
15e6162e 53
54?>
ddc94fcb 55 <br />
56 <table width="95%" align="center" border="0" cellpadding="2" cellspacing="0"><tr>
57 <?php echo html_tag('td','<b>'._("Submit a Bug Report").'</b>','center',$color[0]); ?>
58 </tr></table>
876efbe1 59
3ee2d2ae 60<?php
91e0dccc 61echo $warning_html;
876efbe1 62
62e69dd9 63echo '<p><a href="show_system_specs.php" target="_blank">';
64echo _("Show System Specifications");
65echo "</a></p>\n\n";
ddc94fcb 66echo '<p><big>';
67echo _("Before you send your bug report, please make sure to check this checklist for any common problems.");
68echo "</big></p>\n";
876efbe1 69
ddc94fcb 70echo '<ul>';
71echo '<li>';
72printf(_("Make sure that you are running the most recent copy of %s. You are currently using version %s."), '<a href="http://www.squirrelmail.org/" target="_blank">SquirrelMail</a>', $version);
73echo "</li>\n";
876efbe1 74
ddc94fcb 75echo '<li>';
76printf(_("Check to see if your bug is already listed in the %sBug List%s on SourceForge. If it is, we already know about it and are trying to fix it."), '<a href="http://sourceforge.net/bugs/?group_id=311" target="_blank">', '</a>');
77echo "</li>\n";
91e0dccc 78
ddc94fcb 79echo '<li>';
80echo _("Try to make sure that you can repeat it. If the bug happens sporatically, try to document what you did when it happened. If it always occurs when you view a specific message, keep that message around so maybe we can see it.");
81echo "</li>\n";
82
83echo '<li>';
84printf(_("If there were warnings displayed above, try to resolve them yourself. Read the guides in the %s directory where SquirrelMail was installed."), '<tt>doc/</tt>');
85echo "</li>\n";
86echo "</ul>\n";
87
88echo '<p>';
89echo _("Pressing the button below will start a mail message to the developers of SquirrelMail that will contain a lot of information about your system, your browser, how SquirrelMail is set up, and your IMAP server. It will also prompt you for information. Just fill out the sections at the top. If you like, you can scroll down in the message to see what else is being sent.");
90echo "</p>\n";
91
92echo '<p>';
93echo _("Please make sure to fill out as much information as you possibly can to give everyone a good chance of finding and removing the bug. Submitting your bug like this will not have it automatically added to the bug list on SourceForge, but someone who gets your message may add it for you.");
94echo "</p>\n";
876efbe1 95?>
ddc94fcb 96 <form action="../../src/compose.php" method=post>
97 <table align="center" border="0">
98 <tr>
99 <td>
100 <?php echo _("This bug involves"); ?>: <select name="send_to">
101 <option value="squirrelmail-users@lists.sourceforge.net"><?php
102 echo _("the general program"); ?></option>
103 <option value="squirrelmail-plugins@lists.sourceforge.net"><?php
104 echo _("a specific plugin"); ?></option>
105 </select>
106 </td>
107 </tr>
108 <tr>
109 <td align="center">
110<?php
111echo addHidden("send_to_cc","");
112echo addHidden("send_to_bcc","");
113echo addHidden("subject","Bug Report");
114echo addHidden("body",$body);
115echo addSubmit(_("Start Bug Report Form"));
116?>
117 </td>
118 </tr>
119 </table>
120 </form>
121 <br />
122<?php
123// special forms that allow searching for bugs in mailing list and bugtracker
124echo html_tag('table',
125 html_tag('tr',
126 html_tag('th', _("Search Mailing List Archives"), 'center', $color[0])
127 ) .
128 html_tag('tr',
129 html_tag('td', add_gmane_form())
130 ) .
131 html_tag('tr',
132 html_tag('td', '&nbsp;<br />')
133 ) .
134 html_tag('tr',
135 html_tag('th', _("Search SourceForge Bugtracker"), 'center', $color[0])
136 ) .
137 html_tag('tr',
138 html_tag('td', add_sf_bug_form())
139 ), 'center', '', 'width="95%"');
140?>
141 </body>
62e69dd9 142</html>