Re: CronJobs [was Re: Where is the Login to Rev's Web Hosting]

2010-10-28 Thread Andre Garzia
You're welcome Gregory! :D

On Thu, Oct 28, 2010 at 11:03 AM, Gregory Lypny
wrote:

> Hi Andre,
>
> Well, that's just too darn easy!
>
> As always, thanks a ton,
>
> Gregory
>
>
> On Thu, Oct 28, 2010, at 8:47 AM, Andre G.:
>
> > Gregory,
> >
> > On your control panel there's something called "cronjobs" which is
> exactly
> > what do you want. You can specify the intervals and the commands to run.
> >
> > :D
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


CronJobs [was Re: Where is the Login to Rev's Web Hosting]

2010-10-28 Thread Gregory Lypny
Hi Andre,

Well, that's just too darn easy!

As always, thanks a ton,

Gregory


On Thu, Oct 28, 2010, at 8:47 AM, Andre G.:

> Gregory,
> 
> On your control panel there's something called "cronjobs" which is exactly
> what do you want. You can specify the intervals and the commands to run.
> 
> :D

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Where is the Login to Rev's Web Hosting

2010-10-27 Thread Andre Garzia
uh???

www.on-rev.com/home still the same, what is wrong?

On Wed, Oct 27, 2010 at 11:57 AM, Gregory Lypny
wrote:

> A, rebranding.  Went to Rev's home page.  Can no longer find any links
> to On-Rev.  Can anyone point me in the right direction?
>
> Much obliged,
>
> Gregory
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Where is the Login to Rev's Web Hosting

2010-10-27 Thread Colin Holgate

On Oct 27, 2010, at 9:57 AM, Gregory Lypny wrote:

> A, rebranding.  Went to Rev's home page.  Can no longer find any links to 
> On-Rev.  Can anyone point me in the right direction?


You should have received an email telling you your new log in details. Check 
with Heather if you can't find that email.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Where is the Login to Rev's Web Hosting

2010-10-27 Thread Gregory Lypny
A, rebranding.  Went to Rev's home page.  Can no longer find any links to 
On-Rev.  Can anyone point me in the right direction?

Much obliged,

Gregory

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revbrowser - Account login done in background

2008-07-01 Thread Andre Garzia
Glen,

If I remember correctly, that init call was not related to any web
page login, it was there to verify that you had a valid altBrowser
license. These days, you simply call RevBrowserOpen, you don't need to
have a license anymore.

If you want to be able to login automatically to a web site, first you
need to learn how it's autentication scheme is done, if it is a http
basic authentication or it is some javascript + cookies thing. It
might be the case where you need some clever javascript injection and
if it needs so, then, it might not be worth pursuit.

If it is cookie based, you can use a simple URL call to capture the
cookie and script the RevBrowser using it's htmltext property, this
includes overwritting all links inside so you can trap them with
RevBrowserBeforeNavigate so that you can use custom URL calls with
your captured cookie, this can also be done with javascript injection
where you add javascript to the html source to set the cookies on the
browser and thus be able to navigate normally. Any way, I've did this
sort of stuff as an experiment, I would not trust these techniques
into something you intend to deploy. A single change in the web page
on the server side and everything breaks.

PS: If by login, you simply want to display a web page, you can use
the URL property of RevBrowser to open such page.

Andre

On Mon, Jun 30, 2008 at 6:21 PM, Glen Bojsza <[EMAIL PROTECTED]> wrote:
> Hello,
>
> There used to be XBrowser_Init "myUsername", "myPassword" that support
> altBrowser but it is no longer supported with revBrowser.
>
> I would like to automatically be able to login to a known web site with the
> push of a button. Is there a way to do this using revBrowser?
>
> thanks,
>
> Glen
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


revbrowser - Account login done in background

2008-06-30 Thread Glen Bojsza
Hello,

There used to be XBrowser_Init "myUsername", "myPassword" that support
altBrowser but it is no longer supported with revBrowser.

I would like to automatically be able to login to a known web site with the
push of a button. Is there a way to do this using revBrowser?

thanks,

Glen
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login

2006-04-01 Thread William de Smet
Hi Liam,

I just use a field "tUsername" and a 'OK' button with the following scripting:
on mouseup
   if field "tUsername" is empty then answer error" You must fill in your name!"
   if field "tUsername" is not empty then go to card ""
  put field "tUsername" of card "main" into field "name" of card ""
end mouseup

Now you can use the field "name" for whatever you like.

William de Smet

2006/4/1, liamlambert <[EMAIL PROTECTED]>:
> The login that I need is just to keep a log of who was useing the
> software
>   the date time , and only to
> let the registered people use the software
>
> Liam Lambert
> [EMAIL PROTECTED]
> IRELAND
>
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


login

2006-04-01 Thread liamlambert
The login that I need is just to keep a log of who was useing the  
software

 the date time , and only to
let the registered people use the software

Liam Lambert
[EMAIL PROTECTED]
IRELAND


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login

2006-03-31 Thread Richard Gaskin

liamlambert wrote from the beautiful nation of Ireland:

I was wondering what is the best way to go about building a login for  
an app or is there an example out there I could have a look at.


Can you tell us a bit more about what you're looking for?

One of the common trouble spots in my early days was letting clients get 
away with thinking "login screen" was a simple task because it only 
takes two words to describe it. ;)


Login screens come in many flavors, for many purposes, with widely 
varying levels of integration with other systems.


What would you like this window to do?

--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


login

2006-03-31 Thread liamlambert
I was wondering what is the best way to go about building a login for  
an app

or is there an example out there I could have a look at.
thanks
Liam Lambert
[EMAIL PROTECTED]
IRELAND


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread Klaus Major

Hi sims,


At 3:23 PM +0100 3/13/06, Paul Claude wrote:
There is a way to do a script that may add or delete your app to  
Mac "Login

Items" (to auto run your app at Mac startup)?

I know that you could read/write the loginwindow.plist, but there  
is a more
simple way? I don't like to adopt and study complex XML libraries  
only for

this target.


 Applescript  (watch the word wrap so you get the path right):

tell application "System Events"
get exists login item "MyCoolProgram"
if result is false then
		make new login item at end of login items with properties {path:"/ 
Applications/MyCoolProgram.app", hidden:true, kind:application,  
name:"MyCoolProgram"}

end if
end tell


very cool, sims :-)

