Re: [cgiapp] designing a mixed open/protected application

2009-06-04 Thread Stewart Heckenberg
Hi Puneet, Now, re. the authen mechanism. I tried Cees Hek’s Plugin::Authentication and found it very easy to implement. However, I am still thinking of rolling my own because I want to extend the authentication mechanism to store extra values as user preferences, and Plugin::Authentication

Re: [cgiapp] Re: Proposed new look and branding for cgi-app.org

2009-04-17 Thread Stewart Heckenberg
I don't mind the name Titanium, although I actually like saying CGI Application or cgi app -- do we shorten Titanium to tit? :-) Apart from the Ti chemical symbol logo and the name Titanium itself, the site isn't very metallic what with the trees/leaves and green. It's kind of like calling

Re: [cgiapp] Re: Making the query string delimiter instead of ;

2009-03-10 Thread Stewart Heckenberg
I tried Jaldhar's code and it worked for me, i.e. I got the oldstyle delimeter. 2009/3/11 Dave Baker daveba...@benefitslink.com: Date: Tue, 10 Mar 2009 07:55:06 -0400 (EDT) From: Jaldhar H. Vyas jald...@braincells.com Subject: [cgiapp] Making the query string delimiter instead of ; In

Re: [cgiapp] Best email module?

2009-01-29 Thread Stewart Heckenberg
I like MIME::Lite -- has a very simple attachment interface :) 2009/1/30 Peter Karman pe...@peknet.com: Lyle wrote on 1/29/09 8:26 PM: Hi All, I wondering what peoples experiences are with email modules on CPAN. At the moment I've got a custom module that pipes to SendMail on Linux, and

Re: [cgiapp] Windows Environment Setup

2009-01-16 Thread Stewart Heckenberg
Download and install both Apache for Windows and Strawberry Perl from their respective sites :) I use a dynamic hosting setup where I can have multiple sites living in a www directory in My Documents. To do this you need to uncomment the following lines in your httpd.conf: Include

Re: [cgiapp] CGI::Application::Plugin::Authentication --- Can't locate object method _cgiapp via package Aff

2009-01-14 Thread Stewart Heckenberg
goto CGI::Application::Plugin::Authentication::login_box Have you tried it without the above line? Perhaps just replace the above with: return login box goes here; Or something similar, just to test. My guess is the goto is causing the problem. Stew # CGI::Application community mailing

Re: [cgiapp] Need help with Redirect

2008-12-26 Thread Stewart Heckenberg
Try CGI::Application::Plugin::Authentication :) 2008/12/27 Stephen Carville stephen.carvi...@gmail.com: I am writing a make my life easier by letting users do some things for themselves program but I cannot get a redirect to work after login. Not all functions require a login so those that

Re: [cgiapp] Ajax app using CAP -- return JSON or HTML?

2008-05-24 Thread Stewart Heckenberg
I'm at a crossroad: should the CAP-based back-end normally return JSON data (and let the javascript library (I've decided on jQuery) place and format the data on the page), or should the back-end normally return HTML (via html templates), which will be dropped into different, say, divs?

Re: [cgiapp] Program format (this is the way I write my code -help?)

2008-02-13 Thread Stewart Heckenberg
Hi Lou, Actually you're close, but not close enough :) cgiapp actually allows you to get rid of all your if/else logic and instead use what are called run modes, which in terms of your games are all the action/packets, e.g. instead of: if ($Input{Action} eq Log In) you would use: sub login

Re: [cgiapp] Program format (this is the way I write my code -help?)

2008-02-13 Thread Stewart Heckenberg
of the words you used .. and see what i get. Is what your talking about called object oriented? thanks for the help... still lost but looking :) Lou - Original Message - From: Stewart Heckenberg [EMAIL PROTECTED] To: CGI Application cgiapp@lists.erlbaum.net Sent: Wednesday, February 13

Re: [cgiapp] Testing

2007-12-12 Thread Stewart Heckenberg
PONG! On 13/12/2007, Jesse Erlbaum [EMAIL PROTECTED] wrote: Hehe.. -Original Message- From: [EMAIL PROTECTED] [mailto:cgiapp- [EMAIL PROTECTED] On Behalf Of Joel Gwynn Sent: Wednesday, December 12, 2007 11:34 AM To: CGI Application Subject: Re: [cgiapp] Testing 64

Re: [cgiapp] Re: Test::WWW::Mechanize::CGIApp on cpan

2007-07-14 Thread Stewart Heckenberg
G'day Mark, You could probably also add it to this page: http://cgiapp.erlbaum.net/index.cgi?TestingCGIApplications Stew On 14/07/07, Mark Stosberg [EMAIL PROTECTED] wrote: George Hartzell wrote: http://search.cpan.org/~hartzell/Test-WWW-Mechanize-CGIApp-0.05 Please give it a try and let

Re: [cgiapp] Help on doing an HTML select using CGI.pm

2007-01-17 Thread Stewart Heckenberg
http://stein.cshl.org/WWW/CGI/#menu Stew On 18/01/07, Kevin Mullin [EMAIL PROTECTED] wrote: I need a good example of using CGI.pm in my perl script to output a select HTML tag, complete with all of the OPTION tags, I'm using the book CGI Programming with Perl by O'reilly publishers, but it

Re: [cgiapp] Ajax

2006-12-30 Thread Stewart Heckenberg
I've been using CGI::Ajax with CGI::Application, and I'm curious to know what you have in mind. At the moment I don't have a grasp of what the plugin would bring to the table. Perhaps you could elaborate? Well I was thinking of just making using CGI::Ajax via CGI::Application more

[cgiapp] Ajax

2006-12-28 Thread Stewart Heckenberg
G'day, My first post to this list :) I'm aware of the HTMLPrototype plugin that uses the Prototype Javascript library, however has anyone tried developing a plugin based on CGI::Ajax or that doesn't rely upon particular libraries? I don't know what the Ajax plugin linked-to via the cgiapp site