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

« back to all changes in this revision

Viewing changes to wwsympa/wws_templates/us/scenario_test.us.tpl

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2007-01-20 18:09:28 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070120180928-0e42mbwg87mlo44y
Tags: 5.2.3-1.2
* Non-maintainer upload to re-fix l10n issues
* As debconf-updatepo was not run in previous versions, the French
  translation was outdated. Hence fix it.
* Remove several duplicate spaces in the debconf templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- RCS Identication ; $Revision: 1.4 $ ; $Date: 2002/04/24 14:21:50 $ -->
2
 
 
3
 
 
4
 
<FORM ACTION="[path_cgi]" METHOD=POST>
5
 
    <INPUT TYPE=HIDDEN NAME="action" value="scenario_test">
6
 
    <center>
7
 
    <TABLE BORDER=0 CELLPADDING=10>
8
 
      <TR VALIGN="top">
9
 
        <TD COLSPAN=2 NOWRAP>
10
 
        <FONT COLOR="[dark_color]"><CENTER><B>Scenario test module</b></CENTER></FONT><BR>
11
 
        </TD>
12
 
      </TR>
13
 
      <TR>
14
 
        <TD>Scenari name</TD>
15
 
        <TD>
16
 
          <SELECT NAME="scenario">
17
 
              [FOREACH sc IN scenario]
18
 
                <OPTION VALUE="[sc->NAME]" [sc->selected]>[sc->NAME]
19
 
              [END]
20
 
          </SELECT>
21
 
        </TD>
22
 
    </TR>
23
 
    <TR>
24
 
        <TD>Listname</TD>
25
 
 
26
 
        <TD>
27
 
          <SELECT NAME="listname">
28
 
              [FOREACH l IN listname]
29
 
                <OPTION VALUE="[l->NAME]"[l->selected] >[l->NAME]
30
 
              [END]
31
 
          </SELECT>
32
 
        </TD>
33
 
    </TR>
34
 
    <TR>
35
 
        <TD>sender email</TD>
36
 
        <TD>
37
 
          <INPUT TYPE="text" NAME="sender" SIZE="20" value="[sender]">
38
 
        </TD>
39
 
    </TR>
40
 
    <TR>
41
 
        <TD>Related email</TD>
42
 
        <TD>
43
 
          <INPUT TYPE="text" NAME="email" SIZE="20" value="[email]">
44
 
        </TD>
45
 
    </TR>
46
 
    <TR>
47
 
        <TD>Remote addr</TD>
48
 
        <TD>
49
 
          <INPUT TYPE="text" NAME="remote_addr" SIZE="16" value="[remote_addr]">
50
 
        </TD>
51
 
    </TR>
52
 
    <TR>
53
 
        <TD>Remote host</TD>    
54
 
        <TD>
55
 
          <INPUT TYPE="text" NAME="remote_host" SIZE="16" value="[remote_host]">
56
 
        </TD>
57
 
    </TR>
58
 
    <TR>
59
 
        <TD>Auth method</TD>
60
 
        <TD>
61
 
          <SELECT NAME="auth_method">
62
 
              [FOREACH a IN auth_method]
63
 
                <OPTION VALUE="[a->NAME]"[a->selected] >[a->NAME]
64
 
              [END] 
65
 
          </SELECT>
66
 
        </TD>
67
 
    </TR>
68
 
    <TR>
69
 
 
70
 
        <TD><INPUT TYPE="submit" NAME="action_scenario_test" VALUE="get applyed rule"></TD>
71
 
        <TD bgcolor="[dark_color]">
72
 
          [IF scenario_action]
73
 
             <code>[scenario_condition], [scenario_auth_method] -> [scenario_action]</code>
74
 
          [ELSE]
75
 
          <center>-</center>
76
 
          [ENDIF]
77
 
        </TD>
78
 
 
79
 
      </TR>
80
 
 
81
 
    </TABLE>
82
 
    </CENTER>
83
 
    </FORM>
84
 
 
85
 
 
86
 
 
87
 
 
88
 
 
89
 
 
90
 
 
91
 
 
92
 
 
93
 
 
94
 
 
95