Expand all at elog home, posted by Alex H on Wed Mar 16 16:13:15 2005
|
Hi,
Is there a command line in the configuration files to show all of sub logs
on the main page of elog instead of clicking on "Expand All" on the top of
ELOG ?
Thanks |
Re: Expand all at elog home, posted by Alex H on Fri Mar 25 12:49:13 2005
|
> Hi,
>
> Is there a command line in the configuration files to show all of sub
logs
> on the main page of elog instead of clicking on "Expand All" on the top
of
> ELOG ?
>
> Thanks
Up ! :o)
So I have posted a picture to explain better my question.
So could it be possible to have the index page always expanded ?
thanks for answers.
Alex. |
Re: Expand all at elog home, posted by Stefan Ritt on Tue Mar 29 09:57:29 2005
|
> So I have posted a picture to explain better my question.
> So could it be possible to have the index page always expanded ?
> thanks for answers.
I added a new configuration option "Expand selection page" which defaults to
one. So if nothing is changed in the configuration file, the logbook selection
page is expanded by default. Only if one has very many logbooks and wants back
the old behaviour, one has to add "Expand selection page = 0" in the config
file. The new version is under CVS. |
Re: Expand all at elog home, posted by Alex H on Wed Mar 30 15:12:54 2005
|
> > So I have posted a picture to explain better my question.
> > So could it be possible to have the index page always expanded ?
> > thanks for answers.
>
> I added a new configuration option "Expand selection page" which defaults to
> one. So if nothing is changed in the configuration file, the logbook selection
> page is expanded by default. Only if one has very many logbooks and wants back
> the old behaviour, one has to add "Expand selection page = 0" in the config
> file. The new version is under CVS.
Many many Thanks for all Stefan ! :o) |
ELOG Command Line Utility, posted by Tim Fowler on Wed Feb 9 15:40:12 2005
|
I am trying to use the command line utility elog. Some of the attributes
that I have setup are multiple options. When I run the command line
utility to create a new message, any attribute that is setup with multiple
options will not be filled in. The syntax I am using is as follows:
elog -h localhost -p 8080 -l Lab -a "Site=xxxx" -a "Area=System" -
a "Priority=Low" -a "Shift=1" -a "Status=Open" -m text.txt
Site and Area are defined in the config file as MOptions. Is there a way
to use this feature with multiple options on attributes with the
attributes = to one or more variables? |
Re: ELOG Command Line Utility, posted by Stefan Ritt on Sun Feb 13 17:21:19 2005
|
> I am trying to use the command line utility elog. Some of the attributes
> that I have setup are multiple options. When I run the command line
> utility to create a new message, any attribute that is setup with multiple
> options will not be filled in. The syntax I am using is as follows:
>
> elog -h localhost -p 8080 -l Lab -a "Site=xxxx" -a "Area=System" -
> a "Priority=Low" -a "Shift=1" -a "Status=Open" -m text.txt
>
> Site and Area are defined in the config file as MOptions. Is there a way
> to use this feature with multiple options on attributes with the
> attributes = to one or more variables?
For MOptions, you have to append an "_n" to each attribute to distinguish
different options for the same attribute, like
elog -h localhost -p 8080 -l Lab -a "Site_0=Home" -a "Site_1=Work" ...
Even if you only use one attribute, the trailing "..._0" is necessary. I will
add a note to the documentation. |
Conditional attributes does not work in French, posted by Laurent S. Nadolski on Wed Feb 2 10:37:48 2005
|
Hi,
I am very much interested in using elog as a shift logbook for SOLEIL
accelerators.
I tested most of the options. Every thing works well except the conditional
attributs when French language is selected. In this case, I lost the
selected list option in the Field Equipement.
Here a simple exemple for testing.
NB: tests were done using the last and before last elog version.
I switched the language from English to French in Global options
Attributes = Accelerateur, Equipement
Options Accelerateur= Linac{1}, LT1{2}
{1}Options Equipement= cannon, section1
{2}ROptions Equipement= Alimentation, Diagnostics
I guess this is a simple bug since this problem does not exist for other
languages.
Best Regards,
Laurent Nadolski |
Re: Conditional attributes does not work in French, posted by Stefan Ritt on Thu Feb 3 16:48:41 2005
|
> I am very much interested in using elog as a shift logbook for SOLEIL
> accelerators.
Hey, elog made it to SOLEIL! You know, we run it here at the SLS...
> I tested most of the options. Every thing works well except the conditional
> attributs when French language is selected. In this case, I lost the
> selected list option in the Field Equipement.
There was indeed a bug which only happend when switching to French! Some
javascript code contained
confirm('Erreur: l'attribute .... ')
So the "'" in l'attribute finished the string and Javascript stopped working. I
changed the quotes to
confirm("Erreur: l'attribute .... ")
so it works now. The new version is under CVS.
- Stefan |