Re: [Catalyst] So, what do we want in the -next- book?

2008-03-11 Thread Matt Rosin
FWIW, I am very much for both free and commercial docs. The more docs of both types the better. I would prefer that experts loved by the community be given incentives to do both. Books are nice, but I would probably prefer purchasing just the digital version of a book right now. No shipping or

Re: [Catalyst] Catalyst @ Flourish Conference

2008-03-11 Thread Jonathan Rockway
* On Mon, Mar 10 2008, Matt S Trout wrote: But that looks like fun - any and all contribs should apply :) I should mention that this is an ultra-small-time conference. I estimate that there will be about 20 people there, including the organizers and speakers ;) (Incidentally, this is run by

[Catalyst] Template Toolkit: Filter-PDF+Asian Characters(Japanese)

2008-03-11 Thread sindharta_tanuwijaya
Hi, I have been looking for ways to display/download one of my pages (templates) as a PDF file and perhaps one of the easiest ways is by using the pdf filter function from Template Toolkit. [%- USE Latex(format='pdf') - %] [%- FILTER latex -%] bla bla english good! some Japanese here wrong !

Re: [Catalyst] implementing ajax

2008-03-11 Thread luke saunders
On Mon, Mar 10, 2008 at 4:37 PM, Jennifer Ahn [EMAIL PROTECTED] wrote: 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 does the controller

Re: [Catalyst] Catalyst @ Flourish Conference

2008-03-11 Thread me
Tue, 11 Mar 2008 03:17:29 -0500 Jonathan Rockway [EMAIL PROTECTED] wrote: (Incidentally, this is run by people I went to school that *still haven't graduated* even though they started wayyy before me. It's sad.) Time for the I have never let my schooling interfere with my education. quote

Re: [Catalyst] Catalyst @ Flourish Conference

2008-03-11 Thread Jonathan Rockway
* On Tue, Mar 11 2008, me wrote: Tue, 11 Mar 2008 03:17:29 -0500 Jonathan Rockway [EMAIL PROTECTED] wrote: (Incidentally, this is run by people I went to school that *still haven't graduated* even though they started wayyy before me. It's sad.) Time for the I have never let my schooling

[Catalyst] exceptions and chained actions

2008-03-11 Thread Dami Laurent (PJ)
Hi Catalysters, It seems that if an exception is raised in the entry point to an action chain, Catalyst still tries to forward to the other chain components, accumulating all exceptions into $c-errors. Is there a way to stop the chain at the first exception ? Thanks in advance, Laurent

Re: [Catalyst] exceptions and chained actions

2008-03-11 Thread Jonas Alves
On Tue, Mar 11, 2008 at 4:12 PM, Dami Laurent (PJ) [EMAIL PROTECTED] wrote: Hi Catalysters, It seems that if an exception is raised in the entry point to an action chain, Catalyst still tries to forward to the other chain components, accumulating all exceptions into $c-errors. Is there a

Re: [Catalyst] Catalyst @ Flourish Conference

2008-03-11 Thread Joshua McAdams
I should mention that this is an ultra-small-time conference. I estimate that there will be about 20 people there, including the organizers and speakers ;) I would agree that it's small-time as in it's not OSCON; however, from what I understand, the attendance is in the 400-500 range,

[Catalyst] bypassing password authentication

2008-03-11 Thread Jim Spath
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 this... I'm aware of the security ramifications of this kind of functionality). I'll already have

[Catalyst] Adding another Model/*.pm file

2008-03-11 Thread Emily Heureux
I'm not sure which list this next problem should go to, but my subscription is not approved yet on DBIx::Class... I have two files in Model, because I want to add another DB connection: Model/PlayDB.pm and Model/PMAPDB.pm. The PlayDB.pm works and connects to a different db that I want to

Re: [Catalyst] bypassing password authentication

2008-03-11 Thread Ash Berlin
On 11 Mar 2008, at 18:33, Jim Spath wrote: 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 this... I'm aware of the security ramifications of

Re: [Catalyst] bypassing password authentication

2008-03-11 Thread Jay K
tsk tsk. Using internal methods. ;-) There's actually a much easier way to do this. Step 1: Create a duplicate realm to your normal realm. Call it 'passwordless' or something. Only instead of password_type = 'crypted' or whatever - set password_type = 'none'. Step 2: use the

RE: [Catalyst] implementing ajax

2008-03-11 Thread Mesdaq, Ali
Jennifer, Are you sure you want to stick with this route? Looks like your going to make a lot of work for yourself. I would hate to see the js code to make xml. Use the js code to just post the values you want read those values in with something like $c-request-params-{whatever} in your

Re: [Catalyst] implementing ajax

2008-03-11 Thread Jennifer Ahn
Hi Ali Thanks for your suggestions. I was a little reluctant to explor JSON because I didn't find the cpan documentation or catalyst book being sufficient. Being that this application is my first with catalyst, I wanted to tackle one thing at time. Catalyst first, then all the plug in

Re: [Catalyst] implementing ajax

2008-03-11 Thread Chisel Wright
On Tue, Mar 11, 2008 at 02:27:47PM -0700, Jennifer Ahn wrote: Hi Ali Thanks for your suggestions. I was a little reluctant to explor JSON because I didn't find the cpan documentation or catalyst book being sufficient. Being that this application is my first with catalyst, I wanted to

RE: [Catalyst] implementing ajax

2008-03-11 Thread Mesdaq, Ali
As I said I use mochikit which is very lightweight and makes ajax and pretty much everything in javascript very easy but doesnt modify things like other libraries. This js code is assuming you have two drop down elements with an id of 'drop_make' and another one with 'drop_year'. initMake needs

[Catalyst] Authorization header absent under mod_fcgi

2008-03-11 Thread Patrick Donelan
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'), 'HTTP Authorization Header')... fails Whereas the above test passes under mod_perl. I've done some

Re: [Catalyst] Http Status Chart

2008-03-11 Thread Evan Carroll
I always preferred digg with its posts of thought provoking cats and top ten teenage racks. With that said what is the diff between unauthorized and forbidden. On 3/11/08, Christopher H. Laco [EMAIL PROTECTED] wrote: This made it's way across reddit this morning... Nice chart. -- Evan Carroll

Re: [Catalyst] Http Status Chart

2008-03-11 Thread Andrew Rodland
On Tuesday 11 March 2008 10:52:55 pm Evan Carroll wrote: On 3/11/08, Christopher H. Laco [EMAIL PROTECTED] wrote: This made it's way across reddit this morning... Nice chart. I always preferred digg with its posts of thought provoking cats and top ten teenage racks. With that said what is

Re: [Catalyst] implementing ajax

2008-03-11 Thread Octavian Rasnita
From: Mesdaq, Ali [EMAIL PROTECTED] If you want I can maybe create something on the wiki on how to use mochikit for the js part of it and catalyst for the controller part of it. Maybe its a good advent calendar article anyone think it would be good? Very good! Thanks. Octavian