diff options
author | cyeh%bluemartini.com <> | 2001-03-01 08:07:24 +0100 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2001-03-01 08:07:24 +0100 |
commit | 5b2994b0ce4cf27709b3742a2b63a680464662a0 (patch) | |
tree | ac2b46dde7b3a19475df1a8400e99bc3c120e283 /index.html | |
parent | d0605ef9490b55c38d090c21b5993eda143e7e86 (diff) | |
download | bugzilla-5b2994b0ce4cf27709b3742a2b63a680464662a0.tar.gz bugzilla-5b2994b0ce4cf27709b3742a2b63a680464662a0.tar.xz |
fix for 69793: check in new files for QuickSearch
patch contributed by franke@ags.uni-sb.de (Andreas Franke)
Now add quicksearch functionality to the main index page.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/index.html b/index.html index 566a1053b..3a1a76ff6 100644 --- a/index.html +++ b/index.html @@ -76,11 +76,23 @@ But it all boils down to a choice of: <a href="createaccount.cgi">Open a new Bugzilla account</a><br> <a href="relogin.cgi">Forget the currently stored login</a><br> <a href="userprefs.cgi">Change password or user preferences</a><br> -<FORM METHOD=GET ACTION="show_bug.cgi"> -<INPUT TYPE=SUBMIT VALUE="Find"> bug # <INPUT NAME=id SIZE=6></FORM> -<SCRIPT LANGUAGE="JavaScript"> -document.forms[0].id.focus() -</SCRIPT> +<p> +<script language="JavaScript" src="localconfig.js"></script> +<script language="JavaScript" src="quicksearch.js"></script> + +<form name="f" action="show_bug.cgi" method="get" + onsubmit="QuickSearch(); return false;"> + Enter a bug # or some search terms:<br> + <input type="text" name="id"> + <input type="submit" value="Show"> + <a href="quicksearch.html">[Help]</a> +</form> + +<script> +<!-- +document.forms['f'].id.focus(); +//--> +</script> </BODY> </HTML> |