diff options
author | terry%mozilla.org <> | 2000-01-25 15:53:26 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-25 15:53:26 +0000 |
commit | 0230a614c04af4633fd9cb3d9216b720d474a4b7 (patch) | |
tree | 69468f51e04ac6caccd0d1a19229d6bea1abb65b /query.cgi | |
parent | 5fc31978bdcfe2790ee48d930d1c2adafe66b204 (diff) | |
download | bugs-0230a614c04af4633fd9cb3d9216b720d474a4b7.tar bugs-0230a614c04af4633fd9cb3d9216b720d474a4b7.tar.gz bugs-0230a614c04af4633fd9cb3d9216b720d474a4b7.tar.bz2 bugs-0230a614c04af4633fd9cb3d9216b720d474a4b7.tar.xz bugs-0230a614c04af4633fd9cb3d9216b720d474a4b7.zip |
Reworked preferences UI. Added ability to turn off "My bugs" link at
bottom. Made "My bugs" show bugs you own AND bugs you submitted.
Added ability to display your named queries in the footer. Many
random bugfixes.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -225,19 +225,21 @@ sub GenerateEmailInput { } - return qq| + $default{"emailtype$id"} ||= "substring"; + + return qq{ <table border=1 cellspacing=0 cellpadding=0> <tr><td> <table cellspacing=0 cellpadding=0> <tr> <td rowspan=2 valign=top><a href="helpemailquery.html">Email:</a> <input name="email$id" size="30" value="$defstr"> matching as -<SELECT NAME=emailtype$id> -<OPTION VALUE="regexp">regexp -<OPTION VALUE="notregexp">not regexp -<OPTION SELECTED VALUE="substring">substring -<OPTION VALUE="exact">exact -</SELECT> +} . BuildPulldown("emailtype$id", + [["regexp", "regexp"], + ["notregexp", "not regexp"], + ["substring", "substring"], + ["exact", "exact"]], + $default{"emailtype$id"}) . qq{ </td> <td> <input type="checkbox" name="emailassigned_to$id" value=1 $assignedto>Assigned To @@ -262,7 +264,7 @@ sub GenerateEmailInput { </tr> </table> </table> -|; +}; } @@ -748,7 +750,7 @@ if (UserInGroup("editkeywords")) { if ($userid) { print "<a href=relogin.cgi>Log in as someone besides <b>$::COOKIE{'Bugzilla_login'}</b></a><br>\n"; } -print "<a href=changepassword.cgi>Change your password or preferences.</a><br>\n"; +print "<a href=userprefs.cgi>Change your password or preferences.</a><br>\n"; print "<a href=\"enter_bug.cgi\">Create a new bug.</a><br>\n"; print "<a href=\"createaccount.cgi\">Open a new Bugzilla account</a><br>\n"; print "<a href=\"reports.cgi\">Bug reports</a><br>\n"; |