]> git.donarmstrong.com Git - debbugs.git/blob - templates/en_US/cgi/short_bug_status.tmpl
merge changes from dla source
[debbugs.git] / templates / en_US / cgi / short_bug_status.tmpl
1 <div class="shortbugstatus">
2   <a href="{html_escape(bug_links(bug=>$status{bug_num},links_only=>1))}"{length($status{done})?' style="text-decoration:line-through"':''}>#{html_escape($status{bug_num})}</a>
3   [<font face="fixed"><a href="javascript:extra_status_visible({html_escape($status{bug_num})})">{
4   my $output = qq(<span title="$status{severity}">);
5   my $temp = $status{severity};
6   $temp = substr $temp,0,1;
7   if (isstrongseverity($status{severity})){
8      $temp = q(<em class="severity">).uc($temp).q(</em);
9   }
10   $output .= $temp.qq(</span>);
11   $output;
12   }|{
13   my $output = '';
14   for my $tag (@{$status{tags_array}}) {
15      next unless exists $config{tags_single_letter}{$tag};
16      $output .= q(<span title=").$tag.q(">).$config{tags_single_letter}{$tag}.q(</span>);
17   }
18   $output;
19   }|{
20   my $output = '';
21   if (@{$status{mergedwith_array}}) {
22      $output .= qq(<span title="merged">=</span>);
23   }
24   if (@{$status{fixed_versions}}) {
25      $output .= qq(<span title="fixed versions">☺</span>);
26   }
27   if (@{$status{blockedby_array}}) {
28      $output .= qq(<span title="blocked by">┫</span>);
29   }
30   if (@{$status{blocks_array}}) {
31      $output .= qq(<span title="blocks">┣</span>);
32   }
33   if (length($status{forwarded})) {
34      $output .= qq(<span title="forwarded">↝</span>);
35   }
36   if ($status{archived}) {
37      $output .= qq(<span title="archived">♲</span>);
38   }
39   $output;
40   }</a></font>]
41   [{package_links(package=>$status{package},options=>\%options,class=>"submitter")}]
42   <a href="{html_escape(bug_links(bug=>$status{bug_num},links_only=>1))}">{html_escape($status{subject})}</a>
43   <div id="extra_status_{html_escape($status{bug_num})}" class="shortbugstatusextra">
44   <span>Reported by: {package_links(submitter=>$status{originator})};</span>
45   <span>Date: {$status{date_text}};</span>
46 { my $output = ''; 
47   if (defined $status{owner} and length $status{owner}) {
48      $output = q(<span>Owned by: ).package_links(owner=>$status{owner}).q(;</span>);
49   }
50   $output;
51 }
52 <span>Severity: {my $output = $status{severity};
53               if (isstrongseverity($status{severity})) {
54                    $output = q(<em class="severity">).$status{severity}.q(</em>);
55               }
56               $output;
57              };</span>
58 <span>{@{$status{tags_array}}?q(Tags: ).html_escape(join(q(, ),@{$status{tags_array}})).';':''}</span>
59 {my $output = '';
60  if (@{$status{mergedwith_array}}) {
61     $output .= q(<span>Merged with ).join(qq(,\n),bug_links(bug=>$status{mergedwith_array})).qq(;</span>\n);
62  }
63  $output;
64 }
65 {my $output = '';
66  if (@{$status{found_versions}} or @{$status{fixed_versions}}) {
67     $output .= '<a href="'.
68           version_url(package => $status{package},
69                       found   => $status{found_versions},
70                       fixed   => $status{fixed_versions},
71                      ).'") ';
72  }
73  if (@{$status{found_versions}}) {
74     $output .= q(<span>Found in );
75     $output .= (@{$status{found_versions}} == 1) ? 'version ' : 'versions ';
76     $output .= join(qq(, ),map {html_escape($_);} @{$status{found_versions}}).qq(;</span>\n);
77  }
78  if (@{$status{fixed_versions}}) {
79     $output .= q(<span>Fixed in );
80     $output .= (@{$status{fixed_versions}} == 1) ? 'version ' : 'versions ';
81     $output .= join(qq(, ),map {html_escape($_);} @{$status{fixed_versions}}).qq(;</span>\n);
82  }
83  if (@{$status{found_versions}} or @{$status{fixed_versions}}) {
84     $output .= qq(</a>);
85  }
86  $output;
87 }
88 { my $output = '';
89   if (length($status{done})) {
90      $output .= q(<span><strong>Done:</strong> ).html_escape($status{done}).q(;</span> )
91   }
92   $output;
93 }
94 { my $output = '';
95   if (@{$status{blockedby_array}}) {
96      $output .= q(<span>Fix blocked by ).
97         join(q(, ),
98          map {bug_links(bug=>$_->{bug_num}).q(: ).html_escape($_->{subject})}
99          @{$status{blockedby_array}}).q(;</span> )
100   }
101   if (@{$status{blocks_array}}) {
102      $output .= q(<span>Blocking fix for ).
103         join(q(, ),
104          map {bug_links(bug=>$_->{bug_num}).q(: ).html_escape($_->{subject})}
105          @{$status{blocks_array}}).q(;</span> )
106   }
107   $output;
108 }{ my $output = '';
109  my ($days_last,$eng_last) = secs_to_english(time - $status{log_modified});
110  my ($days,$eng) = secs_to_english(time - $status{date});
111
112  if ($days >= 7) {
113    my $font = "";
114    my $efont = "";
115    $font = "em" if ($days > 30);
116    $font = "strong" if ($days > 60);
117    $efont = "</$font>" if ($font);
118    $font = "<$font>" if ($font);
119
120    $output .= "<span>${font}Filed $eng ago$efont;</span>\n";
121  }
122  if ($days_last > 7) {
123    my $font = "";
124    my $efont = "";
125    $font = "em" if ($days_last > 30);
126    $font = "strong" if ($days_last > 60);
127    $efont = "</$font>" if ($font);
128    $font = "<$font>" if ($font);
129
130    $output .= "<span>${font}Modified $eng_last ago$efont;</span>\n";
131  }
132  $output;
133  }{ my $output = '';
134   if (exists $status{archived} and $status{archived}) {
135      $output .= q(<span>Bug is archived. No further changes may be made.<span> )
136   }
137   $output}</div>
138 </div>