Re: [Web-SIG] change "?" into "/" in url

2005-07-23 Thread Jonathan Ellis
On Sun, 24 Jul 2005 09:32:20 +0430, "mohammad babaei" <[EMAIL PROTECTED]> said: > Hi, > how can i change "?" into "/" in urls ? It's quite platform-dependent... if Apache is an option, mod_rewrite is your friend. Well, okay, mod_rewrite isn't really friendly even on a good day, but it's a common

[Web-SIG] change "?" into "/" in url

2005-07-23 Thread mohammad babaei
Hi, how can i change "?" into "/" in urls ? ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Phillip J. Eby
At 08:41 PM 7/23/2005 -0400, Chris McDonough wrote: >On Sat, 2005-07-23 at 20:21 -0400, Phillip J. Eby wrote: > > At 08:08 PM 7/23/2005 -0400, Chris McDonough wrote: > > >Would you maybe rather make it more explicit that some apps are also > > >gateways, e.g.: > > > > > >[application:bleeb] > > >co

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Ian Bicking
Chris McDonough wrote: > On Fri, 2005-07-22 at 17:26 -0500, Ian Bicking wrote: >>> To do this, we use a ConfigParser-format config file named >>> 'myapplication.conf' that looks like this:: >>> >>>[application:sample1] >>>config = sample1.conf >>>factory = wsgiconfig.tests.sample_comp

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Chris McDonough
On Sat, 2005-07-23 at 20:21 -0400, Phillip J. Eby wrote: > At 08:08 PM 7/23/2005 -0400, Chris McDonough wrote: > >Would you maybe rather make it more explicit that some apps are also > >gateways, e.g.: > > > >[application:bleeb] > >config = bleeb.conf > >factory = bleeb.factory > > > >[filter:blaz]

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Phillip J. Eby
At 08:08 PM 7/23/2005 -0400, Chris McDonough wrote: >Would you maybe rather make it more explicit that some apps are also >gateways, e.g.: > >[application:bleeb] >config = bleeb.conf >factory = bleeb.factory > >[filter:blaz] >config = blaz.conf >factory = blaz.factory That looks backwards to me.

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Chris McDonough
On Fri, 2005-07-22 at 17:26 -0500, Ian Bicking wrote: > > To do this, we use a ConfigParser-format config file named > > 'myapplication.conf' that looks like this:: > > > > [application:sample1] > > config = sample1.conf > > factory = wsgiconfig.tests.sample_components.factory1 >

Re: [Web-SIG] Standardized configuration

2005-07-23 Thread Ian Bicking
>> To do this, we use a ConfigParser-format config file named >> 'myapplication.conf' that looks like this:: >> >>[application:sample1] >>config = sample1.conf >>factory = wsgiconfig.tests.sample_components.factory1 >> >>[application:sample2] >>config = sample2.conf >>fact