RE: [Catalyst] Detecting Incorrectly Displayed Page (Generating andVisiting URLS automatically ?)

2008-02-04 Thread Peter Edwards
Sindharta wrote: I am currently doing some tests with my application and I am wondering if there is any efficient and effective way to know if pages which should be displayed correctly are actually being redirected to another page, such as 404 - Data Not Found, because of some logic or data

RE: [Catalyst] Detecting Incorrectly Displayed Page (Generating andVisiting URLS automatically ?)

2008-02-04 Thread sindharta_tanuwijaya
Wow, that white and black box testing reminds me a lot to what I learned when I took software engineering classes before, but I have to admit that I rarely (or never) pay attention to them when I perform my tests. Maybe it's time to start reviewing. Thank you very much for the links. I think

[Catalyst] Catalyst and Web Services?

2008-02-04 Thread Gavin Henry
Hi All, If you want to provide access over SSL with auth, i.e. for example a desktop app posting and retrieving info from/to a Catalyst app what's the best way? REST or SOAP? I want the same users that normalling login via a web browser and get a cookie to be able to login via a light wee

[Catalyst] Re: Catalyst and Web Services?

2008-02-04 Thread Aristotle Pagaltzis
* Gavin Henry [EMAIL PROTECTED] [2008-02-04 12:05]: If you want to provide access over SSL with auth, i.e. for example a desktop app posting and retrieving info from/to a Catalyst app what's the best way? REST or SOAP? Well, the question you’re asking is actually REST or WS-*; SOAP is

Re: [Catalyst] Catalyst, TT and using new filter

2008-02-04 Thread Felix Antonius Wilhelm Ostmann
easy filters: package myApp::View::TT; use strict; use base 'Catalyst::View::TT'; __PACKAGE__-config( { CATALYST_VAR = 'catalyst', ... FILTERS = { yesno = sub { $_[0] ? 'yes' : 'no'; }, onoff = sub {

Re: [Catalyst] Re: Catalyst and Web Services?

2008-02-04 Thread Gavin Henry
quote who=Aristotle Pagaltzis * Gavin Henry [EMAIL PROTECTED] [2008-02-04 12:05]: If you want to provide access over SSL with auth, i.e. for example a desktop app posting and retrieving info from/to a Catalyst app what's the best way? REST or SOAP? Well, the question you’re asking is

[Catalyst] add components to files generated by C::Helper::Model::DBIC::Schema

2008-02-04 Thread Moritz Onken
Hi, I need to add some components to some packages created by Catalyst::Helper::Model::DBIC::Schema. I tried adding them under the md5 checksum so updates wont break, but some of them needed to be placed before Core is loaded. I didn't find anything about this in the docs. Any help? Thanks

Re: [Catalyst] Use of uri_for with CaptureArgs

2008-02-04 Thread Bogdan Lucaciu
On Monday 04 February 2008 14:09:25 Alan Hicks wrote: MyApp::Controller::Artist::Images sub images_setup : Chained('/artist/artist_setup') PathPart('images') CaptureArgs(1)  {} /artist/*/images/*  From within MyApp::Controller::Artist::Images uri_for($id, 'show') gives

[Catalyst] Catalyst, TT and using new filter

2008-02-04 Thread Peter Sørensen
Hi, I am Using catalyst, TT and formbuilder. I am struggling with output in a textarea field and would like to install a new filter to TT to be used like: tdtextarea [% FOREACH line IN subscribers %] [% line | undent %] [% END %]

[Catalyst] Use of uri_for with CaptureArgs

2008-02-04 Thread Alan Hicks
Hi, I've started using CaptureArgs and PathPart and find them excellent and easy to use. I've probably missed something from the docs but does anyone have a best practice in using uri_for or an alternative for generating url's? the case I'm having difficulty with is to generate a url with

Re: [Catalyst] Use of uri_for with CaptureArgs

2008-02-04 Thread Alan Hicks
Bogdan Lucaciu wrote: On Monday 04 February 2008 14:09:25 Alan Hicks wrote: MyApp::Controller::Artist::Images sub images_setup : Chained('/artist/artist_setup') PathPart('images') CaptureArgs(1) {} /artist/*/images/* From within MyApp::Controller::Artist::Images uri_for($id, 'show') gives

[Catalyst] using legacy auth stores with new auth system

2008-02-04 Thread Carl Franks
Can the old Catalyst::Plugin::Authentication::Store::* modules be used with the new Catalyst::Authentication system? I can't see anything in the docs or list archive about how to set this in the configuration - and it looks like only 'Authentication' should be listed in the Cat plugin import

Re: [Catalyst] add components to files generated by C::Helper::Model::DBIC::Schema

2008-02-04 Thread Jonathan Rockway
* On Mon, Feb 04 2008, Moritz Onken wrote: Hi, I need to add some components to some packages created by Catalyst::Helper::Model::DBIC::Schema. I tried adding them under the md5 checksum so updates wont break, but some of them needed to be placed before Core is loaded. I didn't find

Re: [Catalyst] catalyst book

2008-02-04 Thread Matt Rosin
Also a good way to get code demos perhaps. Matt R. ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site:

Re: [Catalyst] Weird loss of user in session

2008-02-04 Thread Ashley
Solved. I have a theory. I think I had a session persisting from before I turned off verify_address. Maybe? I also went back to short names authentication and session instead of the new namespaced Plugin style. In any case, it was apparently PEBKAC. Thanks for looking. -Ashley On Feb 4,