Re: Elog in HTML Title, posted by Stefan Ritt on Mon Jul 15 14:35:40 2024
|
You can change the title for the standard page with 'Page title = ...' and for the list page with 'List Page title = ...', but unfortunately not for all pages (such as the search mask).
Stefan
Michael wrote: |
Hi,
is it possible to change the name ELOG from all HTML titles.
E.g. find/search. If you click on find/search the browser/html tag/title is 'ELOG search'. Is it possible to change this to 'xxx search' and how.
|
|
change the Email From address used when sending notifications, posted by WootenE on Tue Jul 16 15:19:08 2002
|
Is there a way to change the From address used when sending notifications
from ELOG? I was hoping there might be another attribute that would go
along with the smtp host section.
Thanks,
Eric |
use LDAP and elog.pwd file, posted by scott on Fri Mar 8 13:09:31 2024
|
Hi Members,
I have compiled and installed ELOG in Ubuntu 22.04. My ELOG version is 3.1.5 revision fc6679b. I would like to use both the password file (../logbooks/elog.pwd) and the LDAP for authentication purpose. In addition to this, new users should be able to register and existing users should be able to reset their password.
Anyone could shed some light on how to do this in the configuration file?
Thanks,
Scott |
Re: read-only elog server, posted by Stefan Ritt on Mon Oct 23 16:15:06 2023
|
Use
Menu commands = List, Find, Help
to remove all command which let you create or edit entries (New, Reply, Edit, ...)
Then do the same with "List menu commands = ..."
/Stefan
Germano Massullo wrote: |
Good day. I am writing this post to ask how I can turn an elog website into a read-only version that will stay online for historical documention purposes.
I tried to search on Elog documentation but I had no success
Thank you and have a nice day
|
|
Re: UNC Pfade, posted by Stefan Ritt on Wed Oct 19 14:08:15 2022
|
UNCs are not officially supported by elog, but your operating system might map them if you're lucky, just try. It is however not recommended to do so, since network drives can sometimes be slow during network congestion and the response of elog will then suffer.
Stefan
Michael wrote: |
Hallo,
gibt es eine Möglichkeit das subdir auf ein Netzlaufwerk zu legen?
\\server\freigabe\...
Der Freigabepfad wird leider immer unter C:\... angelegt
Vielen Dank
|
|
Re: user change under webserver authentication not recognized, posted by Stefan Ritt on Fri Feb 23 15:13:46 2024
|
Thanks for the fix, I committed it. Please give it a quicky try sinc I cannot test it here (don't use webserver authentication...)
Stefan
Frank Heyroth wrote: |
I found the reason of the bug:
In line 27441 of elogd.cxx the http_user is overwritten by the user saved in the sid_ array as a sideeffect of the sid_check function:
sid_check(getparam("sid"), http_user)
It can solved by changing elogd.cxx @ line 27441
27441c27441,27446
< if (!sid_check(getparam("sid"), http_user)) { /* if we don't have a sid yet, set it */
---
> i=sid_check(getparam("sid"), thumb_name);
> if (i && strcmp(http_user,thumb_name)!=0) { /* user changed */
> sid_remove(getparam("sid"));
> i=FALSE;
> }
> if (!i) { /* if we don't have a sid yet, set it */
Remark: I have used the variables i & thumb_name of the function in a local context.
|
|
Re: 3.1.5 - Mass edit bug + Wrong version, posted by Cryptage on Wed Feb 8 10:05:03 2023
|
Thanks !
Sometime I need to edit multiple values to add a new choice.
By exemple, if I add a new column "status" (open, closed...) , it's mandatory to use select menu to add the new value to existent entries.
With a lot of lines it's not possible to edit one by one.
Stefan Ritt wrote: |
If it works with a simple edit, then why don't you use that one to edit individual values. I checked and version 3.1.4 had already the same problem, so it was not newly introduced. I would have to invest a couple of hours to fix this issue correcly, which I simply don't have right now.
|
|
Re: line breaks in 'Subject', posted by Stefan Ritt on Mon Aug 14 08:35:58 2023
|
There are two locations where 'Subject' is shown, the list display and the individual message display. I guess you mean the first one.
In that case, you can modify the CSS styel sheet 'elog.css' and add following statement to the classes list2 and list2h:
.list2 {
...
white-space: nowrap;
}
.list2h {
...
white-space: nowrap;
}
Evinrude Motor wrote: |
Certain characters contained in the 'Subject' will cause the text to split into multiple lines .
For example if I enter "My Subject" in the 'Subject' field it is displayed as
My
Subject
If I enter "My_Subject" it is displayed as
My_Subject
Is there any way to change this so no line breaks are created ?
|
|