ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
199
|
Fri Jan 24 12:24:18 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | | | Re: confused name in the attributes section |
> do not use confused name in attributes
> **************************************
> like
> Attributes Type, Type2
> the info on Type2 will be placed in the Type also
> see attachment 1
>
> Never use confused name like '
> Attributes PC_Memory, Memory
I acknowledge the problem. It had to do with the fact that for checkbox
options, the first checkbox is submitted in the above case as "Type0", the
second as "Type1", and the third as "Type2" which conficts with the other
attribute. I fixed that and use now "Type#0" and so on which should be fine.
The fix will be included in V2.2.6.
Stefan |
212
|
Mon Feb 10 23:36:31 2003 |
| eric wooten | wootene@verizon.net | Bug report | | | Find |
When you do a find in elog, records per page (some crazy large number - for
your forum logbook, display 57 entries seem to cause the problem, then
select last year (1 years worth of logs),(don't select printable)
the results appear way off the screen (the message body looks fine, but the
title, etc extend way off the screen).
Printable doesn't have this problem. |
220
|
Wed Feb 12 08:56:29 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | | | Re: Find |
> When you do a find in elog, records per page (some crazy large number - for
> your forum logbook, display 57 entries seem to cause the problem, then
> select last year (1 years worth of logs),(don't select printable)
>
> the results appear way off the screen (the message body looks fine, but the
> title, etc extend way off the screen).
>
> Printable doesn't have this problem.
I could not reproduce this problem. Can you send me the exact URL (the
address with all the parameters from your browser's address bar like
http://midas.psi.ch/elogdemo/Forum/?npp=57...) and tell me exactly under
which browser this happens? |
232
|
Mon Feb 24 09:23:39 2003 |
| Tomas Rudolf | tomas@mba.be | Bug report | | | Themes BUG ? |
Hi,
We prepared a customized theme to use with ELOG. It's called for example
my_theme and is situated in the THEMES directory (together with the DEFAULT
theme).
I defined the my_theme the global theme for ELOG:
[global]
Theme = my_theme
And it works fine for all the logbook in ELOG. However. The login screen
and the main menu screen (the one with list of logbooks and # of entries)
still takes the DEFAULT theme.
If I change the my_theme name to default then everything works correctly
(logon + main menu + all logbooks have the desired look).
Is the DEFAULT theme somehow hardcoded for the login screen and the main
menu ?
Thanx for your answer
Tomas Rudolf |
234
|
Mon Feb 24 13:22:06 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | | | Re: Themes BUG ? |
> Is the DEFAULT theme somehow hardcoded for the login screen and the main
> menu ?
Yes, this was in and certainly is not correct. So I fixed it, the new code
can be obtained vom CVS (see elog:233). |
241
|
Thu Mar 6 20:37:16 2003 |
| Robert Keeney | rkeeney@dfs.state.fl.us | Bug report | | | https:// changed to http:// when submit button is clicked |
I hope this is not something I did.
I'm using elog 2.3.1 on redhat 7.1 and using stunnel to redirect from port
443 to 8080. When I try to add a new record (click submit) https:// in the
browser gets changed to http://. I ve tried three browsers all with the same
result. If I go into the address field and change it to https:// after
getting a 404 error it works. The record gets posted. |
242
|
Thu Mar 6 20:49:31 2003 |
| Robert Keeney | rkeeney@dfs.state.fl.us | Bug report | | | Re: https:// changed to http:// when submit button is clicked |
> I hope this is not something I did.
>
> I'm using elog 2.3.1 on redhat 7.1 and using stunnel to redirect from port
> 443 to 8080. When I try to add a new record (click submit) https:// in the
> browser gets changed to http://. I ve tried three browsers all with the same
> result. If I go into the address field and change it to https:// after
> getting a 404 error it works. The record gets posted.
Just an update: It does the same thing when I click the back button |
243
|
Fri Mar 7 09:39:45 2003 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | | | Re: https:// changed to http:// when submit button is clicked |
> > I'm using elog 2.3.1 on redhat 7.1 and using stunnel to redirect from port
> > 443 to 8080. When I try to add a new record (click submit) https:// in the
> > browser gets changed to http://. I ve tried three browsers all with the
same
> > result. If I go into the address field and change it to https:// after
> > getting a 404 error it works. The record gets posted.
This is due to a change we had to do in the redirection of the pages. If you
submit a page, the result is a redirection using the HTTP
statement "Location: ..." inside the header. While this was a relative link
in the previous versions, we changed this into an absolute link, which then
agrees with the standard. But since elgod does not know if it runs
under "http:" or "https:", you have now to add the line
URL = https://your.server:port
into elogd.cfg. I will add this note into the documentation.
- Stefan |