~ubuntu-branches/debian/squeeze/sympa/squeeze

« back to all changes in this revision

Viewing changes to web_tt2/active_lists.tt2

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2008-10-05 12:36:30 UTC
  • mfrom: (1.1.5 upstream) (6.1.3 gutsy)
  • Revision ID: james.westby@ubuntu.com-20081005123630-8ga1kt0ogrkqaizf
Tags: 5.3.4-6
* fix usage of $* Perl variable deprecated in Perl 5.10 
  (Closes: #501154, thanks to Micah Anderson <micah@debian.org> and
  David Moreno <david@dev.axiombox.com> for the report and patches)
* add the sympa.pl --upgrade procedure to the debian/postinst 
  to migrate existing installs (Closes: #498144, thanks to Micah
  Anderson <micah@debian.org> for the patch)
* additional patch for insecure use of /tmp (Closes: #496520)
* missing debian/compat file added

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- $Id: active_lists.tt2,v 1.6 2005/08/09 09:52:42 sympa-authors Exp $ -->
 
1
<!-- $Id: active_lists.tt2 3996 2006-11-03 13:43:20Z sympa-authors $ -->
2
2
 
3
3
 
4
4
<h2 class="block"> <strong>
5
5
 [% IF count %]
6
6
   [%|loc(count)%] The %1 most active lists [%END%] 
7
7
 [% ELSE %]
8
 
   [%|loc%] The active lists [%END%] 
 
8
   [%|loc%] Active lists [%END%] 
9
9
 [% END %]
10
10
 
11
11
 [% IF for %]
15
15
 
16
16
<br /> 
17
17
 
18
 
<table style="border: solid 1px; width: auto; margin: 10px">
19
 
<tr style="background-color: [% color_4 %];">
20
 
   <th style="padding: 3px; white-space: nowrap; border: solid 1px;"><strong>[%|loc%]List name[%END%]</strong></th>
21
 
   <th style="padding: 3px; white-space: nowrap; border: solid 1px;"><strong>[%|loc%]# message[%END%]</strong></th>     
22
 
   <th style="padding: 3px; white-space: nowrap; border: solid 1px;"><strong>[%|loc%]Average by day[%END%]</strong></th>        
23
 
   <th style="padding: 3px; white-space: nowrap; border: solid 1px;"><strong>[%|loc%]Creation date[%END%]</strong></th>
24
 
   <th style="padding: 3px; white-space: nowrap; border: solid 1px;"><strong>[%|loc%]Subject[%END%]</strong></th>
 
18
<table class="listOfItems" summary="[%|loc(count)%] The %1 most active lists [%END%][%|loc(for)%] for %1 days [%END%]">
 
19
<tr class="color4">
 
20
   <th id="list_name"><strong>[%|loc%]List name[%END%]</strong></th>
 
21
   <th id="message"><strong>[%|loc%]# message[%END%]</strong></th>      
 
22
   <th id="average"><strong>[%|loc%]Average by day[%END%]</strong></th> 
 
23
   <th id="date"><strong>[%|loc%]Creation date[%END%]</strong></th>
 
24
   <th id="subject"><strong>[%|loc%]Subject[%END%]</strong></th>
25
25
 </tr>
26
26
 
27
27
[% SET dark = '0' %]
28
28
[% FOREACH l = active_lists %]
29
 
  [% IF dark == '1' %]<tr valign="top">[% SET dark = '0' %][% ELSE %]<tr style="background-color: [% color_0 %];" valign="top">[% SET dark = '1' %][% END %]
 
29
  [% IF dark == '1' %]<tr>[% SET dark = '0' %][% ELSE %]<tr class="color0">[% SET dark = '1' %][% END %]
30
30
 
31
 
   <td>
 
31
   <td headers="list_name">
32
32
     <a href="[% path_cgi %]/info/[% l.name %]" ><strong>[% hidden_head %][% l.name %][% hidden_at %][% l.host %][% hidden_end %]</strong></a>
33
33
   </td>
34
 
  <td style="text-align: center;"> [% l.msg_count %] </td>
35
 
  <td style="text-align: center;"> [% l.average %] </td>
36
 
  <td> [% l.date %] </td>
37
 
  <td> [% l.subject %] </td>
 
34
  <td class="text_center" headers="message"> [% l.msg_count %] </td>
 
35
  <td class="text_center" headers="average"> [% l.average %] </td>
 
36
  <td headers="date"> [% l.date %] </td>
 
37
  <td headers="subject"> [% l.subject %] </td>
38
38
 </tr>
39
39
 
40
40
 [% END %]