Re: am I regexing by mistake?

2018-09-02 Thread David V Glasgow via use-livecode
For the record, this was my stupidity, nothing to do with escaping wildcards. Filter lines doesn’t treat a question mark as anything but text. The script I posted didn’t find 'asl?’ because I forgot to pre- and post- pend an asterisk before filtering. So, connected to wildcards, but I was

Re: Searching for a word when it's more than one word

2018-09-02 Thread Quentin Long via use-livecode
Have pondered the question, and come up with some code which may or may not solve the problem at hand, but which may at least prove helpful in looking for a real solution: == Assumption: You’ve got a text document (not HTML, not RTF, just plain TXT) which contains,

Re: Turn off .lc Web-browser Caching?

2018-09-02 Thread Rick Harrison via use-livecode
Hi Tom, Unfortunately, I wanted to stay away from javascript because some people turn it off in their web-browsers for security reasons. The solution I finally used was to just rename the image so that it looked new to the web-browser, and then update the database with the new name. I did it

Re: am I regexing by mistake?

2018-09-02 Thread Brian Milby via use-livecode
I will need to verify, but ‘?’ should match exactly one character, so Thanks, Brian On Sep 2, 2018, 3:44 AM -0500, David V Glasgow via use-livecode , wrote: > For the record, this was my stupidity, nothing to do with escaping wildcards. > Filter lines doesn’t treat a question mark as anything

Up to date installation guide for LiveCode community server?

2018-09-02 Thread Malte Pfaff-Brill via use-livecode
Hi all, I am currently searching for an up to date installation guide for live code community server. For at least Linux 64 Bit and Windows Servers. What I was able to dig up on the liveCode sites is rather outdated. :-( Also, is it allowed to add the jSon externals to a community server?

ANN: LC Documentation Cache Cleaner

2018-09-02 Thread Mark Wieder via use-livecode
Posted a utility stack to livecodeshare: When first launched, the LiveCode IDE will build a documentation cache for the current version. When you upgrade to a new version, a new cache folder is created, but any older cache is still in the system. When you remove an older LiveCode version the

Re: startUp messaging hierarchy

2018-09-02 Thread Martin Koob via use-livecode
Hmm... Just looking at dictionary for widgets and it has an OnOpen message that is sent to the widget when a card becomes the current card. So I think that message would be part of the startup messaging hierarchy Is that correct? Martin Martin via use-livecode wrote > Hi > > Your post

Re: Searching for a word when it's more than one word

2018-09-02 Thread Tom Glod via use-livecode
i had this same problem a few weeks ago...luckily it wasn't critical to the featureset, so i didn't find a solution. I will swing back around with the help of this thread. thanks for entertaining the problem. On Sun, Sep 2, 2018 at 5:09 AM Quentin Long via use-livecode <

Re: Up to date installation guide for LiveCode community server?

2018-09-02 Thread Richard Gaskin via use-livecode
Malte Pfaff-Brill wrote: > I am currently searching for an up to date installation guide for live > code community server. For at least Linux 64 Bit and Windows Servers. > What I was able to dig up on the liveCode sites is rather outdated. > :-( The Common Gateway Interface LC uses is pretty

Up to date installation guide for LiveCode community server?

2018-09-02 Thread Malte Pfaff-Brill via use-livecode
@Mark: Thanks, will do. @Richard: I am not facing any trouble, but have to provide an installation guide for 3rd parties that would like to run an open source project I steward. The problem with the current documentation I dug up is that it appears to be written for apache <2.2. And that the

Re: ANN: LC Documentation Cache Cleaner

2018-09-02 Thread Richmond Mathewson via use-livecode
How fantastically useful. Thanks. Richmond. On 2/9/2018 9:21 pm, Mark Wieder via use-livecode wrote: Posted a utility stack to livecodeshare: When first launched, the LiveCode IDE will build a documentation cache for the current version. When you upgrade to a new version, a new cache folder

Re: startUp messaging hierarchy

2018-09-02 Thread Martin Koob via use-livecode
Hi Your post made me curious. I am sure I had seen this discussed in the forums with someone providing a good explanation but can't find it now either. I did find this. http://fourthworld.com/embassy/articles/revolution_message_path.html That shows the extended message path with Behaviors &

Re: Up to date installation guide for LiveCode community server?

2018-09-02 Thread Mark Waddingham via use-livecode
File a bug and we'll see if we can move the (appropriate) information into a guide in the main repo (so the docs aren't just a webpage). mergJSON is licensed under the GPL - https://github.com/montegoulding/mergJSON/blob/master/LICENSE.txt Warmest Regards, Mark Sent from my iPhone > On 2

SVGHandles89_v100

2018-09-02 Thread hh via use-livecode
Just uploaded SVGHandles to "Sample Stacks". This is a group of handles that is attachable to a SVG display. All you have to do (after copying the group to your stack): send "setTarget " to group "hhSVGPoly" The field's name will usually end with ".svg" and contain any valid SVG source. The

Re: Up to date installation guide for LiveCode community server?

2018-09-02 Thread Tom Glod via use-livecode
This is the bash scripts I used to successfully install LC Server...obviously it has customized filenames in it. #!/bin/bash #- # install LC Server #- cd ~

Re: Turn off .lc Web-browser Caching?

2018-09-02 Thread Tom Glod via use-livecode
right on glad u got it solved. On Sun, Sep 2, 2018 at 10:02 AM Rick Harrison via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Tom, > > Unfortunately, I wanted to stay away from > javascript because some people turn it off > in their web-browsers for security reasons. > > The