/usr/share/prayer/templates/old/dictionary.t is in prayer-templates-src 1.3.5-dfsg1-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | %# $Cambridge: hermes/src/prayer/templates/old/dictionary.t,v 1.1 2008/09/16 10:52:48 dpc22 Exp $
%#
% CALL header
% CALL toolbar
% CALL status
<h2 style="text-align: center">Personal Dictionary Maintenance</h2>
<form method="post" accept-charset="UTF-8"
enctype="multipart/form-data" action="<% dictionary |s %>">
% IFDEF $words[0]
<p>Personal Dictionary (click links to remove entries):</p>
<table style="width: 100%">
<tr>
% FOREACH $w @words
<td><a href="<% dictionary?remove=$w->word |s %>"><% $w->word |h %></a></td>
% IFDEF $w->break
</tr><tr>
% ENDIF
% ENDFOREACH
</tr></table>
% ELSE
<p>Personal Dictionary (currently empty)</p>
% ENDIF
<p>Add or remove specific words from the list:</p>
<table><tr><td><input name="add" value="" size="32" /></td>
<td><input type="submit" name="sub_add" value="Add" /></td>
</tr><tr>
<td><input name="remove" value="" size="32" /></td>
<td><input type="submit" name="sub_remove" value="Remove" /></td>
</tr><tr>
<td><input type="submit" name="sub_cancel" value="Back to Options Screen" /></td>
</tr></table></form>
% IFDEF $g_help
% CALL dictionary_help
% ENDIF
% CALL footer
|