Re: Limit number of characters for "login user" parameter string ?, posted by Stefan Ritt on Tue Jan 10 11:13:02 2017
|
There is a limit of 100 options per line, so you probably run against that. This is defined in elogd.h with MAX_N_LIST and MAX_N_ATTR. You can try to
increase these and recompile, but at some point you will hit the stack size limit of your operating system and elogd will crash.
Christine |
Elog crashing at random intervals, posted by Lee Burnside on Sat Jan 28 22:23:46 2017
|
We're running Elog 3.1.2 om SL 7.2 and keep getting random crashes, sometimes when no one is accessing a logbook. The following is from /var/log/messages
with debugging turned on after the latest crash.
Jan 28 12:43:56 archer elogd[9629]: POST /PHYS3305Spring2017/ HTTP/1.1 |
Re: Elog crashing at random intervals, posted by Lee Burnside on Mon Jan 30 12:03:36 2017
|
Never mind, version from github solved issue.
Lee |
How can change the justification of a column?, posted by fabio vitale on Mon Jan 30 17:52:20 2017
|
It is possible to change the justification for a column/attribute in the list mode (left-aligned, centered, right-aligned)?
Right now Elog treats each colum of a list as centered,
|
Re: How can change the justification of a column?, posted by Stefan Ritt on Mon Jan 30 17:58:11 2017
|
You can do that chaning the CSS of the underlying theme. But you need some experience with CSS.
fabio
vitale wrote:
It is possible to change the justification for a column/attribute |
Re: How can change the justification of a column?, posted by fabio vitale on Mon Jan 30 18:30:30 2017
|
I need to set text-align:left but only for an attribute in the List mode, For example, say that FirstName column must be left justified in list view.
What is the name of the cell content in the default elog.css?
Stefan |
Re: How can change the justification of a column?, posted by Andreas Luedeke on Tue Jan 31 08:42:54 2017
|
You might tell your browser to show you the source code of an ELOG page in list mode. There you'll find the class name you're looking for.
Cheers, Andreas
fabio |
Re: How can change the justification of a column?, posted by Stefan Ritt on Tue Jan 31 09:20:07 2017
|
The CSS class for the list display table "listframe". If you want the second column to be left-aligned, you put following into elog.css:
.listframe td:nth-child(2) {
text-align:left; |