Re: [Catalyst] Best-practices question: caching a search

2012-09-15 Thread Rippl, Steve
I've used temporary tables for large search results I've needed to get back to quickly and didn't want to rebuild from scratch... On Sat, Sep 15, 2012 at 7:06 PM, will trillich will.trill...@serensoft.comwrote: Hi Francisco -- I'm not talking about paginating a resultset, I'm talking about

Re: [Catalyst] Best-practices question: caching a search

2012-09-15 Thread Rippl, Steve
and then goes to lunch and comes back the next day to click next? Do you key it to the session ID somehow? On Sat, Sep 15, 2012 at 9:21 PM, Rippl, Steve rip...@woodlandschools.orgwrote: I've used temporary tables for large search results I've needed to get back to quickly and didn't want

Re: [Catalyst] Re: Catalyst::ActionRole::RequireSSL under development server

2012-04-20 Thread Rippl, Steve
On Wed, Apr 18, 2012 at 8:11 PM, Aristotle Pagaltzis pagalt...@gmx.dewrote: * Rippl, Steve rip...@woodlandschools.org [2012-04-19 00:45]: Anyone know what I should be testing for now? When I query $c-engine_class I get Catalyst::Engine whether I'm running under the development server

Re: [Catalyst] Catalyst::ActionRole::RequireSSL under development server

2012-04-18 Thread Rippl, Steve
On Wed, Apr 18, 2012 at 6:00 AM, Jason Galea li...@eightdegrees.com.auwrote: On Tue, Apr 17, 2012 at 4:11 AM, Rippl, Steve rip...@woodlandschools.orgwrote: We're just upgrading to Catalyst 5.9 from 5.8, and therefore switching from the old Catalyst::Plugin::RequireSSL to Catalyst

[Catalyst] Catalyst::ActionRole::RequireSSL under development server

2012-04-16 Thread Rippl, Steve
Hi, We're just upgrading to Catalyst 5.9 from 5.8, and therefore switching from the old Catalyst::Plugin::RequireSSL to Catalyst::ActionRole::RequireSSL. The old module would detect when is was running under the standalone server and so was fine under development.

Re: [Catalyst] Catalyst::ActionRole::RequireSSL under development server

2012-04-16 Thread Rippl, Steve
On Mon, Apr 16, 2012 at 4:58 PM, Charlie Garrison garri...@zeta.org.auwrote: Good morning, On 16/04/12 at 11:11 AM -0700, Rippl, Steve rip...@woodlandschools.org wrote: We're just upgrading to Catalyst 5.9 from 5.8, and therefore switching from the old Catalyst::Plugin::RequireSSL

[Catalyst] Pointing to different app.psgi when running tests

2012-02-01 Thread Rippl, Steve
I have a bunch of debug stuff turned on in app.psgi on the development machine, but it seems this breaks during a redirect when using Test::WWW::Mechanize [error] Caught exception in engine Bad Content-Length: maybe client disconnect? (67 bytes remaining) at

Re: [Catalyst] Moose attributes not initializing when including FormHandler form

2012-01-04 Thread Rippl, Steve
On Wed, Jan 4, 2012 at 2:51 AM, Tomas Doran bobtf...@bobtfish.net wrote: Also, this ^^ assuming that 'ctx' is the Catalyst context, is always always wrong! You're (at least) leaking the context between requests here, and probably worse.. Yeah, guilty! What am I doing wrong? Why isn't

Re: [Catalyst] Dealing with timestamps from Postgres

2011-11-02 Thread Rippl, Steve
One way (if using DBIx::Class) $dt_object = $c-model('DB::TableName')-find($row_index)-date_field (or however your get your resultset) $formatted_date_string = $dt_object-mdy('/'); where the mdy('/') can be whatever the DateTime object you're retrieving supports (see CPAN docs). Can obviously

Re: [Catalyst] Dev Server Not showing standard debug info when using Log4Perl Plugin

2011-01-23 Thread Rippl, Steve
On Sun, Jan 23, 2011 at 4:49 PM, Eric Berg eb...@bergbrains.com wrote: Is there a way to get all of the logging that you get with the dev catalyst server when you use Catalyst::Log::Log4perl?  I love me my l4p formatting, including lline numbers, etc., but would also like to see the standard

Re: [Catalyst] Suggestions on how to handle 12 page form

2010-11-17 Thread Rippl, Steve
On Tue, Nov 16, 2010 at 10:38 PM, Octavian Rasnita octavian.rasn...@ssifbroker.ro wrote: Hi Bill, I think the best approach is to create an action for each page of the form and after each form submission partially update one or more database tables, saving a marker that shows which was

Re: [Catalyst] Creating HTML docs from POD

2010-10-30 Thread Rippl, Steve
I use Pod::Simple::HTMLBatch and a simple script that points to .../Controller ../Model .../Schema/ResultSet etc and dumps the resulting html in a subfolder under root/pod which I set to be server statically be the application itself. On Sat, Oct 30, 2010 at 7:29 AM, Octavian Rasnita

Re: [Catalyst] does detach cancel forward

2009-11-07 Thread Rippl, Steve
On Sat, 2009-11-07 at 12:55 -0800, Bill Moseley wrote: On Sat, Nov 7, 2009 at 11:08 AM, Steve Rippl rip...@woodlandschools.org wrote: As the noob that started all this I would say that the docs I came across (the online tutorial and the books)