Re: [Catalyst] Catalyst Hosting

2007-08-10 Thread Danny Warren
Michele Beltrame wrote: Hello! I have a couple of slices at SliceHost, which seems very good to me (and support is just fine!). OK, they're Rails coders, but they do well... ;-) Michele. Another vote for SliceHost here, been with them for a while now and more satisfied than I have ever been

Re: [Catalyst] Re: Catalyst videos from YAPC::Asia

2007-04-26 Thread Danny Warren
A. Pagaltzis wrote: * Danny Warren <[EMAIL PROTECTED]> [2007-04-26 11:25]: A. Pagaltzis wrote: * Danny Warren <[EMAIL PROTECTED]> [2007-04-26 04:45]: Quick question: at around 15 minutes in (while discussing TT) you mentioned the ability to set html scrubbing at a global level, an

Re: [Catalyst] Re: Catalyst videos from YAPC::Asia

2007-04-26 Thread Danny Warren
A. Pagaltzis wrote: * Danny Warren <[EMAIL PROTECTED]> [2007-04-26 04:45]: Quick question: at around 15 minutes in (while discussing TT) you mentioned the ability to set html scrubbing at a global level, and that there is something on CPAN to assist with this. I am interested in seein

Re: [Catalyst] Catalyst videos from YAPC::Asia

2007-04-25 Thread Danny Warren
Jonathan Rockway wrote: Hi all, I presented a Catalyst talk at YAPC::Asia a few weeks ago. If you're familiar with the basics of Catalyst, it's probably too introductory, but if you're still trying to piece everything together you might find it enjoyable. You can watch / download the video

Re: [Catalyst] update record with unique ID

