Re: [Oorexx-devel] Error message when breaking a running ooRexx program

2019-11-06 Thread Walter Pachl

SureTry Signal On HaltDO WHILE 1>0 say 'Hello' ENDhalt: Say 'you decided to end the loop' Say 'Good bye'  "P.O. Jonsson"  hat am 6. November 2019 um 19:42 geschrieben:  Hi,I got this error message when pressing  C  on a program running and getting stuck in a loop. I have enclosed a simpler example.   361 *-* Method SAY with scope "Stream" in package "REXX" (no source available).  1448 *-* Method UNKNOWN with scope "Monitor" in package "REXX" (no source available).     2 *-*   say 'Hello'Error 4 running REXX line 361:  Program interrupted.Error 4.1:  Program interrupted with HALT condition.Is this expected behavior when pressing  C?I am running Open Object Rexx Version 5.0.0  r11935 on a Mac with macOS Mojave. I build with this commandcmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RELWITHDEBINFO -DCMAKE_INSTALL_PREFIX=~/Applications/ooRexx5 ../oorexxSVNJust wondering.   Hälsningar/Regards/Grüsse,P.O. Jonssonoor...@jonases.se___ Oorexx-devel mailing list Oorexx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/oorexx-devel  LGWalter
 

___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] A problem and an undocumented error code

2018-03-13 Thread Walter Pachl
THANKS

Uninstalled Regina ( :-( ) and things work nicely!

Walter

> Erich Steinböck  hat am 13. März 2018 um 22:50 
> geschrieben:
> 
> 
> > > Error:94.101 - Error connecting to 127.0.0.1 on port 5757: "No 
> error"
> > 
> > > Walter, according to
> https://github.com/hercules-390/hyperion/issues/234
> this seems to happen because you have both Regina and ooRexx installed 
> and there is a collision between Regina's rxqueue and ooRexx's.
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! 
> http://sdm.link/slashdot___
> Oorexx-devel mailing list
> Oorexx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
> 


LG

Walter
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] A problem and an undocumented error code

2018-03-13 Thread Walter Pachl
White attempting to install bsf4oorexx we ran into this problem:

"dir | rxqueue"
do i=1 By 1 while queued()>0
   parse pull line
   say i":" line
end
say "total lines by Rexx: i=" (i-1)

Output:

Error:94.101 - Error connecting to 127.0.0.1 on port 5757: "No error" 

This code is not documented in the Rexx Reference

Regards

Walter
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] ooRexx test Framework: Surprise Bug

2017-10-02 Thread Walter Pachl
How?

with

Version REXX-ooRexx_5.0.0(MT)_32-bit 6.05 11 Aug 2017

nv.rex:

::options novalue error
a=b

gives me

C:\Users\Walter>rexx nv
2 *-* a=b
Error 99 running C:\Users\Walter\nv.rex line 2: Translation error.
Error 99.916: Unrecognized directive instruction.

thnks

Walter

> Rick McGuire  hat am 2. Oktober 2017 um 22:34
> geschrieben:
> 
> That would be a bad idea, since it is a rare program that does not rely on
> other code. Changing the default globally would result in unexpected failures
> in code. 5.0 already has ::options novalue error to raise an error condition
> within a give source file, so it is already possible to request an alert for
> using an uninitialized variable. Changing the default would argue that all
> code would need to specify ::options novalue because you can't depend on how a
> given environment would behave. 
> 
> Rick
> 
> On Mon, Oct 2, 2017 at 4:27 PM, Erich Steinböck
>  wrote:
> 
> > > 
> > > > > SIGNAL ON NOVALUE should have been the default
> > > 
> > > > > 
> > That's for sure on my eternal wish list.
> > We might add an additional `CreateInterpreter()` option and offer it
> > via `rexx.exe` option `--novalue-error` to the user.  I guess it could
> > "simply" change the interpreter default (exactly how, is to be determined)
> > and it should probably still be possible to override it in the code with an
> > `::options novalue condition`
> > 
> > 
> >
> > --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Oorexx-devel mailing list
> > Oorexx-devel@lists.sourceforge.net
> > mailto:Oorexx-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/oorexx-devel
> > https://lists.sourceforge.net/lists/listinfo/oorexx-devel
> > 
> > 
> > > 
> 
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org!
> http://sdm.link/slashdot___
> Oorexx-devel mailing list
> Oorexx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
> 


 

LG

Walter--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] ooRexx test Framework: Surprise Bug

2017-10-02 Thread Walter Pachl
ahhh

a=b
::options novalue error

C:\Users\Walter>rexx nv
1 *-* a=b
Error 98 running C:\Users\Walter\nv.rex line 1: Execution error.
Error 98.986: Reference to unassigned variable “B”.

sorry & thanks again :-)--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Parse Arg s

2017-04-01 Thread Walter Pachl
Apparently there is a difference in Parse Arg behaviour in Calssic Rexx vs.
ooRexx

Whereas Regina strips the command line Argument on both dides, ooRexx strips
only the leading blanks

parg.rex:

Parse Arg a
say 'a=>'a'<'

Try rexx parg  blanks aaa blanks

E:\>regina parg aaa
a=>aaa<

E:\>rexx parg aaa
a=>aaa <

Is this intentional and/or documented?

Regards

Walter--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] [Ibm-netrexx] Output your cleaned NetRexx code into many formats and document types

2016-05-13 Thread Walter Pachl
Schon probiert?

-Original Message-
From: Rony G. Flatscher [mailto:rony.flatsc...@wu.ac.at] 
Sent: Freitag, 13. Mai 2016 09:14
To: IBM Netrexx 
Cc: oorexx-devel@lists.sourceforge.net; RexxLA Members mailing list

Subject: Re: [Oorexx-devel] [Ibm-netrexx] Output your cleaned NetRexx code
into many formats and document types


On 12.05.2016 21:09, Jason Martin wrote:
>
> Supports NetRexx, who knew?
>
> http://www.andre-simon.de/doku/highlight/en/highlight.php

Wow, and they claim also "Rexx" and "ooRexx" (hence cc'ing to the ooRexx
developer list)!

---rony


--
Mobile security can be enabling, not merely restricting. Employees who bring
their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the apps
on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] UNICODE and/or UTF-8 character string output

2015-08-25 Thread Walter Pachl
My naive reaction:

f='utf8.txt'
Call lineout f,'LATIN SMALL LETTER A WITH GRAVE ' 'c3a0'x
Call lineout f,'LATIN SMALL LETTER A WITH ACUTE ' 'c3a1'x
Call lineout f,'LATIN SMALL LETTER A WITH CIRCUMFLEX' 'c3a2'x   
--
Walter Pachl

 Bill Turner schrieb:
 Does anybody know of any routines, functions, etc. that can be used to 
 output UNICODE or UTF-8 character strings?
 
 /s/ Bill Turner, wb4alm
 
 --
 ___
 Oorexx-devel mailing list
 Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] [OT] MYSQL

2015-06-08 Thread Walter Pachl

Tried to send a mail to Terry and got this:
This Message was undeliverable due to the following reason: 

Each of the following recipients was rejected by a remote mail server.
The reasons given by the server are included to help you determine why each 
recipient was rejected.

Recipient: t...@pgmguild.com
Reason:5.7.1 t...@pgmguild.com... H:SC [62.179.121.44] Connection 
refused due to abuse. Please see http://spamcop.net/bl.shtml?62.179.121.44 or 
contact your E-mail provider.

What's the problem?
What's the abuse?
What should I do?



--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] MYSQL

2015-06-03 Thread Walter Pachl
A former colleague of mine asked me today if I know anybody
who could help to set up a relational data base for a
charity organization.
While I used DB2 in the bank where I worked
I never touched DB2 on the PC

Could anyone of you lend me a hand and advise how to

- install MySQL
- define the database
- define and create a table
- fill the table that should be easy for me
- read the table --

Thanks
Walter

--
Walter 

--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] stem assignment

2015-05-26 Thread Walter Pachl

I think I fully understand now what's going on.
But a little sentence/note where the assignment is describes as the value of
the expression being assigned to the target
Could warn the ignorant (and nitpicking) user (me) that this is not ALWAYS
the case.
Sigh
Walter
Rony: It only took me the larger part of an hour to find out why that
program I was referring to failed with ooRexx.
And yes, I would never code that way myself, but you know that.
Thanks anyway
Walter 



--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] stem assignment

2015-05-25 Thread Walter Pachl
In REXX version 1 of this RC-task:

http://rosettacode.org/wiki/Hofstadter_Figure-Figure_sequences#REXX

there is this statement

rr.=r.;

which shows a severe incompatibility.

 

With Regina, this program runs fine.

With ooRexx it fails!

 

The reason is that the above is NOT an assignment

but it makes rr. a synonym/alias for r.

 

I skimmed the ooRexx reference and could not find a

description of this fact.

 

Besides: This IS a bit of a surprise and what I

don't quite understand what this is good for.

 

Regards,

Walter

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] stem assignment

2015-05-25 Thread Walter Pachl
I wa surprised to 'find' it in real life!
And a little sentence right at the description of 'assignment' about this 
special 
treatment could help.
Such as mentioning the special treatment of the case when source and targed are 
stems,
And the feature of a.=fun() fun:... with return res. was news to me.
--
Walter Pachl

 Mike Cowlishaw m...@speleotrove.com schrieb:
  
 Walter, wasn't this one of the points you already made in your presentation
 about differences between different Rexxes?
 
 Not a lot of point in banging on it again -- it isn't going to change.
 
 Mike
 
 
 --
  That's the inside view.
  When I read about assingment, it says that the value of the 
  expression on the righthand side is assigned to the variable 
  on the lefthand side.
  
  consider
  r.=0
  r.3=16
  rr.=r.
  blabla=r.
  Say 'blabla='blabla  
   
  Walter Pachl
  
   Rick McGuire object.r...@gmail.com schrieb:
   It most certainly IS an assignment.  The stem variable rr. 
  is set to 
   contain a reference to the same stem object referenced by the stem 
   variable r.  ooRexx does not have a concept of variable 
  aliasing. This 
   is the same assignment mechanism that allows USE ARG to work or 
   returning a stem object from a function or method call.  I 
  don't have 
   the reference handy right now so I can't cite chapter and 
  verse, but this is most certainly documented.
   
   Rick
   
   On Mon, May 25, 2015 at 7:10 AM, Walter Pachl 
   christel.u.w.pa...@chello.at
   wrote:
   
In REXX version 1 of this RC-task:
   

  http://rosettacode.org/wiki/Hofstadter_Figure-Figure_sequences#REXX
   
there is this statement
   
rr.=r.;
   
which shows a severe incompatibility.
   
   
   
With Regina, this program runs fine.
   
With ooRexx it fails!
   
   
   
The reason is that the above is NOT an assignment
   
but it makes rr. a synonym/alias for r.
   
   
   
I skimmed the ooRexx reference and could not find a
   
description of this fact.
   
   
   
Besides: This IS a bit of a surprise and what I
   
don't quite understand what this is good for.
   
   
   
Regards,
   
Walter
 
 
 --
 One dashboard for servers and applications across Physical-Virtual-Cloud 
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 Oorexx-devel mailing list
 Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] performance difference

2015-03-11 Thread Walter Pachl
I am stunned

 

When testing GS' test methods I see that ooRexx needs about 100 times more
time than Regina
Where am I wrong?
Thanks
Walter
 
After testing some more I found that the (in this case unnecessary) Numeric
Digits 1000 makes ooRexx look bad!
See comparable results at the end of this mail when this statement is
removed!
 
REXX-Regina_3.9.0(MT) 5.00 16 Oct 2014 11 Mar 2015 12:00:26
24993   0.047 x.i//2
24993   0.031 pos(right(x.i,1),02468)==0
24993   0.047 pos(right(x.i,1),13579)==0
24993   0.062 right(x2b(d2x(x.i)),1)
24993   0.031 Parse... ed.ld
24993   0.032 right... ed.ld  
 
REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014 11 Mar 2015 11:59:55
25040   1.622 x.i//2
25040   0.609 pos(right(x.i,1),02468)==0
25040   0.639 pos(right(x.i,1),13579)==0
25040   1.935 right(x2b(d2x(x.i)),1)
25040   4.695 Parse... ed.ld
25040   4.524 right... ed.ld 
 
The program
 
/* REXX

* Performance test rosettacode.org  test if a number is even
*---
--*/
Parse Version v
Say v date() time()
ed.=0; ed.0=1; ed.2=1; ed.4=1; ed.6=1; ed.8=1  /*assign even digits to
true.*/
numeric digits 1000  /*handle most big 'uns from the CL*/
n=5
Do i=1 To n
  x.i=random(1,10)
  End
 
Call time 'R'; cnt.=0; Do i=1 To n
 if x.i//2  then cnt.0odd =cnt.0odd +1
else cnt.0even=cnt.0even+1
 End; Say cnt.0even format(time('E'),3,3) 'x.i//2'
 
Call time 'R'; cnt.=0; Do i=1 To n
 if pos(right(x.i,1),02468)==0  then cnt.0odd =cnt.0odd +1
else cnt.0even=cnt.0even+1
 End; Say cnt.0even format(time('E'),3,3) 'pos(right(x.i,1),02468)==0'
 
Call time 'R'; cnt.=0; Do i=1 To n
 if pos(right(x.i,1),13579)==0  then cnt.0even=cnt.0even+1
else cnt.odd  =cnt.odd  +1
 End; Say cnt.0even format(time('E'),3,3) 'pos(right(x.i,1),13579)==0'
 
Call time 'R'; cnt.=0; Do i=1 To n
 if right(x2b(d2x(x.i)),1)  then cnt.0odd =cnt.0odd +1
else cnt.0even=cnt.0even+1
 End; Say cnt.0even format(time('E'),3,3) 'right(x2b(d2x(x.i)),1)'
 
Call time 'R'; cnt.=0; Do i=1 To n
 parse var x.i '' -1 ld   /*obtain last decimal digit of Y.*/
 if ed.ld   then cnt.0even=cnt.0even+1
else cnt.0odd =cnt.0odd +1
 End; Say cnt.0even format(time('E'),3,3) 'Parse... ed.ld'
 
Call time 'R'; cnt.=0; Do i=1 To n
 ld=right(x.i,1)
 if ed.ld   then cnt.0even=cnt.0even+1
else cnt.0odd =cnt.0odd +1
 End; Say cnt.0even format(time('E'),3,3) 'right... ed.ld'
 
REXX-Regina_3.9.0(MT) 5.00 16 Oct 2014 11 Mar 2015 12:06:12
24995   0.047 x.i//2
24995   0.031 pos(right(x.i,1),02468)==0
24995   0.047 pos(right(x.i,1),13579)==0
24995   0.062 right(x2b(d2x(x.i)),1)
24995   0.031 Parse... ed.ld
24995   0.047 right... ed.ld
 
REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014 11 Mar 2015 12:06:00
25158   0.031 x.i//2
25158   0.031 pos(right(x.i,1),02468)==0
25158   0.047 pos(right(x.i,1),13579)==0
25158   0.093 right(x2b(d2x(x.i)),1)
25158   0.047 Parse... ed.ld
25158   0.031 right... ed.ld
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Wanted

2015-02-03 Thread Walter Pachl
WHO  (from the USA)   plans to come to Vienna and could do me a favor?

Pls answer to pachl at chello dot at

First come - first serve :)

Apologies in advance for misusing this thread 

Walter

--
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Error on Rosetta code with Arithmetic/Rational

2015-01-22 Thread Walter Pachl
The class shown in
http://rosettacode.org/mw/index.php?title=Arithmetic/Rationalaction=editsection=31
has a problem with 
x=.fraction~new(0)
giving 
23 *-* numerator /= gcd
   *-* Compiled method NEW with scope Object
 1 *-* x=.fraction~new(0)
Error 42 running D:\tfraction.rex line 23:  Arithmetic overflow/underflow
Error 42.3:  Arithmetic overflow; divisor must not be zero   

and when I tried to employ it for the dice game instead of using my own 
procedures
I had ton insert numerous Numeric Digits into the method used
since these don't ingerit the setting of  the invoking program.

I cannot set Numeric Digits for all methods in the class, can I?

Regards
Walter  

--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Error on Rosetta code with Arithmetic/Rational

2015-01-22 Thread Walter Pachl
Thanks. Works like a charm!
Walter

 Gil Barmwater gbarmwa...@alum.rpi.edu schrieb:
 See the ::OPTIONS directive for a way to set Numeric Digits for all 
 methods in the class .
 
 Gil B.


--
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] 200**4

2015-01-06 Thread Walter Pachl
I did spot a difference:

 

Parse Version v

Say version v

N=200

Say '  n**4='||n**4

/*

Say 'rxcalcpower(200,4)='rxcalcpower(200,4)

::requires rxmath library

*/

 

VERSION REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014

  n**4=1.6E+9

rxcalcpower(200,4)=1.6000E+9

 

VERSION REXX-Regina_3.8.2(MT) 5.00 22 Jun 2014 

  n**4=1.6000E+9

 

a bug??


Regards

Walter

 

 

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] 200**4

2015-01-06 Thread Walter Pachl
Thank you very much!

Unfortunately I have TRL2 only (incompletely) in my head

I guess this cannot be found in the ooRexx Reference, can it?

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Mittwoch, 07. Jänner 2015 01:35
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] 200**4

 

From TRL2, page 132 in the definition of the power operator

 

...and finally, trailing zeros are removed (as though the result were divided 
by one).

 

ooRexx is working according to the language definition. 

 

Rick 

 

 

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] 200**4

2015-01-06 Thread Walter Pachl
 

SORRY.

Time for sleep

10.2.1 Power has it

 

Good night

Walter

 

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] .relation~of bug?

2014-10-12 Thread Walter Pachl
Thanks
apart from a tiny typo (dentifyHash) that works
Maybe a newbie shouldn't go oo :-(
--
Walter 

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] of vs. put

2014-10-11 Thread Walter Pachl
fine
another question or two:
you listed these as test candidates:
table,
stringtable,   can't find a description of that?
instancetable,  should this be identitytable?
directory  *done*
relation classes.
--
Walter

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] SVN changes

2014-10-10 Thread Walter Pachl
Can one see what the last change to a testgroup was (or even all changes over 
time) 
such as one can in a Wiki?
--
Walter Pachl

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] DISCUSS: #158 Add iteration over a supplier to DO/LOOP

2014-10-10 Thread Walter Pachl
Or WITH ?

 

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] four testgroups for mutablebuffer

2014-10-08 Thread Walter Pachl
Can't zip (never did)
Copied  posted

new task?
--
Walter Pachl

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Refresh performance

2014-10-08 Thread Walter Pachl
just now I used 
ooRexx.5.0.0.10650-x86_32.exe
to replace the test interpreter

Uninstall the previous one 
ooRexx.5.0.0.10610-x86_32.exe
took ages (10 to 15 minutes)
tons of oodialog files were deleted
--
Walter 

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] errortext - sanity check

2014-10-08 Thread Walter Pachl
There is a testgroup
D:\_ooTest\trunk\ooRexx\base\bif\ERRORTEXT.testGroup 
I had my fingers at THIS as early as 2005 !!! (didn't remember but found my 
name in it :-)
When trying it now it gets many errors
because a period was added to the errortexts
e.g.
 self~assertSame('Failure during initialization', ERRORTEXT(3))   fails
 self~assertSame('Failure during initialization.', ERRORTEXT(3))  succeeds.

why does this testgroup stop when the first error is encountered?
should the testcase be changed to the new values returned by errortext??
is this testcase part of a complete testrun and would this be noticed then???
Walter 

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] errortext - sanity check

2014-10-08 Thread Walter Pachl
ahhh - my second 0.1 (after the pos doc)
I shall fix this
Thanks
Walter 
PS When I reply to such a mail you appear always in the cc
should I remove that?

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] SVN

2014-10-07 Thread Walter Pachl
Rick wrote:
Walter, I don't know how many times I've had to tell you this already, so you 
should already know better than this, but do not email anything directly to me 
unless I specifically ask you to.  This activity needs to be done on the list.

Sorry, I replied to a mail from you and wanted to put my cookbook on the list 
once it it correct.
I've now posted two patches (one, unfortunately, contains the other as well)
How do I add the new testgroup? It does not show up in the diff.
I create a patch containing it as attachment. Is this the right way?
Walter Pachl

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Testing - second step

2014-10-06 Thread Walter Pachl

I do have now 
  d:\_OOTest\trunk containing the entire test suite (downloaded using SVN) 
  d:\_OOTest\Walter.rex (a first little test group) 
Where (else) should I store this program
and how should I invoke it? 
Any path or classpath adaptations required?
Rgds
Walter 
 -- 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Testing - second step

2014-10-06 Thread Walter Pachl
That’s the better answer (I was going to ask Jon :))

Thanks and trying soon

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 06. Oktober 2014 11:39
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] Testing - second step

 

Jon, 

 

For people developing test cases, I really recommend not executing this by 
running the entire test suite.  I don't want to have to deal with other 
failures or problems they might turn up.  Running the test suite is NOT 
necessary.  

 

For me, all I do is add the root of the test tree and the framework 
subdirectory to my path, then just invoke your test case as a normal rexx 
program.

 

rexx Walter.testGroup

 

is all that is needed.  That will run the tests in your new test group and give 
you a report.  

 

Rick

 

On Mon, Oct 6, 2014 at 4:45 AM, Sahananda (Jon) Wolfers 
sahana...@windhorse.biz mailto:sahana...@windhorse.biz  wrote:

Hi Walter,

 

you will find the answers in Marks document 
http://sourceforge.net/projects/oorexx/files/oorexxunit/4.2.0.Snapshot.06/ 

Where you should differ from what Mark wrote is to download the snapshot from 
SVN using the link Rick gave (which is what you appear to have done)

 

Save it in a folder and then run the test suite with that folder as your 
current directory, so if you saved it in c:\oorexxTest (assuming Windows) then 
from your command prompt you would enter

cd\

then 

cd ooRexxTest

 

You can then (after reading the readme) invoke the suite by typing 

rexx testOORexx

 

hope that helps,

 

Jon

 

On 6 October 2014 08:42, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:


I do have now
  d:\_OOTest\trunk containing the entire test suite (downloaded using SVN)
  d:\_OOTest\Walter.rex (a first little test group)
Where (else) should I store this program
and how should I invoke it?
Any path or classpath adaptations required?
Rgds
Walter
 --

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Testing - second step

2014-10-06 Thread Walter Pachl
+1

working

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 06. Oktober 2014 11:39
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] Testing - second step

 

Jon, 

 

For people developing test cases, I really recommend not executing this by 
running the entire test suite.  I don't want to have to deal with other 
failures or problems they might turn up.  Running the test suite is NOT 
necessary.  

 

For me, all I do is add the root of the test tree and the framework 
subdirectory to my path, then just invoke your test case as a normal rexx 
program.

 

rexx Walter.testGroup

 

is all that is needed.  That will run the tests in your new test group and give 
you a report.  

 

Rick

 

On Mon, Oct 6, 2014 at 4:45 AM, Sahananda (Jon) Wolfers 
sahana...@windhorse.biz mailto:sahana...@windhorse.biz  wrote:

Hi Walter,

 

you will find the answers in Marks document 
http://sourceforge.net/projects/oorexx/files/oorexxunit/4.2.0.Snapshot.06/ 

Where you should differ from what Mark wrote is to download the snapshot from 
SVN using the link Rick gave (which is what you appear to have done)

 

Save it in a folder and then run the test suite with that folder as your 
current directory, so if you saved it in c:\oorexxTest (assuming Windows) then 
from your command prompt you would enter

cd\

then 

cd ooRexxTest

 

You can then (after reading the readme) invoke the suite by typing 

rexx testOORexx

 

hope that helps,

 

Jon

 

On 6 October 2014 08:42, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:


I do have now
  d:\_OOTest\trunk containing the entire test suite (downloaded using SVN)
  d:\_OOTest\Walter.rex (a first little test group)
Where (else) should I store this program
and how should I invoke it?
Any path or classpath adaptations required?
Rgds
Walter
 --

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Testing - second step

2014-10-06 Thread Walter Pachl
on my way
How can I test that Novalue is recognized here:

::method test_3
  str='ABC'
   self~assertSame(str[A],'C')

it´s this the best way?

::method test_3
   Signal On Novalue
   self~expectSyntax(16.1)
   self~assertSame(str[A],'C')

Can I establish Novalue globally??

Walter Pachl

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] W-bug # 1

2014-10-06 Thread Walter Pachl
Ist this a bug?

 

::method 'test009old'

self~expectSyntax(40.12)

xre = subStr(copies('5C'x,1),'5E+')

 

::method 'test009'

self~expectSyntax(93.924)

xre = copies('5C'x,1)['5E+'] 

 

should the syntax errors be the same?

 

Should I report such “findings” in a different way ??

 

Walter

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] W-bug # 1

2014-10-06 Thread Walter Pachl
Fine

thanx 

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] W-bug # 2

2014-10-06 Thread Walter Pachl
::method 'test055old'

numeric digits 1

self~assertSame('1E+1 5E+1 ', subStr(2*7 7+7+7+7+7+7 84/4 
700-699,6.99-6.00,5*2))

 

::method 'test055'

numeric digits 1

self~assertSame('1E+1 5E+1 ', 2*7 7+7+7+7+7+7 84/4 700-699[6.99-6.00,5*2])  


 

the 5*2 (10) seems to be ignored here

 

Walter

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] W-bug # 2

2014-10-06 Thread Walter Pachl
Well, I took the substr testgroup as a base and translate it step by step – 
learning things along this way

Sorry for bothering you

Here I learned about precedence…

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 06. Oktober 2014 19:13
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] W-bug # 2

 

The only error here is how this particular test case is just obscuring what is 
going on.  These two are NOT equivalent because of differences in precedence 
involved.  The [] only gets applied to the last term of the expression, so 
the actual method call is just 

699[6.99 - 6.00, 5*2]

 

or after the operations are involved 

 

699[1, 1e+1] 

 

Which returns the correct result for this function of 699

 

To make these two equivalent, you'd need to put parens around the entire thing: 

 

 (2*7 7+7+7+7+7+7 84/4 700-699)[6.99-6.00,5*2]

 

but frankly, these sorts of tests are a complete waste of time!  This is not 
the Rexx compiler where there are lots of internal optimizations that get 
performed and the source of the data might make a difference.  for this sort of 
method call, the only things that are important are the string the operation 
gets applied to and the arguments inside the [].  It does not matter how these 
values might have been calculated.  This test could (should) be replaced by the 
much simpler

 

numeric digits 1

1E+1 5E+1 2E+1 0[1, 1e+1]
Although even then, it should only be included if it is testing some some 
specific principle...for example, demonstrating that the the length is 
evaluated under the internal digits setting.  The rest of the calculations are 
just unnecessary noise. 
 
Rick
 

 

On Mon, Oct 6, 2014 at 12:24 PM, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:

::method 'test055old'

numeric digits 1

self~assertSame('1E+1 5E+1 ', subStr(2*7 7+7+7+7+7+7 84/4 
700-699,6.99-6.00,5*2))

 

::method 'test055'

numeric digits 1

self~assertSame('1E+1 5E+1 ', 2*7 7+7+7+7+7+7 84/4 700-699[6.99-6.00,5*2])  


 

the 5*2 (10) seems to be ignored here

 

Walter

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] W-bug # 3

2014-10-06 Thread Walter Pachl
I hope that this is a valid one:

 

 1 *-* Say 'AB BC CD DE EF'['1234567890'[1,2],22])

Error. 37 running. D:\_ooTest\w3.rex line. 1:  Unexpected ,, ), or ].

Error. 37.2:  Unmatched ) in expression.   

 

There’s no ‘)’ in that line :)

 

BTW I am through with substr- [] and of course lots of redundant stuff I there

 

I’ll start from scratch with MY ideas for testing mutable buffers  

 

Good night

Walter  

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] W-bug # 3

2014-10-06 Thread Walter Pachl
Sh_t

Old and blind

Sorry

 

BUT this was cut out of walter.testgroup (attached)

Which has a problem in case test081 (commented out for the time being)

And test087 where I see a matching pair of parens

 

Walter ( still hoping for 1 of 3 )

PS That’s what you get by hiring unskilled testers :)

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 06. Oktober 2014 21:03
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] W-bug # 3

 

Ummm, what about the last character on the line.  Looks like you are 0 for 3. 

 

Rick

 

 

 

On Mon, Oct 6, 2014 at 2:58 PM, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:

I hope that this is a valid one:

 

 1 *-* Say 'AB BC CD DE EF'['1234567890'[1,2],22])

Error. 37 running. D:\_ooTest\w3.rex line. 1:  Unexpected ,, ), or ].

Error. 37.2:  Unmatched ) in expression.   

 

There’s no ‘)’ in that line :)

 

BTW I am through with substr- [] and of course lots of redundant stuff I there

 

I’ll start from scratch with MY ideas for testing mutable buffers  

 

Good night

Walter  

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

#!/usr/bin/rexx
/*
  SVN Revision: $Rev: 4240 $
  Change Date:  $Date: 2009-03-01 20:07:18 +0100 (So, 01 Mär 2009) $
*/
/**/
/**/
/* Copyright (c) 2007 Rexx Language Association. All rights reserved. */
/**/
/* This program and the accompanying materials are made available under   */
/* the terms of the Common Public License v1.0 which accompanies this */
/* distribution. A copy is also available at the following address:   */
/* http://www.oorexx.org/license.html */
/**/
/* Redistribution and use in source and binary forms, with or */
/* without modification, are permitted provided that the following*/
/* conditions are met:*/
/**/
/* Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer.  */
/* Redistributions in binary form must reproduce the above copyright  */
/* notice, this list of conditions and the following disclaimer in*/
/* the documentation and/or other materials provided with the distribution.   */
/**/
/* Neither the name of Rexx Language Association nor the names*/
/* of its contributors may be used to endorse or promote products */
/* derived from this software without specific prior written permission.  */
/**/
/* THIS SOFTWARE IS PROVIDED BY THE COPYright HOLDERS AND CONTRIBUTORS*/
/* AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  */
/* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  */
/* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYright   */
/* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  */
/* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED   */
/* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,*/
/* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY */
/* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING*/
/* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
/* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   */
/**/
/**/
  parse source . . s
  group = .TestGroup~new(s)
  group~add(.WALTER.testGroup)

  if group~isAutomatedTest then return group

  testResult = group~suite~execute~~print

return testResult

::requires 'ooTest.frm' -- load the ooRexxUnit classes

-- class named exactly like file
::class SUBSTR.testGroup subclass

Re: [Oorexx-devel] W-bug # 3

2014-10-06 Thread Walter Pachl
pls send it back and give me another day.

I’d like to add some ideas of my own if I get any.

 

Next I’ll do the mutablebuffer from scratch 

 

And then one which you delegate (and where you think I might get a 1 after all) 

 

Over for today and thanks for all patience

 

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 06. Oktober 2014 21:37
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] W-bug # 3

 

Test 81 had an extra paren, test 88 was just all messed up and definitely had 
extra args.  Since I couldn't figure out what was intended, I just deleted that 
one because it looked mostly repetitive. 

 

I'll check this into the build as brackets.testGroup. 

 

Rick

 

On Mon, Oct 6, 2014 at 3:21 PM, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:

Sh_t

Old and blind

Sorry

 

BUT this was cut out of walter.testgroup (attached)

Which has a problem in case test081 (commented out for the time being)

And test087 where I see a matching pair of parens

 

Walter ( still hoping for 1 of 3 )

PS That’s what you get by hiring unskilled testers :)

 

Von: Rick McGuire [mailto:object.r...@gmail.com mailto:object.r...@gmail.com 
] 
Gesendet: Montag, 06. Oktober 2014 21:03
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] W-bug # 3

 

Ummm, what about the last character on the line.  Looks like you are 0 for 3. 

 

Rick

 

 

 

On Mon, Oct 6, 2014 at 2:58 PM, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:

I hope that this is a valid one:

 

 1 *-* Say 'AB BC CD DE EF'['1234567890'[1,2],22])

Error. 37 running. D:\_ooTest\w3.rex line. 1:  Unexpected ,, ), or ].

Error. 37.2:  Unmatched ) in expression.   

 

There’s no ‘)’ in that line :)

 

BTW I am through with substr- [] and of course lots of redundant stuff I there

 

I’ll start from scratch with MY ideas for testing mutable buffers  

 

Good night

Walter  

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471 
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk 
iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] W-bug # 3

2014-10-06 Thread Walter Pachl
Now you answered the question I did not ask (yet)
And if you accept my bug #4 the day ends happily

m=.mutablebuffer~new('some string')
m[,3]='abc'
Say m~string   

gives this 

*-* Compiled method []= with scope MutableBuffer.
 2 *-* m[,3]='abc'
Error. 93 running. D:\_ooTest\w4.rex line. 2:  Incorrect call to method.
Error. 93.903:  Missing argument in method; argument 2 is required.  

I smell an error in the args checkung

Walter Pachl

 Rick McGuire object.r...@gmail.com schrieb:
 Sorry, already checked in.  Now you get to learn a couple of new svn
 commands.
 
 From the root of your test suite checkin, issue the command
 
 svn up
 
 This will update your files for any changes, including pulling your file
 into the tree.
 
 Edit the file and make any changes.  Then do
 
 svn diff  walter.patch
 
 This creates a patch file that a committer can apply to the original for
 checkin.
 
 Rick
 
 On Mon, Oct 6, 2014 at 3:59 PM, Walter Pachl christel.u.w.pa...@chello.at
 wrote:
 
  pls send it back and give me another day.
 
  I’d like to add some ideas of my own if I get any.
 
 
 
  Next I’ll do the mutablebuffer from scratch
 
 
 
  And then one which you delegate (and where you think I might get a 1 after
  all)
 
 
 
  Over for today and thanks for all patience
 
 
 
  Walter
 
 
 
  *Von:* Rick McGuire [mailto:object.r...@gmail.com]
  *Gesendet:* Montag, 06. Oktober 2014 21:37
 
  *An:* Open Object Rexx Developer Mailing List
  *Betreff:* Re: [Oorexx-devel] W-bug # 3
 
 
 
  Test 81 had an extra paren, test 88 was just all messed up and definitely
  had extra args.  Since I couldn't figure out what was intended, I just
  deleted that one because it looked mostly repetitive.
 
 
 
  I'll check this into the build as brackets.testGroup.
 
 
 
  Rick
 
 
 
  On Mon, Oct 6, 2014 at 3:21 PM, Walter Pachl christel.u.w.pa...@chello.at
  wrote:
 
  Sh_t
 
  Old and blind
 
  Sorry
 
 
 
  BUT this was cut out of walter.testgroup (attached)
 
  Which has a problem in case test081 (commented out for the time being)
 
  And test087 where I see a matching pair of parens
 
 
 
  Walter ( still hoping for 1 of 3 )
 
  PS That’s what you get by hiring unskilled testers J
 
 
 
  *Von:* Rick McGuire [mailto:object.r...@gmail.com]
  *Gesendet:* Montag, 06. Oktober 2014 21:03
  *An:* Open Object Rexx Developer Mailing List
  *Betreff:* Re: [Oorexx-devel] W-bug # 3
 
 
 
  Ummm, what about the last character on the line.  Looks like you are 0 for
  3.
 
 
 
  Rick
 
 
 
 
 
 
 
  On Mon, Oct 6, 2014 at 2:58 PM, Walter Pachl christel.u.w.pa...@chello.at
  wrote:
 
  I hope that this is a valid one:
 
 
 
   1 *-* Say 'AB BC CD DE EF'['1234567890'[1,2],22])
 
  Error. 37 running. D:\_ooTest\w3.rex line. 1:  Unexpected ,, ), or ].
 
  Error. 37.2:  Unmatched ) in expression.
 
 
 
  There’s no ‘)’ in that line J
 
 
 
  BTW I am through with substr- [] and of course lots of redundant stuff I
  there
 
 
 
  I’ll start from scratch with MY ideas for testing mutable buffers
 
 
 
  Good night
 
  Walter
 
 
 
 
 
  --
  Slashdot TV.  Videos for Nerds.  Stuff that Matters.
 
  http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 
 
 
 
 
  --
  Slashdot TV.  Videos for Nerds.  Stuff that Matters.
 
  http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 
 
 
 
  --
  Slashdot TV.  Videos for Nerds.  Stuff that Matters.
 
  http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 
 


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Apologies

