Re: using Pudge

2007-09-02 Thread Frederik
On Sep 2, 4:47 am, "Qiangning Hong" <[EMAIL PROTECTED]> wrote: > I met this too and find out that it is because of buildutils-1.2 (the > official release) doesn't support "highlighter" option for pudge > command. > > Upgrading buildutils to svn trunk version works. That's good news! I updated bu

Re: EOFError in production

2007-09-02 Thread Max Ischenko
On 8/23/07, Philip Jenvey <[EMAIL PROTECTED]> wrote: > > > I assume it's a concurrency issue, but I don't see why this part of > > the site would have greater concurrency than elsewhere. > > This issue was reported recently, and Ben committed a fix for it > that's included in Beaker 0.7.5. Now any

Re: What is the best way to write a service object with Pylons

2007-09-02 Thread Max Ischenko
On 9/1/07, mickolka <[EMAIL PROTECTED]> wrote: > > > Hi all > I want to write a FileStorage service object with following features > - should be configured on the start of the application > - should be accessible from the any controller > - have only one instance Pylons provide a `g` namespace fo

trailing slash redirection (routes)

2007-09-02 Thread Max Ischenko
Hello, Anyone does a redirection to make all urls have a trailing slash? What's the simplest way to accomplish this? Max. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group

Re: EOFError in production

2007-09-02 Thread Philip Jenvey
On Sep 2, 2007, at 5:59 AM, Max Ischenko wrote: > > > On 8/23/07, Philip Jenvey <[EMAIL PROTECTED]> wrote: > I assume > it's a concurrency issue, but I don't see why this part of > > the site would have greater concurrency than elsewhere. > > This issue was reported recently, and Ben committed

Re: why does pylons depends on nose<=0.9.9

2007-09-02 Thread Philip Jenvey
On Sep 1, 2007, at 8:47 PM, Qiangning Hong wrote: > > nose-0.10.0b1 is out for dozens of days. Should pylons be adapted to > compatible with it? > Have you tried b1 with Pylons? Does it work well? The first alpha release was pretty buggy, and wasn't working with a fairly basic Pylons projec

Re: pyorbited tutorial error

2007-09-02 Thread Philip Jenvey
On Aug 31, 2007, at 10:24 PM, Jose Galvez wrote: > > First I'll apologize for cross posting but I'm not sure if this is an > orbited, pylons or paste issue so this is being put on all three > lists. > > Ok so I was going over the orbited pylons chat tutorial and I found an > interesting error.

underscores in code chunks in wiki

2007-09-02 Thread Brendan Arnold
hi there, in the firefox browser the fonts on both windows and mac make it so that underscores in the last line of a code chunk in the wiki are obscured. could the css be changed to avoid this? i nearly typed from sqlalchemy import engine from config rather than from sqlalchemy import engine

Re: using Pudge

2007-09-02 Thread Mike Orr
On 9/1/07, Qiangning Hong <[EMAIL PROTECTED]> wrote: > > On 7/16/07, Max Ischenko <[EMAIL PROTECTED]> wrote: > > python setup.py pudge > > running pudge > > error: error in setup.cfg: command 'pudge' has no such option > > 'highlighter' > > I met this too and find out that it is because of buildut

url_for() and wildcards

2007-09-02 Thread Yannick Gingras
Hi there, I have a route that looks like this: map.connect('/wiki/*slug', controller="wiki", action="view") Later on I try to expand my wiki links with url = h.url_for(controller="/wiki", action="view", slug=norma

Re: why does pylons depends on nose<=0.9.9

2007-09-02 Thread Qiangning Hong
On 9/3/07, Philip Jenvey <[EMAIL PROTECTED]> wrote: > On Sep 1, 2007, at 8:47 PM, Qiangning Hong wrote: > > nose-0.10.0b1 is out for dozens of days. Should pylons be adapted to > > compatible with it? > Have you tried b1 with Pylons? Does it work well? After removing "<=nose-0.9.9" from /usr/lib

Re: What is the best way to write a service object with Pylons

2007-09-02 Thread mickolka
Thanks Max, seems like it makes sense to put it to global scope this way and configure programmaticaly. Just used to configure everything with XML, but programmatic object configuration with python seems to be less verbose than with Java. m On Sep 2, 4:01 pm, "Max Ischenko" <[EMAIL PROTECTED]> w