summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-01-11 08:30:33 +0100
committerlpsolit%gmail.com <>2006-01-11 08:30:33 +0100
commitd2a0eafd3082e560c1a635c9e59ec0ebfed18a7e (patch)
tree0dc47a0afaddcb76a5a7fef1eb4c75f018231819
parent7d01e4bc12896e1b7f035f708402fc30baa25e03 (diff)
downloadbugzilla-d2a0eafd3082e560c1a635c9e59ec0ebfed18a7e.tar.gz
bugzilla-d2a0eafd3082e560c1a635c9e59ec0ebfed18a7e.tar.xz
Bug 316096: 'everconfirmed' is not included in the DTD and XML files - Patch by Greg Hendricks <ghendricks@novell.com> r=LpSolit a=myk
-rwxr-xr-xBugzilla/Bug.pm8
-rw-r--r--bugzilla.dtd3
2 files changed, 6 insertions, 5 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 61798f7cb..cab54d7da 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -78,7 +78,7 @@ sub fields {
bug_status resolution
bug_file_loc status_whiteboard keywords
priority bug_severity target_milestone
- dependson blocked votes
+ dependson blocked votes everconfirmed
reporter assigned_to cc
);
@@ -172,7 +172,7 @@ sub initBug {
bug_file_loc, short_desc, target_milestone,
qa_contact AS qa_contact_id, status_whiteboard, " .
$dbh->sql_date_format('creation_ts', '%Y.%m.%d %H:%i') . ",
- delta_ts, COALESCE(SUM(votes.vote_count), 0),
+ delta_ts, COALESCE(SUM(votes.vote_count), 0), everconfirmed,
reporter_accessible, cclist_accessible,
estimated_time, remaining_time, " .
$dbh->sql_date_format('deadline', '%Y-%m-%d') . "
@@ -191,7 +191,7 @@ sub initBug {
rep_platform, op_sys, bug_status, resolution, priority,
bug_severity, bugs.component_id, components.name, assigned_to,
reporter, bug_file_loc, short_desc, target_milestone,
- qa_contact, status_whiteboard, creation_ts,
+ qa_contact, status_whiteboard, everconfirmed, creation_ts,
delta_ts, reporter_accessible, cclist_accessible,
estimated_time, remaining_time, deadline');
@@ -210,7 +210,7 @@ sub initBug {
"assigned_to_id", "reporter_id",
"bug_file_loc", "short_desc",
"target_milestone", "qa_contact_id", "status_whiteboard",
- "creation_ts", "delta_ts", "votes",
+ "creation_ts", "delta_ts", "votes", "everconfirmed",
"reporter_accessible", "cclist_accessible",
"estimated_time", "remaining_time", "deadline")
{
diff --git a/bugzilla.dtd b/bugzilla.dtd
index a8453304c..25a0a895b 100644
--- a/bugzilla.dtd
+++ b/bugzilla.dtd
@@ -5,7 +5,7 @@
maintainer CDATA #REQUIRED
exporter CDATA #IMPLIED
>
-<!ELEMENT bug (bug_id, (alias?, creation_ts, short_desc, delta_ts, reporter_accessible, cclist_accessible, classification_id, classification, product, component, version, rep_platform, op_sys, bug_status, resolution?, bug_file_loc?, status_whiteboard?, keywords*, priority, bug_severity, target_milestone?, dependson*, blocked*, votes?, reporter, assigned_to, qa_contact?, cc*, (estimated_time, remaining_time, actual_time, deadline)?, group*, flag*, long_desc*, attachment*)?)>
+<!ELEMENT bug (bug_id, (alias?, creation_ts, short_desc, delta_ts, reporter_accessible, cclist_accessible, classification_id, classification, product, component, version, rep_platform, op_sys, bug_status, resolution?, bug_file_loc?, status_whiteboard?, keywords*, priority, bug_severity, target_milestone?, dependson*, blocked*, votes?, everconfirmed, reporter, assigned_to, qa_contact?, cc*, (estimated_time, remaining_time, actual_time, deadline)?, group*, flag*, long_desc*, attachment*)?)>
<!ATTLIST bug
error (NotFound | NotPermitted | InvalidBugId) #IMPLIED
>
@@ -39,6 +39,7 @@
<!ELEMENT dependson (#PCDATA)>
<!ELEMENT blocked (#PCDATA)>
<!ELEMENT votes (#PCDATA)>
+<!ELEMENT everconfirmed (#PCDATA)>
<!ELEMENT cc (#PCDATA)>
<!ELEMENT group (#PCDATA)>
<!ELEMENT estimated_time (#PCDATA)>