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
87712bc5
Commit
87712bc5
authored
Feb 04, 1999
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow components to have a default qacontact.
parent
8840c4da
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
CHANGES
CHANGES
+8
-0
makecomponenttable.sh
makecomponenttable.sh
+0
-0
post_bug.cgi
post_bug.cgi
+16
-0
No files found.
CHANGES
View file @
87712bc5
...
...
@@ -10,6 +10,14 @@ query the CVS tree. For example,
will tell you what has been changed in the last week.
2/3/99 Added a new column "initialqacontact" to the components table that gives
an initial QA contact field. It may be empty if you wish the initial qa
contact to be empty. If you're not using the QA contact field, you don't need
to add this column, but you might as well be safe and add it anyway:
alter table components add column initialqacontact tinytext not null;
2/2/99 Added a new column "milestoneurl" to the products table that gives a URL
which is to describe the currently defined milestones for a product. If you
don't use target milestone, you might be able to get away without adding this
...
...
makecomponenttable.sh
View file @
87712bc5
This diff is collapsed.
Click to expand it.
post_bug.cgi
View file @
87712bc5
...
...
@@ -79,6 +79,22 @@ $::FORM{'reporter'} = DBNameToIdAndCheck($::FORM{'reporter'});
my
@bug_fields
=
(
"reporter"
,
"product"
,
"version"
,
"rep_platform"
,
"bug_severity"
,
"priority"
,
"op_sys"
,
"assigned_to"
,
"bug_status"
,
"bug_file_loc"
,
"short_desc"
,
"component"
);
if
(
Param
(
"useqacontact"
))
{
SendSQL
(
"select initialqacontact from components where program="
.
SqlQuote
(
$::FORM
{
'product'
})
.
" and value="
.
SqlQuote
(
$::FORM
{
'component'
}));
my
$qacontact
=
FetchOneColumn
();
if
(
defined
$qacontact
&&
$qacontact
ne
""
)
{
$::FORM
{
'qa_contact'
}
=
DBNameToIdAndCheck
(
$qacontact
,
1
);
push
(
@bug_fields
,
"qa_contact"
);
}
}
my
$query
=
"insert into bugs (\n"
.
join
(
",\n"
,
@bug_fields
)
.
",
creation_ts, long_desc )
values (
...
...
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