2014-09-22 Thread Walter Pachl
showing the differences:
420.txt
new.txt


 OLD- While the 4.2.0 version had:
 NEW- New


   /* Define to 1 if you have pthread_mutexattr_settype function */

 OLD- #define HAVE_PTHREAD_MUTEXATTR_SETTYPE 1
 NEW- /* #undef HAVE_PTHREAD_MUTEXATTR_SETTYPE */


   /* Define to 1 if PTHREAD_MUTEX_ERRORCHECK is a valid value */

 OLD- #define HAVE_PTHREAD_MUTEX_ERRORCHECK 1
 NEW- /* #undef HAVE_PTHREAD_MUTEX_ERRORCHECK */


   /* Define to 1 if PTHREAD_MUTEX_RECURSIVE is a valid value */

 OLD- #define HAVE_PTHREAD_MUTEX_RECURSIVE 1
 NEW- /* #undef HAVE_PTHREAD_MUTEX_RECURSIVE */


   /* Define to 1 if PTHREAD_MUTEX_RECURSIVE_NP is a valid value */
   /* #undef HAVE_PTHREAD_MUTEX_RECURSIVE_NP */

---
 0 Deletions
 4 Changes
 0 Insertions
10 unchanged lines.
--- 
--
Walter Pachl

 René Jansen rvjan...@xs4all.nl schrieb:
 done that. Yes. there is a difference.
 
 This is from the Cmake-generate new config.h :
 
 /* Define to 1 if you have pthread_mutexattr_settype function */
 /* #undef HAVE_PTHREAD_MUTEXATTR_SETTYPE */
 
 /* Define to 1 if PTHREAD_MUTEX_ERRORCHECK is a valid value */
 /* #undef HAVE_PTHREAD_MUTEX_ERRORCHECK */
 
 /* Define to 1 if PTHREAD_MUTEX_RECURSIVE is a valid value */
 /* #undef HAVE_PTHREAD_MUTEX_RECURSIVE */
 
 /* Define to 1 if PTHREAD_MUTEX_RECURSIVE_NP is a valid value */
 /* #undef HAVE_PTHREAD_MUTEX_RECURSIVE_NP */
 
 While the 4.2.0 version had:
 
 
 /* Define to 1 if you have pthread_mutexattr_settype function */
 #define HAVE_PTHREAD_MUTEXATTR_SETTYPE 1
 
 /* Define to 1 if PTHREAD_MUTEX_ERRORCHECK is a valid value */
 #define HAVE_PTHREAD_MUTEX_ERRORCHECK 1
 
 /* Define to 1 if PTHREAD_MUTEX_RECURSIVE is a valid value */
 #define HAVE_PTHREAD_MUTEX_RECURSIVE 1
 
 /* Define to 1 if PTHREAD_MUTEX_RECURSIVE_NP is a valid value */
 /* #undef HAVE_PTHREAD_MUTEX_RECURSIVE_NP */
 
 If there is a 1 or not after the define is not significant, no? (long time 
 since I did this).
 
 However, adding these and updating to most recent svn yields:
 
 [ 94%] Building CXX object 
 CMakeFiles/rexxc.dir/utilities/rexxc/platform/unix/RexxCompiler.cpp.o
 /Users/rvjansen/apps/oorexx/oorexx-code-0/utilities/rexxc/platform/unix/RexxCompiler.cpp:86:73:
  error: 
   use of undeclared identifier 'CATD_ERR'
 if ((catd = catopen(REXXMESSAGEFILE, SECOND_PARAMETER)) == 
 (nl_catd)CATD_ERR)
 ^
 /Users/rvjansen/apps/oorexx/oorexx-code-0/utilities/rexxc/platform/unix/RexxCompiler.cpp:89:70:
  error: 
   use of undeclared identifier 'CATD_ERR'
 if ((catd = catopen(DataArea, SECOND_PARAMETER)) == (nl_catd)CATD_ERR)
  ^
 /Users/rvjansen/apps/oorexx/oorexx-code-0/utilities/rexxc/platform/unix/RexxCompiler.cpp:100:70:
  error: 
   use of undeclared identifier 'CATD_ERR'
 if ((catd = catopen(DataArea, SECOND_PARAMETER)) == (nl_catd)CATD_ERR)
  ^
 /Users/rvjansen/apps/oorexx/oorexx-code-0/utilities/rexxc/platform/unix/RexxCompiler.cpp:147:16:
  warning: 
   format string is not a string literal (potentially insecure) 
 [-Wformat-security]
 printf(ptr);
^~~
 1 warning and 3 errors generated.
 make[2]: *** 
 [CMakeFiles/rexxc.dir/utilities/rexxc/platform/unix/RexxCompiler.cpp.o] Error 
 1
 make[1]: *** [CMakeFiles/rexxc.dir/all] Error 2
 
 where last night the compile was clean.
 
 best regards,
 
 René.
 
 
 On 22 sep. 2014, at 02:07, Rick McGuire object.r...@gmail.com wrote:
 
  One thing David used to figure out this problem on Linux was to build the 
  4.2.0 version (which uses the old autotools build) and compare the 
  generated config.h from that build to the one generated by cmake.  The bit 
  of code that was messed up was the create method in SysSemaphore.cpp., 
  specifically the different PTHREAD_* defines.  These should still end up 
  the same as the autotools generated version from the old build.  If they 
  don't, then David is the expert on how that is generated. 
  
  Rick
  
  On Sun, Sep 21, 2014 at 7:35 PM, René Jansen rvjan...@xs4all.nl wrote:
  well, it did not solve the below problem, it did not overwrite my 
  commenting out of the redefinition of semun.
  
  this is the stacktrace:
  
  Sampling process 1660 for 3 seconds with 1 millisecond of run time between 
  samples
  Sampling completed, processing symbols...
  Analysis of sampling rexximage (pid 1660) every 1 millisecond
  Process: rexximage [1660]
  Path:/Users/rvjansen/apps/oorexxbuild/bin/rexximage
  Load Address:0x108773000
  Identifier:  rexximage
  Version: 0
  Code Type:   X86-64
  Parent Process:  sh [1659]
  
  Date/Time:   2014-09-22 01:32:34.759 +0200
  OS Version:  Mac OS X 10.9.4 (13E28)
  Report Version:  7
  
  Call

Re: [Oorexx-devel] Problem with VALUE()-BIF

2014-09-05 Thread Walter Pachl
say value('ProgramFiles(x86)',,'ENVIRONMENT')  

gives me

C:\Program Files (x86)

I dare not use the second argument

Walter

Von: Erich Steinböck [mailto:erich.steinbo...@gmail.com] 
Gesendet: Freitag, 05. September 2014 14:21
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] Problem with VALUE()-BIF

 

Rony, maybe there's a typo in your code.

say value('ProgramFiles(x86)',,'ENVIRONMENT')

works perfectly to retrieve the contents of the Windows environment variable 
ProgramFiles(x86)

 

On Fri, Sep 5, 2014 at 1:35 PM, Rony G. Flatscher rony.flatsc...@wu.ac.at 
mailto:rony.flatsc...@wu.ac.at  wrote:

The VALUE()-BIF can be used to fetch and set environment variables in the 
operating system's process. To do so, the second argument must be set to 
ENVIRONMENT to direct the VALUE()-BIF to the process' environment.

Newer Windows operating systems may have an environment variable named

ProgramFiles(x86)

The VALUE()-BIF unfortunately is not able to process this environment value. 
Rather it comes up with a runtime error:

10 *-* prog_files86=value(ProgramFiles(x86),sel)
Error 40 running F:\test\rmBSF4ooRexx\4wp.rex line 10:  Incorrect call to 
routine
Error 40.26:  VALUE argument 1 must be a valid symbol; found ProgramFiles(x86)

Obviously, the current implementation expects the first argument to be a valid 
Rexx symbol, which is not the case due to the parenthesis.

Can this be regarded to be an error, as one cannot expect operating system 
environment variables to adhere to the rules of Rexx symbols? With other words, 
shall I open a bug or a RFE?

---rony


--
Slashdot TV.
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] REXXLA site presentation abstracts

2014-08-05 Thread Walter Pachl
I unotice that there are hooks for Presentation abstracts but hardly any 
contents (beginning with 2010)
Mark H being the exception-
Is it reasonable to ask for some abstracts or should we get rid of the hooks?
Nothing as bad as a book cover without pages :-(
--
Walter 

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] REXXLA site maintenance

2014-08-04 Thread Walter Pachl
I am starting to try and do something useful there (encouraged and authorized 
by Renee)

On
http://www.rexxla.org/rexxla/faq.html

I find

Rexx FAQ
The Official Rexx FAQ is maintained by Dave Martin.
The following items are those that haven't made it into the Official Rexx FAQ 
yet:
None at this time.

I'd suggest to delete this section as it has no useful information whatsoever

Walter 
--

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Just discovered something neat!

2014-06-25 Thread Walter Pachl
what happens if .complex[4,6]
?
Walter Pachl

 Mike Cowlishaw m...@speleotrove.com schrieb:
 Kewl ... sort of like the generality of loop .. over.
 
 I was hacking on the DO instruction code today in my sandbox and I noticed
 something neat in how the code functions.  With the little tweak to the
 complex.cls sample that I just committed, the following code works:  
 
 comp1 = .complex[1,2]
 
 comp2 = .complex[4,5]
 
 comp3 = .complex[1,1]
 
 
 
 loop i = comp1 to comp2 by comp3
 
say i
 
 end
 
 
 
 ::REQUIRES 'complex'
 
 Displaying: 
 1+2i
 
 2+3i
 
 3+4i
 
 4+5i
 
 
 
 The DO loop code does not have a requirement that things be Rexx strings, it 
 is
 sufficient that the objects just implement the required methods.  In this 
 case,
 the prefix + operator, the + operator for the iteration, and being able to
 compare against normal numbers.  Just thought this was kinda neat and wanted 
 to
 share!
 
 
 Rick
 
 
 


--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Just discovered something neat!

2014-06-25 Thread Walter Pachl

I'm still curious.
How can complex numbers be compared?
Defined somewhere??
Walter

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] WG: [Oorexx-users] How's the shell seeing what Rexx is doing internally, and why does it care?

2014-04-28 Thread Walter Pachl
Again...
Who can help me

-Ursprüngliche Nachricht-
Von: oorexx-users-ow...@lists.sourceforge.net
[mailto:oorexx-users-ow...@lists.sourceforge.net] 
Gesendet: Montag, 28. April 2014 09:02
An: christel.u.w.pa...@chello.at
Betreff: AW: [Oorexx-users] How's the shell seeing what Rexx is doing
internally, and why does it care?

You are not allowed to post to this mailing list, and your message has been
automatically rejected.  If you think that your messages are being rejected
in error, contact the mailing list owner at
oorexx-users-ow...@lists.sourceforge.net.

---BeginMessage---
I'd always: z='a'; o.z=...

-Ursprüngliche Nachricht-
Von: CVBruce [mailto:cvbr...@gmail.com] 
Gesendet: Montag, 28. April 2014 02:45
An: Open Object Rexx Users
Betreff: Re: [Oorexx-users] How's the shell seeing what Rexx is doing
internally, and why does it care?

What is the purpose of the single quotes around the tail name, i.e. o.'a'?

What happens if you just use the simple assignment of o.a = 'alt'

Do you get the same result if you type  a.'a' = 'alt'

Bruce

Sent from an undisclosed location.

 On Apr 27, 2014, at 4:57 PM, J. Leslie Turriff
jlturr...@centurylink.net wrote:
 
I'm getting a strange result when I try to initialize some stem 
 variables whose stem names start with o.  I don't understand how the 
 shell is getting its fingers into an ordinary rexx assignment statement?
My system is OpenSuSE 13.1 on x86_64 hardware.
I ran across this while trying to set various opt.X variables, so I 
 tried changing opt. to optn..  When the problem persisted, I created a 
 little testcase program.  Here's what I have:
 
 |  18:42:08,leslie@pinto
 | ~/bin/rexx
 | $rexx -v
 | Open Object Rexx Version 4.2.0
 | Build date: Dec 28 2013
 | Addressing Mode: 64
 |
 | Copyright (c) IBM Corporation 1995, 2004.
 | Copyright (c) RexxLA 2005-2013.
 | All Rights Reserved.
 | This program and the accompanying materials are made available under 
 | the terms of the Common Public License v1.0 which accompanies this 
 | distribution or at http://www.oorexx.org/license.html
 |
 |  18:42:32,leslie@pinto
 | ~/bin/rexx
 | $testcase
 |  3 *-* o. = ''
 |   
 |  4 *-* op.= ''
 |   
 |  5 *-* opt.   = ''
 |   
 |  6 *-* opti.  = ''
 |   
 |  7 *-* optio. = ''
 |   
 |  8 *-* option.= ''
 |   
 |  9 *-* optn.  = ''
 |   
 | 10 *-* o.'a'  = 'alt'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 11 *-* op.'B' = 'amb'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 12 *-* opt.'c'= 'cap'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 13 *-* opti.'C'   = 'col'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 14 *-* optio.'n'  = 'num'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 15 *-* option.'H' = 'sha'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 16 *-* optn.'s'   = 'sec'
 |   0
 | sh: /home/leslie/bin/rexx/0: Permission denied
 |+++   RC(126)
 | 17 *-* exit
 |
 |  18:42:41,leslie@pinto
 | ~/bin/rexx
 | $cat testcase
 | #!/usr/bin/rexx
 |   trace rnormal
 |   o. = ''
 |   op.= ''
 |   opt.   = ''
 |   opti.  = ''
 |   optio. = ''
 |   option.= ''
 |   optn.  = ''
 |   o.'a'  = 'alt'
 |   op.'B' = 'amb'
 |   opt.'c'= 'cap'
 |   opti.'C'   = 'col'
 |   optio.'n'  = 'num'
 |   option.'H' = 'sha'
 |   optn.'s'   = 'sec'
 | exit
 |  18:42:54,leslie@pinto
 | ~/bin/rexx
 
