Re: [Oorexx-devel] rexxGTK build

2024-02-03 Thread Ruurd Idenburg
but it was an example to get more familiar with GTK. Greetz, Ruurd On 2/3/24 04:03, Michael Lueck wrote: Greetings Ruurd, Ruurd Idenburg wrote: Well I managed to construct a real app to play listen to radui stations on the net: Wow! Impressive! So you have that running with the current release

Re: [Oorexx-devel] rexxGTK build

2023-12-19 Thread Ruurd Idenburg
Here I am again. On the ooRexx sourceforge site, if you go to the svn source files look for rexxgtk directory, where there is Dave Ashley's trial for GTK3, that does not work right away, but with a couple of patches it will generate a valid "oorexxgtk3" shared library. To make the shared

Re: [Oorexx-devel] rexxGTK build

2023-12-18 Thread Ruurd Idenburg
I think you can find the location(s) of shared libraries via the /etc/ld.so.conf directory. I also think that ubuntu normally uses either /lib, /usr/lib, /usr/local/lib and for multiple architecture support the /x86_64-linux-gnu directory in either /lib, /usr/lib and /usr/local/lib. hth

Re: [Oorexx-devel] rexxGTK build

2023-12-18 Thread Ruurd Idenburg
Hi taf, Ubuntu 22.04 does not have libgdk-4.0 on my system, but it has libgdk-3.0, have you tried that (e.g. gdk-3.0)? Ruurd Idenburg On 12/14/23 22:24, taf wrote: I'm having a whack at upgrading rexxGTK to GTK4.  I'm working in Ubuntu 22.04 which has gtk4 installed.  In the make file

Re: [Oorexx-devel] Unexpected behaviour with serial reuse of address ... with output replace stream 'streamName'

2023-06-13 Thread Ruurd Idenburg
result that you got. Ruurd Idenburg On 6/13/23 05:45, J Leslie Turriff wrote: Hello, I'm trying out the address ... with output replace stream 'streamName' instruction, but it doesn't behave the way I would expect, and there are no examples in either of the ooRexx manuals for other than

Re: [Oorexx-devel] Fwd: SQLite on Linux

2023-06-01 Thread Ruurd Idenburg
Bill, On my system linux Mint 20.3 system with ooSQLite.cls in /usr/local/bin and liboosqlite.so in /usr/local/lib ::requires LIBRARY "ooSQLite.cls" works as expected, no errors reported. Ruurd On 5/31/23 18:54, Ruurd Idenburg wrote: Hi Bill, I am not a knowledgeable person

Re: [Oorexx-devel] Fwd: SQLite on Linux

2023-05-31 Thread Ruurd Idenburg
Hi Bill, I am not a knowledgeable person in respect with libraries, but all other rexx libraries are in /usr/local/lib ( and NOT in /usr/local/bin) on my linux Mint systems. Hope this helps. Ruurd On 5/31/23 11:21, Bill Turner, WB4ALM wrote: Recent changes to my Thunderbird email client

Re: [Oorexx-devel] Problem in a multihreaded environment with the change from the guarded method default of expose-less methods to unguarded ...

2021-08-08 Thread Ruurd Idenburg
I hardly ever use EXPOSE when oo-ing, I am almost always declaring attributes and accessing them via self~attribute _name in the methods within the class and its subclasses. Ruurd On 8/7/21 7:59 PM, Sahananda Sahananda wrote: Hi Guys, This is awkward, I think this change was made in

Re: [Oorexx-devel] Install errors

2021-05-04 Thread Ruurd Idenburg
Hi, I had to uninstall a previous ooRexx 5.0.0 installation and build my own 12227 with the folowing cmake invocation to get the libraries in /usr/lib/x86_64-linux-gnu instead of usr/lib: cmake -DBUILD_DEB=1  -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=/usr  -DOS_DIST=Mint20.1 There

Re: [Oorexx-devel] Strange behaviour RxMath RxCalcSqrt function

