RE: [Catalyst] TT and UNICODE: Garbled special characters

2007-09-06 Thread Hartmaier Alexander
I couldn't find it yesterday when I did a quick search for it. Maybe you should mail Juerd. -Alex -Original Message- From: Daniel McBrearty [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 05, 2007 10:40 PM To: The elegant MVC web framework Subject: Re: [Catalyst] TT and UNICODE:

RE: [Catalyst] TT and UNICODE: Garbled special characters

2007-09-05 Thread Hartmaier Alexander
Hi! This talk was great: http://vienna.yapceurope.org/ye2007/talk/552 Check out the slides of his talk. -Alex -Original Message- From: Matt Rosin [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 05, 2007 3:15 PM To: The elegant MVC web framework Subject: Re: [Catalyst] TT and

RE: [Catalyst] Re: Catalyst::Plugin::DBIC::QueryLog

2007-09-03 Thread Hartmaier Alexander
Hi! It seems you missed a dependency in your Makefile.PL: Sort::Key -Alex -Original Message- From: Fayland Lam [mailto:[EMAIL PROTECTED] Sent: Monday, September 03, 2007 12:26 AM To: catalyst@lists.rawmode.org Subject: [Catalyst] Re: Catalyst::Plugin::DBIC::QueryLog Cory Watson

RE: [Catalyst] CMS

2007-08-24 Thread Hartmaier Alexander
I installed WebGUI over a year ago for a friend who runs a tattoo shop and I wasn’t satisfied with neither the installation nor the use of it. Before the site got live it was replaced by another CMS, dunno which one. -Alex From: John Wang [mailto:[EMAIL PROTECTED] Sent: Thursday, August

RE: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Hartmaier Alexander
So TheSchwartz may be a good module to queue mails by a Catalyst app for sending them by let’s say a perl script run by cron (or running all the time)?! At the moment I’m sending the mails directly from my Cat app (SMTP to localhost mail daemon) which works flawless (as long as the local MTA

RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Hartmaier Alexander
Database table? -Alex -Original Message- From: Jesper Krogh [mailto:[EMAIL PROTECTED] Sent: Thursday, August 23, 2007 3:44 PM To: [EMAIL PROTECTED]; catalyst@lists.rawmode.org@shrek.krogh.cc Subject: [Catalyst] A Perl Message Queue? Hi. This is quite off-topic related to

RE: [Catalyst] Issue with JSON view

2007-08-09 Thread Hartmaier Alexander
I'll just do this at the end of my controller method: $c-forward('My::App::View::JSON'); - Alex -Original Message- From: Tatsuhiko Miyagawa [mailto:[EMAIL PROTECTED] Sent: Thursday, August 09, 2007 3:07 AM To: The elegant MVC web framework Subject: Re: [Catalyst] Issue with JSON

RE: [Catalyst] Ajax

2007-08-03 Thread Hartmaier Alexander
Hi Octavian! They all have nothing to do with either the template language or the web framework. I started using Dojo for some nice fading effects and a date selector and imho the docs are ok. -abraxxa -Original Message- From: Octavian Rasnita [mailto:[EMAIL PROTECTED] Sent:

RE: [Catalyst] Maintenance release: C::P::Authentication

2007-07-23 Thread Hartmaier Alexander
Hi JayK! Works for me, but why do I have to use id instead of username for the LDAP store? -Alex -Original Message- From: Jay K [mailto:[EMAIL PROTECTED] Sent: Sunday, July 22, 2007 5:13 AM To: The elegant MVC web framework; Development of the elegant MVC web framework Subject:

RE: [Catalyst] question about sharing models with differentapplications/hosts

2007-07-20 Thread Hartmaier Alexander
Hi Barry! I have a MyApp::Model::DBIC module I use in every app which needs it. At the beginning I extended it with table/resultset methods I need in my various apps, but now I only put those in the model which are shared and subclass classes which need more functionality in the apps. -Alex

RE: [Catalyst] Re: [Catalyst-dev] Announce:Catalyst::Plugin::Authentication 0.10000 Released

2007-07-17 Thread Hartmaier Alexander
The Makefile.PL is missing a requirement for Module::Install! -Alex -Original Message- From: Yuval Kogman [mailto:[EMAIL PROTECTED] Sent: Thursday, July 12, 2007 1:53 PM To: Development of the elegant MVC web framework Cc: The elegant MVC web framework Subject: [Catalyst] Re:

RE: [Catalyst] sharefiles on /tmp

2007-06-21 Thread Hartmaier Alexander
Why not define the name of the files, so the same is used again after a restart? For example in my (yaml) conf file: cache: expires: 3600 storage: /tmp/my-app_fastmmap_cache session: # expire after 8 hours expires: 28800 storage: /tmp/my-app_fastmmap_session

[Catalyst] Catalyst::Engine::Apache 1.10 broken for mod_perl2

2007-05-18 Thread Hartmaier Alexander
Hi! The ‚use mod_perl;‘ breaks it for mod_perl2 installations. The Catalyst applications still work under apache2 with mod_perl2 (because MP20.pm is loaded) but Module::Install can’t find the installed Catalyst::Engine::Apache version because it doesn’t load. -Alex smime.p7s

RE: [Catalyst] C:P:Session::Store::FastMmap

2007-05-08 Thread Hartmaier Alexander
As far as I picked up, FastMmap is not available on Windows. -Alex -Original Message- From: Octavian Rasnita [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 6:48 PM To: catalyst@lists.rawmode.org Subject: [Catalyst] C:P:Session::Store::FastMmap Hi, I am trying to

RE: [Catalyst] oe1.orf.at now running on Catalyst

2007-04-19 Thread Hartmaier Alexander
Hello Thomas! Great to hear that a site I know uses Catalyst! Greetings, Alex -Original Message- From: Thomas Klausner [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 9:56 AM To: catalyst@lists.rawmode.org Subject: [Catalyst] oe1.orf.at now running on Catalyst I'd like

RE: [Catalyst] Charting data

2007-04-17 Thread Hartmaier Alexander
I have a Controller 'Graph' with one sub which parses the graphname to single parameters: sub get_graph : LocalRegex('^(device|interface)-(bw|cr|qos_pre|qos_drop|util|temp)-(\d+)-(day|week|month|year)-(\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}|-MM-DD_hh-mm-ss)-(nolimit|\d+)\.png$') { my (

AW: [Catalyst] Root.pm $c-detach() does not detach?

2007-04-03 Thread Hartmaier Alexander
Hi! Detach doesn't work in sub auto, use forward instead an return 0 after the forward call. For example I have in my Root.pm: # force login for all pages unless ($c-user_exists) { # detach doesn't work the way it should in auto $c-forward('/login/login'); return

AW: [Catalyst] Session problems with IE and cookies

2007-03-01 Thread Hartmaier Alexander
Hi! Most of the users of my cat apps use IE6/7, some (and I) Firefox. Some times in the past IE users couldn't login, deleting the cookies solved the problem, but it occurred only 3-4 times so I didn't investigate further. And what should I do against browser bugs?! -Alex -Ursprüngliche

[Catalyst] IE6/7 HTTP POST form problems

2007-03-01 Thread Hartmaier Alexander
Hi! Since about two month I'm fighting a problem some IE users have: on send of a form they don't receive an answer from the web server. Tcpdump shows that the packets arrive at the web server but apache2.2 just ignores them. I disabled https on the internal site to make debugging easier but

AW: AW: [Catalyst] IE6/7 HTTP POST form problems

2007-03-01 Thread Hartmaier Alexander
still use frames and no div’s -Alex Von: John Napiorkowski [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 01. März 2007 17:18 An: The elegant MVC web framework Betreff: Re: AW: [Catalyst] IE6/7 HTTP POST form problems - Original Message From: Hartmaier Alexander [EMAIL PROTECTED

AW: [Catalyst] unicode best practices

2007-02-16 Thread Hartmaier Alexander
I use Oracle 10.1 and didn't have to define anything to get utf8 working. My Oracle charset is AL32UTF8 which is the recommended charset for UTF8 useage. -Alex -Ursprüngliche Nachricht- Von: Richard Jolly [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 16. Februar 2007 09:45 An: The

AW: [Catalyst] not null search

2007-02-15 Thread Hartmaier Alexander
Look in the SQL::Abstract docs and grep for null. colname = { `!=` = undef } -Alex Von: Will Smith [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 15. Februar 2007 16:23 An: catalyst Betreff: [Catalyst] not null search Hi, first, thanks for all of your help. A simple question I

AW: [Catalyst] not null search - DONE

2007-02-15 Thread Hartmaier Alexander
CDBI??? I’ll try to avoid plain strings when there is a syntax available. -Alex Von: Will Smith [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 15. Februar 2007 17:13 An: [EMAIL PROTECTED]; The elegant MVC web framework Betreff: Re: [Catalyst] not null search - DONE Thanks Chris,

RE: [Catalyst] Recommend methods for form handling

2007-01-19 Thread Hartmaier Alexander
web framework Subject: Re: [Catalyst] Recommend methods for form handling Hartmaier Alexander wrote: Hi Jim! I don't recommend the use of FillInForm, I dropped it finally two weeks ago when I had time to refactor my Catalyst apps that used it. Now I handle forms by putting the data

RE: [Catalyst] Catalyst::Helper::Model::DBIC::Schema patchette?

2007-01-19 Thread Hartmaier Alexander
+1 from me. I wanted to do this some weeks ago to recreate my model classes and look if the helper does something new. Without help from the irc channel it would have taken my much longer to figure out the right arguments... -Alex _ From: Kieren Diment [mailto:[EMAIL

RE: [Catalyst] Recommend methods for form handling

2007-01-17 Thread Hartmaier Alexander
Hi Jim! I don't recommend the use of FillInForm, I dropped it finally two weeks ago when I had time to refactor my Catalyst apps that used it. Now I handle forms by putting the data they should show on the stash with $c-stash-{form_data}-{fieldname} = 'value'; I have to private actions to do

Re: [Catalyst] Error while going through tutorial using Oracle

2006-08-18 Thread Hartmaier Alexander
table names where case is important? (e.g user). Jason Hartmaier Alexander wrote: Hi! Use the current svn version which will become 0.07001 soon, it has my Storage::Oracle patch for uppercasing the table names which wasn't included in 0.07. It's best you specify the sequence names

Re: [Catalyst] Why does the error page include my http_proxy env var?

2006-07-13 Thread Hartmaier Alexander
: [Catalyst] Why does the error page include my http_proxy env var? Hartmaier Alexander said: Does anybody know why the cat error page shows the proxy url set in the http_proxy env var? A bunch of ideas: - It's just a dump. - It's the debug screen, your customers/visitors should never see

Re: [Catalyst] Bugfree development release?

2006-07-03 Thread Hartmaier Alexander
I've installed 5.70_03 on my dev box and my cat apps run fine with it, not a single problem ;-) -Alex *** T-Systems Austria GesmbH Rennweg 97-99, 1030 Wien Handelsgericht Wien, FN 79340b *** Notice: This e-mail contains

Re: [Catalyst] Restricting access to the model

2006-07-03 Thread Hartmaier Alexander
I have a method in my ResultSet class which takes an arrayref of ldap-dn's (the one of the logged-in user plus all dn's of all members of the groups the user is member of = co-workers) and use that to build a dbic search. Whenever I need to filter I just have to do

Re: [Catalyst] [announce] Catalyst 5.70 developer release.

2006-06-26 Thread Hartmaier Alexander
I will test it against my cat apps in the next few days. The Changelog date and the missing versions should be fixed ;-) -Alex From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcus Ramberg Sent: Monday, June 26, 2006 5:33 AM To: The