Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8829ae5f
Commit
8829ae5f
authored
Sep 24, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by holger@holger.om.org (Holger Schurig) -- put the fancy header on…
Patch by holger@holger.om.org (Holger Schurig) -- put the fancy header on several pages that were missing it.
parent
650e4220
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
5 deletions
+12
-5
CGI.pl
CGI.pl
+3
-3
colchange.cgi
colchange.cgi
+2
-0
long_list.cgi
long_list.cgi
+1
-1
process_bug.cgi
process_bug.cgi
+2
-0
relogin.cgi
relogin.cgi
+4
-1
No files found.
CGI.pl
View file @
8829ae5f
...
@@ -320,7 +320,7 @@ sub CheckEmailSyntax {
...
@@ -320,7 +320,7 @@ sub CheckEmailSyntax {
if
(
$addr
!~
/$match/
)
{
if
(
$addr
!~
/$match/
)
{
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
print
"<H1>Invalid e-mail address entered.</H1>\n"
;
PutHeader
(
"Check e-mail syntax"
)
;
print
"The e-mail address you entered\n"
;
print
"The e-mail address you entered\n"
;
print
"(<b>$addr</b>) didn't match our minimal\n"
;
print
"(<b>$addr</b>) didn't match our minimal\n"
;
print
"syntax checking for a legal email address.\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:
...
@@ -358,7 +358,7 @@ To use the wonders of bugzilla, you can use the following:
close
SENDMAIL
;
close
SENDMAIL
;
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
print
"<H1>Password has been emailed.</H1>\n"
;
PutHeader
(
"Password mailed"
)
;
print
"The password for the e-mail address\n"
;
print
"The password for the e-mail address\n"
;
print
"$login has been e-mailed to that address.\n"
;
print
"$login has been e-mailed to that address.\n"
;
print
"<p>When the e-mail arrives, you can click <b>Back</b>\n"
;
print
"<p>When the e-mail arrives, you can click <b>Back</b>\n"
;
...
@@ -427,7 +427,7 @@ sub confirm_login {
...
@@ -427,7 +427,7 @@ sub confirm_login {
if
(
$loginok
!=
1
)
{
if
(
$loginok
!=
1
)
{
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
print
"<H1>Please log in.</H1>\n"
;
PutHeader
(
"Login"
)
;
print
"I need a legitimate e-mail address and password to continue.\n"
;
print
"I need a legitimate e-mail address and password to continue.\n"
;
if
(
!
defined
$nexturl
||
$nexturl
eq
""
)
{
if
(
!
defined
$nexturl
||
$nexturl
eq
""
)
{
# Sets nexturl to be argv0, stripping everything up to and
# Sets nexturl to be argv0, stripping everything up to and
...
...
colchange.cgi
View file @
8829ae5f
...
@@ -63,6 +63,7 @@ if (defined $::FORM{'rememberedquery'}) {
...
@@ -63,6 +63,7 @@ if (defined $::FORM{'rememberedquery'}) {
print
"Refresh: 0; URL=buglist.cgi?$::FORM{'rememberedquery'}\n"
;
print
"Refresh: 0; URL=buglist.cgi?$::FORM{'rememberedquery'}\n"
;
print
"\n"
;
print
"\n"
;
print
"<TITLE>What a hack.</TITLE>\n"
;
print
"<TITLE>What a hack.</TITLE>\n"
;
PutHeader
(
"Change columns"
);
print
"Resubmitting your query with new columns...\n"
;
print
"Resubmitting your query with new columns...\n"
;
exit
;
exit
;
}
}
...
@@ -84,6 +85,7 @@ $desc{'summaryfull'} = "Full Summary";
...
@@ -84,6 +85,7 @@ $desc{'summaryfull'} = "Full Summary";
print
"\n"
;
print
"\n"
;
PutHeader
(
"Change columns"
);
print
"Check which columns you wish to appear on the list, and then click\n"
;
print
"Check which columns you wish to appear on the list, and then click\n"
;
print
"on submit.\n"
;
print
"on submit.\n"
;
print
"<p>\n"
;
print
"<p>\n"
;
...
...
long_list.cgi
View file @
8829ae5f
...
@@ -29,7 +29,7 @@ require "CGI.pl";
...
@@ -29,7 +29,7 @@ require "CGI.pl";
use
vars
%::
FORM
;
use
vars
%::
FORM
;
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
print
"<TITLE>Full Text Bug Listing</TITLE>\n"
;
PutHeader
(
"Full Text Bug Listing"
)
;
ConnectToDatabase
();
ConnectToDatabase
();
quietly_check_login
();
quietly_check_login
();
...
...
process_bug.cgi
View file @
8829ae5f
...
@@ -34,6 +34,8 @@ confirm_login();
...
@@ -34,6 +34,8 @@ confirm_login();
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
PutHeader
(
"Bug processed"
);
GetVersionTable
();
GetVersionTable
();
if
(
$::FORM
{
'product'
}
ne
$::dontchange
)
{
if
(
$::FORM
{
'product'
}
ne
$::dontchange
)
{
...
...
relogin.cgi
View file @
8829ae5f
...
@@ -30,7 +30,10 @@ Set-Cookie: Bugzilla_logincookie= ; path=/; expires=Sun, 30-Jun-80 00:00:00 GMT
...
@@ -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
Set-Cookie: Bugzilla_password= ; path=/; expires=Sun, 30-Jun-80 00:00:00 GMT
Content-type: text/html
Content-type: text/html
<H1>Your login has been forgotten.</H1>
"
;
PutHeader
(
"Relogin"
);
print
"<B>Your login has been forgotten</B>.</P>
The cookie that was remembering your login is now gone. The next time you
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.
do an action that requires a login, you will be prompted for it.
<p>
<p>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment