From 4302bafb0583830649ced57f931eddb7a2af4829 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Wed, 20 Feb 2013 16:26:57 +0000 Subject: Start from scratch --- template/en/default/list/list.atom.tmpl | 101 -------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 template/en/default/list/list.atom.tmpl (limited to 'template/en/default/list/list.atom.tmpl') diff --git a/template/en/default/list/list.atom.tmpl b/template/en/default/list/list.atom.tmpl deleted file mode 100644 index ed0c660..0000000 --- a/template/en/default/list/list.atom.tmpl +++ /dev/null @@ -1,101 +0,0 @@ -[%# 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): Walter Hoehn - # John Belmonte - # Jason Remillard - # Phil Ringnalda - # - # This is a template for generating an Atom representation of a buglist. - #%] - -[% PROCESS "global/field-descs.none.tmpl" %] - -[% DEFAULT title = "$terms.Bugzilla $terms.Bugs" %] - - - - [% title FILTER xml %] - - - [% bugs.sort('changedtime').last.changedtime FILTER time("%Y-%m-%dT%H:%M:%SZ", "UTC") - FILTER xml %] - [% urlbase FILTER html %]buglist.cgi?[% urlquerypart FILTER xml %] - - [% FOREACH bug = bugs %] - - [% "@" IF bug.secure_mode %][[% terms.Bug %] [%+ bug.bug_id FILTER xml %]] [% bug.short_desc FILTER xml %] - - [% urlbase FILTER xml %]show_bug.cgi?id=[% bug.bug_id FILTER xml %] - - [% bug.reporter_realname ? bug.reporter_realname : bug.reporter FILTER xml %] - - [% bug.changedtime FILTER time("%Y-%m-%dT%H:%M:%SZ", "UTC") FILTER xml %] - - [%# Filter out the entire block, so that we don't need to escape the html code out %] - [% FILTER xml %] - - - - - - - - - - - - - - - - - - - - - - - - - - - - [% IF Param("usetargetmilestone") %] - - - - [% END %] - - - - - - - -
FieldValue
[% columns.product.title FILTER html %][% bug.product FILTER html %]
[% columns.component.title FILTER html %][% bug.component FILTER html %]
[% columns.assigned_to_realname.title FILTER html %][% bug.assigned_to_realname ? bug.assigned_to_realname : bug.assigned_to FILTER html %]
[% columns.reporter_realname.title FILTER html %][% bug.reporter_realname ? bug.reporter_realname : bug.reporter FILTER html %]
[% columns.bug_status.title FILTER html %][% display_value("bug_status", bug.bug_status) FILTER html %]
[% columns.resolution.title FILTER html %] [% display_value("resolution", bug.resolution) FILTER html %]
[% columns.priority.title FILTER html %][% display_value("priority", bug.priority) FILTER html %]
[% columns.bug_severity.title FILTER html %] [% display_value("bug_severity", bug.bug_severity) FILTER html %]
[% columns.target_milestone.title FILTER html %][% bug.target_milestone FILTER html %]
[% columns.opendate.title FILTER html %][% bug.opendate FILTER html %]
[% columns.changeddate.title FILTER html %][% bug.changeddate FILTER html -%]
- [% END %] -
-
- [% END %] -
-- cgit v1.2.1