Re: templating system opinions (axkit?)

2003-07-24 Thread Jeff AA
- Original Message - From: Jean-Michel Hiver [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:46 PM First of all, it is an implementation of TAL. TAL is a very clever open specification for WYSIWYG-friendly templates written by the Zope people. Do you have

Re: Server side programming PHP Vs CGI Vs modPerl

2003-02-13 Thread Jeff AA
DM Hello All, DM We have a server running in a Linux machine, now we would like to DM present the data in a browser using HTML interface. Can anyone suggest me DM which is the best one (CGI or PHP or modperl) to develop for web DM programming and also their advantages and

RE: When perl is not quite fast enough

2002-12-17 Thread Jeff AA
-Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: 16 December 2002 13:22 To: [EMAIL PROTECTED] Subject: When perl is not quite fast enough While reading Mark Fowler excelent Perl Advent Calendar (http://www.perladvent.org/2002/) 6th entry:

RE: Yahoo is moving to PHP ??

2002-10-30 Thread Jeff AA
-Original Message- From: Mithun Bhattacharya [mailto:inzoik;yahoo.com] Sent: 30 October 2002 09:17 To: [EMAIL PROTECTED] Subject: Re: Yahoo is moving to PHP ?? No it is not being removed but this could have been a very big thing for mod_perl. Can someone find out more details

RE: [OT] Perl vs. PHP..... but where is mod_perl?

2002-10-18 Thread Jeff AA
- I get The requested story: 19716 has not been published (set live) yet. when I visit http://www.newsfactor.com/perl/story/19716.html Do you think the lists comments upset someone? 8-)

RE: separating C from V in MVC

2002-06-13 Thread Jeff AA
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: 13 June 2002 03:43 To: Fran Fabrizio; [EMAIL PROTECTED] Subject: Re: separating C from V in MVC 2. Does the first part of my code above even remotely resemble a Controller? Sort of. It does choose a

RE: separating C from V in MVC

2002-06-13 Thread Jeff AA
-Original Message- From: Fran Fabrizio [mailto:[EMAIL PROTECTED]] Sent: 13 June 2002 13:23 To: Jeff AA Cc: [EMAIL PROTECTED] Subject: RE: separating C from V in MVC Controller: --- my $Stale = Model::WatchCollection-new( status = 'stale' ); Controller

RE: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread Jeff AA
From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 15:11 You can store anything in Apache::Session; it's just a persistent hash table. However, storing query results based on a user's session is not a good idea! What if your users open up two browser windows and tries

RE: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread Jeff AA
From: Ken Y. Clark [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 15:39 I've munged the query results in Perl and a couple template packages to make each link contain everything necessary to perform the query again (including every parameter from the original request) and putting in

RE: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread Jeff AA
From: Eric Frazier [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 16:52 I don't know this term query hijack can you put it in different words? Lets say your user who is the boss makes a query 'show me everyone's salary' and your system checks who he is, and because he is the boss,

RE: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread Jeff AA
From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 16:29 Agreed, but he wasn't talking about storing the results, just the query parameters and current offset / number of rows, which is a-ok for putting into a session. No, that's exactly what ISN'T okay for

RE: separating C from V in MVC

2002-06-11 Thread Jeff AA
From: Rob Nagler [mailto:[EMAIL PROTECTED]] Sent: 10 June 2002 20:41 ... a Facade is the front face of the web site which includes colors, text, URLs, etc. All the other MVC components talk to the currently selected Facade when they need these values. The controller calls

The T in MVC?

2002-06-11 Thread Jeff AA
I have some questions for users of Templating... we currently, (in another language) have a set of standard functions for things like printing data tables, so in our HTML page outlines, we just insert a call to printDataTable( table = $table, user = $user, data = $data, layout = layout );

RE: separating C from V in MVC

2002-05-31 Thread Jeff AA
From: Jesse Erlbaum [mailto:[EMAIL PROTECTED]] Sent: 30 May 2002 22:42 To: 'Ray Zimmerman'; modperl List; Mason List Jesse, thanks for your comments, I found them very interesting. I am comfortable with Perl and Web programming (though previously not the two together) and am about to embark

RE: separating C from V in MVC

2002-05-31 Thread Jeff AA
From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: 31 May 2002 16:27 Perrin, fab feedback as ever, I think I am almost at the 1,000 thanks for Perrin level 8-) - oh, and 1,000 apologies too, for all the questions you've answered before! I hope you don't mind me pestering you with yet

mod_perl: User Authentication recommendations requested

2002-05-14 Thread Jeff AA
I have a requirement to protect all pages on a website, and to only allow in users with a valid user id, password, client certificate and recognised IP. I know this is asking a lot, but I would appreciate an overview/recommendation of approaches that are 1st safe, and 2nd fast. I think

unable to use method type handlers?

2002-05-14 Thread Jeff AA
Whenever I try to set up a method type handler PerlHandler my::classes-mymethod I get the following in the error log: Undefined subroutine my::classes-mymethod::handler called. using: Apache/1.3.23 (Unix) Debian GNU/Linux mod_perl/1.26 mod_ssl/2.8.7 OpenSSL/0.9.6c any hints would

RE: unable to use method type handlers?

2002-05-14 Thread Jeff AA
2002 09:58 To: Jeff AA Cc: [EMAIL PROTECTED] Subject: Re: unable to use method type handlers? Try per load the class my::class via startup.pl or PerlModule Tor. Jeff AA wrote: Whenever I try to set up a method type handler PerlHandler my::classes-mymethod I get the following