Re: OSX module file error when building standalone with LC 8 on mac

2017-03-17 Thread James Hale via use-livecode
Solved. I had included an LC9 only widget in my stack. It obviously was not there in LC8 when I went to compile. So it seems... "There was an error while saving the > standalone application > Build failed for MacOSX x86-32: could not > open module file" is telling me the widget module was no wh

Re: Problem with converting time

2017-03-17 Thread J. Landman Gay via use-livecode
On 03/17/2017 03:52 PM, Michael Doub via use-livecode wrote: getaData[x]["time"] Wherever the array is getting its time data, that's where local time is happening. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.

Re: Problem with converting time

2017-03-17 Thread Mark Wieder via use-livecode
On 03/17/2017 03:52 PM, Michael Doub via use-livecode wrote: Sorry Mark and Richard. Here is the real code snipit that includes a hack that seems to work: getaData[x]["time"] if not(theenvironmentisamongtheitems"development,standalone application") then subtract(4*60*60) fromit end if conv

Re: Problem with converting time

2017-03-17 Thread Richard Gaskin via use-livecode
Mike Doub wrote: > I am in Chapel Hill, NC. I am using Hostm and I really don't > know, I would have expected the time to be less if on the west > coast of the US. We don't yet know the location of the server, but even better you can find out what time zone it's set to by logging in via SS

Re: Problem with converting time

2017-03-17 Thread Michael Doub via use-livecode
Sorry Mark and Richard. Here is the real code snipit that includes a hack that seems to work: getaData[x]["time"] if not(theenvironmentisamongtheitems"development,standalone application") then subtract(4*60*60) fromit end if convertit todateitems Mark, in your situation, you and the ser

Re: Problem with converting time

2017-03-17 Thread Mike Doub via use-livecode
I am in Chapel Hill, NC. I am using Hostm and I really don't know, I would have expected the time to be less if on the west coast of the US. Mike   Original Message   From: use-livecode@lists.runrev.com Sent: March 17, 2017 5:30 PM To: use-livecode@lists.runrev.com Reply-to: use-livecode

Re: Problem with converting time

2017-03-17 Thread Richard Gaskin via use-livecode
Michael Doub wrote: > Sorry guys, I must not have been clear in my statement of the > problem. > Here is the code: > > put 1489755600 into tVar > convert tVar into dateitems > -- on the mac tVar contains 2017,3,17,9,0,0,6 > -- on the server tVar contains 2017,3,17,12,0,0,6 > > The local time s

Re: Linux 32bit?

2017-03-17 Thread Richmond via use-livecode
On 17.03.2017 22:31, Mark Wieder via use-livecode wrote: On 03/17/2017 01:24 PM, Phil Thane via use-livecode wrote: Hi, Just downloaded the open source version for Linux, but it comes as x64 only. For some reason I've never figured my old PC doesn't like 64bit distros, the graphics driver j

Re: Problem with converting time

2017-03-17 Thread Mark Wieder via use-livecode
On 03/17/2017 01:20 PM, Michael Doub via use-livecode wrote: Sorry guys, I must not have been clear in my statement of the problem. Here is the code: put 1489755600 into tVar convert tVar into dateitems -- on the mac tVar contains 2017,3,17,9,0,0,6 -- on the server tVar contains 2017,3,17,12,0

Re: Linux 32bit?

2017-03-17 Thread Phil Thane via use-livecode
Just shut down, will try tomorrow. On 17 March 2017 20:31:11 GMT+00:00, Mark Wieder via use-livecode wrote: >On 03/17/2017 01:24 PM, Phil Thane via use-livecode wrote: >> Hi, >> >> Just downloaded the open source version for Linux, but it comes as >x64 only. >> For some reason I've never figured

Re: Linux 32bit?

2017-03-17 Thread Mark Wieder via use-livecode
On 03/17/2017 01:24 PM, Phil Thane via use-livecode wrote: Hi, Just downloaded the open source version for Linux, but it comes as x64 only. For some reason I've never figured my old PC doesn't like 64bit distros, the graphics driver just doesn't work and after much messing I decided it was easie

Linux 32bit?

2017-03-17 Thread Phil Thane via use-livecode
Hi, Just downloaded the open source version for Linux, but it comes as x64 only. For some reason I've never figured my old PC doesn't like 64bit distros, the graphics driver just doesn't work and after much messing I decided it was easier to stick with a 32 bit distro. Any advice, short of upgr

Re: Problem with converting time

