Re: [Oorexx-devel] Is it possible to customize the main sourceforge project page?

2012-03-13 Thread Mark Miesfeld
I've seen a couple of other SourceForge projects that have a custom page, where I was surprised that the project was hosted on SourceForge. (Can't seem to find one now though.) It would be a nice solution if we could find someone interested in producing the page(s) Not something I was ever

Re: [Oorexx-devel] Is it possible to customize the main sourceforge project page?

2012-03-13 Thread CVBruce
Black, with Green text, of course. Sounds about right to me. 8-) Bruce On Mar 13, 2012, at 7:07 AM, Mike Cowlishaw wrote: Maybe we could get Les to do it? ;-) Hmm, I foresee a webpage with five 4-word lines of (3270 font) characters :-) Come to think of it, I think I have

Re: [Oorexx-devel] Is it possible to customize the main sourceforge project page?

2012-03-13 Thread Chip Davis
Not that we haven't all seen websites of such poor design that a 3270 green-screen wouldn't be more readable or useful... :-/ -Chip- On 3/13/12 14:07 Mike Cowlishaw said: Maybe we could get Les to do it? ;-) Hmm, I foresee a webpage with five 4-word lines of (3270 font) characters

[Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread Sanford Geiger
I was wondering when OOREXX would have the following built-in functions which have been always available in PL/I: FLOOR CEIL SIN COS ASIN ACOS TAN ATAN BOOL

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread Sahananda (Jon) Wolfers
I've never used floor or ceil, so not sure how they behave with negative numbers, but would this do? ::routine floor public return arg(1)%1 ::routine ceil public return arg(1)%1+1 The trig functions have always been there in the ooRexx maths package I don't know what the BOOL function does.

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread Sanford Geiger
Ok. How can I download the math package. Bool is a Boolean function (i.e. ANDing or ORing using a bit mask). Your Floor and Ceil routines are fine. I should have thought of that. Thank you. From: Sahananda (Jon) Wolfers [mailto:sahana...@windhorse.biz] Sent: Tuesday, March 13, 2012 6:37 PM

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread CVBruce
CEIL determines the smallest integer value greater than or equal to x, and assigns this value to the result. FLOOR returns the largest integer value less than or equal to x. BOOL returns a bit string that is the result of the Boolean operation z, on x and y. The length of the result is equal

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread CVBruce
Have you looked at the BITAND BITOR, and BITXOR builtin functions? Bruce On Mar 13, 2012, at 3:52 PM, Sanford Geiger wrote: Ok. How can I download the math package. Bool is a Boolean function (i.e. ANDing or ORing using a bit mask). Your Floor and Ceil routines are fine. I should have

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread CVBruce
If you have ooRexx 4, then you have the math functions. See the document named rxmath for instructions on its use. There should be a librxmath library or dll somewhere. Bruce On Mar 13, 2012, at 4:28 PM, Sanford Geiger wrote: The BITAND, BITOR, and BITXOR are the same as BOOL. Thankx. I

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread Sanford Geiger
I just realized that all the functions are already there. They are just documented separately. I do need the Floor function, but I may not need Ceil. I do thank you all for your time. From: CVBruce [mailto:cvbr...@gmail.com] Sent: Tuesday, March 13, 2012 7:38 PM To: Open Object Rexx

Re: [Oorexx-devel] Missing built-in functions in ooRexx

2012-03-13 Thread CVBruce
I think that floor is wrong too. FLOOR(-2.1) = -3 where as -2.1%1 = -2, I believe. I would have to try it out to be sure. Bruce On Mar 13, 2012, at 5:13 PM, Sanford Geiger sanford.gei...@live.com wrote: I just realized that all the functions are already there. They are just documented