Commit be7edaf9 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 169197: Explicitly identifies RDF 'about' and 'resource' tags as…

Fix for bug 169197: Explicitly identifies RDF 'about' and 'resource' tags as being in the RDF namespace to update deprecated syntax and get some RDF parsers to stop generating warnings. r=gerv
parent cc5259d7
......@@ -22,17 +22,18 @@
<?xml version="1.0"?>
<!-- [% template_version %] -->
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:bz="http://www.bugzilla.org/rdf#"
xmlns:nc="http://home.netscape.com/NC-rdf#">
<bz:result about="[% Param('urlbase') %]buglist.cgi?[% urlquerypart FILTER html %]">
<bz:installation resource="[% Param('urlbase') %]" />
<bz:result rdf:about="[% Param('urlbase') %]buglist.cgi?[% urlquerypart FILTER html %]">
<bz:installation rdf:resource="[% Param('urlbase') %]" />
<bz:bugs>
<Seq>
[% FOREACH bug = bugs %]
<li>
<bz:bug about="[% Param('urlbase') %]show_bug.cgi?id=[% bug.id %]">
<bz:bug rdf:about="[% Param('urlbase') %]show_bug.cgi?id=[% bug.id %]">
<bz:id nc:parseType="Integer">[% bug.id %]</bz:id>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment