-
antiguru committed revision 5306 to the Open Object Rexx SVN repository, changing 1 files.
2009-11-05 10:15:32 UTC in Open Object Rexx
-
Right, we're using 1 as the lower index bound everywhere. Then, the method needs to substract one on the StringUtil invocation, but that seems OK. I will change and commit it.
Moritz.
2009-11-03 11:52:56 UTC in Open Object Rexx
-
Hi,
got a patch, we like to know if I should commit it :-)
Added to CoreClasses:
+
+.String~!define_class_method("NL", .methods~string_cls_nl)
+.String~!define_class_method("CR", .methods~string_cls_cr)
+.String~!define_class_method("TAB", .methods~string_cls_tab)
+.String~!define_class_method("NULL", .methods~string_cls_null...
2009-11-03 07:48:43 UTC in Open Object Rexx
-
Sometimes it can be required to convert the contents of a buffer into an array. It would be handy to allow a start offset to be specified. This would especially helpful to implement a mutable buffer input stream. The arrayIn method should not start at the buffer start but at the current read position.
The method is similar to makearray only that it accepts a second (optional) integer argument...
2009-11-03 07:33:45 UTC in Open Object Rexx
-
antiguru committed revision 5282 to the Open Object Rexx SVN repository, changing 2 files.
2009-10-23 15:38:02 UTC in Open Object Rexx
-
antiguru committed revision 5281 to the Open Object Rexx SVN repository, changing 2 files.
2009-10-23 15:06:32 UTC in Open Object Rexx
-
antiguru committed revision 5280 to the Open Object Rexx SVN repository, changing 3 files.
2009-10-23 14:34:49 UTC in Open Object Rexx
-
antiguru committed revision 5276 to the Open Object Rexx SVN repository, changing 1 files.
2009-10-20 18:42:25 UTC in Open Object Rexx
-
This patch allows to manually specify the key store manager via the configuration file. By default, SunX509 will be used. For IBM JVM it is required to use IbmX509.
2009-10-19 14:02:19 UTC in MyVD Virtual Directory
-
According to rexx reference 1.10.4.4, symbols (including variables) are allowed to consist of the following characters:
* A-Z and a-z
* 0-9
* . ! ? and _
Variables are not allowed to start with . or a digit.
This explains why you can't assign the variable $CPUID. However, you can assign !CPUID, ?CPUID and _CPUID.
HTH,
Moritz.
2009-07-01 08:14:15 UTC in Open Object Rexx