diff --git a/doc/wishlist.html b/doc/wishlist.html index cfde1a0c..fd39a7ec 100755 --- a/doc/wishlist.html +++ b/doc/wishlist.html @@ -33,7 +33,7 @@ starting at the items with the most votes. You can vote for a feature, or sugges FeatureVotes Get message from standard input in elog submission program1 -Implement groups of users2 +Implement groups of users3 Display the last logbook entry date and author on logbook selection page1 Multiple templates for "Preset text"1 Conditional attributes3 @@ -45,7 +45,7 @@ starting at the items with the most votes. You can vote for a feature, or sugges Make attributes to display selectable in "Find" page1 Convert elog text files into XML files and comma separated files with elconv1 On config user page, don't go back to logbook page after changing a user as admin1 - +Display a warning if a message is currently edited by someone else1

diff --git a/lock.gif b/lock.gif new file mode 100755 index 00000000..a5d8a35e Binary files /dev/null and b/lock.gif differ diff --git a/src/elogd.c b/src/elogd.c index 9d27361e..083e1e4d 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.99 2003/05/02 10:00:31 midas + Added lock icon for protected logbooks + Revision 1.98 2003/05/02 06:57:40 midas Increased MAX_ATTACHMENT to 50 @@ -11075,8 +11078,14 @@ char str[10000]; if (!getcfg(lb_list[i].name, "Hidden", str) || atoi(str) == 0) { - rsprintf("%s", lb_list[i].name_enc, lb_list[i].name); + rsprintf("%s", lb_list[i].name_enc, lb_list[i].name); + if (getcfg(lb_list[i].name, "Read password", str) || + (getcfg(lb_list[i].name, "Password file", str) && + !getcfg(lb_list[i].name, "Guest menu commands", str))) + rsprintf("  "); + + rsprintf("\n"); str[0] = 0; getcfg(lb_list[i].name, "Comment", str); rsprintf("%s \n", str);