ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
66822
|
Sat May 15 06:01:40 2010 |
| A. Martin | amartin@example.com | Bug report | All | svn | attachment filename bug & Makefile issue |
If I upload the file "000000_000000_file.txt", elog will chop the filename to "file.txt." Also, this effects
the file's displayed "Uploaded" time. It shows the file as being uploaded on: "Tue Nov 30 00:00:00 1999"
Note the attachment to this post.
----
Makefile has the line:
# flag for SSL support
USE_SSL = 1
However setting USE_SSL = 0 does not prevent the openssl libraries from being used. Same issue with USE_CRYPT.
You have to comment them out.
Lines 76-85 of Makefile should be replaced with this:
ifdef USE_SSL
ifneq ($(USE_SSL), 0)
CFLAGS += -DHAVE_SSL
LIBS += -lssl
endif
endif
ifdef USE_CRYPT
ifneq ($(USE_CRYPT), 0)
CFLAGS += -DHAVE_CRYPT
LIBS += -lcrypt
endif
endif
Thanks,
amartin |
Attachment 1: file.txt
|
66821
|
Fri May 14 17:03:36 2010 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.7.8-2294 | Re: Required Attributes |
Eric Krise wrote: |
Is there a way to require a certain attribute on reply, but not on an original entry? In some cases info. for these fields only exists on reply.
|
No. There is only "Preset on reply ..." and "Remove on reply...". You could for example require that attribute, preset it for new entries with some dummy value, and remove that value with "Remove on reply...". Maybe that works. |
66820
|
Fri May 14 16:53:54 2010 |
| Eric Krise | Eric.Krise@cmicompany.com | Question | Windows | 2.7.8-2294 | Required Attributes |
Is there a way to require a certain attribute on reply, but not on an original entry? In some cases info. for these fields only exists on reply. |
66819
|
Fri May 14 16:50:53 2010 |
| Eric Krise | Eric.Krise@cmicompany.com | Question | Windows | 2.7.8-2294 | Re: Entry merging |
Stefan Ritt wrote: |
Eric Krise wrote: |
Is there a way to merge existing entries from several logbooks into a single logbook?
|
Only manually: Add "Move to" to you set of commands via "Menu commands = ...", then select one or more entries, and move them to your target logbook.
|
Got it! Thanks... |
66818
|
Fri May 14 08:57:07 2010 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.7.8-2294 | Re: Entry merging |
Eric Krise wrote: |
Is there a way to merge existing entries from several logbooks into a single logbook?
|
Only manually: Add "Move to" to you set of commands via "Menu commands = ...", then select one or more entries, and move them to your target logbook. |
66817
|
Thu May 13 13:31:53 2010 |
| Eric Krise | Eric.Krise@cmicompany.com | Question | Windows | 2.7.8-2294 | Entry merging |
Is there a way to merge existing entries from several logbooks into a single logbook? |
66816
|
Wed May 12 16:30:45 2010 |
| Stefan Ritt | stefan.ritt@psi.ch | Question | Windows | 2.7.8-2293 | Re: HTML email format displays plain text if email client is offline |
Jim Covert wrote: |
My elog server is hosted behind a firewall and I use a VPN client to connect to the network on which it is hosted. When I'm logged into the VPN emails from elog display fine, but when I'm not connected to the VPN emails display in plain text because the email client is unable to load "default.css" since it's behind a firewall.
Is there a way to include the style information in the HTML email rather than in a separate file that's hosted on the elog server?
|
That's a good idea. I will consider that for a future version. |
66815
|
Tue May 11 19:14:37 2010 |
| Jim Covert | jim.covert+elog@gmail.com | Question | Windows | 2.7.8-2293 | HTML email format displays plain text if email client is offline |
My elog server is hosted behind a firewall and I use a VPN client to connect to the network on which it is hosted. When I'm logged into the VPN emails from elog display fine, but when I'm not connected to the VPN emails display in plain text because the email client is unable to load "default.css" since it's behind a firewall.
Is there a way to include the style information in the HTML email rather than in a separate file that's hosted on the elog server? |