[Catalyst] Re: [newbie]How to call stored procedure?

2007-12-28 Thread Aristotle Pagaltzis
* Gene Selkov [EMAIL PROTECTED] [2007-12-28 18:40]: It will work if your backend supports subselects and will fail otherwise. Let’s not pussyfoot around: there’s only one SQL DBMS which doesn’t support subselects at all… Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Database connections leaking

2007-12-30 Thread Aristotle Pagaltzis
of it, but that’s now striking me as the wrong strategy. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http

[Catalyst] Re: Database connections leaking

2007-12-31 Thread Aristotle Pagaltzis
/A in this interview: http://www.dispatchesfromblogistan.com/interview-with-laura-lemay/ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst

[Catalyst] Rails is a Ghetto

2007-12-31 Thread Aristotle Pagaltzis
tuned for more about Ruby conferences and why they suck, and why the Pickaxe book is what killed Ruby. All I can say is… wow. I’ll be re-assessing and processing for a while. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List

[Catalyst] Re: Best Practices for wizards, steps?

2008-01-01 Thread Aristotle Pagaltzis
the session to store the user’s position. That’s all I can think of right now. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable

[Catalyst] Re: Rails is a Ghetto

2008-01-02 Thread Aristotle Pagaltzis
http://globalnerdy.com/2008/01/02/%E2%80%9Cnow-while-rails-is-weak-we-must-strike%E2%80%9D/ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo

[Catalyst] Re: two Catalyst flaws

2008-01-03 Thread Aristotle Pagaltzis
code. If you wrote the model code yourself, and you did it all inside your Catalyst::Model subclass, well, that’s the wrong approach… Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: utf8 / pg double encoding problem

2008-01-05 Thread Aristotle Pagaltzis
* Daniel McBrearty [EMAIL PROTECTED] [2008-01-06 00:00]: [debug] abçöeü [debug] $VAR1 = ab\x{c3}\x{a7}\x{c3}\x{b6}e\x{c3}\x{bc}; [debug] it's UTF8! Err, why doesn’t Dumper say ab\x{e7}\x{f6}e\x{fc}? Strange that the first line looks correct, though. Regards, -- Aristotle Pagaltzis // http

[Catalyst] Re: utf8 / pg double encoding problem

2008-01-06 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: REST - like uri design for CRUD

2008-01-20 Thread Aristotle Pagaltzis
. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: REST - like uri design for CRUD

2008-01-21 Thread Aristotle Pagaltzis
than GET and POST? Are you asking about why it’s important to categorise verbs as non-/safe in addition to non-/idempotent? Is it something all together different? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst

[Catalyst] Re: REST - like uri design for CRUD

2008-01-22 Thread Aristotle Pagaltzis
* Zbigniew Lukasiak [EMAIL PROTECTED] [2008-01-22 08:35]: On Jan 22, 2008 1:30 AM, Aristotle Pagaltzis [EMAIL PROTECTED] wrote: I don't understand this question. It sounds like you have some confusion about several distinct things and that you don't actually understand what idempotence

[Catalyst] Re: Catalyst and Web Services?

2008-02-04 Thread Aristotle Pagaltzis
, even if it *really* doesn’t fit your needs, it gives you an idea for how a REST service should look like. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

[Catalyst] Sharing a database handle between components

2008-02-09 Thread Aristotle Pagaltzis
about all this? Is there a way that will work now *and* after the app/context switch jshirley mentioned? -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Why use external FastCGI apps?

2008-02-09 Thread Aristotle Pagaltzis
* Yuval Kogman [EMAIL PROTECTED] [2008-02-07 22:45]: The only plausible reason I can think of for using threads out of choice is... uh. can't think of any. =P [x] You’re running on Windows. (Not a *good* reason, but *a* reason.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Sharing a database handle between components

2008-02-09 Thread Aristotle Pagaltzis
* Matt S Trout [EMAIL PROTECTED] [2008-02-09 19:15]: On Sat, Feb 09, 2008 at 06:39:27PM +0100, Aristotle Pagaltzis wrote: So now I have a `add_dbi_provider` method in MyApp::View::TT, and then in MyApp.pm I do __PACKAGE__-setup; __PACKAGE__-view('TT')-add_dbi_provider

