1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
# --
# AdminPGPForm.dtl - provides HTML form for AdminPGP html
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AdminPGPForm.dtl,v 1.13 2005/07/28 20:02:36 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
<!-- start form -->
<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="2">
<tr>
<td colspan="2" class="mainhead">
$Env{"Box0"}$Text{"PGP Management"}$Env{"Box1"}
</td>
</tr>
<tr>
<td width="30%" class="mainbody">
<form action="$Env{"CGIHandle"}" method="post">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Search">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Search"}:</td>
</tr>
<tr>
<td class="contentbody">
<table>
<tr>
<td class="contentkey">$Text{"Search for"}:</td>
<td class="contentvalue"><input type="text" name="Search" value="$QData{"Search"}" size="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" value="$Text{"Search"}">
</td>
</tr>
</table>
</form>
<br>
<form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Add">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Add"}:</td>
</tr>
<tr>
<td class="contentbody">
<table border="0" cellspacing="0" cellpadding="3">
# <tr>
# <td class="contentkey">$Text{"Ascii"}: </td>
# <td class="contentbody"> <textarea name="String" rows="6" cols="40" wrap="$Env{"BrowserWrap"}"></textarea></td>
# </tr>
<tr>
<td class="contentkey">$Text{"File"}: </td>
<td class="contentbody"> <input name="file_upload" type="file" size="14" class="fixed"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" value="$Text{"Add"}">
</td>
</tr>
</table>
</form>
</td>
<td width="70%" class="mainbody">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Result"}:</td>
</tr>
<tr>
<td class="contentbody">
<table border="0" cellspacing="0" cellpadding="3" width="100%">
<tr>
<td class="contentkey">$Text{"Type"}</td>
<td class="contentkey">$Text{"Identifier"}</td>
<td class="contentkey">$Text{"Bit"}</td>
<td class="contentkey">$Text{"Key"}/$Text{"Fingerprint"}</td>
<td class="contentkey">$Text{"Created"}/$Text{"Expires"}</td>
<td class="contentkey">$Text{"Delete"}</td>
</tr>
<!-- dtl:block:Row -->
<dtl if ($Env{"Color"} eq "") { $Env{"Color"} = "searchactive"; }>
<tr>
<td class="$Env{"Color"}">$QData{"Type"}</td>
<td class="$Env{"Color"}">$QData{"Identifier","80"}</td>
<td class="$Env{"Color"}">$QData{"Bit"}</td>
<td class="$Env{"Color"}"><a href="$Env{"Baselink"}Action=$Env{"Action"}&Subaction=Download&Type=$QData{"Type"}&Key=$QData{"Key"}">$QData{"Key"}</a>
<a href="$Env{"Baselink"}Action=$Env{"Action"}&Subaction=DownloadFingerprint&Type=$QData{"Type"}&Key=$QData{"Key"}"><div title="$QData{"Fingerprint"}">$QData{"Fingerprint","10"}</div></a></td>
<td class="$Env{"Color"}">$QData{"Created"}<br>$QData{"Expires"}</td>
<td align="center" class="$Env{"Color"}"><a href="$Env{"Baselink"}Action=$Env{"Action"}&Subaction=Delete&Type=$QData{"Type"}&Key=$QData{"FingerprintShort"}">x</a></td>
</tr>
<dtl if ($Env{"Color"} eq "searchpassive") { $Env{"Color"} = ""; }>
<dtl if ($Env{"Color"} eq "searchactive") { $Env{"Color"} = "searchpassive"; }>
<!-- dtl:block:Row -->
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end form -->
<!-- start note -->
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr>
<td class="mainhead">
$Env{"Box0"}$Text{"Note"}$Env{"Box1"}
</td>
</tr>
<tr>
<td class="mainbody">
<p>
$Text{"In this way you can directly edit the keyring configured in SysConfig."}
<br>
$Text{"Description"}: <a href="http://en.wikipedia.org/wiki/Pretty_Good_Privacy" target="_blank">http://en.wikipedia.org/wiki/Pretty_Good_Privacy</a>
</p>
</td>
</tr>
</table>
<!-- end note -->
|