ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
423
|
Thu Aug 7 15:21:40 2003 |
| David | benutzersupport@bkitech.de | Question | Windows | 2.38 (?) | email Notification |
Good day! I´m a german guy so my english is not the best sorry for this...
I have my Elog completely configured now have I still another problem I
would like with a new entry a E-Mail address to select to be able itself
where the again provided entry am then hang-sent can me there someone
help? already the whole has after forum answers scanned. Thanks David |
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);
|
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)
|
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/ |
418
|
Thu Jul 31 06:39:40 2003 |
| Kishore Masand | kishorem@hotmail.com | Question | Windows | 2.3.9 | How to get a list of registered users assigned to an attribute? |
Hi,
I am trying to create an issues logbook where I have defined an attribute
so I can track who this issue is assigned to. In order to get a drop-down
list of users of the system to show up for that attribute (when creating a
new issue), I have to type in the whole list of users in the config file.
The problem is that whenever a user self-registers, I have to go into the
config file and add that user to the list. Is there a way to write
something like this:
Options Assigned To = $user_list
I am a new user, and am thoroughly enjoying working with ELog. Thanks for
such a neat product. I have not been able to go through all the logs yet
to figure out if this question has been asked/answered before. |
417
|
Wed Jul 30 08:13:56 2003 |
| eric wooten | wootene@verizon.net | Request | Windows | 2.3.9 | Account expiration |
I know there's an item on the wishlist for password expiration, so how
about account expiration..?? (after so many days of inactivity).
One complaint that comes from management is that when a user leaves the
agency, the elog account seems to never get deleted. There way of asking
me, why I never keep up with the user account deletions. Ha Ha, like I
have time to constantly compare the user list from elog to the user list of
other systems.
Another plea on my part, for Elog to allow for authentication via external
database - such as LDAP, so we wouldn't have to maintain another user
database.
Thanks,
Eric |
416
|
Sun Jul 27 16:09:09 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.3.9 | Re: using = or <> or AND as part of a filter ?? |
> Is this possible? If so, could you provide an example:
>
> I'm trying to find a way that when you do a search, that you can filter
> entries using ( = , <>, AND) on one or more attributes.
> ex: Find all workstations for this subnet, but exclude a particular one.
> Thats the basic idea.
>
> Can it be done? If so, how?
No, it cannot be done right now, but it's on the wishlist since some time.
So I added your vote there. |
415
|
Sat Jul 26 20:11:01 2003 |
| eric wooten | wootene@verizon.net | Question | Windows | 2.3.9 | using = or <> or AND as part of a filter ?? |
Is this possible? If so, could you provide an example:
I'm trying to find a way that when you do a search, that you can filter
entries using ( = , <>, AND) on one or more attributes.
ex: Find all workstations for this subnet, but exclude a particular one.
Thats the basic idea.
Can it be done? If so, how?
Thanks,
Eric |