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
179d6c8d
Commit
179d6c8d
authored
Dec 03, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 182946 - fix regressions from bug 171493
(Bug.pm/show_bug.cgi/bug_form.pl reorg) r,a=justdave
parent
26b0bc8a
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
14 deletions
+14
-14
Bug.pm
Bug.pm
+5
-5
Bug.pm
Bugzilla/Bug.pm
+5
-5
bugzilla.dtd
bugzilla.dtd
+2
-2
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+2
-2
No files found.
Bug.pm
View file @
179d6c8d
...
...
@@ -143,7 +143,7 @@ sub initBug {
"assigned_to"
,
"reporter"
,
"bug_file_loc"
,
"short_desc"
,
"target_milestone"
,
"qa_contact"
,
"status_whiteboard"
,
"creation_ts"
,
"delta_ts"
,
"votes"
,
"reporter_accessible"
,
"cclist_accessible"
.
"reporter_accessible"
,
"cclist_accessible"
,
"estimated_time"
,
"remaining_time"
)
{
$fields
{
$field
}
=
shift
@row
;
...
...
@@ -233,9 +233,9 @@ sub initBug {
if
(
@depends
)
{
$self
->
{
'dependson'
}
=
\
@depends
;
}
my
@block
s
=
EmitDependList
(
"dependson"
,
"blocked"
,
$bug_id
);
if
(
@block
s
)
{
$self
->
{
'block
s'
}
=
\
@blocks
;
my
@block
ed
=
EmitDependList
(
"dependson"
,
"blocked"
,
$bug_id
);
if
(
@block
ed
)
{
$self
->
{
'block
ed'
}
=
\
@blocked
;
}
return
$self
;
...
...
@@ -454,7 +454,7 @@ sub emitXML {
}
}
foreach
my
$field
(
"dependson"
,
"block
s
"
,
"cc"
)
{
foreach
my
$field
(
"dependson"
,
"block
ed
"
,
"cc"
)
{
if
(
defined
$self
->
{
$field
})
{
for
(
my
$i
=
0
;
$i
<
@
{
$self
->
{
$field
}}
;
$i
++
)
{
$xml
.=
" <$field>"
.
$self
->
{
$field
}[
$i
]
.
"</$field>\n"
;
...
...
Bugzilla/Bug.pm
View file @
179d6c8d
...
...
@@ -143,7 +143,7 @@ sub initBug {
"assigned_to"
,
"reporter"
,
"bug_file_loc"
,
"short_desc"
,
"target_milestone"
,
"qa_contact"
,
"status_whiteboard"
,
"creation_ts"
,
"delta_ts"
,
"votes"
,
"reporter_accessible"
,
"cclist_accessible"
.
"reporter_accessible"
,
"cclist_accessible"
,
"estimated_time"
,
"remaining_time"
)
{
$fields
{
$field
}
=
shift
@row
;
...
...
@@ -233,9 +233,9 @@ sub initBug {
if
(
@depends
)
{
$self
->
{
'dependson'
}
=
\
@depends
;
}
my
@block
s
=
EmitDependList
(
"dependson"
,
"blocked"
,
$bug_id
);
if
(
@block
s
)
{
$self
->
{
'block
s'
}
=
\
@blocks
;
my
@block
ed
=
EmitDependList
(
"dependson"
,
"blocked"
,
$bug_id
);
if
(
@block
ed
)
{
$self
->
{
'block
ed'
}
=
\
@blocked
;
}
return
$self
;
...
...
@@ -454,7 +454,7 @@ sub emitXML {
}
}
foreach
my
$field
(
"dependson"
,
"block
s
"
,
"cc"
)
{
foreach
my
$field
(
"dependson"
,
"block
ed
"
,
"cc"
)
{
if
(
defined
$self
->
{
$field
})
{
for
(
my
$i
=
0
;
$i
<
@
{
$self
->
{
$field
}}
;
$i
++
)
{
$xml
.=
" <$field>"
.
$self
->
{
$field
}[
$i
]
.
"</$field>\n"
;
...
...
bugzilla.dtd
View file @
179d6c8d
...
...
@@ -5,7 +5,7 @@
maintainer CDATA #REQUIRED
exporter CDATA #IMPLIED
>
<!ELEMENT bug (bug_id, (alias?, bug_status, product, priority, version, rep_platform, assigned_to, delta_ts, component, reporter, target_milestone?, bug_severity, creation_ts, qa_contact?, op_sys, resolution?, bug_file_loc?, short_desc?, keywords*, status_whiteboard?, dependson*, block
s
*, cc*, long_desc*, attachment*)?)>
<!ELEMENT bug (bug_id, (alias?, bug_status, product, priority, version, rep_platform, assigned_to, delta_ts, component, reporter, target_milestone?, bug_severity, creation_ts, qa_contact?, op_sys, resolution?, bug_file_loc?, short_desc?, keywords*, status_whiteboard?, dependson*, block
ed
*, cc*, long_desc*, attachment*)?)>
<!ATTLIST bug
error (NotFound | NotPermitted | InvalidBugId) #IMPLIED
>
...
...
@@ -33,7 +33,7 @@
<!ELEMENT short_desc (#PCDATA)>
<!ELEMENT keywords (#PCDATA)>
<!ELEMENT dependson (#PCDATA)>
<!ELEMENT block
s
(#PCDATA)>
<!ELEMENT block
ed
(#PCDATA)>
<!ELEMENT cc (#PCDATA)>
<!ELEMENT long_desc (who, bug_when, thetext)>
<!ELEMENT who (#PCDATA)>
...
...
template/en/default/bug/edit.html.tmpl
View file @
179d6c8d
...
...
@@ -185,7 +185,7 @@
[% IF bug.milestoneurl %]
<a href="[% bug.milestoneurl FILTER html %]">
[% END %]
<u>T</u>arget Milestone
</a>
:
<u>T</u>arget Milestone:
[% "</a>" IF bug.milestoneurl %]
</b>
</td>
...
...
@@ -504,7 +504,7 @@
<input type="radio" name="knob" value="reassign">
<a href="bug_status.html#assigned_to">Reassign</a> bug to
<input name="assigned_to" size="32"
onchange="if ((this.value != '[% bug.assigned_to
_
email FILTER js %]') &&
onchange="if ((this.value != '[% bug.assigned_to
.
email FILTER js %]') &&
(this.value != '')) {
document.changeform.knob[[% knum %]].checked=true;
}"
...
...
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