From 8829ae5f033999f20009364226a9239a1a706b68 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 24 Sep 1999 02:08:01 +0000 Subject: Patch by holger@holger.om.org (Holger Schurig) -- put the fancy header on several pages that were missing it. --- CGI.pl | 6 +++--- colchange.cgi | 2 ++ long_list.cgi | 2 +- process_bug.cgi | 2 ++ relogin.cgi | 5 ++++- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CGI.pl b/CGI.pl index bbc5863ed..c12ce8e5e 100644 --- a/CGI.pl +++ b/CGI.pl @@ -320,7 +320,7 @@ sub CheckEmailSyntax { if ($addr !~ /$match/) { print "Content-type: text/html\n\n"; - print "

Invalid e-mail address entered.

\n"; + PutHeader("Check e-mail syntax"); print "The e-mail address you entered\n"; print "($addr) didn't match our minimal\n"; print "syntax checking for a legal email address.\n"; @@ -358,7 +358,7 @@ To use the wonders of bugzilla, you can use the following: close SENDMAIL; print "Content-type: text/html\n\n"; - print "

Password has been emailed.

\n"; + PutHeader("Password mailed"); print "The password for the e-mail address\n"; print "$login has been e-mailed to that address.\n"; print "

When the e-mail arrives, you can click Back\n"; @@ -427,7 +427,7 @@ sub confirm_login { if ($loginok != 1) { print "Content-type: text/html\n\n"; - print "

Please log in.

\n"; + PutHeader("Login"); print "I need a legitimate e-mail address and password to continue.\n"; if (!defined $nexturl || $nexturl eq "") { # Sets nexturl to be argv0, stripping everything up to and diff --git a/colchange.cgi b/colchange.cgi index 33d2dfe70..2dd1b350b 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -63,6 +63,7 @@ if (defined $::FORM{'rememberedquery'}) { print "Refresh: 0; URL=buglist.cgi?$::FORM{'rememberedquery'}\n"; print "\n"; print "What a hack.\n"; + PutHeader ("Change columns"); print "Resubmitting your query with new columns...\n"; exit; } @@ -84,6 +85,7 @@ $desc{'summaryfull'} = "Full Summary"; print "\n"; +PutHeader ("Change columns"); print "Check which columns you wish to appear on the list, and then click\n"; print "on submit.\n"; print "

\n"; diff --git a/long_list.cgi b/long_list.cgi index 69546119f..e855c4434 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -29,7 +29,7 @@ require "CGI.pl"; use vars %::FORM; print "Content-type: text/html\n\n"; -print "Full Text Bug Listing\n"; +PutHeader ("Full Text Bug Listing"); ConnectToDatabase(); quietly_check_login(); diff --git a/process_bug.cgi b/process_bug.cgi index 297a9ed77..aa168bd55 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -34,6 +34,8 @@ confirm_login(); print "Content-type: text/html\n\n"; +PutHeader ("Bug processed"); + GetVersionTable(); if ($::FORM{'product'} ne $::dontchange) { diff --git a/relogin.cgi b/relogin.cgi index d1e2700aa..a62577ca6 100755 --- a/relogin.cgi +++ b/relogin.cgi @@ -30,7 +30,10 @@ Set-Cookie: Bugzilla_logincookie= ; path=/; expires=Sun, 30-Jun-80 00:00:00 GMT Set-Cookie: Bugzilla_password= ; path=/; expires=Sun, 30-Jun-80 00:00:00 GMT Content-type: text/html -

Your login has been forgotten.

+"; +PutHeader ("Relogin"); + +print "Your login has been forgotten.

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.

-- cgit v1.2.3-24-g4f1b