ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
67733
|
Mon Jan 5 10:27:33 2015 |
| Banata | jogjacard@yahoo.com | Question | Linux | Windows | 2.9 | How to upgrade elog? | any specified task to upgrade elog?
I have elog deployed in windows and linux centos.
please help me. |
67734
|
Mon Jan 5 10:59:28 2015 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | Windows | 2.9 | Re: How to upgrade elog? | No. Just install the new version over the old one.
Banata wrote: |
any specified task to upgrade elog?
I have elog deployed in windows and linux centos.
please help me.
|
|
67735
|
Tue Jan 6 02:19:04 2015 |
| Banata | jogjacard@yahoo.com | Question | Linux | Windows | 2.9 | Re: How to upgrade elog? | thanx, so in linux I just need to install over the old ones?
I thought there are additional step on linux, hehehe thanx for the help sir
Stefan Ritt wrote: |
No. Just install the new version over the old one.
Banata wrote: |
any specified task to upgrade elog?
I have elog deployed in windows and linux centos.
please help me.
|
|
|
66998
|
Thu Jan 20 18:51:53 2011 |
| David Pilgram | David.Pilgram@epost.org.uk | Request | Linux | 2.8.1-2353 | Wishlist: Roption | Hi Stefan,
Roptions, or Radio Buttons. Do you recall that on old
radios, if you gently pressed a button you could release whichever
button was already in, without selecting the new button; in other
words no selection made.
I'd like this same facility with elog. Now I know that it can be
done by (for example) in the config file preselecting one of the
selections on reply- or indeed one that does not exist to "clear" it,
but in this case that is not the route I'd want to take every time.
What I'd like is a (optional) button along with all the others, which
if you click on it, it will clear any selection for that particular Roption.
At present, once an Roption has been selected, it will persist in all
replies unless or until an alternative choice is made. Alternatively, if
no selection has been made, then there is no selection on the reply, either.
[Unless something in the elog.cfg file].
Regards,
David.
|
66999
|
Fri Jan 21 08:49:31 2011 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Linux | 2.8.1-2353 | Re: Wishlist: Roption | > I'd like this same facility with elog. Now I know that it can be
> done by (for example) in the config file preselecting one of the
> selections on reply- or indeed one that does not exist to "clear" it,
> but in this case that is not the route I'd want to take every time.
What about defining an additional option "unspecified". So you have
Roptions attr = option1, option2, option3, none
Whenever you click on "none", the selection is removed from the other options. The HTML standard unfortunately does
not foresee radio buttons not being selected, so I would have to tweak it somehow to get exactly what you want. |
67000
|
Fri Jan 21 11:28:02 2011 |
| David Pilgram | David.Pilgram@epost.org.uk | Request | Linux | 2.8.1-2353 | Re: Wishlist: Roption | > > I'd like this same facility with elog. Now I know that it can be
> > done by (for example) in the config file preselecting one of the
> > selections on reply- or indeed one that does not exist to "clear" it,
> > but in this case that is not the route I'd want to take every time.
>
> What about defining an additional option "unspecified". So you have
>
> Roptions attr = option1, option2, option3, none
>
> Whenever you click on "none", the selection is removed from the other options. The HTML standard unfortunately does
> not foresee radio buttons not being selected, so I would have to tweak it somehow to get exactly what you want.
Hadn't realised the standard was written that way.
What you propose seems fine to me.
David. |
67020
|
Thu Feb 24 11:47:07 2011 |
| Cossutta L | cossutta@pd.infn.it | Question | Linux | 2.8.1-2350 | Filter on Options | I want to implement the following feature in my logbook:
selecting an Option related to a specific Attribute produces a filter on the Options related to the other Attributes.
-----
Example:
I have the following configuration:
" Attributes = Project, Category
Options Project = Agenda, Software
Options Category = General, Data, Result, Meeting, Status, TODO, DONE,
Reminder, Result, Other
...
Quick filter = Project, Category "
I want that: if on the Quick filter I select "Project = Agenda", then the entry "Category" displays only the Options "Meeting, Status, TODO, DONE, Reminder, Other"; if on the Quick filter I select "Project = Software", then the entry "Category" displays only the Options "General, Data, Result, Other".
See the attached JPGs (they are edited printscreens from my logbook).
------
Is there a way to do this?
Thank you in advance!
Cossutta
|
Attachment 1: 1.JPG
|
|
Attachment 2: 2.JPG
|
|
Attachment 3: 3.JPG
|
|
67021
|
Thu Feb 24 11:54:18 2011 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | 2.8.1-2350 | Re: Filter on Options |
Cossutta L wrote: |
I want to implement the following feature in my logbook:
selecting an Option related to a specific Attribute produces a filter on the Options related to the other Attributes.
-----
Example:
I have the following configuration:
" Attributes = Project, Category
Options Project = Agenda, Software
Options Category = General, Data, Result, Meeting, Status, TODO, DONE,
Reminder, Result, Other
...
Quick filter = Project, Category "
I want that: if on the Quick filter I select "Project = Agenda", then the entry "Category" displays only the Options "Meeting, Status, TODO, DONE, Reminder, Other"; if on the Quick filter I select "Project = Software", then the entry "Category" displays only the Options "General, Data, Result, Other".
See the attached JPGs (they are edited printscreens from my logbook).
------
Is there a way to do this?
Thank you in advance!
Cossutta
|
That's possible with conditional attributes:
Attributes = Project, Category
Options Project = Agenda{1}, Software{2}
{1}Options Category = Meeting, Status, TODO, DONE, Reminder, Other
{2}Options Category = General, Data, Result, Other
Quick Filter = Project, Category
|
|