RE: [Catalyst] displaying email addresses

2007-06-28 Thread Marc Logghe
Do you know if there are any Catalyst plugins, or TT filters, or perl modules that can find all the email addresses in a text and convert them into a Javascript code that prints that email address (possibly as a link)? Don't know about plugins or something. But I guess you can easily

RE: [Catalyst] Session problems with IE and cookies - workaround

2007-03-30 Thread Marc Logghe
Hey Dmitry ! Calling $c-reset_session_expires did the trick indeed ! Now authentication works both for IE and Opera. Thanks a million. Regards, Marc -Original Message- From: Dmitry [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 5:51 PM To: catalyst@lists.rawmode.org

RE: [Catalyst] Session problems with IE and cookies

2007-02-28 Thread Marc Logghe
-Original Message- From: Thomas Hartman [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 12:09 PM To: The elegant MVC web framework Subject: Re: [Catalyst] Session problems with IE and cookies Don't really understand the root of the problem, but I asked about this

RE: [Catalyst] C::C::FormBuilder question

2007-01-31 Thread Marc Logghe
-Original Message- From: Juan Camacho [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 30, 2007 6:22 PM To: The elegant MVC web framework Subject: Re: [Catalyst] C::C::FormBuilder question On 1/29/07, Marc Logghe [EMAIL PROTECTED] wrote: Actually, the docs give a TT example

[Catalyst] C::C::FormBuilder question

2007-01-29 Thread Marc Logghe
Hi all, I am lost. In my conf I have: # configuration of FormBuilder Controller::FormBuilder: method_name: form template_type: Mason stash_name: form obj_name: fb form_suffix: fb attr_name: Form form_path: __path_to(forms)__ In the mason template: % $form-render %

RE: [Catalyst] C::C::FormBuilder question

2007-01-29 Thread Marc Logghe
Couldn't render component /moe/mol_3D_conv_form - error was Can't call method render on an undefined value ... According to the docs, you need to call render on the package: % FormBuilder-render % Actually, the docs give a TT example: [% FormBuilder.render %] And therefore in TT it

RE: [Catalyst] Getting the result of the template processing

2007-01-03 Thread Marc Logghe
-Original Message- From: Xavier Robin [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 10:46 AM To: catalyst@lists.rawmode.org Subject: [Catalyst] Getting the result of the template processing Hello all, How to get the result of the processing of a template ? I

RE: [Catalyst] redirection to the original URI

2006-12-30 Thread Marc Logghe
-Oorspronkelijk bericht- Van: Octavian Rasnita [mailto:[EMAIL PROTECTED] Verzonden: za 30-12-2006 11:38 Aan: catalyst@lists.rawmode.org Onderwerp: [Catalyst] redirection to the original URI Hi, If the user wants to access a restricted zone and it is redirected to the login page,

RE: [Catalyst] debugging the login

2006-12-28 Thread Marc Logghe
From: Hermida, Leandro [EMAIL PROTECTED] Are you using IE? Run your test server with the -k switch (i.e. script/myapp_server.pl -k). You can read in previous Catalyst threads that IE has a cookie setting problem and won't login properly if you don't enable keep-alive

RE: [Catalyst] IE Cookie problems

2006-12-19 Thread Marc Logghe
From: vb [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 19, 2006 6:40 AM To: The elegant MVC web framework Subject: Re: [Catalyst] IE Cookie problems I have them same problem.

[Catalyst] Mason configuration in YAML

2006-12-07 Thread Marc Logghe
Hi there, I am struggling with the configuration of the Mason view in YAML. I have this: View::Mason: comp_root: __path_to(mason/root)__ data_dir: __path_to(mason/data)__ But as it seems, it is never taken into account. I have also tried forcing an array ref, whithout any succes: View::Mason:

[Catalyst] IE cookie problems - the sequel

2006-11-17 Thread Marc Logghe
Hi all, It looks like I have the same problem as described in this thread: http://thread.gmane.org/gmane.comp.web.catalyst.general/7293/focus=7293. Authentication works fine in firefox, not in IE. And it all has to do with the session cookie. At least I think so. As it seems, when logging out

[Catalyst] Dispatching question: same path but different args attributes

2006-10-17 Thread Marc Logghe
Hi all, It seems that you cannot do something like (in 'controller1'): action1 :Path('action') :Args(0) { .. } action2 :Path('action') :Args(1) { .. } In my hands, there is no match for a request for '/controller1/action/blah' (handled by default). A request for /controller1/ triggers action1

Re: [Catalyst] Dispatching question: same path but different args attributes

2006-10-17 Thread Marc Logghe
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt S Trout Sent: Tuesday, October 17, 2006 10:20 AM To: The elegant MVC web framework Subject: Re: [Catalyst] Dispatching question: same path but different args attributes Marc Logghe wrote

Re: [Catalyst] Best place to set environment variables

2006-10-12 Thread Marc Logghe
This is awesome ! Exactly what I needed. Nice plugin indeed. Enjoying it already ! Thanks a million. Cheers, Marc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Rockway Sent: Thursday, October 12, 2006 8:40 AM To: The elegant MVC web

Re: [Catalyst] problem deploying with apache: templates not found

2006-10-12 Thread Marc Logghe
IthinkIamgettingcrazyhere. I traced it down to Template::Provider::_fetch_path. Some extra debug statements give this in the logs: In apache (user apache): [Template::Provider] fetching search.tt2[Template::Provider] _fetch_path(search.tt2)[Template::Provider] searching path:

Re: [Catalyst] problem deploying with apache: templates not found

2006-10-12 Thread Marc Logghe
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andreas MarienborgSent: Thursday, October 12, 2006 11:15 AMTo: The elegant MVC web frameworkSubject: Re: [Catalyst] problem deploying with apache: templates not found Could it be a permission issue? does

Re: [Catalyst] problem deploying with apache: templates not found

2006-10-11 Thread Marc Logghe
Shouldn't that be /home/marcl/catalyst/posedb/root/search.tt2 Also the dump before referred to a different path with myapp not posedb dirs = [, home, marcl, catalyst, myapp, root], Yeah, sure, thanks for keeping heads up. I just wanted to make the example more 'generic' ...