Demo Discussion
Forum Config Examples Contributions Vulnerabilities
  Discussion forum about ELOG, Page 216 of 806  Not logged in ELOG logo
ID Date Icon Author Author Email Categorydown OS ELOG Version Subject
  65908   Sat Jun 7 11:10:48 2008 Reply Stefan Rittstefan.ritt@psi.chQuestionWindows Re: multi-headings

parrish wrote:

how can you have more than 1 heading like in this forum. Example is: Demo and Discusion and have diferent sub heading under each one?

So example if Demo is selected you get one group of tabs to select from and if Discussion is selected you get a different second set of tabs to choise from.

Thanks in adavance

You can do this by defining groups. For this forum I did

Group Demo = Linux Demo, Database
Group Discussion = Forum, Config Examples, Contributions, Vulnerabilities

where each name on the right side of the equal sign is an individual logbook.

  65909   Mon Jun 9 15:57:15 2008 Reply Erik Iversoneiverson@ornl.govQuestionWindows Re: Mass postings

Stefan Ritt wrote:

mike cianci wrote:

I am setting this up as instrument log in a multi-hospital system, where there will be multiple instruments, in multiple departments, at multiple facilities.

I am using the "Top Group" function to keep the books separate so operators from one instrument/department/facility don't contaminate another instrument/department/facility's logbook.

What I am wondering is there someway to set it up so that a system wide manager could post a message to 5 individual logbooks for 5 identical instruments at 5 different locations all at once (one ELOG server)?

I hope this made sense.  Thank you for your help.

Unfortunately this is not possible at the moment. You would have to use the menu command "copy to" and enable it for the admin user. Then you create your entry, and click on "copy to" once for each location you want to copy this entry.

 

I found a way to get this to work.  Define a "Messages" logbook for the messages to be broadcast.  None of the user installations need access to it. Use "Execute new = " to execute a script calling the elog command line client passing the message on to each target logbook.  Example:

--- elogd.cfg snippet begin ---

[Messages]

...

Execute new = mass_post.sh $text &

--- elogd.cfg snippet end ---

--- mass_post.sh begin ---

#!/bin/sh

elog -a Sender="System Administrator" -l "Logbook 1" $@

elog -a Sender="System Administrator" -l "Logbook 2" $@

elog -a Sender="System Administrator" -l "Logbook 3" $@

--- mass_post.sh end ---

The $@ expands to all the command line arguments, so the $text field, with all its spaces, gets passed correctly.  Sorry I showed you the example in bash/linux rather than in Windows, but I don't know Windows real well - you're better off translating into it yourself than my untested attempts.  The one thing I can tell you is that the "Execute new" command must include the "background fork".  In Linux this is provided by the & at the end of the line. In windows you'll need to use

Execute new = start "dummy" /min mass_post.bat

to background the process.  This is ESSENTIAL.  Without backgrounding the batch file, the elogd server will go into an infinite loop.  The parent process will wait for the child process to exit before continuing.  elogd is single-threaded, so the child process cannot start until the parent process has completed its current task (which is waiting for the child process to exit). 

You may need to tweak the above a little if you want to pass variable attributes to the script instead of defining them all in the script itself.

 

  65910   Tue Jun 17 11:42:20 2008 Entry Franck Cfranck.c95@free.frQuestionWindows2.7.3Icon and Quick filter

Hi,

I have defined a quick filter based on an icon attribute and it does not work: no result. I have defined something like your "forum elog" (with Icon comment ): in the quick filter, i see the comments (that a good thing) but whatever i'm selecting, i have no entry.

Is it a bug or i miss something in the configuration ?

Regards

ELOG is a really helpful application

Thanks a lot !!

  65911   Mon Jun 23 12:40:12 2008 Reply Stefan Rittstefan.ritt@psi.chQuestionWindows2.7.3Re: Icon and Quick filter

Franck C wrote:

Hi,

I have defined a quick filter based on an icon attribute and it does not work: no result. I have defined something like your "forum elog" (with Icon comment ): in the quick filter, i see the comments (that a good thing) but whatever i'm selecting, i have no entry.

