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
508d532f
Commit
508d532f
authored
May 27, 2012
by
Frank Becker
Committed by
Frédéric Buclin
May 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 690873: config.cgi should include keyword descriptions
r/a=LpSolit
parent
a1b2e423
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
config.cgi
config.cgi
+1
-1
config.rdf.tmpl
template/en/default/config.rdf.tmpl
+9
-4
No files found.
config.cgi
View file @
508d532f
...
...
@@ -44,7 +44,7 @@ $vars->{'priority'} = get_legal_field_values('priority');
$vars
->
{
'severity'
}
=
get_legal_field_values
(
'bug_severity'
);
$vars
->
{
'platform'
}
=
get_legal_field_values
(
'rep_platform'
);
$vars
->
{
'op_sys'
}
=
get_legal_field_values
(
'op_sys'
);
$vars
->
{
'keyword
'
}
=
[
map
(
$_
->
name
,
Bugzilla::
Keyword
->
get_all
)
];
$vars
->
{
'keyword
s'
}
=
[
Bugzilla::
Keyword
->
get_all
];
$vars
->
{
'resolution'
}
=
get_legal_field_values
(
'resolution'
);
$vars
->
{
'status'
}
=
get_legal_field_values
(
'bug_status'
);
$vars
->
{
'custom_fields'
}
=
...
...
template/en/default/config.rdf.tmpl
View file @
508d532f
...
...
@@ -54,13 +54,18 @@
</Seq>
</bz:resolution>
<bz:keyword>
<bz:keyword
s
>
<Seq>
[% FOREACH item = keyword %]
<li>[% item FILTER html %]</li>
[% FOREACH keyword = keywords %]
<li>
<bz:keyword rdf:about="[% escaped_urlbase %]keyword.cgi?name=[% keyword.name FILTER uri %]">
<bz:name>[% keyword.name FILTER html %]</bz:name>
<bz:description>[% keyword.description FILTER html %]</bz:description>
</bz:keyword>
</li>
[% END %]
</Seq>
</bz:keyword>
</bz:keyword
s
>
<bz:platform>
<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