2017-03-17 Thread Michael Doub via use-livecode
Sorry guys, I must not have been clear in my statement of the problem. Here is the code: put 1489755600 into tVar convert tVar into dateitems -- on the mac tVar contains 2017,3,17,9,0,0,6 -- on the server tVar contains 2017,3,17,12,0,0,6 The local time should not be involved since you are co

Re: Getting the JSON library into a standalone

2017-03-17 Thread Jonathan Lynch via use-livecode
I will - thanks. On Fri, Mar 17, 2017 at 3:01 PM, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > On 3/17/17 1:16 PM, Jonathan Lynch via use-livecode wrote: > >> This is in LC 8.1.2. >> >> Can anyone confirm that it is not able to include the JSON functions? Are >> there

Re: Android application class

2017-03-17 Thread J. Landman Gay via use-livecode
On 3/17/17 2:43 AM, Richmond via use-livecode wrote: So, I tried to build a standalone for Android (well, better late than never) and got a happy little message: "could not compile application class" this with LC 8.1.3 on Xubuntu 14.04 Did you see this?: http://lessons.livecode.com/m/2571/l/

Re: Getting the JSON library into a standalone

2017-03-17 Thread J. Landman Gay via use-livecode
On 3/17/17 1:16 PM, Jonathan Lynch via use-livecode wrote: This is in LC 8.1.2. Can anyone confirm that it is not able to include the JSON functions? Are there any simple workarounds? Is there a reason not to use 8.1.3? I remember there was an issue with inclusions at some point, so try the l

Getting the JSON library into a standalone

2017-03-17 Thread Jonathan Lynch via use-livecode
Hi, I am trying to convert my app into a standalone, but it depends on the JSONtoArray and ArrayToJSON functions. Even though I am including the JSON library in the standalone inclusions, it is not getting copied over when it makes the standalone. In the IDE, there is an extensions folder, with

Re: SFTP with .PPK file

2017-03-17 Thread Bob Sneidar via use-livecode
Looks like it DOES need the public key after all. I thought that was the way SSH worked. I was surprised when you said TSNet doesn't need the public key. Bob S > On Mar 17, 2017, at 06:36 , Stephen MacLean via use-livecode > wrote: > > SSH public key authentication failed: Unable to extract

Re: (off) dropbox down

2017-03-17 Thread Roger Eller via use-livecode
Or maybe THIS had some complications they were working through. I received an email from Dropbox that said: "This is a reminder that your Public folder links will become inactive on *March 15*. On that date, your Public folder will become a standard Dropbox folder, and your files will remain safe

Re: (off) dropbox down

2017-03-17 Thread Matthias Rebbe via use-livecode
Maybe this all had to do with this in some way? https://www.ripe.net/support/service-announcements/reverse-dns-issue-for-some-delegations-in-the-ripe-ncc-service-region

Re: Problem with converting time

2017-03-17 Thread Richard Gaskin via use-livecode
Michael Doub wrote: > time = 1489755600 > Mac: dateitems = 2017,3,17,9,0,0,6 > server: dateitems = 2017,3,17,12,0,0,6 > > Code: get time > convertit to dateitems > > Richard here is another example: > time = 1489752000 > mac:dateitems = 2017,3,17,8,0,0,6 > server: dateitems = 2017,3,

Re: Problem with converting time

2017-03-17 Thread Mark Wieder via use-livecode
On 03/17/2017 05:46 AM, Michael Doub via use-livecode wrote: time = 1489755600 Mac: dateitems = 2017,3,17,9,0,0,6 server: dateitems = 2017,3,17,12,0,0,6 Code: get time convertit to dateitems I don't understand how the local time comes into play when converting a constant number of sec

Re: (off) dropbox down

2017-03-17 Thread Richard Gaskin via use-livecode
Mike Kerner wrote: > For everyone who does anything with dropbox, it's been down since at > least 2AM EDT. For this morning: Network outages for popular services can often be tracked using third-party tools. Searching Google for "is dropbox down" led me to this report confirming that many ot

Re: (off) dropbox down

2017-03-17 Thread Mike Kerner via use-livecode
See their twitter account. On Fri, Mar 17, 2017 at 9:37 AM, Skip via use-livecode < use-livecode@lists.runrev.com> wrote: > I am not seeing the same problem… looks like it is functioning to me. > > SKIP > > Sent from Mail for Windows 10 > > From: Mike Kerner via use-livecode > Sent: Friday, March

RE: (off) dropbox down

2017-03-17 Thread Skip via use-livecode
I am not seeing the same problem… looks like it is functioning to me. SKIP Sent from Mail for Windows 10 From: Mike Kerner via use-livecode Sent: Friday, March 17, 2017 9:01 AM To: How to use LiveCode Cc: Mike Kerner Subject: (off) dropbox down For everyone who does anything with dropbox, it's

