~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to webui/cgi-bin/templates/de/nav_history.html

  • Committer: Bazaar Package Importer
  • Author(s): Julien Valroff, Julien Valroff, Thomas Preud'homme
  • Date: 2011-05-08 13:43:52 UTC
  • mfrom: (1.2.1 upstream) (8.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20110508134352-dxjx9m6tx1cbzlhq
Tags: 3.9.1~rc1+git20110419.29261fb+dfsg-1
[ Julien Valroff ]
* New git snapshot
* Install all dspam_* tools setgid so that they can be used by standard
  users
* Add symbols file for libdspam7
* Upload to unstable

[ Thomas Preud'homme ]
* Fix permissions on dspam_stats and missing opt-{in,out} directories
  (Closes: #394443)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
2
<html>
 
3
<head><title>DSPAM v3 Verwaltungsbereich</title>
 
4
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
 
5
<link rel="icon" href="$WEB_ROOT$/favicon.ico" type="image/vnd.microsoft.icon">
 
6
<link rel="STYLESHEET" href="$WEB_ROOT$/base.css">
 
7
<script type="text/javascript" src="$WEB_ROOT$/dspam.js"></script>
 
8
</head>
 
9
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
 
10
<div id="header">
 
11
        <div id="logo">
 
12
                <a href="$CGI$?language=$LANG$" title="Home"><img src="$WEB_ROOT$/dspam-logo-small.gif" alt="DSPAM Logo"></a>
 
13
                <p>$DSPAMVERSION$</p>
 
14
        </div>
 
15
        <div id="userinfo">
 
16
                $FORM_USER$
 
17
        </div>
 
18
</div>
 
19
 
 
20
<br clear="left">
 
21
 
 
22
<div id="navcontainer">
 
23
        <ul id="navlist">
 
24
                <li><a href="$CGI$?$USER$template=performance&amp;language=$LANG$">Leistungsmerkmale</a></li>
 
25
                <li><a href="$CGI$?$USER$template=preferences&amp;language=$LANG$">Einstellungen</a></li>
 
26
                <li><a href="$CGI$?$USER$template=alerts&amp;language=$LANG$">Alarme</a></li>
 
27
                <li><a href="$CGI$?$USER$template=quarantine&amp;language=$LANG$">Quarant&auml;ne ($TOTAL_QUARANTINED_MESSAGES$)</a></li>
 
28
                <li><a href="$CGI$?$USER$template=analysis&amp;language=$LANG$">Analyse</a></li>
 
29
                <li id="active"><a id="current" href="$CGI$?$USER$template=history&amp;language=$LANG$&amp;history_page=1">Historie</a></li>
 
30
                $NAV_ADMIN$
 
31
        </ul>
 
32
</div>
 
33
 
 
34
<div id="panel">
 
35
 
 
36
<p>
 
37
Die Nachrichten die vom Filter verarbeitet wurden sind unten aufgelistet. Die neuesten Nachrichten werden zuerst aufgef&uuml;hrt.<br>Ben&uuml;tzen sie die Retrain Option, um Fehler zu korrigieren und Falsch positive Ergebnise aus ihrer Quarant&auml;ne auszuliefern.
 
38
</p>
 
39
 
 
40
<form action="dspam.cgi?language=$LANG$" method="POST">
 
41
<input type="submit" value="Retrainiere markierte Nachrichten">
 
42
<input type="hidden" name="template" value="history">
 
43
<input type="hidden" name="command" value="retrainChecked">
 
44
<input type="hidden" name="user" value="$REMOTE_USER$">
 
45
<input type="hidden" name="show" value="$SHOW$">
 
46
<input type="hidden" name="language" value="$LANG$">
 
47
 
 
48
&nbsp;&nbsp;$SHOW_SELECTOR$
 
49
 
 
50
<table border="0" cellspacing="0" cellpadding="2" width="100%">
 
51
<tr>
 
52
        <th>Typ</th>
 
53
        <th>Umtrainieren</th>
 
54
        <th>Tag/Zeit</th>
 
55
        <th>Absender</th>
 
56
        <th>Betreff</th>
 
57
        <th>Zus&auml;tzliche Info</th>
 
58
</tr>
 
59
$HISTORY$
 
60
</table>
 
61
 
 
62
$HISTORYPAGES$
 
63
 
 
64
<input type="submit" value="Retrainiere markierte Nachrichten">
 
65
</form>
 
66
 
 
67
</div>
 
68
 
 
69
 
 
70
 
 
71
<script language="javascript" type="text/javascript">
 
72
<!--
 
73
var remote = null;
 
74
 
 
75
function openwin(width, height, scroll, url) {
 
76
  remote = window.open('', 'SpecialIntro', 'width=' + width + ',height='
 
77
                  + height + ',resizable=1,dependent,scrollbars=' + scroll +
 
78
                  ',status=0');
 
79
  if (remote != null) {
 
80
    if (remote.opener == null) { remote.opener = self; }
 
81
    remote.location.href = url;
 
82
  }
 
83
}
 
84
//-->
 
85
</script>
 
86
 
 
87
</BODY>
 
88
</HTML>