Re: [Catalyst] Re: Weak references - perl error

2008-08-02 Thread Dermot
2008/8/2 Aristotle Pagaltzis [EMAIL PROTECTED]: * Dermot [EMAIL PROTECTED] [2008-08-02 01:40]: Does your advise conflict with Tomas's? I didn't seem Tomas giving you any specific advice, so I don't understand how to answer your question. My reading of Tomas's reply was that my perl was

[Catalyst] Checking out sources with svk?

2008-08-02 Thread Dr. Jennifer Nussbaum
Hi, Im trying to check out the Catalyst sources using svk on a Debian system. The wiki says that the sources are at http://dev.catalystframework.org/svnweb/Catalyst so i took the svk advice from the Advent Calender to try to do this: $ svk mirror http://dev.catalyst.perl.org/repos/Catalyst

Re: [Catalyst] Checking out sources with svk?

2008-08-02 Thread Brian Cassidy
On Sat, Aug 2, 2008 at 10:05 AM, Dr. Jennifer Nussbaum [EMAIL PROTECTED] wrote: Hi, Im trying to check out the Catalyst sources using svk on a Debian system. The wiki says that the sources are at http://dev.catalystframework.org/svnweb/Catalyst so i took the svk advice from the Advent

Re: [Catalyst] Checking out sources with svk?

2008-08-02 Thread ivorw
Dr. Jennifer Nussbaum wrote: Hi, Im trying to check out the Catalyst sources using svk on a Debian system. The wiki says that the sources are at http://dev.catalystframework.org/svnweb/Catalyst so i took the svk advice from the Advent Calender to try to do this: $ svk mirror

Re: [Catalyst] Checking out sources with svk?

2008-08-02 Thread J. Shirley
On Sat, Aug 2, 2008 at 6:05 AM, Dr. Jennifer Nussbaum [EMAIL PROTECTED] wrote: Hi, Im trying to check out the Catalyst sources using svk on a Debian system. The wiki says that the sources are at http://dev.catalystframework.org/svnweb/Catalyst so i took the svk advice from the Advent

[Catalyst] transactions with DBIx::Class model

2008-08-02 Thread Ansgar Burchardt
Hi, I am using Catalyst with a DBIx::Class model (via C::M::DBIC::Schema) and want to do serveral database updates in a transaction. To do this I need the schema object to call $schema-txn_do($whatever). The C::M::DBIC::Schema documentation says that I should be able to access the schema object

[Catalyst] Access to $c-cache from a script

2008-08-02 Thread Kevin Old
Hi everyone, My config for Catalyst::Plugin::Cache is and works well within controllers: cache backend cache_root /tmp default_expires_in 1d namespace AW class Cache::FileCache /backend /cache I'm writing a script to prime the cache which

Re: [Catalyst] transactions with DBIx::Class model

2008-08-02 Thread Matt S Trout
On Sat, Aug 02, 2008 at 06:34:31PM +0200, Ansgar Burchardt wrote: Hi, I am using Catalyst with a DBIx::Class model (via C::M::DBIC::Schema) and want to do serveral database updates in a transaction. To do this I need the schema object to call $schema-txn_do($whatever). The