[Catalyst] Re: Sharing a database handle between components

2008-02-09 Thread Aristotle Pagaltzis
future? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: utf8 in regexes in Catalyst

2008-03-02 Thread Aristotle Pagaltzis
http://use.perl.org/~miyagawa/journal/35700 Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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] Re: CGI.pm and Catalyst?

2008-03-07 Thread Aristotle Pagaltzis
Perl.) It’s not an issue to write Perl to generate your output, as long as you keep that Perl code in separate modules whose *only* job is to render the stash. And that’s what Template::Declare makes you do. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Patch for Catalyst::View::Mason

2008-03-10 Thread Aristotle Pagaltzis
* Andrew Rodland [EMAIL PROTECTED] [2008-03-09 21:40]: On Sunday 09 March 2008 07:43:04 am Aristotle Pagaltzis wrote: I see your bid and raise this: autocmd BufRead */templates/tt/*set ft=tt2html autocmd BufRead */templates/mason/* set ft=mason Wheee

[Catalyst] Re: Serving static files without Sessions involved

2008-03-10 Thread Aristotle Pagaltzis
%{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ script/dispatch.fcgi/$1 [PT,L] Thanks again in advance. -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-mod_rewrite-hack; #Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Google Summer of Code

2008-03-12 Thread Aristotle Pagaltzis
think there’s direct synergy here, but it seems to me that having a conversation between the projects would be a good idea. I very much like the idea of using the web itself as the social network instead of using a walled garden built on top of it. Regards, -- Aristotle Pagaltzis // http

[Catalyst] Re: implementing ajax

2008-03-13 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: Http Status Chart

2008-03-13 Thread Aristotle Pagaltzis
* Matt Lawrence [EMAIL PROTECTED] [2008-03-13 10:55]: Aristotle Pagaltzis wrote: So when would 403 happen? F.ex. if access to the resource is restricted to certain IP ranges, and you are requesting the resource from an IP outside of those. Or in case of Apache, you are asking for a URI that’s

[Catalyst] Re: [again] die() in an action chain : does not break the chain !

2008-03-14 Thread Aristotle Pagaltzis
Hi Ashley, * Ashley [EMAIL PROTECTED] [2008-03-14 16:40]: I've been threatening for more than a year to write a plugin to do this. I wrote to ask for CPAN/method name suggestions, Aristotle gave me good advice which I'll have to dig up. you mean this: * Aristotle Pagaltzis [EMAIL PROTECTED

[Catalyst] Re: [again] die() in an action chain : does not break the chain !

2008-03-15 Thread Aristotle Pagaltzis
name: HaltRequest Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Quick Catalyst::Plugin::SubRequest notes

2008-03-17 Thread Aristotle Pagaltzis
a subrequest. Or do I? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: checking if an action exists before forwarding

2008-03-18 Thread Aristotle Pagaltzis
trying to solve that way? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Patch for Catalyst::Plugin::Unicode::Encoding

2008-03-19 Thread Aristotle Pagaltzis
to decode already-utf8-flagged strings. I'd say that's the root problem. Yes; and that’s exactly what Jon said. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

[Catalyst] Re: ACL confusion

2008-03-20 Thread Aristotle Pagaltzis
not do it that way? __PACKAGE__-deny_access_unless( '/books/delete', [ $_ ] ) for qw/user admin/; Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman

[Catalyst] Re: Handy shotcuts

2008-03-20 Thread Aristotle Pagaltzis
one. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Handy shotcuts

2008-03-20 Thread Aristotle Pagaltzis
: Catalyst::Response::redirect should translate 30[37] to 302 if $c-req-protocol says the HTTP version used was any less than 1.1. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: Handy shotcuts

2008-03-20 Thread Aristotle Pagaltzis
= search string }, # detach = 1 ?? }); That is so wordy I don’t know what the point is compared to doing it the conventional way. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: ACL confusion

2008-03-20 Thread Aristotle Pagaltzis
* Chisel Wright [EMAIL PROTECTED] [2008-03-20 21:05]: On Thu, Mar 20, 2008 at 01:39:58PM +0100, Aristotle Pagaltzis wrote: But you can write multiple rules for the same action; why not do it that way? __PACKAGE__-deny_access_unless( '/books/delete', [ $_ ] ) for qw/user

[Catalyst] Re: Patch for Catalyst::Plugin::Unicode::Encoding

2008-03-22 Thread Aristotle Pagaltzis
* Bill Moseley [EMAIL PROTECTED] [2008-03-22 15:10]: I do think encoding and decoding are low-level enough that they should be core and not a plugin. ++ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk

[Catalyst] Re: So, what do we want in the -next- book?

2008-03-27 Thread Aristotle Pagaltzis
whether that attitude serves Catalyst? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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] Re: Catalyst-Manual-FAQ Addition

2008-03-31 Thread Aristotle Pagaltzis
is your question a frequently asked one? I’d think this should be documented somewhere more appriopriate. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman

[Catalyst] Re: Catalyst-Manual-FAQ Addition

2008-04-02 Thread Aristotle Pagaltzis
* Paul Makepeace [EMAIL PROTECTED] [2008-04-02 14:35]: There would be some good mileage out of Catalyst::Manual::Gotchas ++ Like `perldoc perltrap`. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk

[Catalyst] Re: So, what do we want in the -next- book?

2008-04-06 Thread Aristotle Pagaltzis
it out as I go, but that’s far more time-consuming and slow a process than it needs to because no big-picture map of the source exists. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: New credential -- Catalyst::Authentication::Credential::OpenID

2008-04-07 Thread Aristotle Pagaltzis
of OpenID and in other similar scenarios on the open web it would be interesting to know the provider, not just the identity. A quick skim of Net::OpenID::Consumer does not reveal a way to get at this, however… is there? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: New engine: HTTP::Prefork

2008-04-07 Thread Aristotle Pagaltzis
* Andy Grundman [EMAIL PROTECTED] [2008-04-07 15:30]: On Apr 7, 2008, at 8:57 AM, Aristotle Pagaltzis wrote: You mean, a webserver for running Catalyst apps? ’Cause in the general case, a single-process, select-based server will yield higher performance. In order to do that properly

[Catalyst] Re: New credential -- Catalyst::Authentication::Credential::OpenID

2008-04-08 Thread Aristotle Pagaltzis
the user configure a mapping from provider URIs to roles? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http

[Catalyst] Re: Best way to implement an RSS|Atom feed with perl/Catalyst?

2008-04-11 Thread Aristotle Pagaltzis
* Kieren Diment [EMAIL PROTECTED] [2008-04-11 14:40]: I must say I have no idea what the best solution would be, any ideas? I would say XML::Atom::SimpleFeed, but I may be biased. ;-) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: CatalystSites.org

2008-04-16 Thread Aristotle Pagaltzis
]: Still is, actually. 2.5 months and not yet done, though I am finally close. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst

[Catalyst] Re: CatalystSites.org

2008-04-17 Thread Aristotle Pagaltzis
* Toby Corkindale [EMAIL PROTECTED] [2008-04-17 03:40]: On Wed, Apr 16, 2008 at 11:20:40AM +0200, Aristotle Pagaltzis wrote: 2. URI design is important, but not because it has anything to do with REST. Your URIs could be /aslkdjsad42 and /xyzzysd-291kk1 for all REST cares

[Catalyst] Re: CGI::Dump()

2008-04-18 Thread Aristotle Pagaltzis
* Ashley [EMAIL PROTECTED] [2008-04-18 21:30]: push(@result,lib$param/b/li); push(@result,ul); That’s invalid HTML. You can’t put an `ul` directly inside a `ul` like that. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: CGI::Dump()

2008-04-18 Thread Aristotle Pagaltzis
it doesn’t look half like Java. -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi

[Catalyst] Re: Unit Testing

2008-04-20 Thread Aristotle Pagaltzis
one or two sentences is probably harder on a blind user than a sighted one, who can just left-click rapidly to skim through.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: Unit Testing

2008-04-20 Thread Aristotle Pagaltzis
won’t work. (And anyway, for that sort of thing you should be using curl: curl -O 'http://www.jrock.us/fp2008/catalyst/slide[1-48].html' except of course that this won’t work for the same reason.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Why does $c-stats require -Debug flag?

2008-04-24 Thread Aristotle Pagaltzis
unspoken rule, and people arrived at wildly different interpretations of the silence of the docs. There is lots of room for improvement here. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: Why does $c-stats require -Debug flag?

2008-04-24 Thread Aristotle Pagaltzis
* Jonathan Rockway [EMAIL PROTECTED] [2008-04-24 19:10]: * On Thu, Apr 24 2008, Aristotle Pagaltzis wrote: * Jonathan Rockway [EMAIL PROTECTED] [2008-04-24 11:25]: * On Thu, Apr 24 2008, Jon Schutz wrote: No problems, if that's what the Catalyst standard says; I must have missed it. Where

[Catalyst] Re: Why does $c-stats require -Debug flag?

2008-04-24 Thread Aristotle Pagaltzis
Hi Wade.Stuart, * [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-04-25 00:30]: Aristotle Pagaltzis [EMAIL PROTECTED] wrote on 04/24/2008 12:32:12 PM: * Jonathan Rockway [EMAIL PROTECTED] [2008-04-24 19:10]: * On Thu, Apr 24 2008, Aristotle Pagaltzis wrote: * Jonathan Rockway [EMAIL PROTECTED

[Catalyst] Re: Multi-language and REST

2008-04-25 Thread Aristotle Pagaltzis
and bolts to make it useful for non-trivial uses (which is basically synonymous with “in human-operated browsers”).) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

[Catalyst] Re: Multi-language and REST

2008-04-25 Thread Aristotle Pagaltzis
* Ashley [EMAIL PROTECTED] [2008-04-25 22:20]: I like PUT and DELETE too but I'm not going to abandon POST as their stand-in (or fall-back) any time soon. http://search.cpan.org/dist/Catalyst-Request-REST-ForBrowsers/ autarch++ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: So, what do we want in the -next- book?

2008-04-27 Thread Aristotle Pagaltzis
from each other, although I’m not sure how far this can be taken while respecting the stability/backcompat imperative. But in the meantime please quit shifting the laziness blame to the users. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: So, what do we want in the -next- book?

2008-04-27 Thread Aristotle Pagaltzis
* J. Shirley [EMAIL PROTECTED] [2008-04-27 23:45]: On Sun, Apr 27, 2008 at 11:05 AM, Aristotle Pagaltzis [EMAIL PROTECTED] wrote: As I try to make sense of the codebase I keep stumbling over places where the setup is quite incestuous: components often do not really set themselves up

[Catalyst] Re: So, what do we want in the -next- book?

2008-04-28 Thread Aristotle Pagaltzis
software libraries that hope to attract programmers as users and contributors, so the comparison is a category error to begin with. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

[Catalyst] Re: Dispatching with Chained vs HTTP method

2008-04-30 Thread Aristotle Pagaltzis
* Toby Corkindale [EMAIL PROTECTED] [2008-04-30 10:40]: I was thinking something like this: (Abbreviated code below) http://search.cpan.org/dist/Catalyst-Action-REST/ http://search.cpan.org/dist/Catalyst-Request-REST-ForBrowsers/ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: How to print/display some data in an end action

2008-05-01 Thread Aristotle Pagaltzis
. As I said, we have seen too little of the code to make any meaningful suggestions. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst

[Catalyst] Re: $row-copy causing exit from controller(!)

2008-05-01 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: $row-copy causing exit from controller(!)

2008-05-02 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-04 Thread Aristotle Pagaltzis
. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-05 Thread Aristotle Pagaltzis
* Matt S Trout [EMAIL PROTECTED] [2008-05-04 16:25]: On Sun, May 04, 2008 at 09:10:56AM +0200, Aristotle Pagaltzis wrote: * luke saunders [EMAIL PROTECTED] [2008-05-04 02:50]: Also it doesn't distinguish between POST, PUT, DELETE and GET HTTP requests favouring instead entirely separate

[Catalyst] Re: Let's port Twitter to Perl

2008-05-05 Thread Aristotle Pagaltzis
* John Napiorkowski [EMAIL PROTECTED] [2008-05-05 16:45]: I heard Twitter was abandoning RoR. Except, they aren’t. http://twitter.com/ev/statuses/801530348 Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst

[Catalyst] Re: UTF-16 surrogate message when writing binary data (image)

2008-05-09 Thread Aristotle Pagaltzis
? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: Request paths - rejoining Chained actions together.

2008-05-10 Thread Aristotle Pagaltzis
that. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Request paths - rejoining Chained actions together.

2008-05-11 Thread Aristotle Pagaltzis
and inheriting *in this case* is, a hack to get round Chained not playing how I'd like it to).. Au contraire. Inheritance is part of the language. Why should Catalyst invent a limited Catalyst-specific parallel mechanism? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-15 Thread Aristotle Pagaltzis
more of the state as things to manipulate. If you give an example of what you mean I can give you one of what I mean. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi

[Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-16 Thread Aristotle Pagaltzis
parameters… hm. - exposing some class data (as opposed to instance data) and maybe class methods? Example? I can’t quite imagine what you would want to do here. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk

[Catalyst] Re: Pager and Cache

2008-05-20 Thread Aristotle Pagaltzis
page seen. Then changing directions while paging is easy: you just use `=` or `=` as appropriate. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo

[Catalyst] Re: ANNOUNCE: Catalyst::Devel 1.07 and Catalyst::Manual 5.7012 released to CPAN

2008-06-03 Thread Aristotle Pagaltzis
/msg03096.html Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: how is the default view type set?

2008-06-04 Thread Aristotle Pagaltzis
-{current_view}, then - a config setting 'default_view', or - check if there is only one view, and return it if that's the case. Similar rule for the model, btw. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst

[Catalyst] Re: how many RAM used is normal

2008-06-06 Thread Aristotle Pagaltzis
-usage-on-linux.html Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Catalyst site design drafts feedback thread

2008-06-11 Thread Aristotle Pagaltzis
Whitaker: (5) http://agaton.scsys.co.uk/~matthewt/catsite/catsite-Penfold.pdf I kinda like that one – I am a minimalist, myself. Only problem is, there’s not much design there… it’s literally a half-hour job and it looks that way. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Catalyst site design drafts feedback thread

2008-06-12 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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: http

[Catalyst] Re: Catalyst site design drafts feedback thread

2008-06-17 Thread Aristotle Pagaltzis
will get its feet wet. Isn’t that the purpose of the home page…? A Getting Started page is more the place to put an example app download, a screencast link, a whole bunch of tutorials… stuff like that. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Catalyst site design drafts feedback thread

2008-06-17 Thread Aristotle Pagaltzis
nick is soulchild but I'm currently at work and can't promise that I'll make it into the room. Whenever you can. :-) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi

[Catalyst] Re: Catalyst site design drafts feedback thread

2008-06-17 Thread Aristotle Pagaltzis
based on directions from the designer we were working with, and it produced a very nice effect. Unfortunately it’s no longer online, but I can let you take a look on my dev box if you want. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List

[Catalyst] Re: Private Chained Actions?

2008-06-20 Thread Aristotle Pagaltzis
-detach('hello'); } -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

[Catalyst] Re: Private Chained Actions?

2008-06-20 Thread Aristotle Pagaltzis
having to apply the modifier to all of the methods at once. Note that using method modifiers instead of Cat dispatch means that the Catalyst::Stats breakdown of a request will be coarser. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Capture page on server?

2008-06-23 Thread Aristotle Pagaltzis
, and this is not a personal comment to you, Ryan – I mean the “you”s above in the general sense.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo

[Catalyst] Re: Announce: Catalyst::Authentication::Credential::Authen::Simple

2008-06-28 Thread Aristotle Pagaltzis
a look. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Sending email from a Catalyst app

2008-07-02 Thread Aristotle Pagaltzis
. To use it you simply use the Encode::encode and Encode::decode functions as always, just with an encoding name of `MIME-Header` instead of something more usual like `UTF-8` or `ISO-8859-1`. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Catalyst and Taint?

2008-07-24 Thread Aristotle Pagaltzis
that requires so much care from so many people (module authors, namely) is just not a trustworthy safety net. It would still be a worthwhile task though: taint mode is useful as a layer in an in-depth defence even if you cannot rely on it alone. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Weak references - perl error

2008-08-01 Thread Aristotle Pagaltzis
* Dermot [EMAIL PROTECTED] [2008-08-01 18:25]: Scalar::Util is up-to-date Yes, but only half installed. You need the XS component but you only have the pure-Perl version. Force-install it again. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Weak references - perl error

2008-08-01 Thread Aristotle Pagaltzis
be murder if I wanted to install this on more than one server. Complain to your packager/distributor that they shipped a broken perl. Anyone who packages a perl of newer vintage than mid-2002, without Scalar::Util’s XS part, is doing it wrong. Regards, -- Aristotle Pagaltzis // http

[Catalyst] Re: [SOT] cat webmail app?

2008-08-08 Thread Aristotle Pagaltzis
* Jose Luis Martinez [EMAIL PROTECTED] [2008-08-08 16:50]: http://icanhascheezburger.files.wordpress.com/2008/08/funny-pictures-sometimes-the-mail-gets-you.jpg I’m not sure that caption is how we want users to think of a Catalyst mail app. ;-) Regards, -- Aristotle Pagaltzis // http

[Catalyst] Re: list of perl-*.rpm files for a basic Cat install

2008-08-18 Thread Aristotle Pagaltzis
handles API stability differently. You want full control over which version of which modules you install. (Strictly speaking you even want to keep your own vetted CPAN mirror. :-) ) None of this, btw, is difficult. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: list of perl-*.rpm files for a basic Cat install

2008-08-18 Thread Aristotle Pagaltzis
are in that position. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: Catalyst::Response - send a file

2008-08-19 Thread Aristotle Pagaltzis
* [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-08-19 21:55]: $c-response-headers-header('Content-disposition:' = attachment; filename=$filename ); You forgot $filename =~ s!!\\!g; Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: Catalyst::Response - send a file

2008-08-20 Thread Aristotle Pagaltzis
* [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-08-20 17:55]: Aristotle Pagaltzis [EMAIL PROTECTED] wrote on 08/19/2008 04:39:55 PM: * [EMAIL PROTECTED] [EMAIL PROTECTED] [2008-08-19 21:55]: $c-response-headers-header('Content-disposition:' = attachment; filename=$filename ); You forgot

[Catalyst] Re: Announce: Instant AJAX web front-end for DBIx::Class

2008-09-09 Thread Aristotle Pagaltzis
for a Moose-ified version instead. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ 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

[Catalyst] Re: fcgid

2008-09-29 Thread Aristotle Pagaltzis
) can therefore also be debugged standalone in production, c) can be an exact replica of the server that runs on the developer’s machine. (Although the last point is watered down a little by adding a reverse proxy to the mix in production.) Regards, -- Aristotle Pagaltzis // http

[Catalyst] Re: fcgid

2008-09-30 Thread Aristotle Pagaltzis
. So this is all just anecdotal so far, but it worked perfectly for me. If you think it might work for you, just give it a try – it takes very little work to do so! I came up with this setup almost by accident, in fact. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: CSRF

2008-10-01 Thread Aristotle Pagaltzis
that attacks can be initiated from any page on the web. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail

[Catalyst] Re: CSRF

2008-10-01 Thread Aristotle Pagaltzis
together with the server secret using HMAC, then concatenate the resulting hash. Now you have a token that says “at $datetime, $user was granted permission to POST to $uri, verifiable by $digest.” Regards, -- Aristotle Pagaltzis // http://plasmasturm.org

[Catalyst] Re: CSRF

2008-10-01 Thread Aristotle Pagaltzis
attack is like breaking in through the window to steal the house keys so you can unlock the front door. Attackers don’t build Rube Goldberg contraptions. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo

[Catalyst] Re: fcgid

2008-10-01 Thread Aristotle Pagaltzis
publish the result too if there’s any interest. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail

[Catalyst] Re: CSRF (plus session security)

2008-10-01 Thread Aristotle Pagaltzis
attack from doing too much harm. In a sense, it’s the next step in the progression from CSRF to XSS. CSRF is dangerous primarily because of how easy it is to set up an attack. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List: Catalyst

[Catalyst] Re: Hello, Deployment of Catalyst apps in a shared web hosting account without shell

2008-10-03 Thread Aristotle Pagaltzis
* Lee Aylward [EMAIL PROTECTED] [2008-10-03 00:40]: Assuming that your shared host has all of the required modules installed you can use the .cgi script found in the /scripts directory of your catalyst application. That’s going to be extraordinarily slow. Regards, -- Aristotle Pagaltzis

  1   2   3   >