ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
401
|
Thu Jul 17 10:28:22 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | v2.3.9 | Re: Modify the date of an entry? |
> I figured out how to hide columns, using the "Display search" parameter. (BTW,
> suggest you modify the Administrator manual to mention that "Display search" applies
> to the initial display as well as any "Find"s. I had seen this, but assumed it
> only applied to actual search results.)
Fully agree. The name comes from historical reasons. I renamed "Display search"
to "List Display". Will come in the next version.
> Still have not figured out how to change
> the default sort attribute however.
There is a little trick to do that:
Start page = ?rsort=Issue
Since sorting is done only lexically, you need a special date format like
Date format = %Y %m %d
in order to sort correctly. |
404
|
Fri Jul 18 01:58:10 2003 |
| Gary Cramblitt | garycramblitt@comcast.net | Question | Linux | v2.3.9 | Re: Modify the date of an entry? |
> > I figured out how to hide columns, using the "Display search" parameter. (BTW,
> > suggest you modify the Administrator manual to mention that "Display search" applies
> > to the initial display as well as any "Find"s. I had seen this, but assumed it
> > only applied to actual search results.)
>
> Fully agree. The name comes from historical reasons. I renamed "Display search"
> to "List Display". Will come in the next version.
>
> > Still have not figured out how to change
> > the default sort attribute however.
>
> There is a little trick to do that:
>
> Start page = ?rsort=Issue
>
> Since sorting is done only lexically, you need a special date format like
>
> Date format = %Y %m %d
>
> in order to sort correctly.
Thanks again! That did the trick. One little hassle is that I had to go back and edit
all the Issue fields in my existing records so they would have the correct date format.
Rock on OSS! |
407
|
Wed Jul 23 12:53:25 2003 |
| Robert Keeney | brassrlk@yahoo.com | Question | Linux | elog-2.3.6-1 | Re: Email Notification |
I have had this installed for about two weeks now and it seems to be working
fine. I haven't seen any problems at all and none of the other users have
reported any.
Thanks. This is very helpful.
> > Is there a way to configure elog so users that have their email notification
> > on only get notified for updates to logs they have access to? I've looked
> > all through the documentation and I can't seem to find a way to do this.
>
> I guess you have a global password file and use "login user" statements for
> your logbooks. I have added some code which does per default not send any
> email to people who are not in the "login user" list, in case this list is
> present. New code under CVS. Please give it a try and let me know if it works
> for you.
>
> - STefan |
419
|
Thu Jul 31 16:02:41 2003 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | Bug report | Linux | 2.3.9 | not proper HTML |
I just upgraded from 2.3.5 to 2.3.9.
There are some errors in the generated HTML. Most of the time
the browser renders everything correctly but sometimes not. Please
check especially (http://validator.w3.org/):
- http://midas.psi.ch/elogdemo/Database/7
There are too many <table> tags before the attribute list:
'Type', 'Operating system',... This should be just one table and
not each row a separate table. Also the first <table> tag lies
outside a <td> tag of the enclosing table.
- http://midas.psi.ch/elogdemo/forum/ |
420
|
Fri Aug 1 13:18:42 2003 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | Bug fix | Linux | 2.3.9. | problem with boolean attributes |
Boolean attributes were not displayed correctly in version 2.3.9.
Patch is attached. |
Attachment 1: elog.diff
|
--- elogd.c Fri Aug 1 13:13:09 2003
+++ elogd.c_ Fri Aug 1 13:12:59 2003
@@ -11275,10 +11275,10 @@
{
if (atoi(attrib[i]) == 1)
rsprintf("%s:</td><td class=\"%s\"><input type=checkbox checked disabled></td>\n",
- attr_list[i], class_value);
+ class_value, attr_list[i]);
else
rsprintf("%s:</td><td class=\"%s\"><input type=checkbox disabled></td>\n",
- attr_list[i], class_value);
+ class_value, attr_list[i]);
}
/* display image for icon */
else if (attr_flags[i] & AF_ICON)
|
421
|
Mon Aug 4 14:02:52 2003 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | Bug fix | Linux | 2.3.9. | width of the textarea is too large (after reply) |
The width of the textarea after pressing reply is too large.
The problem is that the algorithm that searches for the longes line
looks for the next '\r' which it does not find and therefore takes the
number of characters in the text to be the width of the longest line.
To search for '\n' instead should solve the problem. Please find the
diff output below.
$ diff -c elogd.c elogd.c~
*** elogd.c Mon Aug 4 13:57:35 2003
--- elogd.c~ Fri Aug 1 13:13:09 2003
***************
*** 6028,6035 ****
p = text;
do
{
! /* pend = strchr(p, '\r'); */
! pend = strchr(p, '\n');
if (pend == NULL)
pend = p+strlen(p);
--- 6028,6034 ----
p = text;
do
{
! pend = strchr(p, '\r');
if (pend == NULL)
pend = p+strlen(p);
|
426
|
Fri Sep 5 17:17:03 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug fix | Linux | 2.3.9. | Re: width of the textarea is too large (after reply) |
> The width of the textarea after pressing reply is too large.
> The problem is that the algorithm that searches for the longes line
> looks for the next '\r' which it does not find and therefore takes the
> number of characters in the text to be the width of the longest line.
> To search for '\n' instead should solve the problem. Please find the
> diff output below.
Ok, implemented, thanks. |
427
|
Fri Sep 5 17:19:11 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug fix | Linux | 2.3.9. | Re: problem with boolean attributes |
> Boolean attributes were not displayed correctly in version 2.3.9.
> Patch is attached.
Yes, implemented, thank you. |