Is it a bug or i miss something in the configuration ?

I tried to reproduce your problem, but it worked fine for me. I used in elog.cfg:

[demo]
Attributes = Icon, Author, Type, Last Edit, Subject
IOptions Icon = icon1.gif, icon2.gif, icon3.gif, icon4.gif, icon5.gif, icon6.gif, icon7.gif, icon8.gif, icon12.gif, icon13.gif, icon14.gif
Quick filter = Icon

Then I entered two entries with different icons, and I selected the quick filter. It correctly showed me the entry with the icon I selected:

Capture.png

  65912   Thu Jun 26 22:53:59 2008 Question George Chisholmgeorge.chisholm@terasengas.comQuestionWindows2.7.4browse for hyperlink target?

Just upgraded to v2.7.4 and really like the new editor but I need to be able to browse for the correct file when inserting a hyperlink.  I looked into CKfinder but can't see how to use this with ELOG.  Can anyone help?  We have been using ELOG in our control center for about a year and it is working out great!

  65913   Fri Jun 27 11:45:09 2008 Reply Stefan Rittstefan.ritt@psi.chQuestionWindows2.7.4Re: browse for hyperlink target?

George Chisholm wrote:

Just upgraded to v2.7.4 and really like the new editor but I need to be able to browse for the correct file when inserting a hyperlink.  I looked into CKfinder but can't see how to use this with ELOG.  Can anyone help?  We have been using ELOG in our control center for about a year and it is working out great!

CKfinder is a tool to browse the server, not the client where the web browser is running if I understand correctly. ELOG only supports attachment and inline images residing on the client side, so you browse with the file selector of your web browser. Or did I understand you incorrectly?

  65914   Fri Jun 27 18:31:08 2008 Reply George Chisholmgeorge.chisholm@terasengas.comQuestionWindows2.7.4Re: browse for hyperlink target?

Stefan Ritt wrote:

George Chisholm wrote:

Just upgraded to v2.7.4 and really like the new editor but I need to be able to browse for the correct file when inserting a hyperlink.  I looked into CKfinder but can't see how to use this with ELOG.  Can anyone help?  We have been using ELOG in our control center for about a year and it is working out great!

CKfinder is a tool to browse the server, not the client where the web browser is running if I understand correctly. ELOG only supports attachment and inline images residing on the client side, so you browse with the file selector of your web browser. Or did I understand you incorrectly?

 

Thanks for the reply Stefan and thanks for making this program available - where can we send a donation?

When I click 'InsertLink' in the FCKeditor I get an 'Explorer User Promp' popup asking me to enter the name of the hyperlink.  After I enter the name I get 'Enter URL of hyperlink'.  Typically I want to link to a file on a mapped drive but I would prefer to browse to the file location and select the file rather than type it in.

  65915   Sat Jun 28 10:10:54 2008 Reply Stefan Rittstefan.ritt@psi.chQuestionWindows2.7.4Re: browse for hyperlink target?

George Chisholm wrote:

Stefan Ritt wrote:

George Chisholm wrote:

Just upgraded to v2.7.4 and really like the new editor but I need to be able to browse for the correct file when inserting a hyperlink.  I looked into CKfinder but can't see how to use this with ELOG.  Can anyone help?  We have been using ELOG in our control center for about a year and it is working out great!

CKfinder is a tool to browse the server, not the client where the web browser is running if I understand correctly. ELOG only supports attachment and inline images residing on the client side, so you browse with the file selector of your web browser. Or did I understand you incorrectly?

 

Thanks for the reply Stefan and thanks for making this program available - where can we send a donation?

When I click 'InsertLink' in the FCKeditor I get an 'Explorer User Promp' popup asking me to enter the name of the hyperlink.  After I enter the name I get 'Enter URL of hyperlink'.  Typically I want to link to a file on a mapped drive but I would prefer to browse to the file location and select the file rather than type it in.

 

You can donate here by clicking the donate link at the ELOG page.

If you want to attach a file from a mapped drive you click on the "Browse..." button at the bottom of the ELOG page:

browse.jpg

 

ELOG V3.1.5-3fb85fa6