Re: Checking a received header for LC Server or revIgniter>

2020-12-18 Thread Ralf Bitter via use-livecode
Accidentally I sent the following message to David directly, maybe it is helpful for others too: If you go the revIgniter route use rigGetHTTPheader("myCustomHeader"), otherwise you can use $_SERVER["HTTP_myCustomHeader"]. Ralf On 17.12.20 00:35, David Bovill via use-

Re: Checking a received header for LC Server or revIgniter>

2020-12-17 Thread David Bovill via use-livecode
Fantastic - thanks! NB I don’t get a result when searching for rigGetHTTPheader in the revIgniter docs. I guess it’s not documented? On 17 Dec 2020, 10:13 +, How to use LiveCode , wrote: > > rigGetHTTPheader ___ use-livecode mailing li

Re: Checking a received header for LC Server or revIgniter>

2020-12-17 Thread Ralf Bitter via use-livecode
Hi David, if you go the revIgniter route use rigGetHTTPheader("myCustomHeader"), otherwise you can use $_SERVER["HTTP_myCustomHeader"]. Ralf On 17.12.20 00:35, David Bovill via use-livecode wrote: I’m looking to check for received custom headers on a Livecode + revIgni

Checking a received header for LC Server or revIgniter>

2020-12-16 Thread David Bovill via use-livecode
I’m looking to check for received custom headers on a Livecode + revIgniter based server. I know how to set headers, and on the desktop Id use libURLLastRHHeaders - but what is the best way to do this on the server? ___ use-livecode mailing list use

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Keith Clarke via use-livecode
Brilliant - thanks for the analysis and syntax corrections, Ralf. That’s clarified more of the LCS / MVC ‘plumbing' and provided a worked example I can repeat as I start to build-out the app proper. Much appreciated Best, Keith > On 30 Nov 2018, at 22:56, Ralf Bitter via use-livecode >

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Ralf Bitter via use-livecode
Hi Keith, seems that you have overlooked that your library handler is not a function, see line put somehandler() into gData["testlib"] in your controller. Furthermore don’t forget to adjust the name of your library initialisation handler to “rigRunInitialteslibConfig”. Ralf

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Keith Clarke via use-livecode
; file “/.../system/libraries/Router.lc" file “/.../system/libraries/Config.lc" file “/.../system/libraries/URI.lc" file “/.../system/libraries/Log.lc" file “/.../system/libraries/Hooks.lc" file “/.../system/libraries/Benchmark.lc" file “/.../system/application/config/confi

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Ralf Bitter via use-livecode
Hi Keith, if you change the name of your library to Testlib.lc and if you adjust the name in your controller respectively all should work as expected. There is a naming convention for library files, i.e. camel case is not allowed, but it seems this is not mentioned in the user guide. Sorry for

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Keith Clarke via use-livecode
to 4 and check the > log file in case something goes wrong. > > > Ralf > >> On 30. Nov 2018, at 10:32, Keith Clarke via use-livecode >> wrote: >> >> Folks, >> I’m struggling to get my head around revIgniter / MVC concepts and map basic >&g

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Ralf Bitter via use-livecode
and check the log file in case something goes wrong. Ralf > On 30. Nov 2018, at 10:32, Keith Clarke via use-livecode > wrote: > > Folks, > I’m struggling to get my head around revIgniter / MVC concepts and map basic > LC desktop concepts to the right places in LCS

Re: Troubleshooting revIgniter library functions

2018-11-30 Thread Andre Alves Garzia via use-livecode
Keith, RevIgniter is a normal LiveCode collection of libraries. Have you read the getting started guide at:   https://revigniter.com/userGuide/overview/getting_started.html It will walk you through the concepts of MVC and how they are used in RevIgniter. Basically your models are the stuff

Troubleshooting revIgniter library functions

