RE: Android ANR (App not responding | Jacque was right :-)

2023-09-17 Thread Ralph DiMola via use-livecode
Was invited to an experimental Jazz show yesterday. I finally realized that all jazz is experimental. "Jazz is not dead it just smells funny" Frank Zappa What do you call a person who hangs out with musicians? Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net

Re: Your scripts as a flowchart

2023-09-17 Thread Geoff Canyon via use-livecode
Is there a way to export the entire flowchart, instead of just the portion currently displayed? As an aside, I don't know whether to be proud or horrified at the map Navigator produces... On Sat, Sep 16, 2023 at 8:04 PM Geoff Canyon wrote: > Ah, okay, that explains it. In Navigator,

Encoding in LC server - the final piece of the puzzle

2023-09-17 Thread Neville Smythe via use-livecode
So all I had to do was move that “put header..” to the first line of the script, and abracadabra, all is now working. Many many thanks Ralf, I think I have a smidgeon better understanding of how LC interacts with Apache. Ralf wrote > did you try: > > put header "Content-Type: text/html;

Forum Software LC?

2023-09-17 Thread harrison--- via use-livecode
Has anyone built Forum Software with LiveCode? There are a lot of PHP ones, but I have yet to find one that was built with LiveCode. PHP is hacked all the time, and I have found hacker bots that try to hack my server all the time by exploiting holes in PHP. They even try to install PHP on my

Re: revXML and UTF-8

2023-09-17 Thread jbv via use-livecode
Thank you for your reply. I found a workaround, but not a very elegant one : when xml parsing returns some "", I start the parsing again, but I process the line as plain text and not as xml. It's about as fast. Le 2023-09-17 09:32, Paul Dupuis via use-livecode a écrit : There are a number

Re: revXML and UTF-8

2023-09-17 Thread Paul Dupuis via use-livecode
There are a number of "rev" libraries (revXML, revZIP, perhaps others) that are not fully Unicode compatible. See: https://quality.livecode.com/show_bug.cgi?id=18942 (revXML, revZIP) https://quality.livecode.com/show_bug.cgi?id=22202 (revZIP) ... and possibly others. There are no work-arounds

revXML and UTF-8

2023-09-17 Thread jbv via use-livecode
Hi list, I have a text file encoded in UTF-8. Each line of the file is an xml node with several sub-nodes and attributes. I have a loop in LC that reads lines one by one and creates an xml tree with revXMLCreateTree. The goal is to parse each line and extract some data. The problem is that,

Re: Encoding in LC server - the final piece of the puzzle

2023-09-17 Thread Ralf Bitter via use-livecode
Neville, you need to send the header before outputting anything else. So, this means your LC server script should send the header and then the HTML data. Ralf On 17.09.2023 01:56, Neville Smythe via use-livecode wrote: Ralf wrote did you try: put header "Content-Type: text/html;