Went straight into my archieves!


ciao,
sims

European Rev Conference  2006
www.techietours.com


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread Paul Claude
Ciao Sims,

Thank you very much, I will test ASAP this Applescript.

Greetings

Paul Claude


on 13-03-2006 15:43, sims at [EMAIL PROTECTED] wrote:

> tell application "System Events"
> get exists login item "MyCoolProgram"
> if result is false then
> make new login item at end of login items with
> properties {path:"/Applications/MyCoolProgram.app", hidden:true,
> kind:application, name:"MyCoolProgram"}
> end if
> end tell


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread sims

At 4:18 PM +0100 3/13/06, Paul Claude wrote:

I had thought about to this possibility, but I believed there was a way in
order to work directly with "login items"...

I must also check if creating an alias (or deleting it) in the startupItems
folder needs an authentication.


The applescript I sent to the list was tested and works fine 
here...just ran it,

checked login items, rebooted and all worked fine.


ciao,
sims

European Rev Conference  2006
www.techietours.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread Paul Claude
Thanks Klaus,

I had thought about to this possibility, but I believed there was a way in
order to work directly with "login items"...

I must also check if creating an alias (or deleting it) in the startupItems
folder needs an authentication.




on 13-03-2006 15:40, Klaus Major at [EMAIL PROTECTED] wrote:

> very quick guess (not tested, but worth a try :-):
> Maybe one could create an alias to the app in the folder "Startupitems"?
> -> Bootvolume/Library/Startupitems/


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread sims

At 3:23 PM +0100 3/13/06, Paul Claude wrote:

There is a way to do a script that may add or delete your app to Mac "Login
Items" (to auto run your app at Mac startup)?

I know that you could read/write the loginwindow.plist, but there is a more
simple way? I don't like to adopt and study complex XML libraries only for
this target.


 Applescript  (watch the word wrap so you get the path right):

tell application "System Events"
get exists login item "MyCoolProgram"
if result is false then
		make new login item at end of login items with 
properties {path:"/Applications/MyCoolProgram.app", hidden:true, 
kind:application, name:"MyCoolProgram"}

end if
end tell


ciao,
sims

European Rev Conference  2006
www.techietours.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Add your app to login items (Mac)

2006-03-13 Thread Klaus Major

Bonjour Paul,

There is a way to do a script that may add or delete your app to  
Mac "Login

Items" (to auto run your app at Mac startup)?

I know that you could read/write the loginwindow.plist, but there  
is a more
simple way? I don't like to adopt and study complex XML libraries  
only for

this target.


very quick guess (not tested, but worth a try :-):
Maybe one could create an alias to the app in the folder "Startupitems"?
-> Bootvolume/Library/Startupitems/


Greetings

Paul Claude


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Add your app to login items (Mac)

2006-03-13 Thread Paul Claude
There is a way to do a script that may add or delete your app to Mac "Login
Items" (to auto run your app at Mac startup)?

I know that you could read/write the loginwindow.plist, but there is a more
simple way? I don't like to adopt and study complex XML libraries only for
this target.

Greetings

Paul Claude


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread Andre Garzia
On Oct 28, 2004, at 12:18 AM, VHD wrote:
Hi Andre,
Thanks for the info. I installed liveHTTPheaders and you are right, 
the problem is "cookie" related.

I copied the header from liveHTTPheaders into rev and I now get "Your 
session has timed out". However When I use a web browser the session 
is still active!
(I noticed that the HTTP header contains a line that says: Cookie: 
SID0=10982345297)

Ben
Ben,
you'll have to script your way to the session login. Look into a home 
page called "HTTP made really easy", just google it, it's the first 
match. This will show the protocol. You'll open a socket connection to 
the server, and will send your login data and see the response, you'll 
parse the response to find what is your "session handler" (above is 
10982345297), then you'll make your own response handler which will 
send the cookie back along with the response.

Also, you can use altBrowser and embed a browser into your stack... :-)
Andre
--
Andre Alves Garzia  2004
Soap Dog Studios - BRAZIL
http://studio.soapdog.org
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread VHD
Hi Dave,

Thanks for the reply.

I didn't realise that libURL had libUrlSetLogField. Very nice.
It does something very similar to liveHTTPHeaders for use with Firefox.

The problem seems to be related to cookies, so I am not sure what the next step is.

Ben

P.S: Thanks for maintaining libURL.

*** REPLY SEPARATOR  ***

On 28/10/2004 at 12:25 AM Dave Cragg wrote:

>On 27 Oct 2004, at 11:58, VHD wrote:
>
>> I am trying to login to an internet email account I have (similar to
>> Hotmail).
>>
>> I have tried POST, URL etc... commands without success.
>
>I think the first thing you should do is log the response from the
>server. (libUrlSetLogField)
>
>This should show you status and http headers returned by the server.
>For example, whether a cookie is required, or whether the
>authentication scheme is something other than the Basic scheme.
>
>
>>
>> When using a normal browser it seems that there are a few page
>> redirections before I am able to view my emails.
>> Also if I type "http://user:[EMAIL PROTECTED]" into my browser I can log
>> in without a problem but this does not work with the URL command.
>>
>> It does not seem like the URL and POST commands are able to handle
>> page redirections. (? is this correct)
>
>The internet library (libUrl) is set to handle redirects by default.
>But again, using libUrlSetLogField will show if this is a problem.
>
>>
>>
>> It seems that libUrlSetAuthCallback might do the trick but there is
>> still no documentation for it.
>
>I doubt this will help in this situation. But you can see documentation
>for this here:
>
><http://www.lacscentre.co.uk/liburl/>
>
>Let us know what you find in the server response.
>
>Cheers
>Dave
>
>___
>use-revolution mailing list
>[EMAIL PROTECTED]
>http://lists.runrev.com/mailman/listinfo/use-revolution
>
>
>
>__ NOD32 1.909 (20041028) Information __
>
>This message was checked by NOD32 antivirus system.
>http://www.nod32.com



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread VHD
Hi Andre,

Thanks for the info. I installed liveHTTPheaders and you are right, the problem is 
"cookie" related.

I copied the header from liveHTTPheaders into rev and I now get "Your session has 
timed out". However When I use a web browser the session is still active!
(I noticed that the HTTP header contains a line that says: Cookie: SID0=10982345297)

Ben



*** REPLY SEPARATOR  ***

On 27/10/2004 at 2:56 PM Andre Garzia wrote:

>On Oct 27, 2004, at 8:58 AM, VHD wrote:
>
>> When using a normal browser it seems that there are a few page
>> redirections before I am able to view my emails.
>> Also if I type "http://user:[EMAIL PROTECTED]" into my browser I can log
>> in without a problem but this does not work with the URL command.
>
>Ben,
>
>probably the server is trying to set a cookie which works fine in the
>browser, but not in Rev. One way to fool proof this is to erase your
>current cookies, configure your browser not to accept them, then try to
>access your webmail, if everything is okay, then your problem is not
>cookie related but I am very positive about cookies being your problem.
>If this is so, then you must see how this cookies are stored, and fake
>them to use your webmail. I don't think your webmail cookie will be
>encripted, so a quick look in your cookie files or installing a HTTP
>"debugger" (there are some for Firefox, like liveHTTPHeaders) to see
>the http traffic, this way, if you search long carefully enough, you'll
>find the response where the server sets your login cookies. This should
>do the trick. If you use standard webmail packages you might want to
>share with us, this code! :D
>
>Cheers
>andre
>
>--
>Andre Alves Garzia ð 2004 ð BRAZIL
>http://studio.soapdog.org
>
>___
>use-revolution mailing list
>[EMAIL PROTECTED]
>http://lists.runrev.com/mailman/listinfo/use-revolution
>
>
>
>__ NOD32 1.909 (20041028) Information __
>
>This message was checked by NOD32 antivirus system.
>http://www.nod32.com



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread Dave Cragg
On 27 Oct 2004, at 11:58, VHD wrote:
I am trying to login to an internet email account I have (similar to 
Hotmail).

I have tried POST, URL etc... commands without success.
I think the first thing you should do is log the response from the 
server. (libUrlSetLogField)

This should show you status and http headers returned by the server. 
For example, whether a cookie is required, or whether the 
authentication scheme is something other than the Basic scheme.


When using a normal browser it seems that there are a few page 
redirections before I am able to view my emails.
Also if I type "http://user:[EMAIL PROTECTED]" into my browser I can log 
in without a problem but this does not work with the URL command.

It does not seem like the URL and POST commands are able to handle 
page redirections. (? is this correct)
The internet library (libUrl) is set to handle redirects by default. 
But again, using libUrlSetLogField will show if this is a problem.


It seems that libUrlSetAuthCallback might do the trick but there is 
still no documentation for it.
I doubt this will help in this situation. But you can see documentation 
for this here:

<http://www.lacscentre.co.uk/liburl/>
Let us know what you find in the server response.
Cheers
Dave
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread Andre Garzia
On Oct 27, 2004, at 8:58 AM, VHD wrote:
When using a normal browser it seems that there are a few page 
redirections before I am able to view my emails.
Also if I type "http://user:[EMAIL PROTECTED]" into my browser I can log 
in without a problem but this does not work with the URL command.
Ben,
probably the server is trying to set a cookie which works fine in the 
browser, but not in Rev. One way to fool proof this is to erase your 
current cookies, configure your browser not to accept them, then try to 
access your webmail, if everything is okay, then your problem is not 
cookie related but I am very positive about cookies being your problem. 
If this is so, then you must see how this cookies are stored, and fake 
them to use your webmail. I don't think your webmail cookie will be 
encripted, so a quick look in your cookie files or installing a HTTP 
"debugger" (there are some for Firefox, like liveHTTPHeaders) to see 
the http traffic, this way, if you search long carefully enough, you'll 
find the response where the server sets your login cookies. This should 
do the trick. If you use standard webmail packages you might want to 
share with us, this code! :D

Cheers
andre
--
Andre Alves Garzia  2004  BRAZIL
http://studio.soapdog.org
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Login to web mail - libUrlSetAuthCallback?

2004-10-27 Thread VHD
I am trying to login to an internet email account I have (similar to Hotmail).

I have tried POST, URL etc... commands without success.

When using a normal browser it seems that there are a few page redirections before I 
am able to view my emails.
Also if I type "http://user:[EMAIL PROTECTED]" into my browser I can log in without a 
problem but this does not work with the URL command.

It does not seem like the URL and POST commands are able to handle page redirections. 
(? is this correct)

It seems that libUrlSetAuthCallback might do the trick but there is still no 
documentation for it.
Does anyone know whether this command is what I am after?
If it is, how can I use it?
If it is not, does some one have an idea of how to access internet email accounts?

(I am running windows XP)

Thanks,

Ben

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login & pwd for standalones ?

2004-09-07 Thread jbv
the server side is a VERY good suggestion, since the
app is useless without online connection...

Thank you all,
JB

> > One way:
> > If the app *requires* access to the Web, you could maintain a list of
> > users
> > and their privileges on the server.  Just make sure to allow for local
> > running of the app without the access list if the app is permitted to
> > do so.
>
> This would be my suggestion also, with one suggestion if the app is
> sometimes run offline: require the application to login over the web at
> least once, at which time it could download privileges into a
> preferences file which could be read at startup for offline logins.
> Some simple encoding of the privileges in the prefs file should be
> sufficient unless you think they are likely to be hacked by your end
> users.
>
> HTH,
> Brian
>
> ___
> use-revolution mailing list
> [EMAIL PROTECTED]
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login & pwd for standalones ?

2004-09-07 Thread Brian Yennie
One way:
If the app *requires* access to the Web, you could maintain a list of 
users
and their privileges on the server.  Just make sure to allow for local
running of the app without the access list if the app is permitted to 
do so.
This would be my suggestion also, with one suggestion if the app is 
sometimes run offline: require the application to login over the web at 
least once, at which time it could download privileges into a 
preferences file which could be read at startup for offline logins. 
Some simple encoding of the privileges in the prefs file should be 
sufficient unless you think they are likely to be hacked by your end 
users.

HTH,
Brian
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login & pwd for standalones ?

2004-09-07 Thread Pierre Sahores
The best is to handle this on the server side, inside a postgresql 
authentification table. I use this way all the time to manage 
"login/password" protected accesses to all of my networked n-tier apps.

Best, Pierre
Le 7 sept. 04, à 21:34, jbv a écrit :
Folks,
One of my clients wants a webapp with a large
set of functions, and he's gonna distribute them
to his colleagues, but needs to enable / disable
certains functions, differently for each user.
He also wants a login & pwd for each user (that
will be entered at start up) and possibly limit the
use of an app in time (3 months for instance).
Of course, I can do that with variables, and build
as many different standalones as different users.
But I was wondering if there was a more general
(and more efficient) way to do that... especially
because my client isn't going to call me everytime
he needs a new copy with specific login + pwd +
time limit, and also because he isn't going to build
standalones by himself...
Thanks,
JB
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

