Search Discussions
-
Hello Friends, For the past few days I have been putting together a site for listings of websites driven by the Catalyst MVC framework. The site idea was born out of a discussion on the list here a ...
Stephen Sykes
Mar 27, 2008 at 7:09 pm
Apr 17, 2008 at 12:06 pm -
hello! i'm wondering how one would implement the server side controller end of an application with ajax. i have the javascript on my client sending an xml file to a uri controller method but, how ...
Jennifer Ahn
Mar 10, 2008 at 4:37 pm
Mar 13, 2008 at 8:31 pm -
Hi Florian, Here is a small patch for Catalyst::View::Mason. When setting $c- stash- {template}, template_extension was not added to the component path. In my opinion this should always be added, so ...
David Jack Wange Olrik
Mar 6, 2008 at 10:11 pm
Mar 11, 2008 at 2:52 am -
The plugin decodes all parameters using: $_ = $c- encoding- decode( $_, $CHECK ) for ( ref($value) ? @{$value} : $value ); I'd think it would be wise to check to see if the string is already decoded: ...
Bill Moseley
Mar 18, 2008 at 5:24 am
Mar 22, 2008 at 4:15 pm -
We have a Catalyst app that I recently (about a month ago) converted from running under mod_fcgid to external under mod_fastcgi and it appears to be leaking memory. There are 2 application backends ...
Matt Pitts
Mar 19, 2008 at 7:32 pm
Apr 14, 2008 at 10:16 am -
Let's say I want to send people back and forth between an HTTP connection and an HTTPS connection on a server based on some action. For example, clicking on a "logout" button from within my ...
Dustin Suchter
Mar 26, 2008 at 8:11 pm
Apr 3, 2008 at 3:23 am -
Catalyst::Manual::FAQ looks like it was included in 5.5 and is seen at http://search.cpan.org/~sri/Catalyst-5.55/lib/Catalyst/Manual/FAQ.pod I discovered that 'call' is a reserved word for Catalyst ...
Russell Jurney
Mar 31, 2008 at 1:23 pm
Apr 6, 2008 at 9:00 pm -
Greetings, I'm writing a new web application, and have decided to jump into Catalyst (because I am smart.) One thing that Catalyst seems to do well is have a good mechanism for plugging in standard ...
Kirby Krueger
Mar 14, 2008 at 7:00 pm
Mar 18, 2008 at 5:56 am -
Hello list, Sorry, I already asked the same question a couple of days ago, but probably I was not clear enough. My problem is that if there is an exception at the entry point of an action chain, ...
Dami Laurent (PJ)
Mar 14, 2008 at 7:54 am
Mar 17, 2008 at 4:25 pm -
Hello! I've implemented $c- uri_redirect($path) as a shortcut to $c- res- redirect($c- uri_for($path)) and $c- uri_redirect_d($path) as $c- uri_redirect($path); $c- detach() I guess these shortcuts ...
Alex Povolotsky
Mar 20, 2008 at 10:17 am
Apr 6, 2008 at 6:20 pm -
Hi, I stumbled upon a feature of the Authentication Plugin today (Yes I was the guy who used Ash's cardboard cutout programmer service earlier today on #catalyst, so thanks again, Ash ;-) My ...
Jochen Luig
Mar 19, 2008 at 7:06 pm
Mar 19, 2008 at 8:53 pm -
Hi, I consider offering a push service for real-time data. It's AJAX based and requires a consistent connection. I'm not sure about the memory usage of this. I plan to run the catalyst app as fastcgi ...
Moritz Onken
Mar 5, 2008 at 5:23 pm
Mar 10, 2008 at 11:26 pm -
I just want to draw the attention or to ask, Why is the wiki so poorly maintained, the list of sites and projects using catalyst is really umimpressive, are those really all the project using ...
Ali M.
Mar 7, 2008 at 5:37 pm
Mar 8, 2008 at 8:08 pm -
Hello list, I'm able tu "use encoding utf8" in a normal Perl program to correctly match regexes like this : echo '?' | perl -e 'use encoding "utf8";print < =~ /\w/' (in an utf8 terminal), but how ...
Alexandre Jousset
Mar 2, 2008 at 1:08 pm
Mar 4, 2008 at 5:19 pm -
Hi Christopher, I'm wondering what the status of Meios is. I have found an svn version on handleframework.org and one other server, but the do not work for me out of the box even after all ...
Mojo Nichols
Mar 29, 2008 at 4:54 pm
Apr 3, 2008 at 8:59 pm -
Hello! Having completed UTF-8 quest successfully, I've tried to do I18N and found the same double-UTF-encoding trouble. I've put UTF-8 strings into I18N/ru.po file,and configured Plugin:I18N ...
Alex Povolotsky
Mar 24, 2008 at 7:07 am
Mar 26, 2008 at 6:23 am -
I am unable to get this package to work in Catalyst, despite it working outside of catalyst. I'm at a loss of where to go with it next. My output: mnichols@trillian:~/catalyst/test$ ...
Mojo Nichols
Mar 17, 2008 at 2:24 am
Mar 21, 2008 at 1:13 pm -
Hi, a coworker of mine just checked out a working copy of an existing project. When starting the app, he gets complains about Catalyst::Plugin::Authentication::Store::DBIx::Class not being installed. ...
Jochen Luig
Mar 18, 2008 at 5:39 pm
Mar 19, 2008 at 8:39 am -
Hello list, I've problems to set session expiry time per user. My goal is to have a default expiry time of "until you quit the browser" unless the user logs in and select a checkbox to have the site ...
Alexandre Jousset
Mar 14, 2008 at 11:33 am
Mar 14, 2008 at 4:07 pm -
Hi guys, The HTTP Authentication Header "Authorization" is absent from $c- req- headers when running under mod_fastcgi. In other words, under mod_fastcgi: ok(defined $c- req- header('authorization'), ...
Patrick Donelan
Mar 12, 2008 at 1:06 am
Mar 12, 2008 at 8:51 pm -
Is there anything attached to Catalyst similar to the CGI.pm module? That is, creating the HTML by a series of procedure calls rather than by instantiating a template? Or is there some way to link up ...
Martin Ellison
Mar 7, 2008 at 8:23 am
Mar 7, 2008 at 7:59 pm -
Is it expected that the application update the session every request to prevent expiry while a user is actively using the application? My assumption is I want to set $c- config- {session}{expires} to ...
Bill Moseley
Mar 1, 2008 at 3:55 pm
Mar 3, 2008 at 1:45 am -
Hi, I'm fairly new to Catalyst, so please excuse me if my questions are a bit... hmmm... basic. My app is using the authentication and authorization features as described in Jonathan Rockway's book. ...
Pierre Moret
Mar 23, 2008 at 4:52 pm
Mar 24, 2008 at 2:25 pm -
Hello! Do we have some way to automatically uri_unescape parameters passed to handlers? Alex.
Alex Povolotsky
Mar 17, 2008 at 2:43 pm
Mar 17, 2008 at 10:36 pm -
Hello! Maybe someone could provide the complete example of auth system with MODERN Catalyst::Plugin::Authentication? I mean, with database, Model and proper config. Right now, I've stopped by You ...
Alex Povolotsky
Mar 6, 2008 at 4:06 pm
Mar 7, 2008 at 6:54 am -
This may be more of a DBIx::Class issue - if so, apologies - however I think it come down to my lack of understanding of exactly what Catalyst is doing when it loads DBIx::Class modules hence why ...
Ian Sillitoe
Mar 18, 2008 at 7:40 pm
Apr 6, 2008 at 6:04 pm -
Hi, I use session to store output between calls and have some serious problem with this. I still fairly new to Catalyst. I have the following defined use Catalyst qw/-Debug ConfigLoader ...
Peter Sørensen
Mar 31, 2008 at 8:07 am
Apr 1, 2008 at 2:27 pm -
hello! i'm tyring to call my external javascript library under myapp/root/src/myjavascript.js in my tt2 file by placing this line at the top of the tt2 file: <script language="Javascript" ...
Jennifer Ahn
Mar 24, 2008 at 9:43 pm
Mar 24, 2008 at 11:15 pm -
If yes how? I just recently started using the Strawberry Perl distribution, so I am new to CPAN too! I tried "Catalyst::Manual" and "Catalayst-Manual" but I get --------------------- ... Warning: ...
Ali M.
Mar 16, 2008 at 10:55 am
Mar 17, 2008 at 11:17 am -
This made it's way across reddit this morning... Nice chart. http://thoughtpad.net/alan-dean/http-headers-status.gif A non-text attachment was scrubbed... Name: signature.asc Type: ...
Christopher H. Laco
Mar 11, 2008 at 5:33 pm
Mar 13, 2008 at 10:00 am -
"The organizers of Flourish (http://www.flourishconf.com) are of course looking for attendees for their conference, but they are also looking for something else... top-notch Perl web developers. They ...
Joshua McAdams
Mar 6, 2008 at 4:37 am
Mar 11, 2008 at 5:19 pm -
Hi, I've been using Catalyst for a project and decided to make some base controllers for common functionality. So far I've made two: CRUD, and List, for standard database operations and for sortable, ...
Byron Young
Mar 5, 2008 at 7:36 am
Mar 6, 2008 at 9:40 pm -
I'm using shared hosting for several Cat deployments. This means I can't do nice Location/Apache tricks or lighttpd or modperl. I am running fastcgi but I have to deploy it with nothing but ...
Ashley Pond V
Mar 30, 2008 at 7:27 am
Apr 6, 2008 at 9:41 pm -
Interesting claim that Django is about to hit a tipping point. Author compares against Rails with a variety of somewhat finger-in-the-wind metrics like IRC and Groups subscription and message ...
Paul Makepeace
Mar 24, 2008 at 12:48 am
Mar 25, 2008 at 11:05 pm -
I'm currently using password authentication in a Catalyst app, but would like to implement a way to log in as a particular user, without knowing the password. (Please don't respond with "don't do ...
Jim Spath
Mar 11, 2008 at 6:31 pm
Mar 11, 2008 at 6:58 pm -
Hopefully there is a quick and obvious answer to the following - if so, apologies for the length of this email. Apologies in advance also if this is considered off-topic and/or covered in previous ...
Ian Sillitoe
Mar 4, 2008 at 7:35 pm
Mar 9, 2008 at 7:13 pm -
Hi, I have a variable in a Controller method sent to the stash for a particular tt file. What if I want that same variable to be available to another tt file? I assume I cannot set two templates in ...
Emily Heureux
Mar 6, 2008 at 10:36 pm
Mar 7, 2008 at 6:14 pm -
Hi, I installed Catalyst and other additional modules. When starting myapp_fastcgi.pl I got the message: Can't locate Catalyst/Plugin/Authentication/Store/DBIx/Class in @INC. Actually I had to ...
Rahed
Mar 4, 2008 at 3:01 pm
Mar 6, 2008 at 1:00 pm -
Hi, I am trying to build some url from TT using uri_for sub but I encounter some problem with it. When in my tt I have : [%- ourl = Catalyst.uri_for('/search?stype=seqid&query=') -%] when I click on ...
Emmanuel Quevillon
Mar 5, 2008 at 9:50 am
Mar 5, 2008 at 8:32 pm -
hello! Could someone share how they configured their httpd.conf file where they integrated their catalyst application with an existing the apache web server? thanks so much! jennifer
Jennifer Ahn
Mar 4, 2008 at 10:20 pm
Mar 5, 2008 at 2:31 pm -
Hello! I'm running several instances of Catalyst app (for every developer and production) on the same box; I'm thinking of automatically patch database name loaded from config file to allow separate ...
Alex Povolotsky
Mar 24, 2008 at 10:58 am
Apr 6, 2008 at 8:20 pm -
Oh yeah, [a user question, so I?m taking this over to the other list] * Aristotle Pagaltzis [2008-03-11 03:59]: the reason I used ::SubRequest in my case is because I cannot see any easy way to ...
Aristotle Pagaltzis
Mar 11, 2008 at 3:26 am
Mar 22, 2008 at 3:20 am -
I've been playing with jrockway's Jemplate example and when I create the view using script/myapp_create.pl view Jemplate the app will no longer render the TT view. It seems to overwrite template ...
Stephen Sykes
Mar 21, 2008 at 9:29 pm
Mar 21, 2008 at 10:07 pm -
I'm trying to add some ACLs to Parley. I want to restrict access to "role1 or role2 or role3" Reading Catalyst::Manual::Tutorial::Authorization: # third statement __PACKAGE__- deny_access_unless( ...
Chisel Wright
Mar 20, 2008 at 10:11 am
Mar 20, 2008 at 10:25 pm -
Hiya all, I was playing around the other day when I tried to create a simple controller with out using the Catalyst.pl helper script. It wasn't loaded when I restarted my devel server, so I figured ...
Devin Austin
Mar 20, 2008 at 7:12 pm
Mar 20, 2008 at 10:17 pm -
Hi, I've visited http://developer.yahoo.com/ and in the list "Developer central" I've seen only Java, .net, Python, Ruby, PHP, Cold Fusion and others, but no Perl. Do you have any idea why? Octavian
Octavian Rasnita
Mar 18, 2008 at 12:13 pm
Mar 19, 2008 at 11:20 am -
sub test_body : Local { my ($self, $c) = @_; $c- res- body(*STDOUT); print "a\n"; print "b\n"; } I get: a b HTTP/1.0 200 OK Cache-Control: no-cache, must-revalidate, max-age=0 Connection: keep-alive ...
Fayland Lam
Mar 14, 2008 at 3:04 am
Mar 14, 2008 at 12:23 pm -
With my current configuration, when serving static files (like images for my site layout etc.), every request will load session data. (an older post at: ...
Matt Knesi
Mar 8, 2008 at 1:47 am
Mar 11, 2008 at 2:31 am -
I have a method triggered by clicking a submit button on my web application that runs in the background(I enabled multi-threading on my Catalyst app) that takes a little bit of time to perform and ...
Chris Czub
Mar 10, 2008 at 2:31 pm
Mar 10, 2008 at 6:47 pm -
Hello! I've made a simple many-to-many relationship for user/roles authentication, and suddenly found that my $model = $c- model('Pwuser')- search()- all(); my $roles = $c- model('Role')- search()- ...
Alex Povolotsky
Mar 6, 2008 at 11:12 am
Mar 6, 2008 at 11:41 am
Group Overview
group | catalyst |
categories | catalyst, perl |
discussions | 87 |
posts | 494 |
users | 120 |
website | catalystframework.org |
irc | #catalyst |
120 users for March 2008
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)