Re: openssl - openssl/ssl.h, posted by Christoph Kukulies on Thu Nov 11 11:08:32 2010
|
Christoph Kukulies wrote: |
Nasty nasty. I prepared a longish post and only because I forgot to click an Icon of choice, all my message is lost.
Thus in short:
openssl/ssl.h isn't there.
I assume I got to get it from openssl.org.
But where do I put it in the compilation tree?
--
Christoph
|
Replying to my own post: libdev-ssl wasn't installed.
--
Christoph
|
Single Button Entry, posted by Geoff Ellis on Tue Feb 16 04:17:24 2010
|
For our application we have a lot of very common events we would like to log. It would be preferable that for certain events/entries we could setup a single button / quick entry method. Is there away to accomplish this? |
Re: Single Button Entry, posted by Yoshio Imai on Thu Feb 18 18:50:57 2010
|
Geoff Ellis wrote: |
For our application we have a lot of very common events we would like to log. It would be preferable that for certain events/entries we could setup a single button / quick entry method. Is there away to accomplish this?
|
You could write a script/program that calls the ELOG client with the necessary attributes to submit the entry (see the user's guide). |
Re: Single Button Entry, posted by Capt. Ben Smith on Sun Feb 28 07:25:10 2010
|
Geoff Ellis wrote: |
For our application we have a lot of very common events we would like to log. It would be preferable that for certain events/entries we could setup a single button / quick entry method. Is there away to accomplish this?
|
This would be of value for me as well. I'm trying to develop a event log for a research ship. Thanks. -ben |
Re: Single Button Entry, posted by Stefan Ritt on Wed Mar 3 14:29:08 2010
|
Capt. Ben Smith wrote: |
Geoff Ellis wrote: |
For our application we have a lot of very common events we would like to log. It would be preferable that for certain events/entries we could setup a single button / quick entry method. Is there away to accomplish this?
|
This would be of value for me as well. I'm trying to develop a event log for a research ship. Thanks. -ben
|
There are several ways:
1) Use conditional attributes (see https://midas.psi.ch/elog/config.html#conditional). If you have several standard entries, put the into the option list of a "type" attribute. Then depending on that value, you can pre-populate other attributes/options. This is then not a single-button solution, but a single-click plus one selection from a drop-down list solution which should be pretty close.
2) You can make a bookmark in your browser. Take the URL of the logbook, add "?cmd=New" and then for each attribute you can select a preset value using "&p<attribute>=<value>". So for example on the demo logbook you can use
https://midas.psi.ch/elogs/Linux+Demo/?cmd=New&ptype=Routine&pcategory=General&pauthor=Ellis
which opens the new entry dialog, and pre-set values for Type, Category and Author. Then you can make several bookmarks for different standard entries.
- Stefan |
Creating a form or table, posted by Terry Shuck on Thu Mar 24 16:37:55 2011
|
Is there a way to open a form or table when clicking on New rather than going to a text field? Thanks, TS!
|
Re: Creating a form or table, posted by Stefan Ritt on Fri Apr 1 10:45:17 2011
|
Terry Shuck wrote: |
Is there a way to open a form or table when clicking on New rather than going to a text field? Thanks, TS!
|
The HTML editor contains a table editor such as this:
Just click on the menu with the little table icon  |
Re: Creating a form or table, posted by Andreas Luedeke on Fri Apr 1 14:15:45 2011
|
Terry Shuck wrote: |
Is there a way to open a form or table when clicking on New rather than going to a text field? Thanks, TS!
|
Hi Terry,
it is not exactly clear to me what you want.
You can define many different types of attributes to an entry.
Like this logbook has "Icon", "Author", "Author Email", "Category", ...
That automatically creates a form for the input.
Or you can have some pre-filled text in the text area, like a pre-defined table.
E.g. with the following line:
Preset Text = input-form.html
Every new entry will now contain the content of the file input-form.html
which could be some table or list, ... |