2018-11-30 Thread Keith Clarke via use-livecode
Folks, I’m struggling to get my head around revIgniter / MVC concepts and map basic LC desktop concepts to the right places in LCS + revIgniter. (I’m still searching for a 'Rosetta Stone’ to translate between these two worlds!) My use case is to share public FAQs from specific pages

Re: LiveCode server with revIgniter - new controller pages get 404 errors?

2018-11-28 Thread Keith Clarke via use-livecode
No worries, Ralf. Thanks for your response and your efforts with revIgniter - I’m very impressed with what I’ve discovered (& learned) so far! :-) Best, Keith > On 28 Nov 2018, at 12:05, Ralf Bitter via use-livecode > wrote: > > Hi Keith, > > sorry for respondin

Re: LiveCode server with revIgniter - new controller pages get 404 errors?

2018-11-28 Thread Ralf Bitter via use-livecode
> file'... "If you are using mod_rewrite to remove the page set this variable > so that it is blank." i.e. 'put empty into gConfig["indexPage”]' ). The > config.lc file is also mentioned specifically in the user guide section on > ‘revIgniter URIs: Removing the i

Re: LiveCode server with revIgniter - new controller pages get 404 errors?

2018-11-28 Thread Keith Clarke via use-livecode
'... "If you are using mod_rewrite to remove the page set this variable so that it is blank." i.e. 'put empty into gConfig["indexPage”]' ). The config.lc file is also mentioned specifically in the user guide section on ‘revIgniter URIs: Removing the index.lc file’ https:/

LiveCode server with revIgniter - new controller pages get 404 errors?

2018-11-27 Thread Keith Clarke via use-livecode
Folks, Can anyone using LC Server with revIgniter share any tips on why new controller pages might throw 404 errors, even if they contains the content from the (working) welcome.lc controller or blog.lc example from the revIgniter docs…? https://revigniter.com/userGuide/general/controllers.html

Re: Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
or maybe you're just getting me > confused :-) :-) > > > On the server side, Tom wants to use revIgniter session support - that > should be just fine. revIgniter (or indeed LC Server) doesn't know, or > care, if you are using a standard browser, a revBrowser inside an LC app, > or ju

Re: Revigniter Sessions

2017-12-15 Thread Alex Tweedly via use-livecode
Hold on - you guys are getting confused - or maybe you're just getting me confused :-) :-) On the server side, Tom wants to use revIgniter session support - that should be just fine. revIgniter (or indeed LC Server) doesn't know, or care, if you are using a standard browser, a revBrowser

Re: Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
ing on integrating LC Standalone with a Postgress DB via LC > > Server. I'd like to have session control, but the Revigniter > Documentation > > just assumes that the person is browsing the site using a regular > browser. > > I'd like to download database q

Re: Revigniter Sessions

2017-12-15 Thread Bob Sneidar via use-livecode
r. I'd like to have session control, but the Revigniter Documentation > just assumes that the person is browsing the site using a regular browser. > I'd like to download database query results straight from my standalone. > > Hope my question makes sense > > Thanks > > Tom >

Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
to have session control, but the Revigniter Documentation just assumes that the person is browsing the site using a regular browser. I'd like to download database query results straight from my standalone. Hope my question makes sense Thanks Tom ___ use

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Ralf Bitter
this in case you intend to upgrade the server engine to version 8. Anyhow I recommend to update revIgniter to the latest version. Warm regards Ralf ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscri

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Dave Kilroy
Yep that’s right, the .htaccess file can go anywhere in the file system so with multiple copies you can have some domains running really old versions of LC Server, others just moderately old and yet others surfing the latest version > Thanks Dave - good suggestion for the htaccess file, this

Re: revIgniter and LC8

2016-05-05 Thread Alex Tweedly
Thanks Monte. I had looked at the files listed immediately before and after that part of the traceback - didn't think of going further down the list ... So looking in Input.lc, I found line 1114 has repeat for each item tSegment in tIPsegments then which is clearly wrong - the stricter

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Alex Tweedly
Thanks Dave - good suggestion for the htaccess file, this means you never use the 'default' version of LC, you are using the latest version of LC 6.x.x without having to specify the exact detailed version ! -- Alex. On 05/05/2016 01:08, Dave Kilroy wrote: Hi @Alex, I’m also using revIgniter

Re: revIgniter and LC8

2016-05-04 Thread Monte Goulding
These errors can be hard to read. You want: > row 1114, col 35: script: parsing error (13) > file > "/home/ua886128/public_html/christineirvine.co.uk/system/libraries/Input.lc” ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: [revIgniter] revIgniter and LC8

2016-05-04 Thread Dave Kilroy
Hi @Alex, I’m also using revIgniter on HostM and not seeing the same thing… BTW, on the advice of a HostM technician a while ago I use the following in a .htaccess file in a domain folder to select which version of LC Server is used (I’ve not tried setting it to “lc8” but should think

revIgniter and LC8

2016-05-04 Thread Alex Tweedly
[ Hope no-one minds me cross-posting to two lists - but I think this could be useful for people on both lists ] I have a couple of web sites based on revIgniter, hosted on hostM.com They've been running happily up until today - running the default version in use by hostm which was (probably

Re: revIgniter installation

2016-03-28 Thread Bob Hall
Before installing Revigniter, you have to confirm Livecode Server (LCS) is installed and working. To be honest, this can be more of a challenge than getting Revigniter installed. Don’t even move on to Revigniter until you know for a fact LCS is operational with the simple test.lc file from

revIgniter installation

2016-03-27 Thread Matt Maier
Can someone help clarify the revIgniter installation instructions? I'm trying to get started with learning how to work with this tool but it's assuming more experience than I have. I want to confirm that I got my own computer and my server setup correctly for working with FileZilla

Re: [on-rev] Problem with revIgniter on DIESEL - any clue!?

2013-09-08 Thread Robert Mann
Thanks for the info. So far David could not solve the problem on DIESEL, my account has been moved to TIO where everything works fine! Mystery, mystery..! -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/on-rev-Problem-with-revIgniter-on-DIESEL-any-clue

Re: [on-rev] Problem with revIgniter on DIESEL - any clue!?

2013-09-06 Thread Phil Davis
On 9/6/13 10:31 AM, Robert Mann wrote: 1) what kind of server is diesel :: is it a mac os x? what version of OS X? I manage an account on diesel. When I SSH into it, I see this info: CentOS release 6.4 (Final) Linux diesel.on-rev.com 3.8.13--grs-ipv6-64 #3 SMP Fri May 31 13:26:19 CEST

[on-rev] Problem with revIgniter on DIESEL - any clue!?

2013-09-06 Thread Robert Mann
My revIgniter sites throw an error related to file paths since the last few last days. I have looked in revIgniter files to identify the problem. Checked the confif files were OK. Could find no clue except this possible bug 9869 *depending on the server version*. I asked david at on-rev support

Re: [on-rev] Problem with revIgniter on DIESEL - any clue!?

2013-09-06 Thread stephen barncard
64 bit ! On Fri, Sep 6, 2013 at 11:03 AM, Phil Davis rev...@pdslabs.net wrote: On 9/6/13 10:31 AM, Robert Mann wrote: 1) what kind of server is diesel :: is it a mac os x? what version of OS X? I manage an account on diesel. When I SSH into it, I see this info: CentOS release 6.4

Fwd: File uploading to on-rev.com account with revIgniter

2013-07-24 Thread Dave Kilroy
Hello all The problem uploading image files to on-rev (on pancake) using revIgniter and ImageMagick is now fixed. David Williams found that ImageMagick may have been missing a few dependencies and must have done a reinstall - anyway - it all works lovely now, thanks David! PS: for others

Re: File uploading to on-rev.com account with revIgniter

2013-07-18 Thread Ralf Bitter
Hi Dave, did a test on odin and the upload worked as expected. On which server is your revIgniter installation? Can you tell which version of ImageMagick is installed? By the way, I just found a typo in the User Guide: put 1024 into tConfig[MaxWidht] But the sample script should work anyway

Re: File uploading to on-rev.com account with revIgniter

2013-07-18 Thread Matthias Rebbe
/File-uploading-to-on-rev-com-account-with-revIgniter-tp4667710p4667714.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: File uploading to on-rev.com account with revIgniter

2013-07-18 Thread Ralf Bitter
to - so I'm wondering if I have to ask someone from RunRev to install it on my account? I would recommend to send a request to support. And once it's installed how do I load and call it from within revIgniter? Or will it 'just work' in the background without needing specific loading

Re: File uploading to on-rev.com account with revIgniter

2013-07-18 Thread Dave Kilroy
. And once it's installed how do I load and call it from within revIgniter? Or will it 'just work' in the background without needing specific loading/calling? Using the upload library you don't have to deal with imageMagick at all. The library does all relevant shell calls regarding

Re: RevIgniter current on-rev LiveCode server version

2013-05-19 Thread Ralf Bitter
Hi Keith, seems that yesterday my response didn't go through, so here it is again: The bug mentioned in the user guide applies only to installations on Lion and Mountain Lion. It is fixed in LiveCode Server release: 6.0.0-rc-1. This means, revIgniter should work on on-rev.com without flaws. I

Re: RevIgniter current on-rev LiveCode server version

2013-05-19 Thread Keith Clarke
Thanks for resending, Ralf - though I did see your original yesterday(?!?) Following your advice, I've been able to access revIgniter from myName.on-rev.com/index.lc by installing the contents of the zip file into my docroot myname.on-rev.com. For this, I had to edit index.lc as follow

Re: RevIgniter current on-rev LiveCode server version

2013-05-19 Thread Ralf Bitter
On 19.05.2013, at 16:51, Keith Clarke keith.cla...@clarkeandclarke.co.uk wrote: Thanks for resending, Ralf - though I did see your original yesterday(?!?) Following your advice, I've been able to access revIgniter from myName.on-rev.com/index.lc by installing the contents of the zip file

Re: RevIgniter current on-rev LiveCode server version

2013-05-19 Thread Keith Clarke
Thanks Ralf - I've now got a revIgniter instance installed safely in its own folder in my doc-root, outside of the public_html web-root and accessible from both my on-rev account web-root and a specific folder within one of my add-on domains. This on-rev set-up required settings somewhat

RevIgniter current on-rev LiveCode server version

2013-05-18 Thread Keith Clarke
Hi folks, Can any revIgniter expert please advise whether the current version of LiveCode Server installed on pancake.on-rev.com is compatible with revIgniter? I've installed but getting 404 errors on the index.lc page under revIgniter and the user guide's troubleshooting section mentions

Re: RevIgniter current on-rev LiveCode server version

2013-05-18 Thread Robert Mann
Hi I confirm I do have the latest revIgniter package installed on the current on-rev, no problem. Hope you find the glitch. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/RevIgniter-current-on-rev-LiveCode-server-version-tp4665045p4665052.html Sent from

Re: RevIgniter current on-rev LiveCode server version

2013-05-18 Thread Keith Clarke
Hi Robert. Thanks for the confirmation that the on-rev LiveCode server version is revIgniter-compatible. So, now I know it's something I've (not) done - but continued trouble-shooting is worthwhile, as it will work! :-) Best, Keith.. On 18 May 2013, at 13:21, Robert Mann r...@free.fr wrote

