Re: Late to the party

2015-01-01 Thread Erik Beugelaar
LOL! Interesting the info about the Linux connection. All the best wishes and health in 2015 for all developers and the RunRev team to make the Next Generation of LiveCose see the light this year! Erik Richmond wrote: >On 31/12/14 22:37, J. Landman Gay wrote: >> On 12/31/2014 1:23 PM, Richm

Re: Late to the party

2015-01-01 Thread Richmond
I just did a casual browse on the internet and found these: https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/FileSy

Re: Late to the party

2015-01-01 Thread Richmond
http://www.macworld.com/article/2148362/how-inter-app-communication-on-ios-could-benefit-users.html Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pref

Access an iPad file system from Ubuntu

2015-01-01 Thread Richmond
1. Install /iFuse/ from Ubuntu Software Center 2. Open a Terminal and run sudo apt-get install libimobiledevice-utils 3. In the same Terminal, run idevicepair unpair && idevicepair pair Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.

Re: Access an iPad file system from Ubuntu

2015-01-01 Thread Richmond
On 01/01/15 17:43, Richmond wrote: 1. Install /iFuse/ from Ubuntu Software Center 2. Open a Terminal and run sudo apt-get install libimobiledevice-utils 3. In the same Terminal, run idevicepair unpair && idevicepair pair Richmond. As my iPad is jail-broken, all I had to do was issue a ter

Re: Access an iPad file system from Ubuntu

2015-01-01 Thread Mike Bonner
look in /private/. Should be able to place apps in there somewhere, but i'm not sure if there is a registry of some type you'd have to modify too. On Thu, Jan 1, 2015 at 9:05 AM, Richmond wrote: > On 01/01/15 17:43, Richmond wrote: > >> >> 1. Install /iFuse/ from Ubuntu Software Center >>

Re: Membership disabled

2015-01-01 Thread dunbarx
It seems that the notice/re-enlistment occurs at relatively regular intervals. Does this mean that the number of mails sent between each episode is the same, as if I am allowed, say, thirty or so before I tax the servers patience? Craig -Original Message- From: J. Landman Gay To: Ho

Re: Membership disabled

2015-01-01 Thread Peter Haworth
Hi Craig, Success! I got this post of yours. As mentioned, I changed my email address for the list to go directly to my gMail address instead of to my lcSQL address and then picked up by gMail using POP. So either the host for my lcSQL address is being over zealous in it's email checking or some

Re: Membership disabled

2015-01-01 Thread Peter Haworth
Hi Peter, If you have a filter to recognize emails to the list, there's an option to "Never send it to spam". Checking that ensures that the emails won't go into your spam folder. GMail still puts a little message at the top saying that it would have gone to spam if not for the filter. Pete lcSQ

Re: script scope variables inexplicably becoming unset

2015-01-01 Thread Dr. Hawkins
On Wed, Dec 31, 2014 at 10:12 AM, Dr. Hawkins wrote: > But what I'm losing *is* a variable! The selection manipulations have > been completely removed in favor of a handler that does things on > textChanged. The problem is that opening a stack is resetting a local > variable. > I have also tri

Re: script scope variables inexplicably becoming unset

2015-01-01 Thread Dr. Hawkins
Bugs for both issues filed as *Bug 14323* - Palette stack does not open unless in debugger *Bug 14324* - Local variable destroyed in attempt to open palette This is repeatable in 5.5 and 7.0.1 (an

Re: Membership disabled

2015-01-01 Thread Peter W A Wood
Thanks Peter. I’ll give that a try. Peter > On 2 Jan 2015, at 01:17, Peter Haworth wrote: > > Hi Peter, > If you have a filter to recognize emails to the list, there's an option to > "Never send it to spam". Checking that ensures that the emails won't go > into your spam folder. GMail still p

allowed regex in filter?

2015-01-01 Thread Dr. Hawkins
I am trying to do a filter to the effect of ^..\S+ --that is, anything for the first two characters, followed by at least one whitespace. Is \S not accepted in livecode? -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___ use-livecode mailing list use-

Re: allowed regex in filter?

2015-01-01 Thread Mike Bonner
It works just as well (as far as I can see) to type the space+ (or even space*) or \s+. Isn't the \S (capital) a negate match? So it will match anything but a whitespace char? and lower case /s is match whitespace? Just checked with the regex builder, and that is how its behaving. so use \s+ r

Re: allowed regex in filter?

2015-01-01 Thread Dr. Hawkins
On Thu, Jan 1, 2015 at 4:59 PM, Mike Bonner wrote: > It works just as well (as far as I can see) to type the space+ (or even > space*) or \s+. Isn't the \S (capital) a negate match? So it will match > anything but a whitespace char? and lower case /s is match whitespace? > yes > > Just chec

Re: allowed regex in filter?

2015-01-01 Thread Mike Bonner
Ah k. The first message said "followed by at least one whitespace, hence my confusion. In the regex builder its working for me. 7.0.0 sortastable. ^..\S+ pulls c mykey for the first example. and mykey for the second. adding a second space after the c nullifies the match as it should. If you hav