~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to template/en/default/whine/mail.txt.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[%# 1.0@bugzilla.org %]
2
 
[%# The contents of this file are subject to the Mozilla Public
3
 
  # License Version 1.1 (the "License"); you may not use this file
4
 
  # except in compliance with the License. You may obtain a copy of
5
 
  # the License at http://www.mozilla.org/MPL/
6
 
  #
7
 
  # Software distributed under the License is distributed on an "AS
8
 
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
 
  # implied. See the License for the specific language governing
10
 
  # rights and limitations under the License.
11
 
  #
12
 
  # The Original Code is the Bugzilla Bug Tracking System.
13
 
  #
14
 
  # The Initial Developer of the Original Code is Netscape Communications
15
 
  # Corporation. Portions created by Netscape are
16
 
  # Copyright (C) 1998 Netscape Communications Corporation. All
17
 
  # Rights Reserved.
18
 
  #
19
 
  # Contributor(s): Erik Stambaugh <erik@dasbistro.com>
20
 
  #%]
21
 
 
22
 
[%# INTERFACE:
23
 
  # subject: subject line of message
24
 
  # body: message body, shown before the query tables
25
 
  # queries: array of hashes containing:
26
 
  #     bugs: array containing hashes of fieldnames->values for each bug
27
 
  #     title: the title given in the whine scheduling mechanism
28
 
  # author: user object for the person who scheduled this whine
29
 
  # recipient: user object for the intended recipient of the message
30
 
  #%]
31
 
 
32
 
[% PROCESS global/variables.none.tmpl %]
33
 
[% PROCESS 'global/field-descs.none.tmpl' %]
34
 
 
35
 
[%# assignee_login_string is a literal string used for getting the 
36
 
  # assignee's name out of the bug data %]
37
 
[% SET assignee_login_string="map_assigned_to.login_name" %]
38
 
 
39
 
[% body %]
40
 
 
41
 
[% IF author.login == recipient.login %]
42
 
  To edit your whine schedule, visit the following URL:
43
 
  [%+ Param('urlbase') %]editwhines.cgi
44
 
[% ELSE %]
45
 
  This search was scheduled by [% author.login %].
46
 
[% END %]
47
 
 
48
 
 
49
 
[% FOREACH query=queries %]
50
 
 
51
 
[%+ query.title +%]
52
 
[%+ "-" FILTER repeat(query.title.length) %]
53
 
 
54
 
 [% FOREACH bug=query.bugs %]
55
 
  [% terms.Bug +%] [%+ bug.bug_id %]:
56
 
  [%+ Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id +%]
57
 
  Priority: [%+ bug.priority -%]
58
 
  Severity: [%+ bug.bug_severity -%]
59
 
  Platform: [%+ bug.rep_platform %]
60
 
  Assignee: [%+ bug.$assignee_login_string %]
61
 
    Status: [%+ status_descs.${bug.bug_status} %]
62
 
            [%- IF bug.resolution -%] Resolution: [% get_resolution(bug.resolution) -%]
63
 
                                [%- END %]
64
 
   Summary: [% bug.short_desc %]
65
 
 
66
 
 [% END %]
67
 
 
68
 
[% END %]
69
 
 
70