Re: RevIgniter current on-rev LiveCode server version

2013-05-18 Thread Ralf Bitter
Hi Keith, the bug mentioned in the user guide applies only to installations on Lion and Mountain Lion. It is fixed in LiveCode Server release: 6.0.0-rc-1 though. This means, revIgniter should work on on-rev.com without flaws. I would try to start with a clean root folder without any Apache

Re: RevIgniter current on-rev LiveCode server version

2013-05-18 Thread Keith Clarke
-directory of that site, where I want to experiment with revIgniter - and where the index.lc file will reside - at 'myname.on-rev.com/public_html/mydomain.com/mytestfolder/index.lc So far, I've been installing revIgniter bits into into (4), to avoid any risk to the rest of my company web site

Re: Open source, LC server and revigniter

2013-02-06 Thread Robert Mann
to clarify that point, thanks! On the ground of it, personnaly, I was going to contribute to revIgniter with a simplified hierarchical database based on stacks on a OS basis to accompany the move and as a thank you to Ralph Bitter for his wonderful work, but I wonder whether in the case of protection

Re: Open source, LC server and revigniter

2013-02-06 Thread J. Landman Gay
with the OS version, full point. But nice to clarify that point, thanks! On the ground of it, personnaly, I was going to contribute to revIgniter with a simplified hierarchical database based on stacks on a OS basis to accompany the move and as a thank you to Ralph Bitter for his wonderful work, but I wonder

Re: Open source, LC server and revigniter

2013-02-05 Thread Dr. Hawkins
On Mon, Feb 4, 2013 at 9:43 AM, Kevin Miller ke...@runrev.com wrote: This is it exactly. When selecting the license we looked very closely at the competitive landscape. GPL will play nicely given our competitive strengths as a desktop/mobile framework. But to do AGPL with the server version

Re: Open source, LC server and revigniter

2013-02-04 Thread David Bovill
Not quite true the GPLv3http://www.gnu.org/licenses/quick-guide-gplv3.htmlincludes the affero http://en.wikipedia.org/wiki/Affero_General_Public_License clause - this is designed to include the more modern concept of web apps. That is hosting a publicly available web service using GPLv3 licences

Re: Open source, LC server and revigniter

2013-02-04 Thread Kevin Miller
We're not using the AGPL. It is optional and we're not using it. Kind regards, Kevin Kevin Miller ~ ke...@runrev.com ~ http://www.runrev.com/ LiveCode: Unleash Your Killer App On 04/02/2013 12:44, David Bovill da...@vaudevillecourt.tv wrote: Not quite true the

Re: Open source, LC server and revigniter

2013-02-04 Thread David Bovill
Ah good to know - my bad. Doesn't immediately strike me as in your interests - though I can see some companies demanding this - still why you don't simply require them to pay up for a commercial license on the server like seems at odds with the overall strategy, and less likely to promote open

Re: Open source, LC server and revigniter

2013-02-04 Thread Dave Kilroy2
Yes I agree, I don't see how RunRev will get any reward for having a server version - and if they don't get any reward for it then it may be less likely to be developed on an on-going basis. I use TextMate to write code and upload to a server (whether I use revigniter or not) - I'm not building

Re: Open source, LC server and revigniter

2013-02-04 Thread Richard Gaskin
Dave Kilroy2 wrote: Yes I agree, I don't see how RunRev will get any reward for having a server version - and if they don't get any reward for it then it may be less likely to be developed on an on-going basis. When you think about it, LiveCode Server isn't much different from the main

Re: Open source, LC server and revigniter

2013-02-04 Thread Kevin Miller
This is it exactly. When selecting the license we looked very closely at the competitive landscape. GPL will play nicely given our competitive strengths as a desktop/mobile framework. But to do AGPL with the server version would be a mistake. We have a bigger hill to climb there and so we need to

Re: Open source, LC server and revigniter

2013-02-04 Thread Dave Kilroy2
Thanks all, I understand now :) This is it exactly. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Open-source-LC-server-and-revigniter-tp4660146p4660194.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: Open source, LC server and revigniter

2013-02-04 Thread Richard Gaskin
Kevin Miller wrote: For example, it needs the ability to draw objects and take snapshots of stacks but that's something that will be enabled by other work happening on the graphics stuff as part of the platform rework for non-server platforms anyway. Wow. So cool. That'll obviate a lot of

Re: Open source, LC server and revigniter

2013-02-04 Thread Kevin Miller
Depends how much you pledge :) In all seriousness though, there is an ongoing project on this front which is definitely getting there now. Kind regards, Kevin Kevin Miller ~ ke...@runrev.com ~ http://www.runrev.com/ LiveCode: Unleash Your Killer App On 04/02/2013 17:58, Richard Gaskin

Open source, LC server and revigniter

2013-02-03 Thread Dave Kilroy
Can anyone explain what the situation would be with open source, LiveCode server and revigniter? I sure I don't understand something basic about how open source works - I think I get it in terms of distributed software, but what about code that lives on a server? If I currently create a web

Re: Open source, LC server and revigniter

2013-02-03 Thread Kevin Miller
: Can anyone explain what the situation would be with open source, LiveCode server and revigniter? I sure I don't understand something basic about how open source works - I think I get it in terms of distributed software, but what about code that lives on a server? If I currently create a web app

Re: Open source, LC server and revigniter

2013-02-03 Thread Monte Goulding
, LiveCode server and revigniter? I sure I don't understand something basic about how open source works - I think I get it in terms of distributed software, but what about code that lives on a server? If I currently create a web app for a client using LiveCode server then I can keep the code

Re: revIgniter - how to instal

2013-01-31 Thread Andrew Kluthe
Not sure exactly, but from the error message I would gather that it expects to find (/Library/WebServer/Documents/index.lc/system/revigniter/RevIgniter.blog) and it can't. I'd start checking paths to make sure files are there and check your application/config/config.lc file to make sure things

Re: revIgniter - how to instal

2013-01-31 Thread paolo mazza
Andrew, the application/config/config.lc file is configured according to documentation... put http://myserver.local/; into gConfig[baseUrl] put index.lc into gConfig[indexPage] I think it is correct because revigniter files are on the root of my web server. The file /Library/WebServer

Re: revIgniter - how to instal

2013-01-31 Thread Ralf Bitter
[PATH_TRANSLATED] and $_SERVER[PATH_INFO]. As revIgniter is heavily dependent on path variables this means that there is no way to run revIgniter using the said OS / server versions. I reported this bug in November 2011. In September 27, 2012 I got the following response from the RunRev QCC: your bug

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-15 Thread Keith Clarke
...OK, thanks again Ralf - great to know that it's that easy! I can feel a little LC script exercise - to teach myself about file renaming in nested folders - coming on. ;-) Best, Keith.. On 14 Aug 2011, at 21:54, Ralf Bitter wrote: Keith, to use the latest version (1.4b) of revIgniter

Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread Keith Clarke
Hi folks, When using revIgniter for on-rev, across multiple addon domains, where should the revIgniter files be installed? The revIgniter installation instructions state, at lines: '2. Upload the revIgniter folders and files to your server. Normally the index.irev file will be at your root

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread stephen barncard
I don't think Revigniter (or any other web app ) can span domains. However, why not create a special domain or subdomain for Revigniter ? On 14 August 2011 07:01, Keith Clarke keith.cla...@clarkeandclarke.co.ukwrote: Hi folks, When using revIgniter for on-rev, across multiple addon domains

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread Keith Clarke
...thanks Stephen, for the clarification that revIgniter is currently scoped as a domain/sub-domain-level solution. I'm new to revIgniter and was rather hoping to just set it at a server level in the background (the way I had implemented RevServer before upgrading to on-rev) so

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread Ralf Bitter
Hi Keith, every addon domain needs it's own revIgniter installation. So, the revIgniter files go into public_html/yourAddonDomain. Hope this helps. Ralf On 14.08.2011, at 16:01, Keith Clarke wrote: Hi folks, When using revIgniter for on-rev, across multiple addon domains, where should

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread Keith Clarke
...great, thanks Ralf - for the clarification and for creating and sharing the fantastic revIgniter resource. BTW are there any additional setup steps needed for work with LiveCode Server and .lc files rather revServer .irev environment - for example, does index.irev change to index.lc? Best

Re: Using revIgniter with on-rev and multiple sites/domains

2011-08-14 Thread Keith (Gulf Breeze Ortho Lab)
Hi Guys, I just checked out the documentation for revIgniter (and have actually looked into it before--very cool!) and have a question. Regarding the encryption library, is it possible to encrypt files using it? Or only strings? Thanks, - Boo The greatest obstacle to discovery

revIgniter

2011-07-20 Thread Olivier Dussutour
I do not quite understand what is revigniter? Is it locally installed with WampServer? ps: I am beginner and French with a deplorable level of English so please write slowly ;-) Cordialement, Olivier Dussutour olivierdussut...@gmail.com ___ use

Re: revIgniter

2011-07-20 Thread Andrew Kluthe
It is a web app framework for revServer (Now named LiveCode Server). It is very much like CodeIgniter for PHP. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3681975.html Sent from the Revolution - User mailing list archive

Re: revIgniter

2011-07-20 Thread Andre Garzia
Server). It is very much like CodeIgniter for PHP. thanks you, carry on, keep calm and stay with snow leopard. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3681975.html Sent from the Revolution - User mailing list archive

[ANN] revIgniter v1.4b

2011-07-19 Thread Ralf Bitter
revIgniter v1.4b has been released. This is the first version which respects the latest engine changes (LiveCode server version 4.6.3). Lots of adjustments were made and the whole Encrypt library is revised. Keep in mind that this version is not compatible with revServer (engine versions before

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
. :-) Cheers andre On Tue, Jul 19, 2011 at 12:05 PM, Ralf Bitter ra...@dimensionb.de wrote: revIgniter v1.4b has been released. This is the first version which respects the latest engine changes (LiveCode server version 4.6.3). Lots of adjustments were made and the whole Encrypt library

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Ralf Bitter
Agreed . . . On 19.07.2011, at 17:11, Andre Garzia wrote: Ralf, For now I think its better to have two links, one for 1.4 and one for 1.3.latest because people on On-Rev will not transition to the new engine for a while and there are a lot of guys out there using RevServer. I think it

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andrew Kluthe
RevServer got updated? Is there a changelog? Does On-Rev use Livecode Server 4.6.3? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678624.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
4.6.3? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678624.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andrew Kluthe
? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678689.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678689.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
script placed in the message path. No GUI stuff. :-) -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678689.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andrew Kluthe
I don't need GUI stuff if I can send messages and write my code in a colorized code editor instead of notepad++. Very excited. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678755.html Sent from the Revolution - User mailing list

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
?? there is no editor in Livecode server... On 19 July 2011 10:40, Andrew Kluthe and...@rjdfarm.com wrote: I don't need GUI stuff if I can send messages and write my code in a colorized code editor instead of notepad++. Very excited. -- Stephen Barncard San Francisco Ca. USA more about sqb

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Bob Sneidar
Right... and aliens from Zartha just landed in my mother's living room proclaiming to be the ancient ancestors of Elvis Presley, wondering why their whale songs haven't been answered. Bob On Jul 19, 2011, at 10:00 AM, Andre Garzia wrote: Andrew, I just received an email from the

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678755.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andrew Kluthe
Bummer. So we aren't talking about binary stacks, just a different way of interacting between script files? How do custom properties work then? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678875.html Sent from the Revolution

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
: I don't need GUI stuff if I can send messages and write my code in a colorized code editor instead of notepad++. Very excited. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678755.html Sent from the Revolution - User

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
do custom properties work then? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678875.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
between script files? How do custom properties work then? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678875.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
and...@rjdfarm.com wrote: Bummer. So we aren't talking about binary stacks, just a different way of interacting between script files? How do custom properties work then? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678875.html Sent

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
and...@rjdfarm.com wrote: I don't need GUI stuff if I can send messages and write my code in a colorized code editor instead of notepad++. Very excited. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3678755.html Sent from

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
, Andrew Kluthe and...@rjdfarm.com wrote: I don't need GUI stuff if I can send messages and write my code in a colorized code editor instead of notepad++. Very excited. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Robert Mann
I open up a new thread on the subject of revServer stacks :: how does it work? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-revIgniter-v1-4b-tp3678359p3679017.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
/ANN-revIgniter-v1-4b-tp3678359p3678755.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread Andre Garzia
On Tue, Jul 19, 2011 at 4:02 PM, stephen barncard stephenrevoluti...@barncard.com wrote: They actually had an awkward meeting with the great one, and turned him down! instead of great one, I read Great Old One and some weird Lovecraftian part of my mind suddenly screamed in horror :-)

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread J. Landman Gay
On 7/19/11 1:20 PM, stephen barncard wrote: Textmate and Ralf Bitter's free Livecode plugin for Textmate rocks for live iRev editing. I know Trevor made one for BBEdit, is Ralf's a new one? Will it work with BBEdit (and do you have a link?) -- Jacqueline Landman Gay |

Re: [ANN] revIgniter v1.4b

2011-07-19 Thread stephen barncard
Strictly for Textmate. On 19 July 2011 14:14, J. Landman Gay jac...@hyperactivesw.com wrote: On 7/19/11 1:20 PM, stephen barncard wrote: Textmate and Ralf Bitter's free Livecode plugin for Textmate rocks for live iRev editing. I know Trevor made one for BBEdit, is Ralf's a new one? Will

  1   2   >