ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
69615
|
Wed Jan 4 14:23:12 2023 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug fix | All | ELOG V3.1.4-493 | wrap "pre" tag in a "div" with fixed width |
> Sorry, I forgot to mention that I also added some styles to the <pre> tag:
> style="white-space: normal"
> (see the screenshot on my previous post)
Actually the
style="white-space: normal"
makes the difference, the <div> is not necessary at all!
But I'm not sure that "white-space: normal" is what we want. All manual line breaks in an entry are collapsed and you get just one text block without any new line. See here
https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
I guess we want "white-space: pre-wrap" which keeps the old line breaks.
You can try that out by changing elog.css:
--- a/themes/default/elog.css
+++ b/themes/default/elog.css
@@ -475,6 +475,7 @@ td {
.messagepre {
font-family:'lucida console',courier,monospace;
+ white-space:pre-wrap;
}
and see the effect. If you like it, just keep it. No need to recompile elogd.cxx.
Stefan |
69616
|
Wed Jan 4 14:38:54 2023 |
| Andrey Pashnin | kowaraj4stuff@gmail.com | Bug fix | All | ELOG V3.1.4-493 | white-space: pre-wrap" |
> I guess we want "white-space: pre-wrap" which keeps the old line breaks.
Yep. You're right. Thanks! |
69668
|
Tue May 2 02:57:45 2023 |
| cheref mohamed lamine | emeland85@gmail.com | Bug fix | Windows | 3.1.4 | issue where not all users are able to log into their sessions |
I have an issue where not all users are able to log into their sessions and they are still settling on the login page |
Attachment 1: Login.PNG
|
|
12458
|
Sat Mar 25 07:23:02 158 |
| | | | | | |
|
46
|
Mon Jul 1 13:56:12 2002 |
| Mo | msheikh25@hotmail.com | | | | Options <attribute> = List???? |
Hello,
Is it possible to have a drop down list with commas in the options.
For instance, if you want to have a attribute "CityState" you would
probably want a comma between the City and State name. Since the Options
are separated by commas, it turns into two different options. I dont know
if there is a way to do this or if this is a bug?
MO |
50
|
Thu Jul 4 16:52:59 2002 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | | | | elog submit problem |
If a message is submitted via the elog command then the reply string '> ' is only inserted in the first line if a reply is made.
This message was submitted with the following commandline:
elog -v -h midas.psi.ch -p 80 -s elogdemo -l Forum -a "Icon=icon4.gif" -a "Author=Heiko Scheit" -a "Author Email=h.scheit@mpi-hd.mpg.de" -a "Subject=elog submit problem" "...Message-text..."
Please press the reply button to see the problem. |
107
|
Thu Aug 15 13:00:20 2002 |
| Marcel Pils | marcel_pils@web.de | | | | problems by defining the password file |
i work on Windows2000
part of my elog.cfg:
Passwort file = c:\elog\passwd.txt
Self register = 1
Guest user commands = config, admin, logout
file system:
- i created an emty file with name passwd.txt
problem:
- if i use the link "Register as new user" on login, it does not work.
- if i login as guest user and choose the menu config, it only
display the attributes Login_name, Full_name and Email.
So i kann not create user.
what should i do ?
what are my mistakes ?
Can you attache as sample password file ? |
108
|
Thu Aug 15 18:00:36 2002 |
| Marcel Pils | marcel_pils@web.de | | | | Re: problems by defining the password file |
in Unix:
i fixed the problem by defining a password file entry like 'user1::::'.
then i defined 'admin user = user1' in elogd.cfg.
then i connected with login name 'user1' and created new user (as admin).
in Windows2000:
if i do this steps and i save the new user, it fails. the server service
crash down.
> i work on Windows2000
>
> part of my elog.cfg:
>
> Passwort file = c:\elog\passwd.txt
> Self register = 1
> Guest user commands = config, admin, logout
>
> file system:
>
> - i created an emty file with name passwd.txt
>
> problem:
>
> - if i use the link "Register as new user" on login, it does not work.
> - if i login as guest user and choose the menu config, it only
> display the attributes Login_name, Full_name and Email.
> So i kann not create user.
>
> what should i do ?
> what are my mistakes ?
>
> Can you attache as sample password file ? |