Re: Pylons with gzip compression?

2008-12-19 Thread Dalius Dobravolskas
Hi, I am beginning and I have one question about running Pylons(paster) v0.9.6 with gzip compression(for pages) How to do it? :) Two ways: 1) Search for gzipmiddleware here: http://pylonsbook.com/alpha1/wsgi Actually it would be nice if this middleware were available in Pylons by default.

Re: Flickr tutorial under 0.9.7?

2008-12-19 Thread Wichert Akkerman
Previously Matt Feifarek wrote: On Wed, Dec 17, 2008 at 6:19 PM, Ben Bangert b...@groovie.org wrote: I've updated the front page in the codebase which will soon be up at http://beta.pylonshq.com/, to properly reflect what's in Pylons 0.9.7. Should be deployed there shortly. I'm also

Re: Pylons with gzip compression?

2008-12-19 Thread sniipe
thanks :) everything works :) In my opinion it should be implemented by default :P On 19 Gru, 09:14, Dalius Dobravolskas dalius.dobravols...@gmail.com wrote: Hi, I am beginning and I have one question about running Pylons(paster) v0.9.6 with gzip compression(for pages) How to do it? :)

Re: Pylons with gzip compression?

2008-12-19 Thread Tomasz Narloch
Dalius Dobravolskas pisze: Hi, I am beginning and I have one question about running Pylons(paster) v0.9.6 with gzip compression(for pages) How to do it? :) Two ways: 1) Search for gzipmiddleware here: http://pylonsbook.com/alpha1/wsgi Actually it would be nice if this

RE: Problem with pylons install on win XP 32

2008-12-19 Thread Jules Stevenson
You should work with Python 2.5, or maybe you could use 0.9.7rc Not really an option, we're tied into 2.6 [64 bit windows - nice :P] because that's the version the 3d app we use predominantly here uses. --~--~-~--~~~---~--~~ You received this message because

Re: Two problems with AuthKit 0.4.1 and Pylons 0.9.7rc2

2008-12-19 Thread Andre Kolell
Hi, thanks a lot for your help. Now I decided to change AuthKit's method to forward instead of form. This solved both problems. Andre - Ursprüngliche Mail - Von: Dalius Dobravolskas dalius.dobravols...@gmail.com An: pylons-discuss@googlegroups.com Gesendet: Donnerstag, 11. Dezember

Problem with redirect_to and SSL

2008-12-19 Thread Andre Kolell
Hello, I'm using Apache with SSL and use it's Proxy functionality to forward requests to the local running Paster (with Pylons 0.9.7rc2). SSL and Links work fine (with Mako). Only when Pylons comes to use the redirect_to-function it always ends up in http- instead of https-Connections. Using

Re: Routes user survey

2008-12-19 Thread Ben Bangert
On Dec 18, 2008, at 6:36 PM, Mike Orr wrote: file - controllers/semi_static.py controller - SemiStaticController method - faq Note that you can customize the controller name if desired by dropping a line into semi_static.py like so: __controller__ = 'MyClassController' Cheers, Ben

pylons with sqlalchemy - UnboundExecutionError

2008-12-19 Thread wellhong
Hi all, Ever since I've moved my application onto a production server with apache and mod_wsgi, I constantly get the UnboundExecutionError after a certain amount of time. On my local workstation, everything seems to work fine however once it's moved over to the production server, this error

category support for flash

2008-12-19 Thread Wichert Akkerman
Often it is very useful to have flash/status messages of several different types, for example to be able to differentiate between informational messages, warnings and errors. To do that I made a simple extension to WebHelpers to add category support to its Flash class. The change is completely

Re: category support for flash

2008-12-19 Thread Mike Orr
On Fri, Dec 19, 2008 at 11:57 AM, Wichert Akkerman wich...@wiggy.net wrote: Often it is very useful to have flash/status messages of several different types, for example to be able to differentiate between informational messages, warnings and errors. To do that I made a simple extension to

Re: category support for flash

2008-12-19 Thread Wichert Akkerman
Previously Mike Orr wrote: On Fri, Dec 19, 2008 at 11:57 AM, Wichert Akkerman wich...@wiggy.net wrote: Often it is very useful to have flash/status messages of several different types, for example to be able to differentiate between informational messages, warnings and errors. To do that

Re: category support for flash

2008-12-19 Thread Mike Orr
On Fri, Dec 19, 2008 at 11:57 AM, Wichert Akkerman wich...@wiggy.net wrote: Often it is very useful to have flash/status messages of several different types, for example to be able to differentiate between informational messages, warnings and errors. To do that I made a simple extension to