--
Bien cordialement, Pierre Sahores
100, rue de Paris
F - 77140 Nemours
[EMAIL PROTECTED]
GSM:   +33 6 03 95 77 70
Pro:  +33 1 64 45 05 33
Fax:  +33 1 64 45 05 33
WEB/EAI services & ACID DB over IP
"Mutualiser les deltas de productivité"
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: login & pwd for standalones ?

2004-09-07 Thread Scott Rossi
Recently, "jbv"  wrote:

> One of my clients wants a webapp with a large
> set of functions, and he's gonna distribute them
> to his colleagues, but needs to enable / disable
> certains functions, differently for each user.
> He also wants a login & pwd for each user (that
> will be entered at start up) and possibly limit the
> use of an app in time (3 months for instance).
> 
> Of course, I can do that with variables, and build
> as many different standalones as different users.
> 
> But I was wondering if there was a more general
> (and more efficient) way to do that... especially
> because my client isn't going to call me everytime
> he needs a new copy with specific login + pwd +
> time limit, and also because he isn't going to build
> standalones by himself...

One way:
If the app *requires* access to the Web, you could maintain a list of users
and their privileges on the server.  Just make sure to allow for local
running of the app without the access list if the app is permitted to do so.

Another way:
Establish a set of codes that determines how the app should behave and
include the code table within the app.  Provide different codes to each user
based on their access level.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia & Design
-
E: [EMAIL PROTECTED]
W: http://www.tactilemedia.com

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


login & pwd for standalones ?

2004-09-07 Thread jbv
Folks,

One of my clients wants a webapp with a large
set of functions, and he's gonna distribute them
to his colleagues, but needs to enable / disable
certains functions, differently for each user.
He also wants a login & pwd for each user (that
will be entered at start up) and possibly limit the
use of an app in time (3 months for instance).

Of course, I can do that with variables, and build
as many different standalones as different users.

But I was wondering if there was a more general
(and more efficient) way to do that... especially
because my client isn't going to call me everytime
he needs a new copy with specific login + pwd +
time limit, and also because he isn't going to build
standalones by himself...

Thanks,
JB

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OSX Login items

2002-10-25 Thread sims
Thanks Dar,

/User/Library/Preference/loginwindow.plist

sims





Anyone know how to script the addition of a Rev app to
the "Login Items" of the "System Preferences" in OSX?


At 8:22 -0600 10/25/2002, Dar Scott wrote:


I think it was Bill Vlahos who pointed me to some Apple web pages 
with this info for login.  It is in the archive, no doubt.  IIRC, 
you put the executable and a couple text files in a folder.  The 
text files are XML definitions (not XML), I think.


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution



Re: OSX Login items

2002-10-25 Thread Dar Scott

On Friday, October 25, 2002, at 07:15 AM, sims wrote:


Anyone know how to script the addition of a Rev app to
the "Login Items" of the "System Preferences" in OSX?

(iow get it to run at startup on OSX)


I think it was Bill Vlahos who pointed me to some Apple web pages with this 
info for login.  It is in the archive, no doubt.  IIRC, you put the 
executable and a couple text files in a folder.  The text files are XML 
definitions (not XML), I think.

Do you want startup or login?

The methods are a little different (and I may be confusing the two, above)
.  The GUI may not be ready for the first and the application might fail.  
(One would hope gui calls would simply be ignored.)

I better shut up and let Bill explain.

Dar

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


OSX Login items

2002-10-25 Thread sims
Anyone know how to script the addition of a Rev app to
the "Login Items" of the "System Preferences" in OSX?

(iow get it to run at startup on OSX)

tia

sims
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution