Re: more on-rev issues

2012-08-20 Thread Pierre Sahores
Your stack seems to be corrupted if i try to open it from the IDE. And from the message box, the reply is no such card. If that can help, you can send me both your lc cgi-script + your stack lib if you want that try to get it running as a working example. Server's stacks don't have to be saved

Re: more on-rev issues

2012-08-20 Thread Mike Bonner
Engine Changes Important: As of 5.5-dp-3, the default stack file format has been updated to 5.5. The previous default version (2.7) has been set as a legacy option in the “Save As” dialog. As such, the field updates added in 5.5 are now no longer considered experimental. Warning: File Format

Re: more on-rev issues

2012-08-20 Thread Pierre Sahores
My mistake. Thanks for your clarification reminder, Mike. Le 20 août 2012 à 22:54, Mike Bonner a écrit : Engine Changes Important: As of 5.5-dp-3, the default stack file format has been updated to 5.5. The previous default version (2.7) has been set as a legacy option in the “Save As”

Re: more on-rev issues

2012-08-19 Thread Pierre Sahores
Did you try without the send form : start using stack quiet.livecode put now using p preOpenStack Le 19 août 2012 à 02:10, Dr. Hawkins a écrit : I've got start using stack quiet.livecode put now using p send preOpenStack to stack quiet.livecode and I get: file

Re: more on-rev issues

2012-08-19 Thread Dr. Hawkins
On Sun, Aug 19, 2012 at 12:20 AM, Pierre Sahores s...@sahores-conseil.comwrote: Did you try without the send form : start using stack quiet.livecode put now using p preOpenStack i currently have put trying the stack p start using stack /home/dochawkb/public_html/quiet.27.livecode put

Re: more on-rev issues

2012-08-19 Thread Pierre Sahores
Try in having the lc script and the livecode lib stack in the same directory and use this code to know if all get as expected : your test.lc script start using stack your_lib.livecode get start_rias_lib() -- this function lies inside stack rias_lib.livecode get

Re: more on-rev issues

2012-08-18 Thread Mike Bonner
The source of the page is this: (after being sent by on-rev) ? lc put Hello world. ? This is new text Remove the space between ? and lc ?lc put Hello world. ? On Sat, Aug 18, 2012 at 1:19 PM, Dr. Hawkins doch...@gmail.com wrote: This is getting more frustrating by the minute . . . The

Re: more on-rev issues

2012-08-18 Thread Dr. Hawkins
On Sat, Aug 18, 2012 at 12:29 PM, Mike Bonner bonnm...@gmail.com wrote: The source of the page is this: (after being sent by on-rev) ? lc put Hello world. ? This is new text Thanks, but that doesn't seem to do it: ?lc put This is inside the lc section ? This is outside the lc section at

Re: more on-rev issues

2012-08-18 Thread Mike Bonner
Ah yep, just found the info. .irev maps to the rev server engine, so using the ?lc tag with a .irev will probably not work correctly. Same with the reverse, .lc maps to the most recent livecode server so you'll want .lc and ?lc I believe to get things working. (or you can do as stated here..

Re: more on-rev issues

2012-08-18 Thread stephen barncard
.lc is the last version of lc server that can run stacks, and .rev would call an earlier version - both versions are running at on-rev On Sat, Aug 18, 2012 at 12:57 PM, Mike Bonner bonnm...@gmail.com wrote: Hmm, out of curiosity, if you change it to ?rev put Whatever message.. ? rather than

Re: more on-rev issues

2012-08-18 Thread Mike Bonner
Also just occurred to me if you have an .htaccess in the folder already with something strange in it, the .htaccess itself might be breaking lc. On Sat, Aug 18, 2012 at 1:58 PM, Alex Tweedly a...@tweedly.net wrote: If you go into your browser's View source you'll see that it contains something

Re: more on-rev issues

2012-08-18 Thread Pierre Sahores
Use ?rev put Hello world. ? without space between ?rev to get a response from the revServer 4.6.4 and ?lc put Hello world. ? to get a response from the LC-Server 5.0.2. As you will verify, both engines are available to each on-rev accounts About the on-rev standalone, you are

Re: more on-rev issues

2012-08-18 Thread stephen barncard
I can't say enough good things about the Livecode server environment. A good tip for those starting to to work with the server is to put a set the errormode to inline as the first line of code after the ?lc the error reporting is pretty good. Stephen Barncard San Francisco Ca. USA more

Re: more on-rev issues

2012-08-18 Thread Dr. Hawkins
On Sat, Aug 18, 2012 at 1:10 PM, Pierre Sahores s...@sahores-conseil.com wrote: To target the revServer 4.6.4, the script need to be named as yourchoice.irev and to target the revServer 5.0.2, the script need to be named as yourchoice.lc for simple scripts and yourchoice.livecode for stacks to

Re: more on-rev issues

2012-08-18 Thread Pierre Sahores
See this example script witch acts as the stack rias_lib.livecode launcher ?lc try start using stack rias_lib.livecode get start_rias_lib() -- this function lies inside stack rias_lib.livecode get rias_lib_main_ctl() -- this function lies inside stack

Re: more on-rev issues

2012-08-18 Thread Dr. Hawkins
On Sat, Aug 18, 2012 at 2:04 PM, Pierre Sahores s...@sahores-conseil.comwrote: See this example script witch acts as the stack rias_lib.livecode launcher start using stack rias_lib.livecode ... catch tErr try ... start using stack

Re: more on-rev issues

2012-08-18 Thread Mike Bonner
Don't believe you can manipluate the cards/objects directly. If you look at this page: http://www.runrev.com/developers/documentation/server/ part 3.2 using stacks it says you can't use visual related stuff when using a stack. Since there is no actual stack displayed, hence no screen coords or

Re: more on-rev issues

2012-08-18 Thread stephen barncard
I've been able to read/write to a field in a stack from an .irev document using livecode server. And while in the IDE on land, I've used UI elements in the stack for testing routines that aren't used 'in the wild'. lc server doesn't seem to choke on those UI elements, usually ignores. I think

Re: more on-rev issues

2012-08-18 Thread Richard Gaskin
Dr. Hawkins wrote: In particular, what I'll ultimately need is for them to run scripts that build cards and then put the output to pdf (which is currently working in livecode) Can help in about those tasks as long i only build HTML5/CSS3/JQuery outputs from my own on-rev stack's libs. I'm