Re: What to Do Since FTP No Longer Supported in Mac OSX Lion?

2011-08-14 Thread Andre Garzia
They still make mac mini server, which is a good server but not rackable (does this word exists?) -- enviado do meu Nexus S - android is freedom. http://andregarzia.com :: all we do is code http://fon.nu :: minimalist url shortening Em 13/08/2011 19:19, "Richard Gaskin" escreveu: > J. Landman Gay

RE: What to Do Since FTP No Longer Supported in Mac OSX Lion?

2011-08-14 Thread John Dixon
It does now...:-) > They still make mac mini server, which is a good server but not rackable > (does this word exists?) > From: an...@andregarzia.com ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: [On-Rev] Using Shell to Manipulate SQL

2011-08-14 Thread Andre Garzia
Andrew, This is a quick email typed on a phone on an aiport so forgive me for not going to deep. Basically : don't do it! The dangers are too big. You should avoid using shell() with anything that comes from user input. If the user chooses a username such as: " && rm -rf * And this, in a

referring to object names stored in variables

2011-08-14 Thread Thomas Bähler
Hi all Grrr, I did that before but can't find the solution anymore. I have a textfield with several lines. When I click that field, I store the reference of the selectedLine in a custom variable. Later I want to put text after that specific line. But I don't get there. I click in line 1 of fiel

Re: referring to object names stored in variables

2011-08-14 Thread Mark Schonewille
Thomas, Try this: put "blabla" after line (word 2 of the L_Line of field 1) of field 1 -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 What does that error mean?

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: referring to object names stored in variables

2011-08-14 Thread Peter M. Brigham, MD
On Aug 14, 2011, at 8:51 AM, Mark Schonewille wrote: > Thomas, > > Try this: > > put "blabla" after line (word 2 of the L_Line of field 1) of field 1 > > -- > Best regards, > > Mark Schonewille > > Economy-x-Talk Consulting and Software Engineering > Homepage: http://economy-x-talk.com > Twit

Re: mysql and android - does it work?

2011-08-14 Thread Roger Eller
On Mon, Aug 8, 2011 at 6:59 PM, Admin wrote: > > > Hello everyone. > > My database app utilizes a mysql database. When > testing for android, the app shows up fine (but needs to be in landscape > mode, not portrait), but when I try to login, it gives me a revdberr - > invalid database type. > > Th

Re: referring to object names stored in variables

2011-08-14 Thread Thomas Bähler
Hi Mark, Hi Peter I thought of parsing the content of the variable, but wanted to find the function or the LiveCode keyword that would do that for me. That function might not exist. So, for the moment I store just the numbers and "glue" the reference together in the script as you suggested. Tha

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 wrote: > Hi folks, > When using revIgniter for on-rev, across multiple addon domains, where > should the revIgniter file

Re: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
There is a small oddity in that if you put something after a line of a field, the text you put there appears at the start of the next line, unless it was the last line of the field, in which case it goes at the end of the text. When you said you wanted to put "blabla" after the line, did you wan

re:referring to object names stored in variables

2011-08-14 Thread Thomas Bähler
Hi Colin What I wanted (and accomplished now) is the following: I have two fields: the first is editable and I can write parameters and their values in it, the other is locked and shows calculations based upon the parameters available in the first field. To avoid typos I included a feature in t

Re: What to Do Since FTP No Longer Supported in Mac OSX Lion?

2011-08-14 Thread Jim Ault
The mac mini is rack-able Just Google 'mac mini rack mount' and get a tray that holds 4 units thus 4 CPUs on one rack I use this in one of my data centers. http://eshop.macsales.com/item/Macessity/MX4/?utm_source=google&utm_medium=shoppingengine&utm_campaign=googlebase Jim Ault Las Vegas --- On S

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 that the capabi

Re: referring to object names stored in variables

2011-08-14 Thread J. Landman Gay
On 8/14/11 10:09 AM, Colin Holgate wrote: There is a small oddity in that if you put something after a line of a field, the text you put there appears at the start of the next line, unless it was the last line of the field, in which case it goes at the end of the text. I don't see that behavior

Re: What to Do Since FTP No Longer Supported in Mac OSX Lion?

2011-08-14 Thread Gregory Lypny
Agreed. And I don’t think it would be a stretch for the Rev team to throw an SFTP command into LiveCode. Gregory On Sun, Aug 14, 2011, at 10:01 AM, use-livecode-requ...@lists.runrev.com wrote: > Certainly the more protocols supported, the better ;) Since Apple could have > used SFTP earlier,

[OT] two really neat pdf tools

2011-08-14 Thread Peter Alcibiades
Don't know if anyone needs these things, but if you do, they are really neat. One is unoconv. That will take all the .doc files in a directory and with the aid of open office or libreoffice will turn them into perfectly decent pdfs. As in:- unconv -f pdf *.doc Then the other really neat one

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: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
That wasn't what I had referred to. Lock the text of your field, and try this script: on mouseup put "bla" after the selectedline end mouseup then click on line 1. Where does the text appear? On Aug 14, 2011, at 1:25 PM, J. Landman Gay wrote: > From the message box: put "blah" after line

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, K

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 is not ignor

Re: referring to object names stored in variables

2011-08-14 Thread J. Landman Gay
On 8/14/11 2:13 PM, Colin Holgate wrote: That wasn't what I had referred to. Lock the text of your field, and try this script: on mouseup put "bla" after the selectedline end mouseup then click on line 1. Where does the text appear? The handler errors unless listbehavior is set. But onc

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

2011-08-14 Thread Ralf Bitter
Keith, to use the latest version (1.4b) of revIgniter with the latest version of the server engine on On-Rev you currently need to change the extensions of all files to .lc (sorry for the inconvenience). Note: This applies to revIgniter installations on On-Rev only. The next revIgniter version wi

Re: referring to object names stored in variables

2011-08-14 Thread dunbarx
Fascinating. These two scripts do very different things. Colin, have you known about this since HC days? on mouseup put the selectedLine into temp do "put X after" && temp end mouseup on mouseup put "X" after the selectedLine end mouseup And which is the selectedLine in a locked fie

Re: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
I don't know how you managed to copy and paste it and it not still work. Yes, if you make it list behavior it does go in the line you would expect, but for a regular field, the script works, and the text goes in front of the following line. Here's a screen recording, having just copied my scrip

Re: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
I can't remember if I ever used the selectedline instead of the clickline, but it makes sense. When you look at the selectedchunk on a locked field it shows as char n to n-1 of line l of field f, so the selected items do know the line you clicked on. I'm glad you saw the same behavior I saw, an

Re: referring to object names stored in variables

2011-08-14 Thread J. Landman Gay
On 8/14/11 4:08 PM, Colin Holgate wrote: I'm glad you saw the same behavior I saw, and don't have a special version of liveCode like Jacque. I see. My "special version" was 4.6.2, since I had a lot of other work open in 4.6.3 when I tested. Apparently something changed. In 4.6.2 I get "no ta

Re: referring to object names stored in variables

2011-08-14 Thread dunbarx
The listBehavior makes no difference in my tests. I just never knew that the selectedLine was set upon clicking into a locked field. This might be a disadvantage if you want to work when there is NO selectedLine. You get one anyway.That is what the clickLine is for. Thanks a lot. Craig -

Re: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
It needs to cork when there is no selection. Imagine you're working with an editable field, and want to know what is selected when nothing is selected. It would be a problem if in that one case it gave an error. Maybe that's why it was fixed in 4.6.3. The problem case in 4.6.3 seems to be that

Re: referring to object names stored in variables

2011-08-14 Thread Colin Holgate
Cork? Must be that wine I'm drinking... On Aug 14, 2011, at 6:42 PM, Colin Holgate wrote: > It needs to cork when there is no selection. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and man

Re: referring to object names stored in variables

2011-08-14 Thread J. Landman Gay
On 8/14/11 5:42 PM, Colin Holgate wrote: The problem case in 4.6.3 seems to be that if you put something after a line, it's smart enough to realize you mean the new text is to be before the return character. With put text after selectedline the text goes after all the contents of the line, which

Re: [OT] Internet Censorship

2011-08-14 Thread Judy Perry
Perhaps you'd care to offer an example or three of "hobbyist" (notice that it is ALWAYS used in a demeaning manner) software done in LC that looks or behaves any crappier than stuff produced by "real" programmers in *any* language who've obviously never had a course in UI or UX design? Judy "t

player object problem on Win7

2011-08-14 Thread Nicolas Cueto
Hi. A stack and its standalone version work fine in WinXP but not in Win7. The problem relates to the player object. It's filename gets set to an url on my webserver, and the url is a reference to an MP4 video. When the Win7 version sets the player object to the filename, both the stack in the ID

Re: player object problem on Win7

2011-08-14 Thread Nicolas Cueto
Sorry to be replying to my own question. A Win7 installation does not include QuickTime. And I've confirmed QT is not installed on my machine. If this lack of QT is the source of the problem, does this mean Win7 users of my LiveCode stacks must have QuickTime already installed? If so, argh! I h

Re: player object problem on Win7

2011-08-14 Thread Scott Rossi
AFAIK, Neither LiveCode nor Windows has ever included a QuickTime installer. In answer to your question, yes, to get the most functionality from a player, the user must have QuickTime installed. Otherwise, playback features are quite limited. This is why many of us have been requesting for yea

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

2011-08-14 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

Re: referring to object names stored in variables

2011-08-14 Thread Keith Clarke
...just imagining the (slightly slurred and blurred) scene... "Waiter, another bottle of the Château LC àpres-ligne 4.6.3 - this one is corked!" So, maybe it's not a bug - merely the after effects of the illicit substance you are eating with the wine. You know... the, ahem... fromage ;-) Best