]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Assorted minor UI cleanups (mostly putting navigation headers in, and
authorbryce-mozilla%nextbus.com <>
Tue, 15 Jun 1999 11:29:04 +0000 (11:29 +0000)
committerbryce-mozilla%nextbus.com <>
Tue, 15 Jun 1999 11:29:04 +0000 (11:29 +0000)
rewording "return to query page" for pages where that is not always true.
Also add two options to the main index.html

changepassword.cgi
globals.pl
help.html
index.html
relogin.cgi

index 4a12b67f56644266e1e6c2e7de43910ddb5ffddb..da9429b8ab0ecd94c551556570474489e1ae2dbf 100755 (executable)
@@ -124,9 +124,8 @@ SendSQL("update profiles set emailnotification='$::FORM{'emailnotification'}' wh
 
 
 PutHeader("Preferences updated.");
-
-
 print "
 Your preferences have been updated.
-<p>
-<a href=query.cgi>Back to query page.</a>\n";
+<p>";
+navigation_header();
+
index 94a4f740269732aa56eb5690d5aa72ae60f590dc..b667f48adbe2ba4353b1489f94f3335a8e683eb5 100644 (file)
@@ -346,7 +346,7 @@ sub GetVersionTable {
         do 'data/versioncache';
 
         if (!defined %::versions) {
-            die "Can't generate version info; tell terry.";
+            die "Can't generate file data/versioncache";
         }
     }
 }
index 0d7244df252ac642e6960e843a5b65df807cd102..4896fbd2a3cc38a18049c83d3ec3b3fc06c3fae9 100644 (file)
--- a/help.html
+++ b/help.html
@@ -53,3 +53,10 @@ reporter area
 bug_file_loc
 short_desc
 </PRE>
+<HR>
+<H1>Browser Notes</H1>
+<P>Bugzilla uses several non-standard Netscape extentions, but this does not seem
+to case any problem with other browsers.  The lynx browser does work, but lynx
+seems to cache results of a .cgi.  You'll sometimes need to press CONTROL-R to reload
+the screen to see an update.
+
index 7cef3c1e2cc9e610d0eecfe553c4b688a2d4de3d..ba9a0a7ee2ad10c68aebff22335a14fb4c655f3d 100644 (file)
@@ -67,10 +67,13 @@ bugzilla.
 
 But it all boils down to a choice of:
 <br>
-<a href="query.cgi">Go to the query page to start.</a><br>
-<a href="enter_bug.cgi">Enter a new bug</a><br>
-<a href="reports.cgi">Bug reports</a><br>
+<a href="query.cgi">Query existing bug reports</a><br>
+<a href="enter_bug.cgi">Enter a new bug report</a><br>
+<a href="reports.cgi">Get summary reports</a><br>
+<p>
 <a href="createaccount.cgi">Open a new Bugzilla account</a><br>
+<a href="relogin.cgi">Forget the currently stored login</a><br>
+<a href="changepassword.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></TD>
 
index 5ef523945c21136bea8849d84ba8ddca4e4064ff..d1e2700aa71c5ab8e0f577b82e4e0f361a2556fe 100755 (executable)
@@ -34,20 +34,9 @@ Content-type: text/html
 The cookie that was remembering your login is now gone.  The next time you
 do an action that requires a login, you will be prompted for it.
 <p>
-<a href=query.cgi>Back to the query page.</a>
 ";
 
-exit;
-
-# The below was a different way, that prompted you for a login right then.
+navigation_header();
 
-# catch {unset COOKIE(Bugzilla_login)}
-# catch {unset COOKIE(Bugzilla_password)}
-# confirm_login
-
-# puts "Content-type: text/html\n"
-# puts "<H1>OK, logged in.</H1>"
-# puts "You are now logged in as <b>$COOKIE(Bugzilla_login)</b>."
-# puts "<p>"
-# puts "<a href=query.cgi>Back to the query page.</a>"
+exit;