Re: Authkit vs repoze.who for openid

2009-07-18 Thread Tom Longson (nym)
This is exactly the reason I would use django for my next big project. Much better openid support, like with django-clickpass. I hear repoze.what is making progress with .who but I believe the user base is still pretty small. Cheers, Tom Longson (nym) -- http

Re: Web technologies and pylons in the real world

2009-07-16 Thread Tom Longson (nym)
, however there is a lot of inherent flexibility in how you can customize your pylons app. There are many discussions on this subject. Here is one of them :- http://www.reddit.com/r/programming/comments/88zyd/django_or_pylons_which_should_i_go_for/ On Jul 15, 5:44 pm, Tom Longson (nym) toml

Re: Web technologies and pylons in the real world

2009-07-15 Thread Tom Longson (nym)
I know people here won't like me saying this, but I recommend looking at Django. If you have real heavy lifting on ORM, it's not as good, but for 98% of the time Django is easier to develop in than Pylons. Cheers, Tom Longson (nym) -- http://tomlongson.com On Wed

Paster Shell Not Known

2009-05-19 Thread Tom Longson (nym)
', paster_plugins.txt is created. Nevertheless, running 'paster shell' gives me the same old message: Command 'shell' not known (you may need to run setup.py egg_info) Any help would be really appreciated! Cheers, Tom Longson (nym) --~--~-~--~~~---~--~~ You

Re: Repoze.what Implementing permission system based on reputation

2009-04-23 Thread Tom Longson (nym)
This reminds me of http://everything2.com/ (if you haven't been there, check it out already!) Good stuff guys! Cheers, Tom Longson (nym) - Tackle Human Dilemmas. http://stopthespin.com/ On Thu, Apr 23, 2009 at 7:38 AM, Gustavo Narea m...@gustavonarea.net

Re: updating database schema

2009-04-22 Thread Tom Longson (nym)
, Tom Longson (nym) - Tackle Human Dilemmas. http://stopthespin.com/ On Wed, Apr 22, 2009 at 7:21 AM, Wichert Akkerman wich...@wiggy.net wrote: Previously Ross Vandegrift wrote: On Wed, Apr 22, 2009 at 12:36:09AM -0700, Richard Jones wrote: Is there a way

Re: Web based email sql admin for Pylons?

2009-03-24 Thread Tom Longson (nym)
Sounds like you want Django or Drupal. Pylons is lightweight, which means these things are up to you. There's no administrative backend. Cheers, Tom Longson (nym) - Tackle Human Dilemmas. http://stopthespin.com/ On Tue, Mar 24, 2009 at 2:43 PM, Kevin Ar18

Re: Catch unimplemented action

2009-03-23 Thread Tom Longson (nym)
Check out the ErrorController (controllers/error.py). Here's more information on error handling in Pylons: http://wiki.pylonshq.com/display/pylonsdocs/Error+Documents Cheers, Tom Longson (nym) - Tackle Human Dilemmas. http://stopthespin.com/ On Mon, Mar 23

Re: 'who is online' feature

2009-03-10 Thread Tom Longson (nym)
On stopthespin.com (my pylons site) we track whoever last logged on. It's not quite what you're asking for, but a cheap way to get a similar result. Cheers, Tom Longson http://stopthespin.com/ On Tue, Mar 10, 2009 at 9:54 AM, Jonathan Vanasco jonat...@findmeon.com wrote: that would be a bit

Re: Problem with javascript content files loaded three times.

2009-03-10 Thread Tom Longson (nym)
On stopthespin.com, we run all our static files directly through nginx so pylons never touches the javascript or css, and as a result is delivered faster to the client. I'm sure why you would have this problem, but I highly recommend you exclude your static files since this really shouldn't be a

Re: Clickpass?

2009-02-25 Thread Tom Longson (nym)
I think the point of clickpass is to create a system that is easy for anyone to use, instead of something that just confuses users. Tom Longson On Wed, Feb 25, 2009 at 12:22 PM, Dalius Dobravolskas dalius.dobravols...@gmail.com wrote: Tom Longson (nym) wrote: Has anyone had experience

Re: Pylons vs Thundercats

2009-01-30 Thread Tom Longson (nym)
Thundercats for the win, no question. On Fri, Jan 30, 2009 at 10:01 AM, Jonathan Vanasco jvana...@gmail.com wrote: If we're going to make ridiculous comparisons, I vote for a thread on this one. --~--~-~--~~~---~--~~ You received this message because you

Re: Pylons vs Thundercats

2009-01-30 Thread Tom Longson (nym)
On Fri, Jan 30, 2009 at 11:26 AM, Tycon adie...@gmail.com wrote: How many request per seconds can the thundercats serve ? Old thundercats or new thundercats? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Help Installing pylons on Vista

2009-01-16 Thread Tom Longson (nym)
I've been reading the book today and really dig it. I recommend picking it up and giving it a go. Tom Longson http://truefalsemaybe.com/ On Thu, Jan 15, 2009 at 11:19 PM, Mike Orr sluggos...@gmail.com wrote: On Thu, Jan 15, 2009 at 10:47 PM, Steve smill...@gmail.com wrote: I have python 2.5

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Tom Longson (nym)
middleware entirely. I also strongly suggest using Google's AJAX API http://code.google.com/apis/ajaxlibs/documentation/index.html to serve up prototype and scriptaculous since it is already on their CDN, and is already cached by many people's browsers. Tom Longson (nym) http://truefalsemaybe.com/ On Mon

Re: Flickr tutorial under 0.9.7?

2008-12-15 Thread Tom Longson (nym)
Yes Rod, that's my understanding. This comment from a Google employee seems to support that opinion: http://code.google.com/p/google-ajax-apis/issues/detail?id=50#c44 They purposely did not include the ext javascript library because of concern for commercial users. Tom Longson (nym) http

Re: auth and auth

2008-11-24 Thread Tom Longson (nym)
I've implemented repoze.who in one app so far. It was a bit difficult at first, but from my understanding is getting easier. I wrote a very simple tutorial at http://truefalsemaybe.com/2008/06/authorization-in-pylons-with-repozewho-part-1-htaccess/ I imagine I will write a followup soon, as I