ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
66536
|
Tue Sep 8 14:36:10 2009 |
| Gillian Sabberton | elog@gks.thamespower.com | Other | | | Elog stopped working |
We have been running elog for a couple of years now and this morning it stopped working.
We have tried to rstart it and it says successful start but still does not run, when doing a restart it says stop failed start success.
Does anyone have any ideas.
thanks
|
66534
|
Tue Sep 8 10:47:08 2009 |
| Robert-Jan Schrijvers | Robert-Jan.Schrijvers@isoft.nl | Bug report | Windows | 2.6.3-1762 | Use eLOG with Google Chrome |
Hi Stefan,
one of the eLOG users at our company, has problems using eLOG in combination with Google Chrome (version 2.0.172.43), log in gives no problem, when selecting the appropiate department, he get's the following error:
Technical Information (for support personnel)
- Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)
- IP Address: 130.78.137.1
- Date: 8-9-2009 07:13:55 [GMT]
- Server: NLISA1.top.local
- Source: proxy
This problem does not appear with other browsers like IE7/8 and Firefox.
Do you have any clue?
Tnx in advance.
kind regards, RJ Schrijvers.
sorry for the inconviniance, we have a later version of eLOG. |
66533
|
Tue Sep 8 10:46:46 2009 |
| Robert-Jan Schrijvers | Robert-Jan.Schrijvers@isoft.nl | Bug report | Windows | 2.3.9 | Use eLOG with Google Chrome |
Hi Stephan,
one of the eLOG users at our company, has problems using eLOG in combination with Google Chrome (version 2.0.172.43), log in gives no problem, when selecting the appropiate department, he get's the following error:
Technical Information (for support personnel)
- Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)
- IP Address: 130.78.137.1
- Date: 8-9-2009 07:13:55 [GMT]
- Server: NLISA1.top.local
- Source: proxy
This problem does not appear with other browsers like IE7/8 and Firefox.
Do you have any clue?
Tnx in advance.
kind regards, RJ Schrijvers. |
66532
|
Tue Sep 8 10:46:22 2009 |
| Robert-Jan Schrijvers | Robert-Jan.Schrijvers@isoft.nl | Bug report | Windows | 2.3.9 | Use eLOG with Google Chrome |
Hi Stephan,
one of the eLOG users at our company, has problems using eLOG in combination with Google Chrome (version 2.0.172.43), log in gives no problem, when selecting the appropiate department, he get's the following error:
Technical Information (for support personnel)
- Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)
- IP Address: 130.78.137.1
- Date: 8-9-2009 07:13:55 [GMT]
- Server: NLISA1.top.local
- Source: proxy
This problem does not appear with other browsers like IE7/8 and Firefox.
Do you have any clue?
Tnx in advance.
kind regards, RJ Schrijvers. |
66531
|
Mon Sep 7 15:18:39 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | 2.7.7-1 | Re: ELcode in Summary Text |
> Hello,
>
> Thank you for such a great piece of software!
>
> When displaying the entries in a log book with Summary view, ELCode is not processed in 'Text'. I know
there
> is an option called 'Allow HTML", but is there something similar for decoding ELCode in the Summary 'Text'
field?
>
> Thank you again,
> - Dan
Decoding HTML (or ELCode which translates to HTML) in the summary field is difficult, since the text is
truncated.
Assume you have some code like
Text
<b>Text
<i>Text
----- cut here
</i>
</b>
Sot he bold <b> and italics <i> tags are opened, but closed after the cutting line. In that case the whole page
might render wrongly, because everything after the summary text will be displayed in bold and italics. To fix this I
would have to scan the HTML code and close all open tags "by hand". But since there are very many possibilities,
especially if one used multi-column tables, this is almost impossible without writing my own HTML parser which is
beyond the scope of elog. So the only clean solution I have found so far is to strip off all HTML formatting and
just showing plain text there. |
66530
|
Fri Sep 4 20:44:32 2009 |
| Dan | danlei.chao@noaa.gov | Question | Linux | 2.7.7-1 | ELcode in Summary Text |
Hello,
Thank you for such a great piece of software!
When displaying the entries in a log book with Summary view, ELCode is not processed in 'Text'. I know there
is an option called 'Allow HTML", but is there something similar for decoding ELCode in the Summary 'Text' field?
Thank you again,
- Dan |
66529
|
Fri Sep 4 14:07:31 2009 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Linux | Windows | 2.7.2-2012 | Re: multiple keyword search - regular expression |
Yoshio Imai wrote: | Maybe there is a simple way.
If I understand it correctly, the entries are accepted/rejected for inclusion in the search result list based on one call to regexec. In order to search for N keywords, you could replace this by a loop of N calls to regexec, and only accept the entry if all of them find a match. |
That's right, but some people want something like
(NOT "House" and "Car") OR "Tree"
Using regex'es is a bit exotic for most users. So I hope there is some source code which implements a Google type search more or less 1:1. And Google does not use regex'es (is that right?). Here is the syntax for the Google search:
http://www.google.com/support/websearch/bin/answer.py?hl=en&answer=136861 |
66528
|
Fri Sep 4 13:59:19 2009 |
| Yoshio Imai | | Request | Linux | Windows | 2.7.2-2012 | Re: multiple keyword search - regular expression |
Maybe there is a simple way.
If I understand it correctly, the entries are accepted/rejected for inclusion in the search result list based on one call to regexec. In order to search for N keywords, you could replace this by a loop of N calls to regexec, and only accept the entry if all of them find a match. |