2021-04-21 Thread Ruurd Idenburg
messed up. Rick On Mon, Jul 27, 2020 at 7:42 AM Michael Lueck mailto:mlu...@lueckdatasystems.com>> wrote: Greetings Ruurd, Ruurd Idenburg wrote: > Running the attached script "rxmath.rex"  will yield a weird result on my Linux (Mint 19.3, which is based on Ubu

Re: [Oorexx-devel] Problem? with OORexx API function ObjectToDouble

2021-04-20 Thread Ruurd Idenburg
Rick is right I guess, see result from "LC_NUMERIC=C rexx osmmap.rex" --- ruurd@Paradigit2:~/newrxgtk/GTKv3/test$ LC_NUMERIC=C rexx osmmap.rex As CSTRINGs - Latitude: 52.289875;Longitude: 4.8448525 As objects -

Re: [Oorexx-devel] Problem? with OORexx API function ObjectToDouble

2021-04-19 Thread Ruurd Idenburg
I guess I found the cause. It's the decimal point vs the decimal comma (for my locale) that is causing the behaviour. If I set the latitude and longitude in an ENVIRONMENT variable via VALUE and retrieve those with GObject "g_getenv" function, then all goes well if I use the comma as decimal

Re: [Oorexx-devel] Problem? with OORexx API function ObjectToDouble

2021-04-19 Thread Ruurd Idenburg
In the real code the tildes in the printf as objects are "->". Made a mistake when I type the code manually. On 4/19/21 3:50 PM, Ruurd Idenburg wrote: Given the following code: /**  * Method: OsmMapPointNew  *  * Create a new OsmMapPoint.  *  * @return 0  **/ Re

[Oorexx-devel] Problem? with OORexx API function ObjectToDouble

2021-04-19 Thread Ruurd Idenburg
Given the following code: /**  * Method: OsmMapPointNew  *  * Create a new OsmMapPoint.  *  * @return 0  **/ RexxMethod3(int,    // Return type     OsmMapPointNew, // Method name     CSTRING, lat,   // Latitude in decimal degrees    

Re: [Oorexx-devel] A question

2020-07-28 Thread Ruurd Idenburg
] *Sent:* 28 July 2020 19:03 *To:* Open Object Rexx Developer Mailing List *Subject:* Re: [Oorexx-devel] A question Yes, a literal string followed immediately by the symbol x is considered a hex literal. It's always been that way. Rick On Tue, Jul 28, 2020 at 1:54 PM Ruurd

[Oorexx-devel] A question

2020-07-28 Thread Ruurd Idenburg
Is the result below what should be expected: 'something'x taking precedent over implied concatenation? Ruurd 'rexx -v' Open Object Rexx Version 5.0.0 r12100 Build date: Jul 21 2020 Addressing mode: 64 Copyright (c) 1995, 2004 IBM Corporation. All rights reserved. Copyright (c) 2005-2020 Rexx

[Oorexx-devel] Fwd: Re: Strange behaviour RxMath RxCalcSqrt function

2020-07-25 Thread Ruurd Idenburg
Oops, sent this to Rick only, so here to the list so all know about it Forwarded Message Subject:Re: [Oorexx-devel] Strange behaviour RxMath RxCalcSqrt function Date: Sat, 25 Jul 2020 19:03:57 +0200 From: Ruurd Idenburg To: Rick McGuire I did switch

[Oorexx-devel] Strange behaviour RxMath RxCalcSqrt function

2020-07-25 Thread Ruurd Idenburg
Running the attached script "rxmath.rex"  will yield a weird result on my Linux (Mint 19.3, which is based on Ubuntu 18.04) when the RxCalcSqrt function is called from the RXBSF.REX for a non-perfect square (129). The code in RXBSF.REX does only ::REQUIRE  BSF.CLS without using any of its

Re: [Oorexx-devel] Timings on older Ubuntu desktop (Re: Testing successfully doc->fo on Ubuntu (Re: Documentation on Jenkins

2020-04-28 Thread Ruurd Idenburg
ruurd@Paradigit2:~/oorexxdocs$ On 4/28/20 12:43 PM, Ruurd Idenburg wrote: Hi, I am running on Mint 19.3 and my installation has /etc/xml and xsltproc apparently standard, so I ran the xsltproc  with the --path option set to '/etc/xml' resulting in the following timings: ruurd@Paradigit2

Re: [Oorexx-devel] Timings on older Ubuntu desktop (Re: Testing successfully doc->fo on Ubuntu (Re: Documentation on Jenkins

2020-04-28 Thread Ruurd Idenburg
Hi, I am running on Mint 19.3 and my installation has /etc/xml and xsltproc apparently standard, so I ran the xsltproc  with the --path option set to '/etc/xml' resulting in the following timings: ruurd@Paradigit2:~/oorexxdocs$ xsltproc --timing --xinclude --path '/etc/xml' -o

Re: [Oorexx-devel] Documentation on Jenkins

2020-04-24 Thread Ruurd Idenburg
, René Jansen wrote: Hi Ruurd, please try now. René On 24 Apr 2020, at 14:33, Ruurd Idenburg <mailto:ru...@idenburg.net>> wrote: If I login to Jenkins I get: Access Denied rji is missing the Overall/Read permission So what's going on? Ruurd On 4/23/20 7:04 PM, P.O. Jons

Re: [Oorexx-devel] Documentation on Jenkins

2020-04-24 Thread Ruurd Idenburg
If I login to Jenkins I get: Access Denied rji is missing the Overall/Read permission So what's going on? Ruurd On 4/23/20 7:04 PM, P.O. Jonsson wrote: This is just to say that we now also have a bild of the HTML documentation on Jenkins. It takes 1h30 to build the PDF and 1h50 to build

Re: [Oorexx-devel] oorexx doc build

2015-07-08 Thread Ruurd Idenburg
think what is needed, is, from /home/rexxla/workspace/oorexx-docs issue the command: *sudo make brand* If that is done, the automatic build should go further than it does now. Many thanks in advance, best regards, René. On 8 jul. 2015, at 09:13, Ruurd Idenburg ru...@idenburg.net mailto:ru

Re: [Oorexx-devel] oorexx doc build

2015-07-08 Thread Ruurd Idenburg
clean should help. I hope this leaves the ‘brand’ in place. Can you try? René. On 8 jul. 2015, at 15:32, Ruurd Idenburg ru...@idenburg.net mailto:ru...@idenburg.net wrote: René Did the following: cd /home/rexxla/workspace/oorexx-docs/oorexx sudo make brand sudo make install which seemed

Re: [Oorexx-devel] oorexx doc build

2015-07-08 Thread Ruurd Idenburg
René If I gotta do something, just let me know. Ruurd On 7-7-2015 14:33, René Jansen wrote: Hi Jean-Louis, thank you - let’s try. best regards, René. On 6 jul. 2015, at 23:30, Jean-Louis Faucher jfaucher...@gmail.com mailto:jfaucher...@gmail.com wrote: René The sudo is needed because

Re: [Oorexx-devel] Saying good bye

2015-04-12 Thread Ruurd Idenburg
/lists/listinfo/oorexx-devel -- Ruurd Idenburg -- BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process modeling best practices with Bonita

Re: [Oorexx-devel] 200**4

2015-01-07 Thread Ruurd Idenburg
-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/oorexx-devel -- Ruurd Idenburg -- Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed

Re: [Oorexx-devel] Synonyms for canceled...

2014-10-15 Thread Ruurd Idenburg
/listinfo/oorexx-devel -- Ruurd Idenburg -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through email, SMS, voice calls or mobile push notifications. Take corrective actions

Re: [Oorexx-devel] Need some feedback on a new feature.

2014-10-01 Thread Ruurd Idenburg
___ Oorexx-devel mailing list Oorexx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/oorexx-devel -- Ruurd Idenburg -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI

Re: [Oorexx-devel] Thinking about a new type of Message object.

2014-07-26 Thread Ruurd Idenburg
the message would handle the current state and the notify for that message would trigger the next stage. And like Rick indicated, there was the need to create a new instance of the message for each invocation. Got that of my chest, p. Ruurd On 26-7-2014 1:21, Ruurd Idenburg wrote

Re: [Oorexx-devel] Thinking about a new type of Message object.

2014-07-25 Thread Ruurd Idenburg
that powers the world's largest code search on Ohloh, the Black Duck Open Hub! Try it now. http://p.sf.net/sfu/bds ___ Oorexx-devel mailing list Oorexx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/oorexx-devel -- Ruurd Idenburg

Re: [Oorexx-devel] Class Example

2013-12-04 Thread Ruurd Idenburg
I'm pretty sure there is an example in the Programmers Reference, if I remember correctly in subclassing a point class to count the number of instances. Ruurd On 4-12-2013 15:22, David Ashley wrote: All - I had a need last night to create a class that could count the number of instances

Re: [Oorexx-devel] Weirdness

2013-10-21 Thread Ruurd Idenburg
Mike, I think you have to download from Sourceforge nowadays. Ruurd On 21-10-2013 8:55, Mike Cowlishaw wrote: You must have missed two, 4.1.2 and 4.1.3. Unless there is a bug introduced in parse version. OK, I just went RexxLA - oo Rexx - Downloads:

Re: [Oorexx-devel] Weirdness

2013-10-21 Thread Ruurd Idenburg
for oorexx.org whois shows Mark Hessling as registrant, admin and tech contact with e-mail address : webmas...@rexxla.org I think Mike has a bit of a point in that the topmost sites that come up if googling (oo)rexx show oorexx.org at or nearly at the top, so it might be useful to keep that

Re: [Oorexx-devel] Weirdness

2013-10-21 Thread Ruurd Idenburg
. 2013, at 16:44, Mark Miesfeld miesf...@gmail.com mailto:miesf...@gmail.com wrote: On Mon, Oct 21, 2013 at 7:31 AM, Ruurd Idenburg r...@xs4all.nl mailto:r...@xs4all.nl wrote: -- October Webinars: Code for Performance

Re: [Oorexx-devel] ooRexx Filtering Forward Proxy

2013-10-20 Thread Ruurd Idenburg
to. Ruurd Idenburg On 19-10-2013 10:01, Sahananda (Jon) Wolfers wrote: I was wondering, has anyone built a FIltering Forward Proxy Server using ooRexx on Windows? I hope I have my terminology correct. I want a script running on a machine. That machine is declared as the default gateway for other

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

2013-07-08 Thread Ruurd Idenburg
Mark, think Walter is right in that the other links on the page still points to the 4.1.2 distro's. I had to go to the parent page to find the 4.1.3 ones. Ruurd On 8-7-2013 6:43, Mark Miesfeld wrote: Walter, The link I posted was: