Up to date windows version, posted by Finn Junker on Thu Oct 20 10:04:51 2022
|
Dear Developers
I know this topic i on and off in this forum but it seems the only updated versions of Elog are in the linux binaries. Have anybody been able to compile a windows versions since 2018?
Kind Regards Finn |
User groups, posted by Ralph Biggins on Sat Nov 5 15:21:44 2022
|
Is it possible to have within elog (defined in password file?) a user group so that only those members of a group have certain elements visible? |
Wikipedia Article deleted, posted by Sebastian Schenk on Thu Jan 19 15:28:16 2023
|
Hello,
I noticed the wikipedia article of the ELOG got deleted in November 2021.
With the reason: "Poorly sourced article, and I was not able to find good sources myself."
I could access the old article through web.archive.org, but for the project it would be good, if the article got revived. |
New elog version 3.1.5, posted by Stefan Ritt on Fri Feb 3 16:54:57 2023
|
A new version 3.1.5 of elog has been released with all accumulated fixes over the past actually few years. I made a tar file, a RPM, but I could not compile yet a windows version.
https://elog.psi.ch/elog/download.html
Best,
Stefan |
update elog downloads page, posted by Konstantin Olchanski on Fri Sep 15 21:42:38 2023
|
The elog downloads page is slightly out of date, https://elog.psi.ch/elog/download.html
1) the "git clone" instructions work (but there is no git tags corresponding to different releases, I suggest adding test: "elog developers
recommend always using latest version from elog git repository").
2) "elog source code", recommends downloading tar file, but latest tar file is from February 2023, probably out of date. people who can compile elog
from sources can do "git clone", is the "tar" method still relevant?
3) windows binaries, latest available is from 2018, before the famous security fixes, probably no longer safe for running on the open internet. I
suggest we remove this section and say "sorry, windows binaries no longer available".
4) linux binaries, all links are dead, and we have requested removal of elog packages from red hat, debian and ubuntu. (and they have been removed).
K.O. |
Maximum number of attributes, posted by Dr Marta Divall on Mon Jan 8 11:06:49 2024
|
The maximum number or attributes is 100.
Is it possible to increase this?
Thanks! |
today date in template, posted by Stefano Lacaprara on Mon Apr 8 10:49:10 2024
|
Hello,
I am using template for some elogbook entries.
Is is possible to automatically change the template using the actual date in some filed.
Something like: the template has a place-holder <start date> and this is replaced with today's date when a new entry is created.
I already have a "date" filed which is automatically filled, but I've been asked to have the date also in the template.
Thanks in advance
Stefano |
HTTP headers should be parsed case insensitive, posted by André on Mon Jul 22 16:17:55 2024
|
I'm trying to run elog behind haproxy, but get the error "Invalid Content-Length in header" on posting.
As stated in the manual, haproxy rewrites all headers to lower case.
elogd parses the content-length header case sensitive which is against the HTTP RFC. This might also apply to other headers that get parsed.
For now I'm using the workaround from the manual:
global
h1-case-adjust content-length Content-Length
h1-case-adjust content-type Content-Type
backend elog
option h1-case-adjust-bogus-server
server elog 127.0.0.1:8080
But as the manual states, this should not be used as a permanent solution. |