diff options
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/config.js.tmpl | 12 | ||||
-rw-r--r-- | template/en/default/config.rdf.tmpl | 13 |
2 files changed, 24 insertions, 1 deletions
diff --git a/template/en/default/config.js.tmpl b/template/en/default/config.js.tmpl index 26d089fd6..a74c5d34d 100644 --- a/template/en/default/config.js.tmpl +++ b/template/en/default/config.js.tmpl @@ -101,8 +101,18 @@ var component_exceptions = new Array( // // ^^^^ ); +// Queryable Fields +// ================ +[% PROCESS "global/field-descs.none.tmpl" %] +var field = [ +[% FOREACH x = field %] + { name: '[% x.name FILTER js %]', + description: '[% (field_descs.${x.name} OR x.description) FILTER js %]' }, +[% END %] +]; + // Deprecated Variables -// ================================ +// ==================== // // Other names for various variables. These are deprecated // and could go away at any time. Use them at your own risk! diff --git a/template/en/default/config.rdf.tmpl b/template/en/default/config.rdf.tmpl index 6aa51f657..884c26a0c 100644 --- a/template/en/default/config.rdf.tmpl +++ b/template/en/default/config.rdf.tmpl @@ -180,6 +180,19 @@ </bz:target_milestones> [% END %] + <bz:fields> + <Seq> + [% PROCESS "global/field-descs.none.tmpl" %] + [% FOREACH item = field %] + <li> + <bz:field rdf:about="[% Param('urlbase') %]field.cgi?name=[% item.name FILTER uri %]"> + <bz:name>[% item.name FILTER html %]</bz:name> + <bz:description>[% (field_descs.${item.name} OR item.description) FILTER html %]</bz:description> + </bz:field> + </li> + [% END %] + </Seq> + </bz:fields> </bz:installation> </RDF> |