The is-Pylons-for-me post

2007-07-09 Thread Martin Aspeli
Hi guys, We've just (almost certainly) chosen Pylons for a quick-and-dirty web application project. There are just a few outstanding things that we need to do, which I'm not sure how to approach. Speed is of the essence here, so having examples or documentation would be a huge help. I also don't

GMANE

2007-07-09 Thread Martin Aspeli
Hi, I just tried (twice) to send my previous post via Gmane NNTP, which is how I read all my other mailing lists. I've joined the Google group, and authorized in Gmane - is there anything else I need to do? :-/ I keep getting you are not authorized replies from Google Groups. Martin

AroundWord - Blog Publishing System

2007-07-09 Thread Jonas
AroundWord_ is a free and open Blog Publishing System built on Python using the most advanced technologies: * Framework: Tesla upon Pylons * Database Engine: SQLAlchemy + Elixir + SAContext * Templates: Mako * Widgets and Forms: ToscaWidgets + twForms + FormEncode * Authorization and

Re: The is-Pylons-for-me post

2007-07-09 Thread Christoph Haas
Martin, On Mon, Jul 09, 2007 at 12:30:18AM -0700, Martin Aspeli wrote: We've just (almost certainly) chosen Pylons for a quick-and-dirty web application project. There are just a few outstanding things that we need to do, which I'm not sure how to approach. Speed is of the essence here, so

Re: GMANE

2007-07-09 Thread Jon Rosebaugh
On 7/9/07, Martin Aspeli [EMAIL PROTECTED] wrote: I just tried (twice) to send my previous post via Gmane NNTP, which is how I read all my other mailing lists. I've joined the Google group, and authorized in Gmane - is there anything else I need to do? :-/ I keep getting you are not

Re: The is-Pylons-for-me post

2007-07-09 Thread Jon Rosebaugh
On 7/9/07, Martin Aspeli [EMAIL PROTECTED] wrote: 1. We need a fairly heavily AJAXified UI. Is Prototype and the Railsish web helpers the best way to go? I'm a little wary of code generation in general and Prototype in particular, but I'm willing to ignore my instincts if this is the way

Re: The is-Pylons-for-me post

2007-07-09 Thread Robert Leftwich
Martin Aspeli [EMAIL PROTECTED] writes: 1. We need a fairly heavily AJAXified UI. Is Prototype and the Railsish web helpers the best way to go? I'm a big fan of the Yahoo! User Interface library - http://developer.yahoo.com/yui/ It is hard to beat for quality of code and documentation, not

Re: The is-Pylons-for-me post

2007-07-09 Thread Garland, Ken R
On 7/9/07, Martin Aspeli [EMAIL PROTECTED] wrote: Hi guys, We've just (almost certainly) chosen Pylons for a quick-and-dirty web application project. 1. We need a fairly heavily AJAXified UI. Is Prototype and the Railsish web helpers the best way to go? 2. Specifically, we need an

Future of serving static content with pylons

2007-07-09 Thread voltron
I have hit the problem again of serving static content from a directory of my choice. I am serving a Pylons app through an Apache reverse proxy server, on Linux, this works, I set apache to proxy the whole root path. On windows, this just does not work. Would there be a way to set the path of

Re: Future of serving static content with pylons

2007-07-09 Thread Mike Orr
On 7/9/07, voltron [EMAIL PROTECTED] wrote: I have hit the problem again of serving static content from a directory of my choice. I am serving a Pylons app through an Apache reverse proxy server, on Linux, this works, I set apache to proxy the whole root path. On windows, this just does not

Re: Future of serving static content with pylons

2007-07-09 Thread voltron
Why doesn't it work on Windows? I´m not sure, exactly why, but even when I do this in my Apache config: DocumentRoot / ProxyRequests Off ProxyPass /css ! ProxyPass /flash ! ProxyPass /img ! ProxyPass /scripts ! ProxyPass /games !

Re: Future of serving static content with pylons

2007-07-09 Thread voltron
I noticed this in enviroment.py: root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) paths = {'root_path': root_path, 'controllers': os.path.join(root_path, 'controllers'), 'templates': [os.path.join(root_path, path) for path in \

Re: Future of serving static content with pylons

2007-07-09 Thread Jose Galvez
Hmm I develop with apache on windows. I've not tried your problem yet, but I'll take a look at it Jose voltron wrote: Same result Mike, moving the last two lines above the excludes doe not work, static content is not used by the templates. maybe Apache is doing a DNS lookup on

Re: Future of serving static content with pylons

2007-07-09 Thread Jose Galvez
Dear Voltron, I just tested the whole proxypass thing on my windows box and it works as expected. Looking at your apache confg code below the only thing I see is that DocumentRoot is set incorrectly, if that is really how you have it set that may be the problem. I believe it needs to be set to