CSS on wiki.pylons.com?

2009-05-20 Thread Chris Withers
Hi All, Is it just me or is the CSS on: http://wiki.pylonshq.com/display/pylonsdocs/Using+SQLAlchemy+with+Pylons ...out of whack? I'm using Google Chrome and all the code boxes have scroll bars in them, making them really hard to read, and the paragraph text runs over into the black edge

http://wiki.pylonshq.com/display/pylonsdocs/Home contains broken link

2009-05-20 Thread Chris Withers
...to http://pylonshq.com/WebHelpers/module-index.html Where has this moved to? cheers, Chris -- Simplistix - Content Management, Zope Python Consulting - http://www.simplistix.co.uk --~--~-~--~~~---~--~~ You received this message because you are

Re: My First Pylons Application: Feedback?

2009-05-20 Thread KLEIN Stéphane
On 20 mai, 10:53, KLEIN Stéphane klein.steph...@gmail.com wrote: On 13 mai, 15:30, leveille leveil...@gmail.com wrote: I am on the cusp of finishing my first Pylons (and also first real Python) application (a blog, imagine that).  I still have some cleanup work to do (cache integration,

Re: My First Pylons Application: Feedback?

2009-05-20 Thread KLEIN Stéphane
On 13 mai, 15:30, leveille leveil...@gmail.com wrote: I am on the cusp of finishing my first Pylons (and also first real Python) application (a blog, imagine that).  I still have some cleanup work to do (cache integration, skinning admin UI, DRY cleanup), however overall I think I'm in

Re: http://wiki.pylonshq.com/display/pylonsdocs/Home contains broken link

2009-05-20 Thread Alexandre Conrad
This maybe: http://pylonshq.com/docs/en/0.9.7/thirdparty/webhelpers/ 2009/5/20 Chris Withers ch...@simplistix.co.uk: ...to http://pylonshq.com/WebHelpers/module-index.html Where has this moved to? cheers, Chris -- Simplistix - Content Management, Zope Python Consulting            -

Re: Paster Shell Not Known

2009-05-20 Thread Daniele Paolella
On 20 Mag, 02:16, Tom Longson (nym) toml...@gmail.com wrote: Hi all, I removed my project.egg_info directory, and ran into problems when I recreated it with 'python setup.py egg_info'. As per feedback via #pylons I changed setup.py to hav e the following line: paster_plugins = [Pylons,

deploying to production?

2009-05-20 Thread Chris Withers
Hey All, As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * - how do you build all the other bits? * - what do people use to serve their sites? Is whatever paster serve blah.ini using suitable for

Re: deploying to production?

2009-05-20 Thread Ross Vandegrift
On Wed, May 20, 2009 at 02:28:52PM +0100, Chris Withers wrote: - which bits of a Pylons project do you version control? * I version control anything that isn't automatically regenerated. That includes the Paster templates and boilerplate code (since it's rarely boilerplate when I'm done!) -

Re: using buildout with pylons

2009-05-20 Thread Wyatt Baldwin
On May 19, 10:03 am, Chris Withers ch...@simplistix.co.uk wrote: Wichert Akkerman wrote: BUT, one thing I have noticed so far is that after running buildout, I end up with eggs for Paste, PasteDeploy and PasteScript in pylons_buildout/myproject, which is wrong. Everything in

Re: deploying to production?

2009-05-20 Thread Wyatt Baldwin
On May 20, 6:28 am, Chris Withers ch...@simplistix.co.uk wrote: Hey All, As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * It's been a while since I started a new Pylons project from scratch, but I

Re: CSS on wiki.pylons.com?

2009-05-20 Thread Garland, Ken R
it looks like they are still using confluence. i noticed this behavior on the old design, so apparently there is something in the confluence css that is causing this. On Wed, May 20, 2009 at 12:30 PM, Christopher Barker chris.bar...@noaa.govwrote: Wichert Akkerman wrote: Previously Chris

Re: deploying to production?

2009-05-20 Thread Wichert Akkerman
Previously Chris Withers wrote: * I'd like to be using buildout for things wherever possible, the following is what I have so far: [buildout] parts = pylons develop = myproj [pylons] recipe = zc.recipe.egg eggs = Pylons PasteScript myproj myproj should depend on Pylons

Re: No secure_form token after use htmlfill.render with defaults.

2009-05-20 Thread Jan Koprowski
Problem is still present in other form. When I send form fill with bad values and get errors second sumbition (with correct values) have _authentication_token value empty witch produce 403 CSRF attack response :| I doesnt have any ideas what I can do more. Greetings from Poland ! -- Jan

Re: How setup (I guess) Pylons routes when app run under WSGIAlias /something

2009-05-20 Thread Jan Koprowski
1. url_for in redirect_to works bad. I remove this function from redirect_to because duplicate /something/something in url. But in templates is still present and work fine. 2. I use simple workaround and set: authkit.redirect.url authkit.signin authkit.cookie.signout to

Re: deploying to production?

2009-05-20 Thread Chris Miles
On 20/05/2009, at 11:28 PM, Chris Withers wrote: As a total newbie to Pylons I thought I'd ask some questions about deployment: - which bits of a Pylons project do you version control? * The whole package source that paster creates, minus any autogen fluff like .egg-info dir. - how