Re: [Oorexx-devel] Performance problem under windows

2012-02-20 Thread Mike Cowlishaw
I am really surprised that the call to GetEnvironmentVariable is that expensive. Not sure how dynamic Windows environment variables are, but assuming the process does not take a snapshot when it starts then any access to a variable is first going to check the User variables and then often

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Oliver Sims
I can modify the config file in Tortoise either via Settings then use the Edit button, or directly with Notepad. I notice that the file from SourceForge has Unix-style line-ends (i.e. just x'0A' rather than the Windows x'0D0A'). Do you know if I can use the Unix version on Windows, or do I have

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mike Cowlishaw
If you haven't met this problemette before, then please don't spend any time on it - I'll just convert it to Windows format with a little oorexx program... It's a one-liner: /* Change LF to CRLF in a file */ call changefile arg(1) '/'||'0a'x'/'||'0d0a'x assuming you have changefile

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Oliver Sims
Many thanks, Mike. That saved me quite a bit of mucking around. Atb, Oliver PS: I think there's a teeny bugette at line 70 which is: -- build the list of files; currently no /s sftopts='FL' I changed this to: -- build the list of files; currently no /s sftopts='FL' And all was

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mike Cowlishaw
Many thanks, Mike. That saved me quite a bit of mucking around. You're welcome ... PS: I think there's a teeny bugette at line 70 which is: -- build the list of files; currently no /s sftopts='FL' I changed this to: -- build the list of files; currently no /s

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Hobart Spitz
For what it's worth, my copy and paste from gmail worked fine... On Mon, Feb 20, 2012 at 10:13 AM, Mike Cowlishaw m...@speleotrove.comwrote: Many thanks, Mike. That saved me quite a bit of mucking around. You're welcome ... PS: I think there's a teeny bugette at line 70 which is:

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mark Miesfeld
On Mon, Feb 20, 2012 at 4:38 AM, Oliver Sims oliver.s...@simsassociates.co.uk wrote: I can modify the config file in Tortoise either via Settings then use the Edit button, or directly with Notepad. I notice that the file from SourceForge has Unix-style line-ends (i.e. just x'0A' rather than

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mark Miesfeld
Oliver, A little reseach showed me that TortoiseSVN uses a subversion command line client to do its work. So, you want to replace the subversion config file with our file. The location of that file is, on Windows 7, where I first indicated. If you can not locate the file, let me know what

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mark Miesfeld
Oliver, Sorry to post so many times ... You should be able to locate the config by just using: dir %APPDATA%\subversion from the command line, like so: C:\work.ooRexx\wc\ooTest\4.1.0dir %APPDATA%\subversion Volume in drive C is Win7 Volume Serial Number is D25E-50D5 Directory of

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Oliver Sims
OK, I've got the proper config file loaded up, and have downloaded the command line SVN provided as part of Tortoise (I just didn't include it at install-time before). Btw, I've also found out how to set properties with the GUI version - but only one file at time it appears. A couple of

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Mark Miesfeld
On Mon, Feb 20, 2012 at 9:01 AM, Oliver Sims oliver.s...@simsassociates.co.uk wrote: OK, I've got the proper config file loaded up, and have downloaded the command line SVN provided as part of Tortoise (I just didn't include it at install-time before). Btw, I've also found out how to set

[Oorexx-devel] Questions ad RXMSQ exit

2012-02-20 Thread Rony G. Flatscher
Exploring the RXMSQ exit the following questions have come up: * subfunction RXMSQPSH (pushing the supplied string) has a rxfmlifo flag, which according to the documentation is set TRUE for LIFO and FALSE for FIFO; in my tests this flag is always set to TRUE, independent of using the

Re: [Oorexx-devel] Questions ad RXMSQ exit

2012-02-20 Thread Rick McGuire
On Mon, Feb 20, 2012 at 2:29 PM, Rony G. Flatscher rony.flatsc...@wu-wien.ac.at wrote: Exploring the RXMSQ exit the following questions have come up: subfunction RXMSQPSH (pushing the supplied string) has a rxfmlifo flag, which according to the documentation is set TRUE for LIFO and FALSE for

Re: [Oorexx-devel] Questions ad RXMSQ exit

2012-02-20 Thread Rony G. Flatscher
subfunction RXMSQNAME is invoked for the BIF RxQueue(set, newName). Independent of returning REXX_EXIT_NOT_HANDLED or REXX_EXIT_HANDLED, the name change is carried out, on the Rexx side the old queue name is returned (initially SESSION). Is this o.k.? Not sure I understand what you're asking

Re: [Oorexx-devel] Questions ad RXMSQ exit

2012-02-20 Thread Rick McGuire
The purpose of the exits is to provide a replacement for facilities used by the interpreter. If you are using the MSQ exits, then YOU are implementing the external queue system in your exit code, so you get to determine what it means for a name change to occur. The exit is merely giving you the

[Oorexx-devel] Announcing ooRexx 4.1.1 Beta 1

2012-02-20 Thread Mark Miesfeld
All - The Open Object Rexx Project is proud to announce the first ooRexx 4.1.1 beta. The Beta 1 code is available at http://sourceforge.net/projects/oorexx/files/ Be sure to expand the oorexx tab and then the 4.1.1 beta tab to locate the files for download. Installer packages are available

Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos.

2012-02-20 Thread Oliver Sims
OK, I no touch. Thanks. -Original Message- From: Mark Miesfeld [mailto:miesf...@gmail.com] Sent: 20 February 2012 17:25 To: Open Object Rexx Developer Mailing List Subject: Re: [Oorexx-devel] ooDialog Guide - Possible conflict in repos. On Mon, Feb 20, 2012 at 9:01 AM, Oliver Sims

Re: [Oorexx-devel] Announcing ooRexx 4.1.1 Beta 1

2012-02-20 Thread Sahananda (Jon) Wolfers
Hi Mark et al, Well done. Thanks for all your hard work. Just a couple of questions. 1) The Changes list herehttp://sourceforge.net/projects/oorexx/files/oorexx/4.1.1.beta/appears to be empty. Does it exist somewhere else. 2) The release notes say that one should uninstall previous versions