summaryrefslogtreecommitdiffstats
path: root/bugzilla.dtd
diff options
context:
space:
mode:
authorjake%acutex.net <>2002-01-21 22:39:54 +0100
committerjake%acutex.net <>2002-01-21 22:39:54 +0100
commite1371a31b6e8d7ae2b58224b277d9f2c454b2446 (patch)
treec240edbd8e36d283a9b00b5fe67dc84fe1bf8e55 /bugzilla.dtd
parent4e6767d4c3d1b0b583f4ec076992345545294748 (diff)
downloadbugzilla-e1371a31b6e8d7ae2b58224b277d9f2c454b2446.tar.gz
bugzilla-e1371a31b6e8d7ae2b58224b277d9f2c454b2446.tar.xz
Bug 113438 - The DTD from Bugzilla's XML output was not correct, so any attempts to validate the output were futile.
Patch by Jan <tamino_xml@yahoo.com> r= jake
Diffstat (limited to 'bugzilla.dtd')
-rw-r--r--bugzilla.dtd38
1 files changed, 21 insertions, 17 deletions
diff --git a/bugzilla.dtd b/bugzilla.dtd
index 21fbb1dab..f9e9c4480 100644
--- a/bugzilla.dtd
+++ b/bugzilla.dtd
@@ -1,23 +1,21 @@
<!ELEMENT bugzilla (bug+)>
-<!ATTLIST bugzilla version CDATA #REQUIRED>
-<!ATTLIST bugzilla urlbase CDATA #REQUIRED>
-<!ATTLIST bugzilla maintainer CDATA #REQUIRED>
-<!ATTLIST bugzilla exporter CDATA #IMPLIED>
-<!ELEMENT bug (bug_id, exporter, urlbase, bug_status, resolution?, product,
-priority, version, rep_platform, assigned_to, delta_ts, component,
-reporter, target_milestone?, bug_severity, creation_ts, qa_contact?,
-status_whiteboard?, op_sys, short_desc?, keywords*, dependson*,
-blocks*, cc*, long_desc?, attachment*)>
-<!ATTLIST bug error (NotFound|NotPermitted|InvalidBugId) #IMPLIED>
+<!ATTLIST bugzilla
+ version CDATA #REQUIRED
+ urlbase CDATA #REQUIRED
+ maintainer CDATA #REQUIRED
+ exporter CDATA #IMPLIED
+>
+<!ELEMENT bug (bug_id, (exporter?, urlbase?, 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*, blocks*, cc*, long_desc*, attachment*)?)>
+<!ATTLIST bug
+ error (NotFound | NotPermitted | InvalidBugId) #IMPLIED
+>
<!ELEMENT bug_id (#PCDATA)>
-<!ELEMENT short_desc (#PCDATA)>
+<!ELEMENT exporter (#PCDATA)>
+<!ELEMENT urlbase (#PCDATA)>
<!ELEMENT bug_status (#PCDATA)>
-<!ELEMENT dependson (#PCDATA)>
-<!ELEMENT blocks (#PCDATA)>
<!ELEMENT product (#PCDATA)>
<!ELEMENT priority (#PCDATA)>
<!ELEMENT version (#PCDATA)>
-<!ELEMENT cc (#PCDATA)>
<!ELEMENT rep_platform (#PCDATA)>
<!ELEMENT assigned_to (#PCDATA)>
<!ELEMENT delta_ts (#PCDATA)>
@@ -27,15 +25,21 @@ blocks*, cc*, long_desc?, attachment*)>
<!ELEMENT bug_severity (#PCDATA)>
<!ELEMENT creation_ts (#PCDATA)>
<!ELEMENT qa_contact (#PCDATA)>
+<!ELEMENT status_whiteboard (#PCDATA)>
<!ELEMENT op_sys (#PCDATA)>
+<!ELEMENT resolution (#PCDATA)>
+<!ELEMENT bug_file_loc (#PCDATA)>
+<!ELEMENT short_desc (#PCDATA)>
<!ELEMENT keywords (#PCDATA)>
-<!ELEMENT status_whiteboard (#PCDATA)>
+<!ELEMENT dependson (#PCDATA)>
+<!ELEMENT blocks (#PCDATA)>
+<!ELEMENT cc (#PCDATA)>
<!ELEMENT long_desc (who, bug_when, thetext)>
<!ELEMENT who (#PCDATA)>
<!ELEMENT bug_when (#PCDATA)>
<!ELEMENT thetext (#PCDATA)>
-<!ELEMENT attachment (id, date, attach_desc, type, data)>
-<!ELEMENT id (#PCDATA)>
+<!ELEMENT attachment (attachid, date, desc, type?, data?)>
+<!ELEMENT attachid (#PCDATA)>
<!ELEMENT date (#PCDATA)>
<!ELEMENT desc (#PCDATA)>
<!ELEMENT type (#PCDATA)>