873e4ed1320f5c41a0203e462d6918881574b3ab
[vuplus_webkit] / Websites / bugs.webkit.org / template / en / default / list / list.rdf.tmpl
1 [%# The contents of this file are subject to the Mozilla Public
2   # License Version 1.1 (the "License"); you may not use this file
3   # except in compliance with the License. You may obtain a copy of
4   # the License at http://www.mozilla.org/MPL/
5   #
6   # Software distributed under the License is distributed on an "AS
7   # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8   # implied. See the License for the specific language governing
9   # rights and limitations under the License.
10   #
11   # The Original Code is the Bugzilla Bug Tracking System.
12   #
13   # The Initial Developer of the Original Code is Netscape Communications
14   # Corporation. Portions created by Netscape are
15   # Copyright (C) 1998 Netscape Communications Corporation. All
16   # Rights Reserved.
17   #
18   # Contributor(s): Myk Melez <myk@mozilla.org>
19   #%]
20
21 <?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?>
22 <!-- [% template_version %] -->
23 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
24      xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
25      xmlns:bz="http://www.bugzilla.org/rdf#"
26      xmlns:nc="http://home.netscape.com/NC-rdf#">
27
28 <bz:result rdf:about="[% urlbase FILTER xml %]buglist.cgi?[% urlquerypart FILTER html %]">
29   <bz:installation rdf:resource="[% urlbase FILTER xml %]" />
30   <bz:bugs>
31     <Seq>
32     [% FOREACH bug = bugs %]
33       <li>
34         
35         <bz:bug rdf:about="[% urlbase FILTER xml %]show_bug.cgi?id=[% bug.bug_id %]">
36           
37           <bz:id nc:parseType="Integer">[% bug.bug_id %]</bz:id>
38         
39         [% FOREACH column = displaycolumns %]
40           <bz:[% column %][% ' nc:parseType="Integer"' IF column == "votes" %]>[% bug.$column FILTER html %]</bz:[% column %]>
41         [% END %]
42         
43         </bz:bug>
44       
45       </li>
46
47     [% END %]
48
49     </Seq>
50
51   </bz:bugs>
52
53 </bz:result>
54
55 </RDF>