2007-04-09 Thread Danny Warren
Michael Higgins wrote: Right. I want to update the record as defined by that primary key. I guess I found the answer: ->update_or_create({ Seems to do the trick, checking for unique and updating with other values posted. Too easy, as usual. ;-) Cheers, Ignore my response as well then...

Re: [Catalyst] update record with unique ID

2007-04-09 Thread Danny Warren
Christopher H. Laco wrote: Michael Higgins wrote: Hello, Cat-list-ers, Here's a pared-down version of my question, hoping it's an easy one: ERROR: "DBIx::Class::ResultSet::update(): Error executing 'UPDATE ... Duplicate entry '140949' for key 1 at QUESTION: How do we specify UPDATE ... blah

Re: [Catalyst] Generate dynamic list

2007-04-08 Thread Danny Warren
. More info: http://www.prototypejs.org/ http://wiki.script.aculo.us/scriptaculous/show/Prototype Danny Warren Cookie wrote: Sorry for interruption.My requirement is: I have two drop list A and B and two tables A and B in my dababase. When the page vistited,A shows the option from select name fr

Re: [Catalyst] How to make chained actions nice?

2007-04-07 Thread Danny Warren
esponds to /object/[OBJ_ID]/property/[PROP_ID]/edit sub edit : Chained('property') Args(0) { ... } Hope that helps! Danny Warren Oleg Pronin wrote: Greetings. I've got some kind of problem using chained actions. There are some objects. Each object has a number of properties

Re: [Catalyst] Questions about chained actions, endpoints, etc.

2007-03-21 Thread Danny Warren
ods not uri paths" thing, it starts to make a lot more sense and feels natural. Hope all this was interesting to *somebody* ;) Danny Warren Doran L. Barton wrote: Danny, Thanks for your reply. I finally had that epiphany right before your message came through. The part I was not understan

Re: [Catalyst] Questions about chained actions, endpoints, etc.

2007-03-21 Thread Danny Warren
27; attribute refers to the 'CaptureArgs' method we want to chain off of, and has nothing to do with the URI path. Danny Warren Danny Warren wrote: This is the same layout I have for my chained actions, and I went through the same "huh?" phase as well. You seem to be on th

Re: [Catalyst] Questions about chained actions, endpoints, etc.

2007-03-21 Thread Danny Warren
ds to /admin/99 sub view : PathPart('') Chained('get_book') Args(0) { ... } # Chain endpoint for editing book, responds to /admin/99/edit sub edit : Chained('get_book') Args(0) { ... } # Chain endpoint for deleting book, responds to /admin/99/delete sub delete : Cha

[Catalyst] RFC - Catalyst::Controller::FormBuilder::MultiForm

2007-02-25 Thread Danny Warren
Hey all! This is the module that I wrote (with Juan Camacho's help) in response to my last thread about multiple forms with FormBuilder... http://www.gossamer-threads.com/lists/catalyst/users/12499#12499 With this, you can refer to one or more form objects in your template by form name. Si

Re: [Catalyst] Dreamhost for Catalyst

2007-02-15 Thread Danny Warren
lamda" server, if you want to make sure you get all the same stuff I have, not sure if they are putting new customers on that box) Danny Toby Corkindale wrote: Danny Warren wrote: Here is the part where you get flooded with host recommendations from everyone! I use these guys: h

Re: [Catalyst] Dreamhost for Catalyst

2007-02-15 Thread Danny Warren
I was on the "small" ($5/mo) shared hosting plan for the longest time, but now I am hosting a bunch of stuff for other people on there as well with the "large" ($20/mo) plan. http://asmallorange.com/services/hosting/ Danny Kieren Diment wrote: On 15/02/07, Danny Warr

Re: [Catalyst] Dreamhost for Catalyst

2007-02-14 Thread Danny Warren
I was responding to the original poster and not anything you said, but I can see how it could seem that way (since I used the term "virtual host" incorrectly). I was referring more to hosting providers that use apache virtual hosts to serve your content. I should have said "shared hosting", a

Re: [Catalyst] Dreamhost for Catalyst

2007-02-14 Thread Danny Warren
I think most virtual hosts wouldn't support persistent connections or mod_perl, just because it goes against the basic way that virtual hosts are set up (needing access to the apache config itself, unique instance, etc). Here is the part where you get flooded with host recommendations from ev

Re: [Catalyst] C::C::FormBuilder - Forwarding to another action overwrites data from the calling action

2007-02-14 Thread Danny Warren
Yep, that sequence of events is exactly what I am seeing. Hooray, I am not crazy! (well, on this one thing...) One way I was thinking of getting around this was to do the same thing you suggested with the template vars for the $controller->_formbuilder data - create named aliases (at step 1

Re: [Catalyst] C::C::FormBuilder - Forwarding to another action overwrites data from the calling action

2007-02-14 Thread Danny Warren
Sorry again if this confusing or long-winded. I have just been pulling my hair out on this one, and I don't think I know the guts of catalyst well enough yet to properly debug and explain what I am seeing. Thank you again for your time! Danny Juan Camacho wrote: On 2/12/07, Danny War

Re: [Catalyst] More than one form per page with C::C::FormBuilder?

2007-02-14 Thread Danny Warren
By the time the message arrived on the list it was back up... ;) Matt S Trout wrote: On 12 Feb 2007, at 21:49, Danny Warren wrote: Thank you Juan! This is along the lines of what I am looking for, and gives me a good place to start from. I will play around with this today and get back to

Re: [Catalyst] C::C::FormBuilder - Forwarding to another action overwrites data from the calling action

2007-02-12 Thread Danny Warren
reading the docs, I was under the impression that two actions should not clobber each other upon forwarding (since forwarded actions are processed inside an eval). Thanks again! Danny Juan Camacho wrote: On 2/11/07, Danny Warren <[EMAIL PROTECTED]> wrote: Hey all! I am trying to figure ou

Re: [Catalyst] More than one form per page with C::C::FormBuilder?

2007-02-12 Thread Danny Warren
other posts in the archive has been quite helpful. Danny Juan Camacho wrote: On 2/11/07, Danny Warren <[EMAIL PROTECTED]> wrote: Hey all! I am trying to figure out the most elegant way to build/include multiple forms in one page using Catalyst::Controller::FormBuilder. I'm in a bit of

Re: [Catalyst] More than one form per page with C::C::FormBuilder?

2007-02-12 Thread Danny Warren
. Thanks! Danny Robert 'phaylon' Sedlacek wrote: Danny Warren wrote: What I end up with when viewing the "foo" action page is two "foo_search" forms. I understand why this happening, from an internals standpoint, but I am not sure how to get around it without ugly hackin

[Catalyst] More than one form per page with C::C::FormBuilder?

2007-02-11 Thread Danny Warren
Hey all! I am trying to figure out the most elegant way to build/include multiple forms in one page using Catalyst::Controller::FormBuilder. Right now I am doing it as follows... In my controller: sub foo : Local Form { my ( $self, $c ) = @_; # Form that actually belongs to "foo