Search Discussions
-
I seem to remember hearing sth a few months ago about a comp between various MVC apps comprising of various teams / tasks / time limits etc. Does anyone know what I'm talking about here?! If s.o ...
Anthony Gardner
May 8, 2007 at 9:28 am
May 12, 2007 at 8:09 am -
I'm studying different frameworks for a new project. I'm very new to Catalyst and am reading through the tutorial. In part 8, advanced CRUD, there's an example of form validation. The approach is ...
Mla
May 14, 2007 at 8:45 pm
May 22, 2007 at 4:22 am -
I'm considering trying to port Ruby's ActiveRecord to Perl as a lightweight ORM option (with some small changes maybe, like composite PKs). If anyone's interested, toss me a message privately and ...
Mla
May 22, 2007 at 6:20 am
May 23, 2007 at 7:32 pm -
Hello, I am trying to encrypt / decrypt all the paths used in my application for encrypting , i simply overloaded uri_for method to return encrypted link.. however..I did not find any clean (simple) ...
Harshal Shah
May 17, 2007 at 2:47 pm
May 19, 2007 at 9:42 pm -
For a Catalyst application I have written View classes that serialize DBIC ResultSets to common formats (CSV, XML) to be stored to disc. Since the amount of data can become really big, the views ...
Bernhard Graf
May 4, 2007 at 11:33 am
May 8, 2007 at 1:28 am -
Greetings! I want to make MyApp::B a part of MyApp::A under namespace for example /folder/ Both B and A are normal catalyst applications. (both do '__PACKAGE__- setup()' and etc. and therefore cannot ...
Oleg Pronin
May 2, 2007 at 11:30 am
May 14, 2007 at 5:07 pm -
Hi All, I'm new to Perl and Catalyst. I thought I'd give first (before the onslaught of Catalyst questions;-)). I wrote a new version of JavaScript::Minifier and since you are web folks I thought ...
Peter Michaux
May 26, 2007 at 6:58 pm
May 29, 2007 at 8:51 am -
Hi there, I was wondering if there was some way within the Catalyst api to redispatch calls. The problem I'm having is: package MyApp::C::Blah; sub add : Local :Form(...) { if($form- submitted) { # ...
Mark Zealey
May 20, 2007 at 1:54 pm
May 22, 2007 at 11:07 pm -
I just finished getting the tutorial project working. The thing I'm not clear on is this separation between lib/MyAppDB/ and lib/MyApp/Model/ The tutorial says: "With Catalyst::Model::DBIC::Schema ...
Mla
May 15, 2007 at 2:22 am
May 16, 2007 at 7:46 am -
I've had several people contact me with possible patches for C::V::Mason (and for others), but my response of "I don't know Mason well enough, please can you post to the list for info" has been ...
Matt S Trout
May 12, 2007 at 6:48 pm
Jun 19, 2007 at 6:50 pm -
Can anyone tell me the best way of wrapping a non catalyst perl module in a Catalyst Model? I'm trying to setup the following stack: MyApp::Controller::Widget MyApp::Model::Widget ...
Jamie Neil
May 18, 2007 at 5:07 pm
Jun 10, 2007 at 11:44 am -
Hi, I'm trying to figure out why my sessions are expiring in script/xxx_cgi.pl but not script/xxx_server.pl The desired cycle is to login then redirect to another controller. When I run the ...
Jeff Chimene
May 21, 2007 at 2:20 am
May 23, 2007 at 6:11 pm -
In Catalyst::Utils::home is the following requirement documented anywhere? # only return the dir if it has a Makefile.PL or Build.PL if (-f $home- file("Makefile.PL") or -f $home- file("Build.PL")) ...
Jeff Chimene
May 28, 2007 at 8:11 pm
May 29, 2007 at 4:40 pm -
Hi all, I have a problem with Catalyst::Controller::FormBuilder. It prints way too much debug information, filling up my consolle's screen buffer :-) If I turn off Catalyst debgging by omitting the ...
Marcello Romani
May 2, 2007 at 11:11 am
May 8, 2007 at 7:08 am -
Next episode from my attempts in writing a serialization view class: After I learned that finalize_body() can read from an object (that can('read')) or from a file handle, I implemented the idea of ...
Bernhard Graf
May 6, 2007 at 11:02 am
May 8, 2007 at 1:34 am -
I didn't find a Catalyst plugin that would transparently deal with persistent logins. Is there one? If not, what's the recommended way to enable persistent logins in a Catalyst-driven website? ...
Evaldas Imbrasas
May 15, 2007 at 11:15 pm
May 22, 2007 at 1:25 am -
Help - I'm going round in circles with Catalyst actions. I want http://localhost:3000/search to map to the method search() in MyApp::Controller::Search, so I defined the method as: sub search : Path ...
Richard Jones
May 17, 2007 at 4:38 pm
May 18, 2007 at 3:34 pm -
If this is the wrong list, please direct me to the right place. I'm trying to get Catalyst working under apache/mod_perl (works fine with the standalone server). Basically, I have a very simple app ...
John Goulah
May 14, 2007 at 10:09 pm
May 15, 2007 at 8:17 pm -
What are peoples thoughts on using REST not only as a web service, but also within the application itself as another layer of abstraction? I would assume in this way all the DB related calls would go ...
John Goulah
May 24, 2007 at 4:34 pm
Jun 13, 2007 at 12:11 am -
Hello list, I'm looking for best practices for sending email from the catalyst app that would also work with command-line scripts (cronjobs, one-time scripts, etc.). In my current setup, Email model ...
Evaldas Imbrasas
May 22, 2007 at 7:10 pm
May 24, 2007 at 4:20 pm -
M::DBI has a pretty sizable bug in as is such that it will establish a new DBI handle on every incoming connection. This is a problem for speed, and transactions as it makes it much more difficult to ...
Evan Carroll
May 5, 2007 at 3:01 am
May 7, 2007 at 8:34 am -
I fired up an older application today and couldn't log in. I've recently updated this machine, so not sure that's related. Running Cat 5.7007 with current plugins: 'Session', ...
Bill Moseley
May 26, 2007 at 12:11 am
Jul 9, 2007 at 4:03 am -
This is suppose to be an ORM-neutral question. I often use lookup tables in the database, even for things like, say, cart_status: create table cart_status ( id SERIAL PRIMARY KEY, name text NOT NULL, ...
Bill Moseley
May 23, 2007 at 12:14 am
May 23, 2007 at 11:45 pm -
Hello! Imagine I have following controller function: sub buttonPressed : Local { my ( $self, $c ) = @_; my $name = $c- request- params- {name}; $c- res- write("Hello " . $name . ", welcome to the ...
Dmitri Pissarenko
May 17, 2007 at 3:45 pm
May 22, 2007 at 4:13 am -
After a bit of discussion on IRC, and some tweaking in Illustrator, we present (with thanks to jshirley for finding the EPS version of the logo!): The Catalyst Online Store - ...
Mike Whitaker
May 17, 2007 at 11:48 pm
May 18, 2007 at 6:15 pm -
I would like to test a model with a unit test. Catalyst kindly generates stub unit tests for models, but it does not include a stub showing how to instantiate the context object. I have looked at: - ...
Nathan Gray
May 15, 2007 at 2:48 pm
May 18, 2007 at 10:23 am -
Is there any way to override the file cache in the template toolkit, and use some other form of caching such as memcache? File cache really isn't that desirable when shared across many servers and ...
John Goulah
May 31, 2007 at 5:34 pm
Jun 11, 2007 at 2:01 pm -
Hi, I tried to add a link to a wav file on server. The file location is in var/www/html/myfolder/myfile.wav. And my app is in var/www/myapp. Hope that you could help me out here. Do I need Static ...
Will Smith
May 24, 2007 at 4:07 pm
May 25, 2007 at 3:14 am -
I am baffled by both of these, and I don't (usually) baffle that easily. First, the background: - Latest Catalyst, C::E::Apache, and all related modules - Using SQLite from within DBIC for model ...
Randy J. Ray
May 25, 2007 at 12:47 am
May 25, 2007 at 10:46 pm -
Hi, I am trying to install Catalyst::Plugin::Session::Store::FastMmap under Windows XP, and on the "nmake test" command it gives the following error. Can I do something to be able to install it? I ...
Octavian Rasnita
May 8, 2007 at 5:48 pm
May 10, 2007 at 1:56 pm -
Hi, first of all, I want to apology if this question does not belong to this mail list. I am working on an email function that read in pop3 mails and return some values such as Subject, From, To, ...
Will Smith
May 7, 2007 at 7:40 pm
May 8, 2007 at 9:22 am -
I'm currently using the following plugins for session management in my Catalyst app: Session Session::Store::Memcached Session::State::Cookie Session::DynamicExpiry Along with the following ...
Jim Spath
May 31, 2007 at 12:31 am
Jun 5, 2007 at 2:35 pm -
Thanks to the first few shirt and mug sales, there's already enough coming into the kitty (once it clears from CafePress) to announce the first Catalyst SwagReward. Like the beer rewards, the ...
Mike Whitaker
May 18, 2007 at 5:42 pm
May 21, 2007 at 5:28 pm -
Hey Geeks, i'm starting actually with catalyst and try to use the ConfigLoader. Actually i'm to dump to get something loaded or accessed. Maybe someone arround can give me a helping hand. Thats what ...
Johannes Rumpf
May 12, 2007 at 3:05 pm
May 13, 2007 at 12:58 am -
Compress::Deflate and Static::Simple seem to conflict with each other. The result of this is that CSS files don't get served properly. Catalyst sees the request, and knows to serve the correct CSS ...
Jim Spath
May 31, 2007 at 5:14 pm
May 31, 2007 at 8:41 pm -
As most people know, the Cache::Memcached::Managed is a dependency of Catalyst::Plugin::Session::Store::Memcached. If I force install Cache::Memcached::Managed, I can install the catalyst plugin ...
John Goulah
May 30, 2007 at 3:40 pm
May 31, 2007 at 7:59 pm -
<quote who="John Wang" access mailing list archives through modern web techniques. It's now ready for everyone to take a look, at http://grokbase.com. The site is based on Catalyst, ...
Gavin Henry
May 28, 2007 at 3:34 pm
May 29, 2007 at 9:56 am -
I am using Catalyst::Engine::HTTP::POE in a test harness; when the tests complete, I would like to gracefully terminate all child processes that C::E::HTTP::POE starts. My code forks and starts ...
Jon Schutz
May 24, 2007 at 5:03 am
May 24, 2007 at 3:23 pm -
This likely falls into one of the many "how do I get $c into the model" threads. My session has the locale and timezone fetched from the user's preferences at login. It's not really locale, but a ...
Bill Moseley
May 21, 2007 at 9:54 pm
May 22, 2007 at 10:32 am -
Hello, I'm still in trouble with virtual hosts... We have a domain domain.tld with several machines. On one of them, apache can be called using http://site1.domain.tld. It is configured to listen to ...
Xavier Robin
May 16, 2007 at 10:54 am
May 18, 2007 at 8:33 am -
Hi. I was wondering what peoples thoughts are on what a good way to deploy "many" (2-10, nothing extreme; different) Catalyst-based apps on a single machine would be. My first thought was that ...
Adam Sjøgren
May 15, 2007 at 5:52 pm
May 16, 2007 at 3:49 am -
Hi there, I am just getting exposed to the various Catalyst modules and stuff. I have finally succeeded in setting up my Apache server with FastCGI support to talk to myapp_fastcgi.pl server. Though ...
Dister Kemp
May 4, 2007 at 4:25 pm
May 14, 2007 at 7:54 am -
Hi, Just a general question to the list to see if there is interest in getting together a conference dedicated to Catalyst developers. Or is the feeling that the normal Perl conferences cover all our ...
John Napiorkowski
May 8, 2007 at 10:58 pm
May 10, 2007 at 10:25 am -
Hi all, I've been working through the tutorial, converting over to postgresql, and get the http://localhost:3000/books/list working fine. When I move to the BasicCRUD portion and the url_create ...
Lbmlist
May 30, 2007 at 4:04 am
May 30, 2007 at 10:36 pm -
Hi, I'm trying to work out the 'best way' of solving the following problem. Basically, I want to have several entries into my application. One is of the form /foo/<id where id is an integer primary ...
Mark Zealey
May 19, 2007 at 6:52 pm
May 28, 2007 at 6:32 pm -
I got some help from the DBIx list today which helped me get the txn_do() method working for my schema which is created with the loader ----Schema-------- package kRadDB; use strict; use base ...
Jason Konrad
May 25, 2007 at 9:51 pm
May 25, 2007 at 11:04 pm -
I'm hoping there's a 'best practice' or common pattern for reporting errors and messages to templates (not necessarily just forms). I find myself doing stuff like, my @errors; my @messages; # ... if ...
Paul Makepeace
May 23, 2007 at 7:29 pm
May 25, 2007 at 2:28 am -
Hello friends, i am working on a website using catalyst. Users are required to fill some forms which are 4-5 pages long. While filling the form he may opt to go to the previous page to edit details ...
Gaurav Talwar
May 24, 2007 at 8:33 am
May 24, 2007 at 11:06 am -
Damn it, I've lost which message I should be replying to. But to answer the freshness question - UNIQUE RDBO FEATURES * Support for Informix. -- no idea, we may have users, we may not :) * Objects ...
Matt S Trout
May 22, 2007 at 9:17 pm
May 23, 2007 at 5:54 pm -
Hi all, I have a template (page.tt2) that uses TT's VIEW directive, where I'm making a sub-request: [% BLOCK feed; data = Catalyst.subreq("/feed/$feed_url"); data; END; %] In my controller: sub ...
Adeola Awoyemi
May 22, 2007 at 11:38 am
May 22, 2007 at 4:05 pm
Group Overview
group | catalyst |
categories | catalyst, perl |
discussions | 119 |
posts | 835 |
users | 141 |
website | catalystframework.org |
irc | #catalyst |
141 users for May 2007
Archives
- May 2016 (4)
- April 2016 (8)
- March 2016 (47)
- January 2016 (12)
- December 2015 (27)
- November 2015 (15)
- October 2015 (29)
- September 2015 (6)
- August 2015 (4)
- July 2015 (17)
- June 2015 (9)
- May 2015 (22)
- April 2015 (1)
- March 2015 (1)
- February 2015 (46)
- January 2015 (22)
- December 2014 (25)
- November 2014 (6)
- October 2014 (9)
- September 2014 (4)
- August 2014 (3)
- July 2014 (9)
- June 2014 (11)
- May 2014 (5)
- April 2014 (16)
- March 2014 (4)
- February 2014 (19)
- January 2014 (24)
- December 2013 (48)
- November 2013 (65)
- October 2013 (25)
- September 2013 (30)
- August 2013 (173)
- July 2013 (68)
- June 2013 (52)
- May 2013 (68)
- April 2013 (29)
- March 2013 (103)
- February 2013 (33)
- January 2013 (31)
- December 2012 (49)
- November 2012 (48)
- October 2012 (154)
- September 2012 (54)
- August 2012 (55)
- July 2012 (97)
- June 2012 (78)
- May 2012 (164)
- April 2012 (113)
- March 2012 (150)
- February 2012 (134)
- January 2012 (79)
- December 2011 (80)
- November 2011 (108)
- October 2011 (146)
- September 2011 (149)
- August 2011 (108)
- July 2011 (77)
- June 2011 (44)
- May 2011 (91)
- April 2011 (179)
- March 2011 (386)
- February 2011 (114)
- January 2011 (144)
- December 2010 (129)
- November 2010 (232)
- October 2010 (97)
- September 2010 (167)
- August 2010 (184)
- July 2010 (126)
- June 2010 (123)
- May 2010 (118)
- April 2010 (266)
- March 2010 (286)
- February 2010 (146)
- January 2010 (327)
- December 2009 (238)
- November 2009 (166)
- October 2009 (180)
- September 2009 (158)
- August 2009 (210)
- July 2009 (332)
- June 2009 (379)
- May 2009 (392)
- April 2009 (534)
- March 2009 (280)
- February 2009 (471)
- January 2009 (267)
- December 2008 (251)
- November 2008 (253)
- October 2008 (199)
- September 2008 (234)
- August 2008 (291)
- July 2008 (293)
- June 2008 (272)
- May 2008 (407)
- April 2008 (416)
- March 2008 (494)
- February 2008 (334)
- January 2008 (589)
- December 2007 (425)
- November 2007 (350)
- October 2007 (289)
- September 2007 (315)
- August 2007 (426)
- July 2007 (395)
- June 2007 (410)
- May 2007 (835)
- April 2007 (315)
- March 2007 (452)
- February 2007 (393)
- January 2007 (644)
- December 2006 (584)
- November 2006 (504)
- October 2006 (369)
- September 2006 (370)
- August 2006 (551)
- July 2006 (383)
- June 2006 (679)
- May 2006 (607)
- April 2006 (934)
- March 2006 (691)
- February 2006 (634)
- January 2006 (921)
- December 2005 (866)
- November 2005 (988)
- October 2005 (414)
- September 2005 (266)
- August 2005 (439)
- July 2005 (286)
- June 2005 (316)
- May 2005 (115)
- April 2005 (261)
- March 2005 (95)