Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Jesper Krogh
without loosing messages. Jesper -- Jesper Krogh ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/ Dev site: http

[Catalyst] A Perl Message Queue?

2007-08-23 Thread Jesper Krogh
. It would be nice when you have stuff that takes longer that people usually can wait for. Jesper -- Jesper Krogh ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail

Re: [Catalyst] Reference to the connected Model::DBIC schema for testing?

2006-10-12 Thread Jesper Krogh
to put it into the schema-definitions classes (ResultSource if I'm not wrong), but I cannot seem to get direct access to those from within Catalyst? Jesper -- Jesper Krogh, [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http

Re: [Catalyst] Executing external applications from catalyst.

2006-10-06 Thread Jesper Krogh
; `$cmd`; my $stdout = read_file($seqout); my $stderr = read_file($seqerr); I can get stdout on the fly, as open FILE,command |; Otherwise I found that I neede the temporary files. Jesper -- Jesper Krogh ___ List: Catalyst@lists.rawmode.org Listinfo: http

[Catalyst] Testserver dies under IE - patch

2006-10-03 Thread Jesper Krogh
/Catalyst/Engine/HTTP.pm:172) at Catalyst::run(/usr/share/perl5/Catalyst.pm:1754) at main::(./script/nzdb_server.pl:54) -- Jesper Krogh ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable

Re: [Catalyst] Testserver dies under IE - patch

2006-10-03 Thread Jesper Krogh
) : 127.0.0.1/Unknown, localname = gethostbyaddr( $localiaddr, AF_INET ) || localhost, localaddr = inet_ntoa($localiaddr) || 127.0.0.1, }; Jesper -- Jesper Krogh ___ List: Catalyst@lists.rawmode.org Listinfo: http

[Catalyst] -render for Catalyst::View::Mason

2006-09-27 Thread Jesper Krogh
Hi all catalyst/mason users. This patch implements the -render method on Catalyst::View::Mason (should work the excact same way as -render on Catalyst::View::TT) my $doc = $c-view(Mason)-render($c,/path/to/template,{arg = value}); Jesper -- Jesper Krogh--- /usr/share/perl5/Catalyst/View

Re: [Catalyst] Need example of Catalyst with Mason View

2006-08-13 Thread Jesper Krogh
Kevin Old wrote: In the actual Mason view treat it just like any other Mason page. The $c object is available and the stash can be called like % $c-stash %. Its even easier.. $c-stash-{name} directly matches: %args $name /%args No need to fiddle around with $c for that. Jesper -- Jesper