ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
1431
|
Sat Oct 8 05:08:40 2005 |
| Exaos Lee | Exaos.Lee@gmail.com | Question | | | Re: ELOG repository moved from CVS to Subversion |
Hi, Stefan,
I cannot checkout due to the following error:
------------
$ svn checkout svn+ssh://svn@savannah.psi.ch:/afs/psi.ch/project/meg/svn/elog/trunk elog
ssh: savannah.psi.ch:: Name or service not known
svn: Connection closed unexpectedly
------------
It seems that my PC cannot find the host savannah.psi.ch within CIAE. Maybe it's the problem of our DNS server. Anyway, what is the IP of savannah? |
1432
|
Sat Oct 8 08:44:22 2005 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | | | Re: ELOG repository moved from CVS to Subversion |
Exaos Lee wrote: | Hi, Stefan,
I cannot checkout due to the following error:
------------
$ svn checkout svn+ssh://svn@savannah.psi.ch:/afs/psi.ch/project/meg/svn/elog/trunk elog
ssh: savannah.psi.ch:: Name or service not known
svn: Connection closed unexpectedly
------------
It seems that my PC cannot find the host savannah.psi.ch within CIAE. Maybe it's the problem of our DNS server. Anyway, what is the IP of savannah? |
Sorry, was my mistake. In the command you have to use savannah.psi.ch, not savannah.psi.ch: (with the colon). So the full command is
$ svn checkout svn+ssh://svn@savannah.psi.ch/afs/psi.ch/project/meg/svn/elog/trunk elog |
1532
|
Tue Nov 22 17:38:24 2005 |
| Michael Husbyn | michaelh@online.no | Question | | 2.6.0-beta | Thread sort / display order |
Is there a way to choose the display order in threaded mode.
Eg:
1 Test
2 Version 2.0 Testing 1
3 Version 2.5 Testing 2
4 Version 2.3 Testing 3
But the preferred sort order (not the ID) is something like this:
1 Test
2 Version 2.0 Testing 1
4 Version 2.3 Testing 3
3 Version 2.5 Testing 2
Example of parameter perhaps:
Thread order = Field1, $id
Or is this something too difficult to implement? Or already there?
Best regards
Michael Husbyn |
1542
|
Wed Dec 7 02:37:40 2005 |
| Jesse Wodin | jwodin@stanford.edu | | | | Proxy question |
I'm trying to run elog 2.6.0-beta4 under Apache 2.0. I follow the directions, and everything works fine, so my
elog runs as
http://grattalab3.stanford.edu/elog/
running under port 8082, with the following lines in my httpd.conf file
Redirect permanent /elog http://grattalab3.stanford.edu/elog
ProxyPass /elog/ http://grattalab3.stanford.edu:8082/
This machine has an alias, which is http://exo-elog.stanford.edu. My question is, how can I run elog so that
when someone types in this name, it brings up my elog? I know that I can make a VirtualHost entry and put a
redirect at the document root of that virtual host, but that seems clumsy. Can I just modify ProxyPass or add a
Redirect statement somehow?
Thanks! |
1544
|
Sat Dec 10 02:01:33 2005 |
| Carl Shirey | carl.shirey@pw.utc.com | Info | | | 2.6.0-bata5 |
Do you have 2.6.0-bata5 for linux as setup for RPM install. I was able to locate the version for windows but not for linux.
Thanks for your help. |
1555
|
Tue Dec 20 09:18:19 2005 |
| Stefan Ritt | stefan.ritt@psi.ch | Info | | SVN 1579 | Shell substitution, especially interesting for running online experiments |
Shell substitution has been introduced in an experimental state of the current SVN version of ELOG. It woks such that the subsititution list can contain $shell(<argument>) commands. The <argument> is passed to the shell of the operating system and the result is captured and subsituted. This is handy for online experiments, where one wants to pass information automatically to elog. Assume that there is a file /tmp/runnumber containing the current run number of the experiment. All one needs to put the current run number in an attribute "Run number" is the following line in the configuration file:
Preset Run number = $shell(cat /tmp/runnumber)
This subsitution works also for the main text body. Following option will put a calendar of the current month into the text body:
Preset text = $shell(cal)
note that shell subsitution works both on Windows and Unix, the "cat" and "cal" commands are however only present under Unix, but "cat" can be replaced with its Windows counterpart "type". |
1556
|
Tue Dec 20 11:17:17 2005 |
| Stefan Ritt | stefan.ritt@psi.ch | Info | | 2.6.0 | Howto insert screen dumps into an elog entry |
With the new ELCode tags, one can insert screen dumps pretty easy into elog entries. I personally use HoverSnap 0.8 under Windows, there are similar tools under Linux. HoverSnap puts a "Capture.jpg" file in a selectable directoy when you press PrintScreen, then you can instert this file with the button. Here is such a screendump example:
 |
1557
|
Wed Dec 21 20:24:14 2005 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | | ELOG V26b5 | Re: duplicate & presets |
> I'm (mis)using elog as a database. I like the fact that I can have presets for fields, but I also like the fact
> that I can make a duplicate of an entry. Now when I make a duplicate, all the fields get overwritten with the
> preset-value. Is there a way to get the preset-values only on entering a NEW reord and NOT on a duplicate ?
I fixed that in the SVN revision 1583. The fix will be contained in the upcoming version 2.6.1. |