Renames 'display search' to 'list display'

SVN revision: 591
This commit is contained in:
Stefan Ritt 2003-07-17 08:01:24 +00:00
parent 1a0084b7b1
commit 83b0c9201a
2 changed files with 14 additions and 7 deletions

View File

@ -725,13 +725,13 @@ used by most browsers for bookmark names. The string can contain substitutions
as described unter the "<I>Subst &lt;attribute&gt;</I>" option.
<p>
<LI><b><code>Display search = &lt;list&gt;</code></b>
<LI><b><code>List display = &lt;list&gt;</code></b>
<br>
Specified the display and order of items in a search result page. In addition
to all attributes, one can specify here <b>"ID"</b> for the message ID, <b>"Logbook"</b>
and <b>"Date"</b>. The restriction to certain attributes can be helpful if many
attributes are defined in a logbook, which usually makes the table too big to
fit in the browser. The default
Specified the display and order of items in a message listing page or a search
result page. In addition to all attributes, one can specify here <b>"ID"</b> for
the message ID, <b>"Logbook"</b> and <b>"Date"</b>. The restriction to certain
attributes can be helpful if many attributes are defined in a logbook, which
usually makes the table too big to fit in the browser. The default
is<br>
<pre>
Display search = ID, Date, &lt;all attributs&gt;

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG
$Log$
Revision 1.137 2003/07/17 08:01:24 midas
Renames 'display search' to 'list display'
Revision 1.136 2003/07/15 12:29:10 midas
Fixed typo
@ -9699,7 +9702,11 @@ LOGBOOK *lbs_cur;
size = printable ? 2 : 3;
if (getcfg(lbs->name, "Display search", list))
list[0] = 0;
if (!getcfg(lbs->name, "List display", list)) /* new 2.3.10 format */
getcfg(lbs->name, "Display search", list); /* old 2.3.9 format */
if (list[0])
n_attr_disp = strbreak(list, disp_attr, MAX_N_ATTR);
else
{