Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
7ff5e333
You need to sign in or sign up before continuing.
Commit
7ff5e333
authored
Mar 18, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 553267: Allow specifying that you don't want flag data, for config.cgi
r=gerv, a=mkanat
parent
bec7e429
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
33 deletions
+46
-33
config.cgi
config.cgi
+9
-0
config.rdf.tmpl
template/en/default/config.rdf.tmpl
+37
-33
No files found.
config.cgi
View file @
7ff5e333
...
...
@@ -83,6 +83,15 @@ if ($cgi->param('product')) {
Bugzilla::Product::
preload
(
$vars
->
{
'products'
});
# Allow consumers to specify whether or not they want flag data.
if
(
defined
$cgi
->
param
(
'flags'
))
{
$vars
->
{
'show_flags'
}
=
$cgi
->
param
(
'flags'
);
}
else
{
# We default to sending flag data.
$vars
->
{
'show_flags'
}
=
1
;
}
# Create separate lists of open versus resolved statuses. This should really
# be made part of the configuration.
my
@open_status
;
...
...
template/en/default/config.rdf.tmpl
View file @
7ff5e333
...
...
@@ -163,17 +163,19 @@
<bz:component rdf:about="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER url_quote
%]&product=[% product.name FILTER url_quote %]">
<bz:name>[% component.name FILTER html %]</bz:name>
<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 %]
<li resource="[% urlbase FILTER xml %]flag.cgi?id=[% flag_type.id FILTER url_quote
%]&name=[% flag_type.name FILTER url_quote %]" />
[% END %]
</Seq>
</bz:flag_types>
[% IF show_flags %]
<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 %]
<li resource="[% urlbase FILTER xml %]flag.cgi?id=[% flag_type.id FILTER url_quote
%]&name=[% flag_type.name FILTER url_quote %]" />
[% END %]
</Seq>
</bz:flag_types>
[% END %]
</bz:component>
</li>
[% END %]
...
...
@@ -211,28 +213,30 @@
</bz:target_milestones>
[% END %]
<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
%]&name=[% flag_type.name FILTER url_quote %]">
<bz:id>[% flag_type.id FILTER html %]</bz:id>
<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>
[% 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 %]
</bz:flag_type>
</li>
[% END %]
</Seq>
</bz:flag_types>
[% IF show_flags %]
<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
%]&name=[% flag_type.name FILTER url_quote %]">
<bz:id>[% flag_type.id FILTER html %]</bz:id>
<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>
[% 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 %]
</bz:flag_type>
</li>
[% END %]
</Seq>
</bz:flag_types>
[% END %]
<bz:fields>
<Seq>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment