ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
67459
|
Tue Feb 26 08:25:14 2013 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.9.2 | Re: Edit from summary view |
Francois Cukier wrote: |
Good day,
I was wondering (and I searched for :) ) a way to directly edit an entry while in summary view instead of having to first click on the entry then click on Edit...
I mean, in summary view, every row entry is clickable to access the entry itself (except email witch open email client), so instead to open it, can it be edited directly ?
Is it possible ?
|
No, this is not possible. |
67458
|
Tue Feb 26 08:24:45 2013 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.9.2 | Re: Search result background color |
Francois Cukier wrote: |
Is it possible to change the "yellow" background color when running a search ? (I looked in the css, there is nothing...)
Couldn't find any syntax for elogd.cfg
Thanks for your help :)
|
There are no specific classes for the search dialog, but you can play with the classes "form2", "attribname" and "attribvalue". These classes are used in several places, so all will change in the same way, but maybe that's what you like. |
67457
|
Mon Feb 25 19:12:47 2013 |
| Francois Cukier | Monsieurdindon@gmail.com | Question | Windows | 2.9.2 | Search result background color |
Is it possible to change the "yellow" background color when running a search ? (I looked in the css, there is nothing...)
Couldn't find any syntax for elogd.cfg
Thanks for your help :) |
67456
|
Mon Feb 25 19:10:07 2013 |
| Francois Cukier | Monsieurdindon@gmail.com | Question | Windows | 2.9.2 | Edit from summary view |
Good day,
I was wondering (and I searched for :) ) a way to directly edit an entry while in summary view instead of having to first click on the entry then click on Edit...
I mean, in summary view, every row entry is clickable to access the entry itself (except email witch open email client), so instead to open it, can it be edited directly ?
Is it possible ? |
67455
|
Fri Feb 22 11:40:34 2013 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | ELOG V2.7. | Re: Multiple versions of elog on one server |
Chris Smith wrote: |
Stefan Ritt wrote: |
Chris Smith wrote: |
David Pilgram wrote: |
Chris Smith wrote: |
Is there a way of having multiple copies of elog running on one windows 2003 server? different ports?
I need to access 2 different elogd.cfg files.
|
It's probably not of much help, but for a short time I ran two elog daemons on the same linux box, using different ports. It was thus able to run with two separate elogd.cfg files. This is linux, and heavily biased to my eccentric way of running this linux box, but started them as:
/usr/local/sbin/elogd -p 8080 -c /home/logbooks1/elogd1.cfg -d /home/logbooks1
/usr/local/sbin/elogd -p 8081 -c /home/logbooks2/elogd2.cfg -d /home/logbooks2
Do note that as I was the only user on that linux box, I didn't have login etc.
However, I was soon asked questions by Andreas as to how I found this running, as he had encountered problems with an earlier version. To be honest, that stopped me experimenting too far with this at that point, as well as a coincidental upgrading of my hardware.
But I was doing this *not* because I had to run two separate elogd.cfg files, but other reasons which meant splitting into two at that time vastly improved the performance of elog on the linux box at that time. So while I didn't actually enounter any problems in doing so, I only have limited experience - and, of course, absolutely none on running even one [windows equivalent of a daemon] on Windows.
I am assuming here you have good reason for two separate elogd.cfg files, rather than just wanting to run two separate logbooks - guessing here, but one set public (no login) and one set private (with login)?
|
I need to do this because there are 2 different groups that each have 6 or 7 different logbooks in their elogd.cfg files. (and they can't access each others log books)
Currently the first group accesses elog as http:elog.com:8080. The elogd windows service executes "C:\Program FilesELOG\elogd.exe" -D -c "C:\Program Files\ELOG\elogd.cfg"
From what I can tell, whats needed is either some way to get the windows service to run a different config file or there needs to be a way of creating a second elog windows service that points to a different elogd.cfg file. Is there some way of doing this?
|
Have you checked the option "Top groups", which was made especially for that case? You can create several independent sets of logbooks not seeing each other.
|
I will check out the "Top Groups". But another question, the documentation says "Prior to ELOG version 2.4.1, one had to run two elogd servers in parallel, listening under different ports." ... how do you set this up?
|
You have to create manually a second service. Clone all entry from the first one, except the command line where you load a different elogd.cfg. But I actually never tried this myself. |
67454
|
Fri Feb 22 10:58:18 2013 |
| Andreas Luedeke | andreas.luedeke@psi.ch | Question | Linux | 2.92 | Re: any way to undelete entries? |
Mark Bergman wrote: |
Is there any way within eLog to undelete entries?
|
I wrote to scripts to backup the logbook files:
- elog_backup_daily creates a tar file of all new entries of the last 25 hours and keeps these backups for 90 days
- elog_backup_hourly creates a tar file of the entries of the last 65 minutes and keeks these backups for one week
- exclude-logbooks specifies which files not to backup
This allows you at least to recover deleted entries by hand as an administrator.
  ⇄
Detect language » English
 ⇄
Detect language » English
⇄
Detect language » English
|
Attachment 1: elog_backup_daily
|
#!/bin/sh
# source file directory
srcd=/usr/local/elog/
# backup all files newer than 25 hours
date=$(date -d "-25hours" "+%Y%m%d %H:%M")
# backup file directory
tard=/logbooks_backup
# backup tar file name
tarf=$tard/$(date +%Y%m%d_%a.tar)
# do not backup files that match patterns in this file
excf=/usr/local/elog/utilities/exclude-logbooks
# create backup
cd $srcd
tar --ignore-case -X $excf --newer "$date" -cf $tarf . logbooks/*
# copy passwd.txt
if [ "$(date +%u)" -eq 1 ]
then
passwd=$tard/passwd_$(date +%Y%m%d_%a.txt)
cp $srcd/passwd.txt $passwd
gzip -9 $passwd
fi
# delete all backups older than 90 days
find $tard -mtime +90 -name "*_???.tar" -exec rm -f {} +
find $tard -mtime +90 -name "passwd_*_???.txt.gz" -exec rm -f {} +
|
Attachment 2: elog_backup_hourly
|
#!/bin/sh
# source file directory
srcd=/usr/local/elog/
# backup all files newer than 25 hours
date=$(date -d "-65minutes" "+%Y%m%d %H:%M")
# backup file directory
tard=/logbooks_backup
# backup tar file name
tarf=$tard/$(date +%a%H%M.tar)
rm -f $tarf
# do not backup files that match patterns in this file
excf=/usr/local/elog/utilities/exclude-logbooks
# create backup
cd $srcd
tar --ignore-case -X $excf --newer "$date" -cf $tarf . logbooks/*
|
Attachment 3: exclude-logbooks
|
*.png.png
*.gif.png
*.jpg.png
*.pdf.png
oldLogbooks/*
logbooks/elog.log
passwd.txt
ssl/*
logbooks/Backup/*
logbooks/old/*
|
67453
|
Fri Feb 22 08:19:27 2013 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Linux | 2.92 | Re: any way to undelete entries? |
Mark Bergman wrote: |
Is there any way within eLog to undelete entries?
|
No. |
67452
|
Thu Feb 21 23:23:19 2013 |
| Mark Bergman | mark.bergman@uphs.upenn.edu | Question | Linux | 2.92 | any way to undelete entries? |
Is there any way within eLog to undelete entries? |