Re: [Lazarus] checksums for downloads

2015-07-20 Thread Graeme Geldenhuys
On 2015-07-19 14:22, Martin Frb wrote: Trust your mail program to mess up the text Suggested email program settings to improve the matter (some more than others). Some email client are just too broken to work correctly. https://www.kernel.org/doc/Documentation/email-clients.txt Regards,

Re: [Lazarus] Using semaphores to limit thread access

2015-07-20 Thread Michael Schnell
On 07/19/2015 06:32 PM, kapibara wrote: How to do that under Lazarus and Linux? Linux and Windows: TCriticalSection. -Michael -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Using semaphores to limit thread access

2015-07-20 Thread Sven Barth
Am 20.07.2015 09:05 schrieb Michael Schnell mschn...@lumino.de: On 07/19/2015 06:32 PM, kapibara wrote: How to do that under Lazarus and Linux? Linux and Windows: TCriticalSection. Critical sections are not an adequate replacement for Semaphores. Alia since both Windows and Posix support

Re: [Lazarus] Lazarus ccr offline

2015-07-20 Thread Susie Nicol
Hosted on Sourceforge, and most of SF is down because of infrastructure failure: http://sourceforge.net/blog/ Susie On Mon, Jul 20, 2015 at 9:00 PM, Werner Pamler werner.pam...@freenet.de wrote: What has happened with Lazarus-ccr? Developer access has been offline for a couple of days now.

Re: [Lazarus] Using semaphores to limit thread access

2015-07-20 Thread Michael Schnell
On 07/20/2015 10:42 AM, kapibara wrote: I'm afraid that if a TCriticalSection is used, all threads except one is blocked. No. Only those that try to acquire the CriticalSection while they are owned by another thread. Critical section is just a binary (non counting) Semaphore). I never had a

Re: [Lazarus] Using semaphores to limit thread access

2015-07-20 Thread kapibara
I'm afraid that if a TCriticalSection is used, all threads except one is blocked. I my example, many threads are requesting a response from an object, and this object should serve more than one thread at a time. The rest should be blocked, as with a critical section. Here a semaphore, I

[Lazarus] Lazarus ccr offline

2015-07-20 Thread Werner Pamler
What has happened with Lazarus-ccr? Developer access has been offline for a couple of days now. TortoiseSVN keeps telling me unable to connect to a repository at URL https://svn.code.sf.net/p/lazarus-ccr/svn;. And accessing sf via browser (http://lazarus-ccr.svn.sourceforge.net/) shows an

[Lazarus] Txt2FPDoc 0.8.4 released

2015-07-20 Thread Yann Mérignac
Txt2FPDoc is a command line tool that converts a documentation file written in human readable language to an XML file suitable for FPDoc. Txt2FPDoc tries to make the documentation file easy to read (almost as readable as plain English) and easy to write (no cryptic tags, only light markups like

Re: [Lazarus] Lazarus ccr offline

2015-07-20 Thread Graeme Geldenhuys
On 2015-07-20 10:22, Susie Nicol wrote: Hosted on Sourceforge, and most of SF is down because of infrastructure failure Yup, very frustrating! Now only if Lazarus-CCR was hosted via a distributed version control system (eg: Git or Hg), where there would be no single point of failure, and new

Re: [Lazarus] Capturing the output from a command using TPorcess

2015-07-20 Thread Frederic Da Vitoria
2015-07-20 21:41 GMT+02:00 Richard Mace richard.m...@gmail.com: Hi All, I hope this question is going to make sense. I am trying to obtain the MAC Address of a remote PC, using psexec \\pcname and running the command ipconfig /all. If I run the psexec command from my machine via a command

[Lazarus] Capturing the output from a command using TPorcess

2015-07-20 Thread Richard Mace
Hi All, I hope this question is going to make sense. I am trying to obtain the MAC Address of a remote PC, using psexec \\pcname and running the command ipconfig /all. If I run the psexec command from my machine via a command prompt, ipconfig /all is successfully run on the remote machine, and I

[Lazarus] DBLookupComboBox anomaly

2015-07-20 Thread Gabor Boros
Hi, On Windows a DBLookupComboBox not show any value before explicitly set KeyValue to not null value or select value at runtime. This is correct. On Kubuntu 14.04 64bit+Qt, if open the DataSet(query) or add a record to an empty DataSet in FormShow the first record showed in

Re: [Lazarus] Capturing the output from a command using TPorcess

2015-07-20 Thread Bart
On 7/20/15, Richard Mace richard.m...@gmail.com wrote: How can I code TProcess, so that it shows me the output from the ipconfig /all command instead? http://wiki.lazarus.freepascal.org/Executing_External_Programs#Reading_large_output Bart -- ___