Search found 72 matches
- Mon May 28, 2018 3:18 am
- Forum: Off-Topic
- Topic: Devawriter Pro
- Replies: 38
- Views: 39323
Re: Devawriter Pro
It does look good Richmond ... but extremely complicated for someone like me who finds a qwerty keyboard difficult to master. Good luck with your Indiegogo campaign. By the way, from what I've seen about the Indiegogo campaigns that seem to raise the most money, they never talk in terms of seeking f...
- Sun Aug 07, 2016 1:30 am
- Forum: CGIs and the Server
- Topic: "dà © jà vu" ----> "déjà-vu" (='.'=)
- Replies: 32
- Views: 30831
Re: "dà © jà vu" ----> "déjà-vu" (='.'=)
Adding this to your LiveCode script will get it to output UTF-8
Code: Select all
set the outputTextEncoding to "utf8"
- Fri Mar 11, 2016 2:34 am
- Forum: CGIs and the Server
- Topic: POLL: LiveCode Server deployment
- Replies: 75
- Views: 292918
Re: POLL: LiveCode Server deployment
A. None of the above
I use it to develop LiveCode script only stacks on a desktop machine.
I tried to use it for a website on on-rev but found the installed version to have bugs that affected my scripts so I used Ruby instead.
I use it to develop LiveCode script only stacks on a desktop machine.
I tried to use it for a website on on-rev but found the installed version to have bugs that affected my scripts so I used Ruby instead.
- Tue Aug 04, 2015 4:41 am
- Forum: CGIs and the Server
- Topic: CGI processing + LC + OS X
- Replies: 4
- Views: 7977
Re: CGI processing + LC + OS X
I happily run LiveCode server on OS X Yosemite. I ran this script: <html> <head> <title>My LiveCode Server Test Page</title> </head> <body> <h1>My LiveCode Server Test Page</h1> <?lc put "<p>Hello World! from LiveCode Server</p>" put "<p>The date is" && the date & "</p>" put "<p>The platform is" && ...
- Tue Jul 28, 2015 7:47 am
- Forum: CGIs and the Server
- Topic: Did LiveCode Server Support HTTPS(SSL)??
- Replies: 3
- Views: 6181
Re: Did LiveCode Server Support HTTPS(SSL)??
This is a bug that is currently being fixed - http://quality.runrev.com/show_bug.cgi?id=15162
- Tue Jun 09, 2015 11:28 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: El Capitán knocks down LC (A problem with a Spanish TILDE)
- Replies: 10
- Views: 8248
- Thu May 28, 2015 10:28 am
- Forum: Feature Proposals
- Topic: Odroid support (similair like Raspberry)
- Replies: 3
- Views: 3316
Re: Odroid support (similair like Raspberry)
LiveCode for Raspberry Pi is not supported by LiveCode (the company). It is an open-source implementation, the majority (if not all) of which was done by Fraser Gordon in his spare time. Whether anybody will spend their own time building an Odroid version of LiveCode is the key question.
- Tue May 05, 2015 3:06 pm
- Forum: Mac OS
- Topic: Yosemite, Server.app and LiveCode Server
- Replies: 3
- Views: 5133
Re: Yosemite, Server.app and LiveCode Server
David I am running LiveCode Server on OS X Yosemite. When I upgraded to the Yosemite, I had to make some minor changes to the http.config file as OS X now ships with Apache 2.4 whereas previously it shipped with Apache 2.2. The Apache config syntax seems to have changed between versions 2.2 and 2.4....
- Tue May 05, 2015 7:03 am
- Forum: CGIs and the Server
- Topic: $_POST Not being created
- Replies: 2
- Views: 5095
Re: $_POST Not being created
I think it is a bug. The $_POST variables are empty when the Content-Type is "application/x-www-form-urlencoded; charset=UTF-8". If you can use a Content-Type of "text/plain", the $_POST variables will contain data. I submitted a bug report http://quality.runrev.com/show_bug.cgi?id=15173 on 8th Apri...
- Fri May 01, 2015 6:12 am
- Forum: Announcements
- Topic: LiveCode Mini Test
- Replies: 1
- Views: 4278
Re: LiveCode Mini Test
As examples of using LiveCode MiniTest, I’ve converted to Mini Test a few tests of LiveCode that I have written in the past to test features of LiveCode. I’ve published these tests on Github at https://github.com/PeterWAWood/LiveCode-Tests There is an example of a stack to run the tests in the IDE a...
- Thu Apr 30, 2015 9:36 am
- Forum: Announcements
- Topic: LiveCode Mini Test
- Replies: 1
- Views: 4278
LiveCode Mini Test
I have written a few automated test scripts to test elements of LiveCode. The testing commands and the tests were all in a single script. I’m now about to modernise a stack I use personally and want to develop a set of tests for it as I write it. Rather than copy and paste the few testing commands i...
- Thu Apr 30, 2015 4:00 am
- Forum: Talking LiveCode
- Topic: Unicode - Encode LC field for export to txt?
- Replies: 2
- Views: 3536
Re: Unicode - Encode LC field for export to txt?
Tom Yes it is necessary. I'm not sure how text is stored within fields and variables in LiveCode but it will either be in UTF-16 or a clever scheme which uses either 8, 16 or 32 bits per character (like Python). If you always encode text before doing any I/O as suggested, you don't need to worry how...
- Mon Apr 27, 2015 8:50 am
- Forum: CGIs and the Server
- Topic: livecode server json parse or xml
- Replies: 1
- Views: 4183
Re: livecode server json parse or xml
The quick answer is yes. You can retrieve the JSON or XML on your server, process it for later retrieval by your app.
XML support is built in to LiveCode and there are library scripts available to handle JSON>
XML support is built in to LiveCode and there are library scripts available to handle JSON>
- Mon Apr 20, 2015 12:48 pm
- Forum: Bug Triage
- Topic: Problem with $_POST pseudo-variable.
- Replies: 0
- Views: 1910
Problem with $_POST pseudo-variable.
I encountered a problem with the $_POST pseudo variable with on-rev. The POST data is not made available when the content header is set to: "Content-Type: application/x-www-form-urlencoded; charset=UTF-8" I submitted a bug report http://quality.runrev.com/show_bug.cgi?id=15173 on 8th April. It hasn'...
- Fri Apr 10, 2015 12:03 pm
- Forum: LiveCode Builder
- Topic: How to find out what is in a default library?
- Replies: 5
- Views: 6908
Re: How to find out what is in a default library?
Thanks for the explanation Ali.