ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
66231
|
Mon Mar 2 22:00:33 2009 |
| David Pilgram | David.Pilgram@epost.org.uk | Request | Linux | 2.7.5-2130 | Re: Idea/Suggestion | Hi Stefan,
Must have missed it when the fixed/not fixed thread marking got implimented.
Anyhow, my main point would still apply for where the thread is not yet fixed, but is in one of a number of possible
states (waiting, panic, work-in-progress....). Clearly you can label the latest entry in a thread with the latest
status, and icon, but when in collapsed mode, you only see the initial entry. If the latest entry were shown
(optionally), then one can tell at a glance in the collapsed listings which entry may need direct attention.
> > In the past I have requested the "mark whole thread" feature, not yet implimented.
>
> That's not correct, it is implemented. Just add an attribute for that. Assume you have problem reports, so you
> add
>
> Attributes = ..., Fixed
> Options Fixed = boolean
> Quick filter = Fixed
>
> If you add a new entry, "Fixed" is false by default. All replies to that entry will contain then the same flag.
> Now if you want to mark the whole thread as fixed, do the following:
>
> - go into list display
> - display all entries in threaded mode
> - click on "Select"
> - select the thread you want to mark as fixed and click "Edit"
> - now keep all attributes, but check the "Fixed" check box
>
> and voila, the whole thread will contain "Fixed = 1". Using the quick filter, you can now show all fixed threads
> with one click. |
66233
|
Tue Mar 3 12:38:07 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Linux | 2.7.5-2130 | Re: Idea/Suggestion | > Hi Stefan,
>
> Must have missed it when the fixed/not fixed thread marking got implimented.
>
> Anyhow, my main point would still apply for where the thread is not yet fixed, but is in one of a number of possible
> states (waiting, panic, work-in-progress....). Clearly you can label the latest entry in a thread with the latest
> status, and icon, but when in collapsed mode, you only see the initial entry. If the latest entry were shown
> (optionally), then one can tell at a glance in the collapsed listings which entry may need direct attention.
If you always mark the whole thread with states (waiting, panic, work-in-progress,...) as described in my last posting,
then you will see this from the thread initial entry as well. If you use icons, then even more. The only disadvantage
is that you have to discipline yourself always modifying the whole thread and not only one entry in that thread. |
66234
|
Wed Mar 4 16:32:56 2009 |
| Niklas | niklas@hoglund.pp.se | Bug report | Linux | 2.7.5 2142 | Re: Elogd crashes with: *** stack smashing detected *** |
Stefan Ritt wrote: |
Niklas wrote: |
Create a list of elog cookies, and store only these as parameters. Examplef:
int process_http_request(const char *request, int i_conn)
{
...
const char *cookie_list[] = { "upwd", "unm", "elmode", "urem", "wpwd", "apwd", "uname", NULL };
...
...
...
/* store cookie as parameter */
for(i=0; cookie_list[i]; i++) {
if(strcmp(cookie_list[i], str) == 0) {
setparam(str, cookie);
break;
}
}
...
|
I'm not sure if this works, since your test
i < (int) sizeof(cookie)
still will stop parsing cookies if there is one which is too long. So I added your test plus changed the parsing to:
for (i = 0; *p && *p != ';' && *p != '\r' && *p != '\n' ; )
if (i < (int) sizeof(cookie)-1)
cookie[i++] = *p++;
cookie[i] = 0;
The modification is in the curren SVN revision (# 2162). So have a look and check that it works.
|
Tried 2178 and I seem to hit some endless loop when I have big cookies. The loop seems to be in this for-loop (from gdb).
I perhaps you should have:
for (i = 0; *p && *p != ';' && *p != '\r' && *p != '\n' ; )
if (i < (int) sizeof(cookie)-1)
cookie[i++] = *p++;
else
break;
cookie[i] = 0;
... Seems to be working for me =)
|
66235
|
Wed Mar 4 16:41:27 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Linux | 2.7.5 2142 | Re: Elogd crashes with: *** stack smashing detected *** |
Niklas wrote: |
Tried 2178 and I seem to hit some endless loop when I have big cookies. The loop seems to be in this for-loop (from gdb).
I perhaps you should have:
for (i = 0; *p && *p != ';' && *p != '\r' && *p != '\n' ; )
if (i < (int) sizeof(cookie)-1)
cookie[i++] = *p++;
else
break;
cookie[i] = 0;
... Seems to be working for me =)
|
Yepp, you're right. I applied your change to the distribution code.
|
66239
|
Fri Mar 6 21:51:48 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | All | 2.7.5 | Re: Email authentication with SSL/TLS |
Val Schmidt wrote: |
Hi,
I'm curious is it possible to send email notificaitons from elog through an smtp server that requires SSL/TLS authentication? I think it's not but I thought I'd ask.
-Val
|
This is currently not implemented and will probably not implemented in the next time, but it's on my (very long) to-do list. |
66240
|
Mon Mar 9 14:50:03 2009 |
| Heinzmann | catman333@web.de | Question | Windows | 2.7.5 | Re: Login issue |
Heinzmann wrote: |
Hi,
I have found the issue, when I mark at the login page:
Keep me logged in on this computer
for the next 41 days or until I log out
I'm not able to login. Only when it is not marked I'm able to login.
How can I diable/hide the part (Keep me logged in on this computer
for the next 41 days or until I log out) from my login page?
|
|
66243
|
Mon Mar 9 18:58:18 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.7.5 | Re: Login issue |
Heinzmann wrote: |
Heinzmann wrote: |
Heinzmann wrote: |
Hi,
I have found the issue, when I mark at the login page:
Keep me logged in on this computer
for the next 41 days or until I log out
I'm not able to login. Only when it is not marked I'm able to login.
How can I diable/hide the part (Keep me logged in on this computer
for the next 41 days or until I log out) from my login page?I
Issue solved: Login expiration = 0
|
|
|
Great, you found it! The original problem is probably related to your cookie handling. If you don't check the "keep me logged it" box, elog generates a temporary cookie, which is used for the duration of your browser session, then the browser discards it. If you theck the box, a persistent cookie is created, which your browser stores in the cookie database and reuses it for the coming 41 days. I believe you have a problem there (persistent cookies not allowed, disk full, whatever...) which does not allow handling of persistent cookies. Try from anohter browser/computer and you will see that it works. |
66244
|
Mon Mar 9 19:00:26 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Windows | 2.7.5 | Re: Email recall function similar to what exists say in something like Outlook |
Niall Dooley wrote: |
Hi,
Is there a way perhaps of implementing an email recall feature into E-Log? In other words, to recall an email before the recipient (s) read the email originating from the e-log. Something perhaps along the lines of what exists in something like Outlook.
Thks in advance.
Regards,
Niall
|
No, this is not implemented. What I usually do is to check "Suppress Email notification", submit and revise my entry. Once I'm satisfied, I edit again and do not check "Suppress Email notification" so that the email is finally sent out. |
|