Re: [Catalyst] Safari, Sessions and Cookies

2012-08-13 Thread Mark A. Stratman
On Aug 11, 2012, at 9:56 AM, jeff robinson wrote: This hand off causes a change in the user agent that is reported to Catalyst, which in turn cause the Session to be reset. Are you sure that's the reason? If you haven't already you may want to turn on debugging and take a close look at your

Re: [Catalyst] FCGI problem.

2012-08-03 Thread Mark A. Stratman
On Aug 2, 2012, at 8:43 AM, Duncan Garland wrote: Any idea what’s causing this? I tried re-installing Plack::Handler::FCGI but it just made things worse. It works using the development server or cgi. It works using fcgi on our other servers. [warn] Use of uninitialized value $host in

Re: [Catalyst] Mistake in documentation

2011-04-08 Thread Mark A. Stratman
I fixed it in a branch: /people/mstratman/intro_attribute So when a core contributor gets around to it, can you please review and put in master (there's another /people/mstratman/* branch too, btw). On Apr 8, 2011, at 3:51 AM, John M. Dlugosz wrote: I would suppose that the maintainers follow

[Catalyst] Wiki: How To vs. Cookbook, and general change requests

2011-03-25 Thread Mark A. Stratman
I've been picking at it here and there, but one of these days soon I'm planning to sit down and thoroughly go through my growing todo list for the wiki ... namely page cleanups for consistency, clearly marking outdated stuff, and perhaps some slight reorganization. But first I'd like to run

Re: [Catalyst] Best form library?

2011-03-06 Thread Mark A. Stratman
On 3/6/11 9:45 AM, Tobias Kremer wrote: On 06.03.2011, at 16:31, Octavian Rasnita wrote: From: John M. Dlugoszwxju46g...@snkmail.com What's the best form-generating/processing library for Catalyst, assuming I don't need to worry about old baggage and can move forward with the latest and

Re: [Catalyst] Tutorial : Schema Generator

2010-08-10 Thread Mark A. Stratman
On Aug 2, 2010, at 5:39 PM, Greg Zapp wrote: I keep having to manually change 'role_id' and 'user_id' to 'role' and 'user'. My data base is MySQL and I have the foreign keys setup in the UserRole table. Why is this happening? It happens for the BookAuthor as well, and it causes

Re: [Catalyst] Re: possible to get uri fragment?

2010-06-15 Thread Mark A. Stratman
On Jun 15, 2010, at 4:07 AM, Fayland Lam wrote: hmm, it seems server can't get #fragment because the browser doesn't send it to server? so leave it. Thanks If the links are being visited from other pages, what you can do is just add an http param to all named links. e.g.

Re: [Catalyst] Literal elements in uri_for generated paths

2010-06-09 Thread Mark A. Stratman
If you're passing a string for the action anyway, why not just append the additional @args to it manually? String paths aren't url encoded, but the additional args will be. That is: c.uri_for('/static/data/eof/{symbol}.txt').path On Jun 8, 2010, at 3:16 AM, Octavian Rasnita wrote: Hi, I