list.rdf.tmpl 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
[%# The contents of this file are subject to the Mozilla Public
  # License Version 1.1 (the "License"); you may not use this file
  # except in compliance with the License. You may obtain a copy of
  # the License at http://www.mozilla.org/MPL/
  #
  # Software distributed under the License is distributed on an "AS
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  # implied. See the License for the specific language governing
  # rights and limitations under the License.
  #
  # The Original Code is the Bugzilla Bug Tracking System.
  #
  # The Initial Developer of the Original Code is Netscape Communications
  # Corporation. Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation. All
  # Rights Reserved.
  #
  # Contributor(s): Myk Melez <myk@mozilla.org>
  #%]

21
<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?>
22 23
<!-- [% template_version %] -->
<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 26
     xmlns:bz="http://www.bugzilla.org/rdf#"
     xmlns:nc="http://home.netscape.com/NC-rdf#">
27

28 29
<bz:result rdf:about="[% urlbase FILTER xml %]buglist.cgi?[% urlquerypart FILTER html %]">
  <bz:installation rdf:resource="[% urlbase FILTER xml %]" />
30
  <bz:query_timestamp>[% currenttime FILTER time('%Y-%m-%d %T %Z') FILTER html %]</bz:query_timestamp>
31 32 33 34 35
  <bz:bugs>
    <Seq>
    [% FOREACH bug = bugs %]
      <li>
        
36
        <bz:bug rdf:about="[% urlbase FILTER xml %]show_bug.cgi?id=[% bug.bug_id %]">
37
          
38
          <bz:id nc:parseType="Integer">[% bug.bug_id %]</bz:id>
39 40
        
        [% FOREACH column = displaycolumns %]
41
          <bz:[% column %][% ' nc:parseType="Integer"' IF column == "votes" %]>[% bug.$column FILTER html %]</bz:[% column %]>
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
        [% END %]
        
        </bz:bug>
      
      </li>

    [% END %]

    </Seq>

  </bz:bugs>

</bz:result>

</RDF>