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
055c9934
Commit
055c9934
authored
Aug 27, 1998
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop looking for "target_fix_version".
parent
482763c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
long_list.cgi
long_list.cgi
+2
-4
processmail
processmail
+2
-8
No files found.
long_list.cgi
View file @
055c9934
...
...
@@ -38,7 +38,6 @@ select
assign.login_name,
report.login_name,
bugs.component,
bugs.target_fix_version,
bugs.bug_file_loc,
bugs.short_desc
from bugs,profiles assign,profiles report
...
...
@@ -67,9 +66,8 @@ foreach bug [split $FORM(buglist) :] {
puts
"<TD><B>Assigned To:</B>
[
lindex
$result
9
]
"
puts
"<TD><B>Reported By:</B>
[
lindex
$result
10
]
"
puts
"<TR><TD><B>Component:</B>
[
lindex
$result
11
]
"
puts
"<TD><B>Target Fix Version:</B>
[
lindex
$result
12
]
"
puts
"<TR><TD COLSPAN=6><B>URL:</B>
[
html_quote
[
lindex
$result
13
]]
"
puts
"<TR><TD COLSPAN=6><B>Summary :</B>
[
html_quote
[
lindex
$result
14
]]
"
puts
"<TR><TD COLSPAN=6><B>URL:</B>
[
html_quote
[
lindex
$result
12
]]
"
puts
"<TR><TD COLSPAN=6><B>Summary :</B>
[
html_quote
[
lindex
$result
13
]]
"
puts
"<TR><TD><B>Description :</B>
\n
</TABLE>"
puts
"<PRE>
[
html_quote
[
GetLongDescription
$bug
]]
</PRE>"
puts
"<HR>"
...
...
processmail
View file @
055c9934
...
...
@@ -48,11 +48,6 @@ proc DescCC {cclist} {
return
"Cc:
[
join
$cclist
", "
]
\n
"
}
proc
DescFixVersion
{
v
}
{
if
{[
cequal
$v
""
]}
return
""
return
"Fix-Version:
$v
\n
"
}
proc
GetBugText
{
id
}
{
global bug
...
...
@@ -72,7 +67,6 @@ select
assigned_to,
reporter,
bug_file_loc,
target_fix_version,
short_desc,
component
from bugs
...
...
@@ -88,7 +82,7 @@ where bug_id = $id";
set count 0
foreach field
{
bug_id product version rep_platform op_sys bug_status
resolution priority bug_severity area assigned_to
reporter bug_file_loc
target_fix_version
short_desc
reporter bug_file_loc short_desc
component
}
{
set bug
(
$field
)
[
lindex
$ret
$count
]
incr count
...
...
@@ -116,7 +110,7 @@ Area: $bug(area)
AssignedTo:
$bug
(assigned_to)
ReportedBy:
$bug
(reporter)
URL:
$bug
(bug_file_loc)
[
DescCC
$bug
(
cclist
)]
[
DescFixVersion
$bug
(
target_fix_version
)]
Summary:
$bug
(short_desc)
[
DescCC
$bug
(
cclist
)]
Summary:
$bug
(short_desc)
$bug
(long_desc)"
...
...
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