[Catalyst] Re: [Perl Plat_Form] Geneva team confirmed for the plat_form contest

2006-11-29 Thread Alvar Freude
Hi! -- Dami Laurent (PJ) [EMAIL PROTECTED] wrote: This is to confirm that I have the agreement of my organization for submitting a Geneva team for the plat_form contest (http://www.plat-forms.org/). did you sent it to the address given on the website? (I'm on the train without (W)LAN and

Re: [Catalyst] Catalyst and UTF-8

2006-11-29 Thread Renan Valente Rangel
It work putting the on_connect_do and SET NAMES 'utf8' and SET CHARACTER SET 'utf8'. Thanks to Jon, Maoa and Bradom. I noticed that if I am using the UTF8Columns in a Result Class, this will not work and the data will still be iso-8859-1. I need to remove UTF8Columns to work. Thanks -- Renan

RE: [Catalyst] Re: How are you handling multiformat URL

2006-11-29 Thread Alan Humphrey
because IE chokes on XML (but insists that you send it XML anyway... Is this still true with IE7? Yes, IE6 will be around for a while, but is there any hope on the horizon vis-à-vis IE? - Alan -Original Message- From: Jonathan Rockway [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: [Catalyst] Re: How are you handling multiformat URL

2006-11-29 Thread Jonathan Rockway
John Napiorkowski wrote: Also there are really stupid user agents that need the extension. For example I have an application that embeds some flash video. Now this uses the video component that is part of flash 8 or something and it seems to absolutely require that the file name of the

Re: [Catalyst] Re: How are you handling multiformat URL

2006-11-29 Thread Jonathan Rockway
Alan Humphrey wrote: Is this still true with IE7? Yes, IE6 will be around for a while, but is there any hope on the horizon vis-à-vis IE? IE7 still chokes. According to the IE blog, MS want[s] xhtml to succeed so they're not supporting it in IE. What? (Their reasoning is that they can't

Re: [Catalyst] Re: How are you handling multiformat URL

2006-11-29 Thread Christopher H. Laco
Jonathan Rockway wrote: [snip] That attitude is why Microsoft is becoming less relevant every day. In another 30-50 years we might have some standards that are actually implemented properly. In another 30-50 years, we may have a jrockway that's actually implemented properly. :-) -=Chris

Re: [Catalyst] Re: How are you handling multiformat URL

2006-11-29 Thread John Napiorkowski
--- A. Pagaltzis [EMAIL PROTECTED] wrote: * John Napiorkowski [EMAIL PROTECTED] [2006-11-29 00:05]: I often find that the resource of a given URI can have alternative formats. For example, I might have a table of information on an html webpage and I want to offer two alternative

Re: [Catalyst] AJAX best practices, maximum availability

2006-11-29 Thread Drew Taylor
On 11/21/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 11/21/06, Chisel Wright [EMAIL PROTECTED] wrote: Have you anything that deomstrates this and is publically viewable? I know I'd be interested in see how this all gels together in real-life. I'm with Chisel on this... if it's not

Re: [Catalyst] use MyApp without console output in script?

2006-11-29 Thread Jonathan Rockway
use MyApp; in a script, is there a way to stop all the usual console out that happens ? export CATALYST_DEBUG=0 ? The problem is that the mere act of require()-ing MyApp calls MyApp-setup, which unleashes a whole sequence of events that you may or may not want. I guess my question for you

Re: [Catalyst] use MyApp without console output in script?

2006-11-29 Thread Matt S Trout
Daniel McBrearty wrote: Hi if I use MyApp; in a script, is there a way to stop all the usual console out that happens ? Take -Debug out of the use line and enable it selectively like a sane person. ___ List: Catalyst@lists.rawmode.org Listinfo:

Re: [Catalyst] use MyApp without console output in script?

2006-11-29 Thread Daniel McBrearty
ahhh ... yes. silly me. (it was only the sane bit that was hard to do ... ;) On 11/29/06, Matt S Trout [EMAIL PROTECTED] wrote: Daniel McBrearty wrote: Hi if I use MyApp; in a script, is there a way to stop all the usual console out that happens ? Take -Debug out of the use line and

[Catalyst] Chaining?

2006-11-29 Thread Alex Howarth
Hi, My code needs to create a story and then associate an image with it and then return to a list of all stories. The process is: Create Story - Search for media and relate - display story list I have Controller::Story::create Controller::Story::create_do and