Can anyone explain what's happening here?
 
 Leslie
 
 btw
There is an empty file 0 in my bin/rexx/ directory; some arcane 
 subsystem on my machine creates one in every directory, so if I delete 
 it it's back the next day; so that's where the error message gets it, 
 but how is bash getting invoked during a Rexx assignment?
 
 | 18:45:12,leslie@pinto
 | ~/bin/rexx
 | $ls -l
 | total 1276
 | -rw-r--r-- 1 leslie users 0 2014-04-11 18:56:20 0
 | :
 
 --
  Start Your Social Network Today - Download eXo Platform Build 
 your Enterprise Intranet with eXo Platform Software Java Based Open 
 Source Intranet - Social, Extensible, Cloud Ready Get Started Now And 
 Turn Your Intranet Into A Collaboration Platform 
 http://p.sf.net/sfu/ExoPlatform 
 ___
 Oorexx-users mailing list
 oorexx-us...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-users


--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 

Re: [Oorexx-devel] WG: [Oorexx-users] How's the shell seeing what Rexx is doing internally, and why does it care?

2014-04-28 Thread Walter Pachl
Thnks

Can I change that?

The problem is that pachl at is an alias to the other

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 28. April 2014 15:57
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] WG: [Oorexx-users] How's the shell seeing what Rexx 
is doing internally, and why does it care?

 

I just checked the subscription list and you are subscribed using 
pachl.chello.at http://pachl.chello.at , not christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at .  

 

Rick

 

On Mon, Apr 28, 2014 at 3:09 AM, Walter Pachl christel.u.w.pa...@chello.at 
mailto:christel.u.w.pa...@chello.at  wrote:

Again...
Who can help me

-Ursprüngliche Nachricht-
Von: oorexx-users-ow...@lists.sourceforge.net 
mailto:oorexx-users-ow...@lists.sourceforge.net 
[mailto:oorexx-users-ow...@lists.sourceforge.net 
mailto:oorexx-users-ow...@lists.sourceforge.net ]
Gesendet: Montag, 28. April 2014 09:02
An: christel.u.w.pa...@chello.at mailto:christel.u.w.pa...@chello.at 
Betreff: AW: [Oorexx-users] How's the shell seeing what Rexx is doing
internally, and why does it care?

You are not allowed to post to this mailing list, and your message has been
automatically rejected.  If you think that your messages are being rejected
in error, contact the mailing list owner at
oorexx-users-ow...@lists.sourceforge.net 
mailto:oorexx-users-ow...@lists.sourceforge.net .


--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.  Get
unparalleled scalability from the best Selenium testing platform available.
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net mailto:Oorexx-devel@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.  Get 
unparalleled scalability from the best Selenium testing platform available.
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] condition('CODE')

2014-04-06 Thread Walter Pachl
condition('CODE') returns 'SYNTAX' instead of 
The detailed identification of the error that caused a SYNTAX condition. This 
number is a
nonnegative number in the form nn.nnn. The integer portion is the Rexx major 
error number (the
same value as the RC entry). The fractional portion is a subcode that gives a 
precise indication of
the error that occurred.
A bug?
Walter 


--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] condition('CODE') S*O*L*V*E*D

2014-04-06 Thread Walter Pachl
SOLVED:
  c=condition('O')
  Say condition('CODE')=c~CODE
Reading helps :-)
Sorry
Walter

--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] rxMath - rxm.class help sought

2014-04-05 Thread Walter Pachl
Rxm
5 March 2014

 

The distribution of ooRexx contains a function package called rxMath that
provides the computation of trigonometric and some other functions. 

Based on the underlying c-library the precision of the returned values is
limited to 16 digits. 

Close observation show that sometimes the last one or two digits of the
returned values are not correct. 

Many years ago I experimented with implementing these functions in Rexx with
its virtually unlimited precision. 

The rxm class is intended to provide the same functionality as rxMath with
no limit on the specified or implied precision. 

While I tried to get full compatibility there remain a few (actually very
few) differences:

 

-   RxCalcTan(90) raises the Syntax condition

-   rxCalcexp(x) limits x to 709. or so. 

 

Handling of syntactically incorrect arguments is still to be finished!

 

The program testexp.rex shows what I have coded so far.

You can see the 3 discrepancies when comparing rxm and rxMath.

The surprise (disappointment) is that condition('D') returns nothing
whatsoever

 

Any help / advice / critique would be highly appreciated

 

Thanks

 

Walter

 

PS rxmexp etc. will eventually be changed to rxCalcexp to become compatible
with rxMath!

 

 

Find the program at 

https://www.dropbox.com/sh/9v939j55ikderfx/SYLv80C-wP?n=132389230

 

--
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] 2 folders for documentation?

2014-02-25 Thread Walter Pachl

Open object Rexx shows two similar folders side by side:
Documentation
ooRexx Documentation
all of the files in the former are also in the latter
Do you need a screenshot?
Regards
Walter

--
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis  security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Kedit utility - where to put it

2014-01-19 Thread Walter Pachl
May I offer my dropbox to store them (and make them available to those who have 
the link)?
Regards
Walter 

 Sahananda (Jon) Wolfers sahana...@windhorse.biz schrieb:
 Once I had a web-site with a few useful ooRexx things on.
 
 Almost all of them got subsumed into the project or became obsolete when
 better things came along (mainly thanks to the great work Mark has been
 doing on ooDialog).  So several years ago, I let the site go.
 
 I had a macro for Kedit on the site that allowed users to locate classes
 and methods within ooRexx scripts from a popup menu.  It was freely
 available code without a license and I know that some people downloaded and
 used it.
 
 I last did any maintenance on it about 7 years ago, and the last available
 version did not cope with the newer ooRexx directives.
 
 The examples just released with ooDialog guide also befuddled it by use of
 the (syntactically legal but to me unexpected) practise of preceding
 directives with white-space.
 
 I have an updated version of this macro and I wonder if it would be
 appropriate to put it in the sandbox, or incubator or whether there is
 somewhere more appropriate for it.
 
 Although the Kedit website has a spot for user-contributions, this has not
 been maintained for a while now and it is not possible to add items to it.
 
 If I do put it on the SVN, I assume it would need the usual license header.
 
 (I also have a syntax completion macro for Kedit for ooRexx which I would
 like to do the same with)
 
 thanks,
 
 Jon


--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today.
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] disappearing tab

2014-01-17 Thread Walter Pachl
Thank you and have a nice weekend
Walter 

--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] ooRexx Web Sites

2014-01-10 Thread Walter Pachl
THAT’s a TASK

I shall happily work on that if my effort ain’t wasted.

To save your time, I’d suggest that I work on the HTML text

Remove dead links and annotate foul ones

Have a nice weekend

Walter

 

Von: René Jansen [mailto:rvjan...@xs4all.nl] 
Gesendet: Freitag, 10. Jänner 2014 12:20
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] ooRexx Web Sites

 

Walter,

 

illegal or just dead?

 

If you have the time, please do some research for the moved ones and report
the working ones to me, so I can update.

 

best regards,

 

René.

 

On 9 jan. 2014, at 23:47, Walter Pachl christel.u.w.pa...@chello.at
mailto:christel.u.w.pa...@chello.at  wrote:





Form there I can get to  http://www.rexxla.org/links/
http://www.rexxla.org/links/

Which has an awful lot of illegal links on it :(

Walter

 

Von: Mike Cowlishaw [mailto:m...@speleotrove.com] 
Gesendet: Donnerstag, 09. Jänner 2014 21:17
An: 'Open Object Rexx Developer Mailing List'
Betreff: Re: [Oorexx-devel] ooRexx Web Sites

 


 https://groups.google.com/forum/?hl=en#!forum/comp.lang.rexx
https://groups.google.com/forum/?hl=en#!forum/comp.lang.rexx

I had no idea that comp.lang.anything still existed!   Is this linked from
the RexxLA website?

 

Mike


--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktr
k___
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
 mailto:Oorexx-devel@lists.sourceforge.net
Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] ooRexx Web Sites

2014-01-10 Thread Walter Pachl
No software can beat a (mildly) intelligent person :)

 

Von: Mike Cowlishaw [mailto:m...@speleotrove.com] 
Gesendet: Freitag, 10. Jänner 2014 16:56
An: 'Open Object Rexx Developer Mailing List'
Betreff: Re: [Oorexx-devel] ooRexx Web Sites

 

Gentlemen ... I recommend Xenu (free software) to you -- it will check all
of the links on a website and report broken/bad/other problems to you in a
single report.   I use it on my site every few months or so.

 

Mike  

 


  _  


From: René Jansen [mailto:rvjan...@xs4all.nl] 
Sent: 10 January 2014 12:15
To: Open Object Rexx Developer Mailing List
Subject: Re: [Oorexx-devel] ooRexx Web Sites

Walter, 

 

I promise to update within a few hours after you send me the html

 

Great! Thanks.

 

best regards,

 

René.

 

On 10 jan. 2014, at 12:40, Walter Pachl christel.u.w.pa...@chello.at
mailto:christel.u.w.pa...@chello.at  wrote:





THAT’s a TASK

I shall happily work on that if my effort ain’t wasted.

To save your time, I’d suggest that I work on the HTML text

Remove dead links and annotate foul ones

Have a nice weekend

Walter

 

Von: René Jansen [mailto:rvjan...@xs4all.nl] 
Gesendet: Freitag, 10. Jänner 2014 12:20
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] ooRexx Web Sites

Walter,

illegal or just dead?

If you have the time, please do some research for the moved ones and report
the working ones to me, so I can update.

best regards,

René.

On 9 jan. 2014, at 23:47, Walter Pachl 
mailto:christel.u.w.pa...@chello.at christel.u.w.pa...@chello.at wrote:






Form there I can get to  http://www.rexxla.org/links/
http://www.rexxla.org/links/

Which has an awful lot of illegal links on it :(

Walter

Von: Mike Cowlishaw [ mailto:m...@speleotrove.com
mailto:m...@speleotrove.com] 
Gesendet: Donnerstag, 09. Jänner 2014 21:17
An: 'Open Object Rexx Developer Mailing List'
Betreff: Re: [Oorexx-devel] ooRexx Web Sites


 https://groups.google.com/forum/?hl=en#!forum/comp.lang.rexx
https://groups.google.com/forum/?hl=en#!forum/comp.lang.rexx

I had no idea that comp.lang.anything still existed!   Is this linked from
the RexxLA website?

Mike


--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktr
k___
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
 mailto:Oorexx-devel@lists.sourceforge.net
Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 


--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktr
k___
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
 mailto:Oorexx-devel@lists.sourceforge.net
Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 



RexxLA  The Rexx Language Association



Screen Styles:
Normal Large UserPref


  HomeAbout RexxMembersSymposium  EventsSponsored Projects
LinksFree RepositoryRexx Wiki




Valid XHTML 1.01!


Valid CSS!


Links

Groups
•General,
•Training,
•OS/2,
•Windows,
•Unix,
•DOS,
•Amiga,
•S/390
•PalmOS
•Java

General

new_tiny  IBM's Historical Rexx web pages. Note that these pages have no style 
sheets so they display badly, but the information itself is intact. Thanks goes 
to IBM for supplying these pages to RexxLA.

IBM's Rexx Language Page   -- now only showing host implementations

Open Object Rexx homepage  -- ok

NetRexx homepage [IBM] -- should be changed to a NetRexx page

Mark Hessling's Cross-platform Rexx related tools page including:   -- Mark's 
home page and there are more entries there
•Regina- cross platform Rexx interpreter
•THE- XEDIT/KEDIT like editor that uses Rexx for macros
•Rexx/SQL- Rexx extension for accessing SQL database
•Rexx/Curses- Rexx extension for building text-mode user interfaces
•Rexx/DW- Rexx extension for building GUI applications
•Rexx/Wrapper- tool for builing native executable programs from Rexx programs 
(does not compile Rexx code)
•Rexx/cURL- Rexx

Re: [Oorexx-devel] ooRexx Web Sites

2014-01-09 Thread Walter Pachl
Form there I can get to http://www.rexxla.org/links/

Which has an awful lot of illegal links on it :(

Walter

 

Von: Mike Cowlishaw [mailto:m...@speleotrove.com] 
Gesendet: Donnerstag, 09. Jänner 2014 21:17
An: 'Open Object Rexx Developer Mailing List'
Betreff: Re: [Oorexx-devel] ooRexx Web Sites

 


https://groups.google.com/forum/?hl=en#!forum/comp.lang.rexx

I had no idea that comp.lang.anything still existed!   Is this linked from
the RexxLA website?

 

Mike

--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] my 4.2 problem with THE

2013-12-23 Thread Walter Pachl
Rick, You MAY have an idea where the problem is and I'd be more than happy
to test if the fix, if any, solves the problem.

I have created ticket 1229 with less information than you require.

Mind you: it's not my baby at all.

But it may be a start.

 

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 23. Dezember 2013 14:43
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] my 4.2 problem with THE

 

Well, it's more than just a good idea.  Until I have details on how to
recreate the problem, I have no way of verifying if I've fixed the problem.
As I keep reminding Walter, entering a bug report is the only way to report
a bug and get it fixed. 

 

Rick

 

On Mon, Dec 23, 2013 at 8:25 AM, Mike Cowlishaw m...@speleotrove.com wrote:

 

 

 

Well, until a bug report is created with details on how to recreate the
problem, it is not going to get worked on.   

 

and

 

The problem appears to be that ooRexx 4.2.x is unable to find an
application function registered with RexxRegisterFunctionExe.  

Is it now too late to fix it in 4,2?
Or is it not a problem??
 

Hey .. play nice, guys; it's holiday season :-)).

 

Good idea though, Rick; Walter should report this in the problem list.

 

Mike

 



--
Rapidly troubleshoot problems before they affect your business. Most IT
organizations don't have a clear picture of how application performance
affects their revenue. With AppDynamics, you get 100% visibility into your
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] my 4.2 problem with THE

2013-12-22 Thread Walter Pachl
I got this background from Mark H

A THE macro containing a call to the inprefix() function worked fine
with ooRexx 4.1.x and now when using ooRexx 4.2.x the inprefix() macro
appears to be unavailable. The THE executable has not changed.

The version of THE that Walter is using is built with Rexx/Wrapper which
obtains the address of the Rexx SAA API functions from either Regina or
ooRexx at THE startup. Using these loaded function addresses, THE
registers a number of functions used by THE macros, one of which is
inprefix().

The Rexx/Wrapper logs for both versions of ooRexx 4.1.x shows
RexxRegisterFunctionExe() returning a valid memory address and the
registration of inprefix() also succeeding.

The problem appears to be that ooRexx 4.2.x is unable to find an
application function registered with RexxRegisterFunctionExe.  

Is it now too late to fix it in 4,2?
Or is it not a problem??
--
Walter Pachl

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] 4.2

2013-12-19 Thread Walter Pachl
I encountered an error after installing 4.2 with a THE Macro 

As I am NOT owning this macro (or anything of THE)

And Les Koehler can't install 4.2 for some reason

And Mark Hessling has no time available to follow that up

And I don't know enough to even have an idea what the problem could be:

Is there anyone else who could verify this problem?

IBM taught me that a bug is least expensive when fixed early

Regards

Walter

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Walter Pachl shared Screenshots with you

2013-12-19 Thread Walter Pachl
I DO hope that Mark can tell you.

I CAN NOT!

Anyway. This works perfectly with 4.1.1

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Donnerstag, 19. Dezember 2013 13:45
An: Walter Pachl; Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] Walter Pachl shared Screenshots with you

 

And the routine inprefix is expected to be found where?

Rick

 

On Thu, Dec 19, 2013 at 7:02 AM, Walter via Dropbox no-re...@dropbox.com
wrote:




  https://www.dropbox.com/static/images/emails/glyph/glyph...@2x.png 





From Walter:

The 4.2 error

Click here to view Screenshots
https://www.dropbox.com/l/9oOhkY8xEpgSRMRZv2e96e 

(Walter shared these files using Dropbox. Enjoy!)





 




C 2013 Dropbox

  https://www.dropbox.com/l/NXnRWiaFbo4hUpF6tOknFa 

--
Rapidly troubleshoot problems before they affect your business. Most IT
organizations don't have a clear picture of how application performance
affects their revenue. With AppDynamics, you get 100% visibility into your
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

 

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Windows installer: Finish page

2013-12-17 Thread Walter Pachl
But non-newbies would know where to look.
We were talking about the disappointed newbie

-Ursprüngliche Nachricht-
Von: Chip Davis [mailto:c...@aviatrexx.com] 
Gesendet: Dienstag, 17. Dezember 2013 18:48
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] Windows installer: Finish page

True, but I'd think that non-newbies (which should be larger population, one
hopes) would find it quite helpful.

-Chip-

On 12/17/2013 11:54 Walter Pachl said:
 Can we see a draft?

 I doubt that readme (showing mosty changes) is useful to a newbie

 Walter

 *Von:*Mike Cowlishaw [mailto:m...@speleotrove.com]
 *Gesendet:* Dienstag, 17. Dezember 2013 17:44
 *An:* 'Open Object Rexx Developer Mailing List'
 *Betreff:* Re: [Oorexx-devel] Windows installer: Finish page

 I'm attaching snapshot of the Finish page.  Not sure if it will be 
 stripped or not.

 Looks excellent!

 Rick's suggestion of readme rather than licence is good (assuming the 
 readme is useful/up to date -- I haven't looked at it for a while).

 Mike



 --
  Rapidly troubleshoot problems before they affect your 
 business. Most IT organizations don't have a clear picture of how 
 application performance affects their revenue. With AppDynamics, you 
 get 100% visibility into your Java,.NET,  PHP application. Start your 
 15-day FREE TRIAL of AppDynamics Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.c
 lktrk



 ___
 Oorexx-devel mailing list
 Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel



--
Rapidly troubleshoot problems before they affect your business. Most IT
organizations don't have a clear picture of how application performance
affects their revenue. With AppDynamics, you get 100% visibility into your
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Windows installer: Finish page

2013-12-17 Thread Walter Pachl
If you give me the urls I shall look at them from my webpage.
--
Walter Pachl

 Mark Miesfeld miesf...@gmail.com schrieb:
 On Tue, Dec 17, 2013 at 10:07 AM, Walter Pachl christel.u.w.pa...@chello.at
  wrote:
 
  But non-newbies would know where to look.
  We were talking about the disappointed newbie
 
 
 Talking about the disappointed newbie is what started this whole thing.
 
 But, now we are talking about what the finish page should look like / do.
  We have more options here.  For instance:
 
 2 chkBx  Show Open Object Rexx 4.2.0 Releases Notes (or Read Me file.)
 
 3 hypLnk  How to Get Started if You are New to Open Object Rexx
 
 Where #3 is specifically designed for the newbie
 
 --
 Mark Miesfeld


--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Inherited methods tables

2013-12-09 Thread Walter Pachl
Indeed I was shocked seeing this but dared not complain

(English?)

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Montag, 09. Dezember 2013 23:39
An: Open Object Rexx Developer Mailing List
Betreff: [Oorexx-devel] Inherited methods tables

 

The inherited methods section of the classes are horribly mangled in the
publican version.  Is it possible to just make each method name a hot link
without the section information and the repeated method name?

 

Rick

--
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


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

2013-12-08 Thread Walter Pachl
downloaded
Installed
Got REXX-ooRexx_4.2.0(MT)_32-bit 6.04 8 Dec 2013
Observation:
Uninstall takes (much) longer than previous
Process says that it REMOVES file associations but clicking on xxx.rex AFTER 
the Installation  still opens Kedit 
(my good old file association)
Have yet to learn what new file types such as rexh (rexxhide) are for
Thanks anyway
Walter


--
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] rexxref updates

2013-12-06 Thread Walter Pachl
Is there a chance to get a 'review' copy to see the changes made before the 
stuff is released to the 'public' ?
Thanx  Regards
--
Walter Pachl

--
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] questions I can't answer

2013-11-24 Thread Walter Pachl
I am trying to convince someone (you may know who) to try ooRexx.
He asked these questions most of which I cannot reliably answer
Would anyone of you be kind enough to take the time to fill in the blanks
and replace the question marks?

Installing ooRexx:

What folders does it create?
 C:\Program files (X86)\oorexx
Can I name them myself?
 ??
Can I place them elsewhere than the defaults?
 ??
Does it hijack any of my existing associations?
 I guss so ??
What can the file extension(s) [file type(s)] be?
 user defined ??
Can I name them anything I want, or do I have to use specific FTs?
 I guess any can be used
None of this stuff is anywhere that I can find.
 ?? not on top
There is no   read.me   file that I can download without going through THE 
download.
 There is a readme.pdf under docs which is rather extensive
A FAQ for (Microsoft) Windows would be nice.
 Is there ??
Can ooRexx and other REXXes play well together?
 I guess so but I don't know (NOT IBM Object Rexx though - but he wouldn't 
 have THAT)
Do I   HAVE TO   go through an install process or can I just copy a few
  files somewhere and let it fly.
 I guess not really
What (or which) Microsoft Windows versions are supported?
 That's in readme.pdf (and was recently discussed
Can I run  ooRexx in a stand-alone DOS system  (i.e.,  no windows AT ALL),
  like I can with Regina, PC/REXX and others?
 I Guess NO

As for me I prais the ease of installation on Windows, bu then I am happy with 
ooRexx only :-)

Thank y'aa in advance

Walter Pachl


--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] questions I can't answer

2013-11-24 Thread Walter Pachl

--
Walter Pachl

 Rick McGuire object.r...@gmail.com schrieb:
 On Sun, Nov 24, 2013 at 12:28 PM, Walter Pachl christel.u.w.pa...@chello.at
  wrote:
 
  I am trying to convince someone (you may know who) to try ooRexx.
  He asked these questions most of which I cannot reliably answer
  Would anyone of you be kind enough to take the time to fill in the blanks
  and replace the question marks?
 
  Installing ooRexx:
 
  What folders does it create?
   C:\Program files (X86)\oorexx
  Can I name them myself?
 
 
 Yes
 
   ??
  Can I place them elsewhere than the defaults?
   ??
 
 
 Yes
 
 
  Does it hijack any of my existing associations?
   I guss so ??
 
 It depends on what constitutes hijacked.  It does define some file
 associations and does take over any standard file associations.
 
 
  What can the file extension(s) [file type(s)] be?
   user defined ??
 
 
 Anything.
 
 
  Can I name them anything I want, or do I have to use specific FTs?
   I guess any can be used
 
 
 Any can be used
 
 
  None of this stuff is anywhere that I can find.
   ?? not on top
  There is no   read.me   file that I can download without going through
  THE download.
   There is a readme.pdf under docs which is rather extensive
  A FAQ for (Microsoft) Windows would be nice.
   Is there ??
  Can ooRexx and other REXXes play well together?
   I guess so but I don't know (NOT IBM Object Rexx though - but he
  wouldn't have THAT)
  Do I   HAVE TO   go through an install process or can I just copy a few
files somewhere and let it fly.
   I guess not really
 
 
 The only versions available for download are the install versions.  It is
 possible to copy the files and run with it, but frankly, that's harder than
 just installing it.
 
 
  What (or which) Microsoft Windows versions are supported?
   That's in readme.pdf (and was recently discussed
  Can I run  ooRexx in a stand-alone DOS system  (i.e.,  no windows AT ALL),
like I can with Regina, PC/REXX and others?
   I Guess NO
 
 
 No, DOS is not one of the platforms we support.
 
 
  As for me I prais the ease of installation on Windows, bu then I am happy
  with ooRexx only :-)
 
  Thank y'aa in advance
 
  Walter Pachl
 
 
 
  --
  Shape the Mobile Experience: Free Subscription
  Software experts and developers: Be at the forefront of tech innovation.
  Intel(R) Software Adrenaline delivers strategic insight and game-changing
  conversations that shape the rapidly evolving mobile landscape. Sign up
  now.
  http://pubads.g.doubleclick.net/gampad/clk?id=63431311iu=/4140/ostg.clktrk
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 


--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] questions I can't answer

2013-11-24 Thread Walter Pachl
Another thank you is in order
Last open Q;
 Can ooRexx and other REXXes play well together?
 I guess so but I don't know (NOT IBM Object Rexx though - but he 
wouldn't have THAT)

Is this guess of mine correct?
Greetings
Walter 

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] stem.[x1,x2]

2013-11-17 Thread Walter Pachl
 

I think this is not very well  described in rexref.

I would suggest to add

 

Before this sentence:

The [] method with no arguments will return the currently associated default
value.

 

This little description and examples:

 

Tails for compound variables are normally specified by symbols separated by
periods.

An alternative is to specify the tail as a bracketed list of expressions
separated by commas.

The expressions are evaluated to character strings-

These are concatenated with intervening periods and the resulting string is
used as tail.

This notation can be used in assignments to compound variables as well as
when referencing them.

Examples:

a.[1+2,3+4]=17  /* tail used: 3.7   */

Say a.3.7   /* = 17*/

v1='1+2'

v2='3+4'

a.v1.v2=18  /* tail used: '1+2.3+4' */

Say a.['1+2','3+4'] /* = 18*/

Parse Value '1 2 3' With . a.[1,1+1] .

Say a.1.2   /* = 2 */

 

Anyone with me?

Regards

Walter

 

 

--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Weirdness

2013-10-22 Thread Walter Pachl
It's really a sort of (distributed) mess:

My Google leads me to

http://de.wikipedia.org/wiki/REXX

showing this

Weblinks[Bearbeiten]
Regina, eine Open Source Implementierung für Unix und Windows
Open Object Rexx – Fortführung des mittlerweile abgekündigten IBM Object REXX 
als Open-Source-Projekt unter Obhut der Rexx Language Association (RexxLA).
REXX für Palm OS
REXX/400 Programmers Guide (PDF; 854 kB)

 Wikibooks: REXX – Lern- und Lehrmaterialien

And the ooRexx link goes to

Announcements
• Open Object Rexx version 4.1.2 is now available. Visit the announcement page 
for More information.
•Dr. Dobb's Journal has an article on Open Object Rexx. You can read it here.

mittlerweile abgekündigten IBM Object REXX  - meanwhile announced :-)  well, 
angekündigten would be correct

Regards
Walter



--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60135991iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Weirdness

2013-10-20 Thread Walter Pachl
not so complicated:-)
here I see
Rexx version: REXX-ooRexx_4.1.3(MT) 6.03 4 Jul 2013 
--
Walter Pachl

 Mike Cowlishaw m...@speleotrove.com schrieb:
 The current version is 4.1.3. 
  
 I stand corrected.  Thought I always updated when prompted, though .. did I 
 miss
 one (two?)?   My installed is 4.1.1, according to this complicated script
 [version.rex]:
  
   parse version all
   say 'Rexx version:' all
  
 Mike 


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60135031iu=/4140/ostg.clktrk
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Announce ooRexx 4.1.3 Is Now Available

2013-07-08 Thread Walter Pachl
--I opened your link (of course)
and it showed a list of 4.1.2
whereas David's starts off with 4.1.3 (tons of ...x stuff though) and then 
--32.exe
Regards
Walter Pachl

 Mark Miesfeld miesf...@gmail.com schrieb:
 Walter,
 
 The link I posted was:
 
 http://sourceforge.net/projects/oorexx/files/oorexx/4.1.3/http://sourceforge.net/projects/oorexx/files/oorexx/4.1.2/
 
 which is a web page.  Look at the entire web page to find what you want.
 
 The link you just sent:
 
 *Download ooRexx-4.1.3.windows.x86_64.exe (18.1
 MB)http://sourceforge.net/projects/oorexx/files/latest/download?source=files
 *
 *
 *
 is a link to a single file.  Do not pick that link.  Pick the link of the
 file you want to download.
 
 --
 Mark Miesfeld


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Announce ooRexx 4.1.3 Is Now Available

2013-07-07 Thread Walter Pachl
This gives me

Download ooRexx-4.1.3.windows.x86_64.exe (18.1 MB)
http://sourceforge.net/projects/oorexx/files/latest/download?source=files 

Where is the 32 bit version or do I have to use 64 now??

And the doc link gets the same?!?

Too dumb for all that:

Walter

Thanks anyway

 

Von: Mark Miesfeld [mailto:miesf...@gmail.com] 
Gesendet: Montag, 08. Juli 2013 00:11
An: Open Object Rexx Announcements; Open Object Rexx Users; ooRexx Dev List;
RexxLA
Betreff: [Oorexx-devel] Announce ooRexx 4.1.3 Is Now Available

 

The Open Object Rexx Development Team is proud to announce the availability
of ooRexx 4.1.3. This is a bug fix only release, with about 20 bug fixes.

Installation packages for ooRexx are available immediately on SourceForge.
You can download ooRexx 4.1.3 from:

 http://sourceforge.net/projects/oorexx/files/oorexx/4.1.2/
http://sourceforge.net/projects/oorexx/files/oorexx/4.1.3/

Complete documentation in PDF and HTML format can be downloaded from:

 http://sourceforge.net/projects/oorexx/files/oorexx-docs/4.1.2/
http://sourceforge.net/projects/oorexx/files/oorexx-docs/4.1.3/

Download the CHANGES document, in the ooRex files area, to see the list of
fixes. The _ReadMe.pdf or _ReadMe.html files contain additional information
concerning the release.  If you discover bugs please open a bug report at:

 http://sourceforge.net/p/oorexx/bugs/
http://sourceforge.net/p/oorexx/bugs/

--
The ooRexx Development Team

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] [Spamverdacht] Re: Announce ooRexx 4.1.3 Is Now Available

2013-07-07 Thread Walter Pachl
David's link:

https://sourceforge.net/projects/oorexx/files/oorexx/4.1.3/?

seems to be better than Mark's:

http://sourceforge.net/projects/oorexx/files/oorexx/4.1.3/

???

Learning (?):

Walter

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Interpret 'x=3--1'

2013-05-30 Thread Walter Pachl
such as
Do
say 2*2,
;End  
note the traling semicolons omitted

How about Interpret ' Interpret  ...' ??
--
Walter Pachl

 Mike Cowlishaw m...@speleotrove.com schrieb:
  
 
 
  
 Mike, this works fine (note the trailing comma):
 
 INTERPRET 'say 2*2,'
 
 
 This one doesn't:
 
 DO;
 
 say 2*2,
 
 END;
 
 
 A little can of worms :-)
  
 Interesting.  So a stronger statement is needed there, perhaps:  'with an 
 added
 semicolon'.   
  
 Mike  
  
 


--
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with 2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Interpret 'x=3--1'

2013-05-11 Thread Walter Pachl

post scriptum
wheras the second /* in this line is recognized
/* x='3/*1' */say x 4711 
the -- in this line is not
/* x='3--1' */say x 4711 
is this correct?
should one add that -- *outside of literal strings and comments is recognized 
as start of a line command ??
Sigh again
Walter


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Interpret 'x=3--1'

2013-05-11 Thread Walter Pachl
great.
thanx
--
Walter Pachl

 Mike Cowlishaw m...@speleotrove.com schrieb:
 Hi Walter, 
 
 
  1.10.3. Comments
  The interpreter recognizes the following types of comments:
  . A line comment, where the comment is limited to one line . 
  The standard Rexx comment, where the comment can cover 
  several lines A line comment is started by two subsequent 
  minus signs(--) and ends at the end of a line.
  
  Add  or at the end of the string to be interpreted by the 
  Interpret instruction
 
 I think this forward reference to INTERPRET is unnecessary, see below. 
  
  2.11. INTERPRET
  ...
  The expression is evaluated to produce a character string, 
  and is then processed (interpreted) just as though the 
  resulting string were a line inserted into the program and 
  bracketed by a DO; and an END;.
  
   this is not  the case with  Interpret 'x=3--1'
  (Do; x=3--1 End;)
 
 As written, it is the _line_ that is bracketed by the DO; and END;, not the
 _string_.  i.e., the result is:
 
   DO;
   x=3--1
   END;
 
 not: 
 
   Do; x=3--1 End;
 
 This could be emphasised by changing the text to:
 
   ... just as though the resulting string were a line inserted 
   into the program and bracketed by lines containing a DO; and an END;.
 
 Mike
 
 
 --
 Learn Graph Databases - Download FREE O'Reilly Book
 Graph Databases is the definitive new guide to graph databases and 
 their applications. This 200-page book is written by three acclaimed 
 leaders in the field. The early access version is available now. 
 Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
 ___
 Oorexx-devel mailing list
 Oorexx-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] LOSTDIGITS

2012-12-05 Thread Walter Pachl
This little program:

Signal On Lostdigits
x=7
Do i=1 To 5
 x=x+1
 say x
 End
Exit
lostdigits:
  Say 'This is what SIZE is in PL/I'

shows this output:

8
9
1.E+9
1.E+9
1.E+9   

I have expected that the lostdigits condition is trapped. It ain't!!.
Am I wrong (again)??
Walter

PS: I just added such information for PL/I on rosettacode.org for PL/I

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] LOSTDIGITS

2012-12-05 Thread Walter Pachl
Can I trap this in any other way?
This came to mind but does not work either
Numeric Digits 30
 x=x+1
 Say x
 Numeric Digits 9
 z=x+0
 Say z  
 Rick McGuire object.r...@gmail.com schrieb:
 From the documentation:
 
 LOSTDIGITS
 raised if a number used in an arithmetic operation has more digits than the
 current setting of
 NUMERIC DIGITS. Leading zeros are not counted in this comparison.
 
 LOSTDIGITS only applies to the values used at the start of the calculation,
 not with rounding performed on the operation result.  Since you have never
 used as number containing more than 9 significant digits, the condition is
 never triggered.
 
 Rick
 
 On Wed, Dec 5, 2012 at 3:35 PM, Walter Pachl
 christel.u.w.pa...@chello.atwrote:
 
  This little program:
 
  Signal On Lostdigits
  x=7
  Do i=1 To 5
   x=x+1
   say x
   End
  Exit
  lostdigits:
Say 'This is what SIZE is in PL/I'
 
  shows this output:
 
  8
  9
  1.E+9
  1.E+9
  1.E+9
 
  I have expected that the lostdigits condition is trapped. It ain't!!.
  Am I wrong (again)??
  Walter
 
  PS: I just added such information for PL/I on rosettacode.org for PL/I
 
 
  --
  LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
  Remotely access PCs and mobile devices and provide instant support
  Improve your efficiency, and focus on delivering more value-add services
  Discover what IT Professionals Know. Rescue delivers
  http://p.sf.net/sfu/logmein_12329d2d
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] oodialog - can anyone help with little effort?

2012-12-05 Thread Walter Pachl
I am working on this:
I want to implement this little and simple program using oodialog:
Do Until wordlist=''
  word=subword(wordlist,random...)
  display screen 1
  upon enter
  display screen 2
  If respone=F1 Then drop the word
  End
Say bye or display Bye bye

+
| German : Vater
| English: ___
| hit enter
+
+
| German : Vater
| English: father
| Press F1 if you knew it, F2 if you didn't
+
+
| German : Mutter
| English: ___
| hit enter
+
etc.
MY driver of that dialog would present randomly German
(or English) words.
The student would THINK about the answer
She would be shown it in the next dialog step and could
tell my program whether it should redisplay the word later (F2)
or not (F1)
Honesty of the user assumed

Thanks
Walter



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] LOSTDIGITS

2012-12-05 Thread Walter Pachl
 On Wed, Dec 5, 2012 at 4:30 PM, Walter Pachl 
christel.u.w.pa...@chello.at wrote:
 
And how about
 x=11
 Do i=1 To 5
  Numeric dIGITS 30
  x=x+1  - 12
 
 Say x
  Numeric Digits 9
 
 z=x+0  - 1.E+9
  Say z
  End

I THINK you started by sending me a private mail :-(
 


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] oodialog - can anyone help with little effort?

2012-12-05 Thread Walter Pachl
I knew xou would!
THANKS in advance
Walter

 Mark Miesfeld miesf...@gmail.com schrieb:
 I can help you with this, give me a little bit of time to put something


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] LOSTDIGITS

2012-12-05 Thread Walter Pachl
A
I shall enter a but!
Glad to have helped :-)
Walter

 Rick McGuire object.r...@gmail.com schrieb:
 Looks like a boundary condition bug.  The condition is raised for lengths
 of digits+2, but not digits+1.
 
 Rick
 
 On Wed, Dec 5, 2012 at 5:18 PM, Walter Pachl
 christel.u.w.pa...@chello.atwrote:
 
   On Wed, Dec 5, 2012 at 4:30 PM, Walter Pachl 
  christel.u.w.pa...@chello.at wrote:
 
  And how about
   x=11
   Do i=1 To 5
Numeric dIGITS 30
x=x+1  - 12
 
   Say x
Numeric Digits 9
 
   z=x+0  - 1.E+9
Say z
End
 
  I THINK you started by sending me a private mail :-(
 
 
 
 
  --
  LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
  Remotely access PCs and mobile devices and provide instant support
  Improve your efficiency, and focus on delivering more value-add services
  Discover what IT Professionals Know. Rescue delivers
  http://p.sf.net/sfu/logmein_12329d2d
  ___
  Oorexx-devel mailing list
  Oorexx-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/oorexx-devel
 


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] oodialog - can anyone help with little effort?

2012-12-05 Thread Walter Pachl
Thanks a million!

 

Works like a charm.

Two points though:

Rexx version says Version REXX-ooRexx_4.1.1(MT) 6.03 16 May 2012   

Should it not say 4.2.0 ??

And

germanWords = .array~of('Vater', 'Matter', 'Gutan','Tag')

should be

germanWords = .array~of('Vater', 'Mutter', 'Guten','Tag')

 

will study and ask (if necessay) later 

Ah one question: why woud it not work on earlier ooRexx version(s)??

Iow: which is a ,new' feature?

 

Regards

Walter

 

 

 

Von: Mark Miesfeld [mailto:miesf...@gmail.com] 
Gesendet: Donnerstag, 06. Dezember 2012 01:25
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] oodialog - can anyone help with little effort?

 

On Wed, Dec 5, 2012 at 2:03 PM, Mark Miesfeld miesf...@gmail.com wrote:

I can help you with this, give me a little bit of time to put something
together.

 

 

Walter,

 

Here's a simple start of a program.  I used the '-' line continuation
character so that lines won't wrap.

 

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] oodialog - can anyone help with little effort?

2012-12-05 Thread Walter Pachl
Thanks for clarification of 4.1.1.

 

Ah one question: why woud it not work on earlier ooRexx version(s)?? 

now: which is a ,new' feature? (WAS a questionI)

For one, it uses the new C++ native extension mechanism, so it could not
work on any ooRexx before 4.0.0.  But, it also uses two API methods that
were not introduced until ooRexx 4.1.0.

 

Mark Miesfeld

 

 

I don't remember when I have met oodialog the first time but that must be
years.

Would your code have worked as well then (without C++. etc.) or would you
have written it differently?

 

Just curious -- 

Walter

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Creating, Modifying ODF-files with ooRexx ...

2012-11-17 Thread Walter Pachl
Also 
es gibt einen Installation Guide
Kann man (kannst du) ein kurzes Rexx programm schreiben das sagt was da ist 
bzw. was fehlt.
Mich aufzufordern ooRexx zu installieren ist irgendwie überflüssig!
Java hab ich auch sicher...
LG
Walter

--
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Creating, Modifying ODF-files with ooRexx ...

2012-11-17 Thread Walter Pachl

This was, of course, meant for Rony's eyes only!!!
Greetings
Walter

 Walter Pachl christel.u.w.pa...@chello.at schrieb:
 Also 
es gibt einen Installation Guide
Kann man (kannst du) ein kurzes Rexx programm schreiben das sagt was da ist 
bzw. was fehlt.
Mich aufzufordern ooRexx zu installieren ist irgendwie überflüssig!
Java hab ich auch sicher...
LG
Walter

--
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel



--
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] Sanity check

2012-11-05 Thread Walter Pachl
Two questions / observations regarding rexxref.pdf:

5.3.2. The Collection Class
5.3.2.16. union
...
-union(argument)-
The argument must also allow all of the index values in the receiver collection.

  add: The ITEMS in the argument must be acceptable by the receiver 
 collection.

5.3.15. The Stem Class
5.3.15.4. []=

  add: the index used for the stem object is the required string value of the
   specified index object.

My test
pa=.payroll~new(1,'Walter',1000)   -- an object
M=.Stem~new; m[pa]='I'-- string value of pa is used as index

correct? 
Regards
Walter 



--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] relation method difference

2012-10-07 Thread Walter Pachl
I found the solution to Q2
r=.relation~new ;r[1]='A'; r[2]='B'; r['U']='U'; r['U']='U';
a=.array~of('A','U','V')
Call show_relation 'r',r
Call show_array 'a',a
Call show_relation 'r-a',r~difference(a)
Exit
Result:
r 4  / 1 A / 2 B / U U / U U
a  / 1 A / 2 U / 3 V
r-a 3  / 1 A / 2 B / U U  
Note that only ONE U/U pair is 'subtracted' from r (this relates to Q1)

Have a nice week
Walter

-Ursprüngliche Nachricht-
Von: Walter Pachl [mailto:christel.u.w.pa...@chello.at] 
Gesendet: Sonntag, 07. Oktober 2012 08:00
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] relation method difference

 Walter Pachl christel.u.w.pa...@chello.at schrieb:
 Q1: this is NOT what I read in the description-- maybe a doc error (or 
 a bug)
Q2: understood: z´this would have neen an invalid bug (which I wanted to avoid) 
Walter

Q1: a) doc b) bug c) my fault
Q2: can a kind soul provide an example whare array a affects rd=r~difference(a) 
and/or bag b does the same.

The section cited by Rick is way too heavy for me and I might get wiser by such 
examples

Thanks
Walter


--
Don't let slow site performance ruin your business. Deploy New Relic APM Deploy 
New Relic app performance management and know exactly what is happening inside 
your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and 
get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] relation method difference

2012-10-06 Thread Walter Pachl
Before I enter another invalid bug
(is 1122 really invalid? Why does makestring not use the required string value 
of objects
and is the use of null string worth documenting?)

here is a little program and 2 questions:
Q1: Why is 1 A in relation r12 (it is in r2)
Q2: Why is r1a identical to r1 (is array's index 1 not the same as relation's 
index 1?)

5.3.13.10. difference
-difference(argument)
Returns a new Relation containing only those items that the argument collection 
does not contain (with
the same associated index). (Q1)
The argument can be any collection class object. (Q2)

r1=.relation~new ;r1[1]='A'; r1[2]='B'; r1[3]='C'; r1[1]='A'
r2=.relation~new ;r2[1]='A'; r2[2]='B'; r2[3]='E'
Call show_relation 'r1',r1   -- r1 / 1 A / 2 B / 3 C / 1 A
Call show_relation 'r2',r2   -- r2 / 1 A / 2 B / 3 E
r12=r1~difference(r2);
Call show_relation 'r12',r12 -- r12 / 1 A / 3 C
a2=.array~new ;a2[1]='A'; a2[2]='B'; a2[3]='E'
r1a=r1~difference(a2);
Call show_relation 'r1a',r1a -- r1a / 1 A / 2 B / 3 C / 1 A
Exit
show_relation: Procedure
 Use Arg tag,r
  s=r~supplier
  Call show_supplier tag,s
  Return

show_supplier: Procedure
  Use Arg tag,s
  ol=tag
  do while s~available
ol=ol '/' s~index s~item
s~next
End
  Say ol
  Return

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] relation method difference

2012-10-06 Thread Walter Pachl
Q1: this is NOT what I read in the description-- maybe a doc error (or a bug)
Q2: understood: z´this would have neen an invalid bug (which I wanted to avoid)
Walter

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] relation method difference

2012-10-06 Thread Walter Pachl
 Walter Pachl christel.u.w.pa...@chello.at schrieb:
 Q1: this is NOT what I read in the description-- maybe a doc error (or a bug)
Q2: understood: z´this would have neen an invalid bug (which I wanted to avoid)
Walter

Q1: a) doc b) bug c) my fault
Q2: can a kind soul provide an example whare array a affects rd=r~difference(a)
and/or bag b does the same.

The section cited by Rick is way too heavy for me and I might get wiser by such 
examples

Thanks
Walter


--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] rexxref.

2012-09-27 Thread Walter Pachl
I shall change my bad habits :-)
Should I write a separate one for each of them or a collectie one addressing 
the section?
Still I plea for the example how to use s=cq~supplier.
My (innocent) attempts failed.
Walter

 Mike Cowlishaw m...@speleotrove.com schrieb:
 Also, by posting every little detail/question everyone on the list gets a 
 copy.
 Putting it into the tracking system means that only the people who can/will 
 fix
 it have to read it.  And of course, each one can be tracked individually which
 helps everyone.
  
 Mike
 
 
   _  
 
 From: Walter Pachl [mailto:christel.u.w.pa...@chello.at] 
 Sent: 27 September 2012 04:54
 To: 'Open Object Rexx Developer Mailing List'
 Subject: Re: [Oorexx-devel] rexxref.
 
 
 
 I am learning!
 
 If someone (needn't be you, Rick) says: You are right - I will.
 
 It saves me some time if my question regarding the supplier is answered 
 instead
 of becoming a rejected bug.)
 
  
 
 Von: Rick McGuire [mailto:object.r...@gmail.com] 
 Gesendet: Donnerstag, 27. September 2012 01:12
 An: Open Object Rexx Developer Mailing List
 Betreff: Re: [Oorexx-devel] rexxref.
 
  
 
 You really would save a lot of time if you just opened bug reports for these
 sorts of things.  I get really tired of the should I open a bug report 
 dance.
 Frankly, I will rarely even look at things like this until it is in the 
 system. 
 
 Rick
 


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] rexxref.

2012-09-27 Thread Walter Pachl
I did read this and dummy me tried a 
do item over s :-(
This is now settled  clear and I shall open the doc ticket
Thanks
Walter

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


[Oorexx-devel] rexxref.

2012-09-26 Thread Walter Pachl
While studying I noticed these points in rexxref.pdf:

5.3.8.3. init -init(--size--)
should be new

5.3.8.5. push
If option is 'Unique', any matching item already in the queue ...
should be items (plural)

5.3.8.6. queue
also plural

5.3.8.7. resize
If the previous size was larger than newSize, any extra items are removed in
the specified order.
should be
If there are more than newSize items in the queue...

First-in, first-out. This keeps the most recently added items.
The order of inserting is not relevant!!! The items on top are removed...

5.3.8.11. Example
u~resize(2, LILO)
should be
u~resize(2, LIFO) (although it's ireelevant)

Would you agree?
Walter

By the way: I can't make use of s after s=cq~supplier
Can you provide an example??


--
How fast is your code?
3 out of 4 devs don\\\'t know how their code performs in production.
Find out how slow your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219672;13503038;z?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] rexxref.

2012-09-26 Thread Walter Pachl
I am learning!

If someone (needn't be you, Rick) says: You are right - I will.

It saves me some time if my question regarding the supplier is answered
instead of becoming a rejected bug.)

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Donnerstag, 27. September 2012 01:12
An: Open Object Rexx Developer Mailing List
Betreff: Re: [Oorexx-devel] rexxref.

 

You really would save a lot of time if you just opened bug reports for these
sorts of things.  I get really tired of the should I open a bug report
dance.  Frankly, I will rarely even look at things like this until it is in
the system. 

Rick

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] Missing tracker notifications

2012-09-21 Thread Walter Pachl
Did ou see my doc ticket for rexxref?

Walter

 

Von: Rick McGuire [mailto:object.r...@gmail.com] 
Gesendet: Freitag, 21. September 2012 14:46
An: Open Object Rexx Developer Mailing List
Betreff: [Oorexx-devel] Missing tracker notifications

 

I just discovered there have been multiple tracker items created over the
last couple of days, but I never got tracker notifications for these.  Are
others seeing these notifications?  I tried unsubscribing and resubscribing,
so we'll see if that made a difference.  Before I open a sourceforge ticket,
I'd like to establish whether this is a global or local problem. 

 

On the plus side, it looks like the navigation bar is finally working!

 

Rick

--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


Re: [Oorexx-devel] table vs. identitytable

2012-09-21 Thread Walter Pachl
Thanks Rick,

You really need to have a better understanding of what objects are 

Trying ;:-(

Is my delta  (16 vs. 17) of any use?

Walter

--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel


  1   2   >