config.rdf.tmpl 8.42 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
[%# 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>
19
  #                 Frédéric Buclin <LpSolit@gmail.com>
20 21
  #%]

22
<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?>
23 24 25
<!-- Note: this interface is experimental and under development.
   - We may and probably will make breaking changes to it in the future. -->

26 27 28 29
<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#">

30
<bz:installation rdf:about="[% urlbase FILTER xml %]">
31
  <bz:install_version>[% constants.BUGZILLA_VERSION FILTER html %]</bz:install_version>
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  <bz:maintainer>[% Param('maintainer') FILTER html %]</bz:maintainer>

  <bz:status>
    <Seq>
      [% FOREACH item = status %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:status>

  <bz:status_open>
    <Seq>
      [% FOREACH item = open_status %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:status_open>

  <bz:status_closed>
    <Seq>
      [% FOREACH item = closed_status %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:status_closed>

  <bz:resolution>
    <Seq>
      [% FOREACH item = resolution %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:resolution>

  <bz:keyword>
    <Seq>
      [% FOREACH item = keyword %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:keyword>

  <bz:platform>
    <Seq>
      [% FOREACH item = platform %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:platform>

  <bz:op_sys>
    <Seq>
      [% FOREACH item = op_sys %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:op_sys>

  <bz:priority>
    <Seq>
      [% FOREACH item = priority %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:priority>

  <bz:severity>
    <Seq>
      [% FOREACH item = severity %]
        <li>[% item FILTER html %]</li>
      [% END %]
    </Seq>
  </bz:severity>

106 107 108 109
[% FOREACH cf = custom_fields %]
  <bz:[% cf.name FILTER html %]>
    <Seq>
      [% FOREACH item = cf.legal_values %]
110
        <li>[% item.name FILTER html %]</li>
111 112 113 114 115 116
      [% END %]
    </Seq>
  </bz:[% cf.name FILTER html %]>

[% END %]

117 118
  <bz:products>
    <Seq>
119
      [% FOREACH product = products %]
120
        <li>
121
          <bz:product rdf:about="[% urlbase FILTER xml %]product.cgi?name=[% product.name FILTER url_quote %]">
122
            <bz:name>[% product.name FILTER html %]</bz:name>
123 124 125

            <bz:components>
              <Seq>
126
                [% FOREACH component = product.components %]
127 128
                  <li resource="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER url_quote 
                      %]&amp;product=[% product.name FILTER url_quote %]"/>
129 130 131 132 133 134
                [% END %]
              </Seq>
            </bz:components>

            <bz:versions>
              <Seq>
135
                [% FOREACH version = product.versions %]
136
                  <li resource="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER url_quote %]"/>
137 138 139 140 141 142 143
                [% END %]
              </Seq>
            </bz:versions>

            [% IF Param('usetargetmilestone') %]
              <bz:target_milestones>
                <Seq>
144
                  [% FOREACH milestone = product.milestones %]
145
                    <li resource="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER url_quote %]"/>
146 147 148 149 150 151 152 153 154 155 156
                  [% END %]
                </Seq>
              </bz:target_milestones>
            [% END %]

          </bz:product>
        </li>
      [% END %]
    </Seq>
  </bz:products>

157
  [% all_visible_flag_types = {} %]
158 159
  <bz:components>
    <Seq>
160 161 162
      [% FOREACH product = products %]
        [% FOREACH component = product.components %]
          <li>
163 164
            <bz:component rdf:about="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER url_quote 
                          %]&amp;product=[% product.name FILTER url_quote %]">
165
              <bz:name>[% component.name FILTER html %]</bz:name>
166 167 168 169 170 171
              <bz:flag_types>
                <Seq>
                  [% flag_types = component.flag_types.bug.merge(component.flag_types.attachment) %]
                  [% FOREACH flag_type = flag_types %]
                    [% NEXT UNLESS flag_type.is_active %]
                    [% all_visible_flag_types.${flag_type.id} = flag_type %]
172
                    <li resource="[% urlbase FILTER xml %]flag.cgi?id=[% flag_type.id FILTER url_quote
173 174 175 176
                        %]&amp;name=[% flag_type.name FILTER url_quote %]" />
                  [% END %]
                </Seq>
              </bz:flag_types>
177 178 179
            </bz:component>
          </li>
        [% END %]
180 181 182 183 184 185
      [% END %]
    </Seq>
  </bz:components>

  <bz:versions>
    <Seq>
186 187 188
      [% FOREACH product = products %]
        [% FOREACH version = product.versions %]
          <li>
189
            <bz:version rdf:about="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER url_quote %]">
190 191 192 193
              <bz:name>[% version.name FILTER html %]</bz:name>
            </bz:version>
          </li>
        [% END %]
194 195 196 197 198 199 200
      [% END %]
    </Seq>
  </bz:versions>

  [% IF Param('usetargetmilestone') %]
    <bz:target_milestones>
      <Seq>
201 202 203
        [% FOREACH product = products %]
          [% FOREACH milestone = product.milestones %]
            <li>
204
              <bz:target_milestone rdf:about="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER url_quote %]">
205 206 207 208
                <bz:name>[% milestone.name FILTER html %]</bz:name>
              </bz:target_milestone>
            </li>
          [% END %]
209 210 211 212 213
        [% END %]
      </Seq>
    </bz:target_milestones>
  [% END %]

214 215 216 217 218 219
  <bz:flag_types>
    <Seq>
      [% FOREACH flag_type = all_visible_flag_types.values.sort('name') %]
        <li>
          <bz:flag_type rdf:about="[% urlbase FILTER xml %]flag.cgi?id=[% flag_type.id FILTER url_quote
                        %]&amp;name=[% flag_type.name FILTER url_quote %]">
220
            <bz:id>[% flag_type.id FILTER html %]</bz:id>
221 222 223 224 225 226
            <bz:name>[% flag_type.name FILTER html %]</bz:name>
            <bz:description>[% flag_type.description FILTER html %]</bz:description>
            <bz:type>[% flag_type.target_type FILTER html %]</bz:type>
            <bz:requestable>[% flag_type.is_requestable FILTER html %]</bz:requestable>
            <bz:specifically_requestable>[% flag_type.is_requesteeble FILTER html %]</bz:specifically_requestable>
            <bz:multiplicable>[% flag_type.is_multiplicable FILTER html %]</bz:multiplicable>
227 228 229 230
            [% IF user.in_group("editcomponents") %]
              <bz:grant_group>[% flag_type.grant_group.name FILTER html %]</bz:grant_group>
              <bz:request_group>[% flag_type.request_group.name FILTER html %]</bz:request_group>
            [% END %]
231 232 233 234 235 236
          </bz:flag_type>
        </li>
      [% END %]
    </Seq>
  </bz:flag_types>

237 238 239 240 241
  <bz:fields>
    <Seq>
      [% PROCESS "global/field-descs.none.tmpl" %]
      [% FOREACH item = field %]
        <li>
242
          <bz:field rdf:about="[% urlbase FILTER xml %]field.cgi?name=[% item.name FILTER url_quote %]">
243 244
            <bz:name>[% item.name FILTER html %]</bz:name>
            <bz:description>[% (field_descs.${item.name} OR item.description) FILTER html %]</bz:description>
245 246 247 248 249 250
            [%-# These values are meaningful for custom fields only. %]
            [% IF item.custom %]
              <bz:type>[% item.type FILTER html %]</bz:type>
              <bz:type_desc>[% field_types.${item.type} FILTER html %]</bz:type_desc>
              <bz:enter_bug>[% item.enter_bug FILTER html %]</bz:enter_bug>
            [% END %]
251 252 253 254 255
          </bz:field>
        </li>
      [% END %]
    </Seq>
  </bz:fields>
256 257 258
</bz:installation>

</RDF>