Re: SFTP with .PPK file

2017-03-17 Thread Stephen MacLean via use-livecode
Hi Charles, Again, thank you for all your help!! I made the change below, and indeed didn’t get the error any more. However, I still wasn’t getting anything returned. I ran your debug stack along side it and got this: Hostname in DNS cache was stale, zapped Trying xx.xx.xx.xx... TCP_NODELAY

(off) dropbox down

2017-03-17 Thread Mike Kerner via use-livecode
For everyone who does anything with dropbox, it's been down since at least 2AM EDT. -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This

Re: Problem with converting time

2017-03-17 Thread Michael Doub via use-livecode
Richard here is another example: time = 1489752000 mac: dateitems = 2017,3,17,8,0,0,6 server: dateitems = 2017,3,17,12,0,0,6 I just wanted to double check that I was showing you good comparison since I am copying from multiple windows of debug output. -= Mike On 3/17/17 8:46 AM, Michael Do

Re: Problem with converting time

2017-03-17 Thread Michael Doub via use-livecode
time = 1489755600 Mac: dateitems = 2017,3,17,9,0,0,6 server: dateitems = 2017,3,17,12,0,0,6 Code: get time convertit to dateitems I don't understand how the local time comes into play when converting a constant number of seconds. The resulting date should be a constant as well. Wh

Re: HTML5 export broken in 9.0.0-dp-6?

2017-03-17 Thread Terry Judd via use-livecode
OK, thanks. I’ll try an earlier DP. Regards, Terry... On 17/03/2017 7:04 pm, "use-livecode on behalf of Ali Lloyd via use-livecode" wrote: Hi Terry, This is a known issue, flagged in the release email (but not the release notes unfortunately). Here is the bug: http://quality.l

Re: SFTP with .PPK file

2017-03-17 Thread Charles Warwick via use-livecode
Hi Steve, My apologies... there is a mistake in the documentation for tsNet which I only just noticed. The array element for the SSH private key should be tSettings["ssh_private_key"], not tSettings["ssh_priv_key"]. So if you change the following line: put tPrivKey into tSettings["ssh_

AW: AW: tsneterr: (6) could not resolve host - can anyone else test this?

2017-03-17 Thread Tiemo Hollmann TB via use-livecode
FYI. I have used the "#" sign in a URL PW, which is not allowed in a URL string, as Charles pointed out. Only because of an incorrect handling in the curl library as part of tsnet, my program has worked over the years. Urlencode(myPW) will do it for the future. So, better never use "#" in a URL! Ti

Re: SFTP with .PPK file

2017-03-17 Thread Charles Warwick via use-livecode
Hi Steve, The tsNet command only requires the SSH private key, so that is ok. I will test again here to make sure there is nothing else going on in LC 9.0 DP6 Just to check though, I assume your private key does not require a passphrase? Another thing to try is to download the followin

Re: HTML5 export broken in 9.0.0-dp-6?

2017-03-17 Thread Peter TB Brett via use-livecode
On 17/03/2017 07:04, Terry Judd via use-livecode wrote: Is it just me or is HTML5 export not working in 9.0.0-dp-6? A stack that worked in 8.1.2 just a few minutes ago now throws an exception... To use dlopen, you need to use Emscripten's linking support, see https://github.com/kripken/emscrip

Re: HTML5 export broken in 9.0.0-dp-6?

2017-03-17 Thread Ali Lloyd via use-livecode
Hi Terry, This is a known issue, flagged in the release email (but not the release notes unfortunately). Here is the bug: http://quality.livecode.com/show_bug.cgi?id=19399 On Fri, Mar 17, 2017 at 7:04 AM Terry Judd via use-livecode < use-livecode@lists.runrev.com> wrote: > Is it just me or is HT

Android application class

2017-03-17 Thread Richmond via use-livecode
So, I tried to build a standalone for Android (well, better late than never) and got a happy little message: "could not compile application class" this with LC 8.1.3 on Xubuntu 14.04 cannot work out much from the standalone settings stack . . . Richmond. _

HTML5 export broken in 9.0.0-dp-6?

2017-03-17 Thread Terry Judd via use-livecode
Is it just me or is HTML5 export not working in 9.0.0-dp-6? A stack that worked in 8.1.2 just a few minutes ago now throws an exception... To use dlopen, you need to use Emscripten's linking support, see https://github.com/kripken/emscripten/wiki/Linking ...and I seem to get the same thing eve