user management (login, registration, etc.)

2009-08-29 Thread travis+ml-pylons
Hello, I'm an expert with python but a noob at pylons. I'm trying to design a commercial web site with subscriptions service. To teach myself pylons, I'm reading http://pylonsbook.com/ I got to the part about forms and started writing logic regarding registering new users, logging in existing us

Re: user management (login, registration, etc.)

2009-08-29 Thread Chris Miles
On 30/08/2009, at 7:23 AM, travis+ml-pyl...@subspacefield.org wrote: > Hello, I'm an expert with python but a noob at pylons. > > I'm trying to design a commercial web site with subscriptions service. > > To teach myself pylons, I'm reading http://pylonsbook.com/ > > I got to the part about form

Re: user management (login, registration, etc.)

2009-08-30 Thread Mike Orr
On Sat, Aug 29, 2009 at 7:16 PM, Chris Miles wrote: > > You may also be interested in BlastOff, which is a Pylons project > template I've put together to generate the boilerplate for a Pylons > app with authentication, registration, email confirmation all pre- > configured and working out of the b

Re: user management (login, registration, etc.)

2009-08-30 Thread Thomas G. Willis
On Aug 30, 3:01 am, Mike Orr wrote: > On Sat, Aug 29, 2009 at 7:16 PM, Chris Miles wrote: > > > You may also be interested in BlastOff, which is a Pylons project > > template I've put together to generate the boilerplate for a Pylons > > app with authentication, registration, email confirmation

Re: user management (login, registration, etc.)

2009-08-30 Thread Chris Miles
On 30/08/2009, at 11:17 PM, Thomas G. Willis wrote: > > I took a slightly different approach, I made a library on top of > repoze.who/what that consists of middleware for the auth and a wsgi > app for the registration. The registration app can then be mounted > at / > register for any site you

Re: user management (login, registration, etc.)

2009-08-30 Thread Chris Miles
On 30/08/2009, at 5:01 PM, Mike Orr wrote: > > On Sat, Aug 29, 2009 at 7:16 PM, Chris Miles > wrote: >> >> You may also be interested in BlastOff, which is a Pylons project >> template I've put together to generate the boilerplate for a Pylons >> app with authentication, registration, email co

Re: user management (login, registration, etc.)

2009-08-30 Thread Thomas G. Willis
On Aug 30, 9:59 am, Chris Miles wrote: > On 30/08/2009, at 11:17 PM, Thomas G. Willis wrote: > > > > > I took a slightly different approach, I made a library on top of > > repoze.who/what that consists of middleware for the auth and a wsgi > > app for the registration. The registration app can

Re: user management (login, registration, etc.)

2009-08-30 Thread Mike Orr
I checked the wiki and there is a generic Auth page, so if everybody could link their solutions there. http://wiki.pylonshq.com/display/pylonscookbook/Authentication+and+Authorization ToscaWidgets is fine, as long as somewhere in the wiki there's an outline for how to do it without it. (I.e., "

Re: user management (login, registration, etc.)

2009-08-30 Thread Jason S.
On Aug 30, 12:57 pm, Mike Orr wrote: > I checked the wiki and there is a generic Auth page, so if everybody > could link their solutions there. > > http://wiki.pylonshq.com/display/pylonscookbook/Authentication+and+Au... If I can piggyback on this, I've just put together a different (smaller) pa

Re: user management (login, registration, etc.)

2009-08-31 Thread Graham Higgins
On Aug 30, 2:17 pm, "Thomas G. Willis" wrote: > I took a slightly different approach And I took yet another approach, vive la difference :-) Shabti [1, 2] is a handful of "shovel-ready" Pylons project templates based on Ben & Dan Jacob's old "Tesla" project [3], an abandoned approach that used

Re: user management (login, registration, etc.)

2009-08-31 Thread Thomas G. Willis
Perhaps solving the auth/reg problem is a pylons developer's rite of passage , similar to a php developer writing their own template language. :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group.

Re: user management (login, registration, etc.)

2009-08-31 Thread Ross Vandegrift
On Mon, Aug 31, 2009 at 05:19:58AM -0700, Graham Higgins wrote: > At some point in the not-too-distant, if interest warrants, I will > complete some of the more complex templates that I have lined up: > using eXist a native XML database, a basic SOAP template and an > AtomPub/XMPP template. Consi

Re: user management (login, registration, etc.)

2009-08-31 Thread Thomas G. Willis
OK here's my contribution. Put together most hastily. This whole excercise forced me to learn sphinx and restructured text which I am now a huge fan of. http://sadphaeton.com/identity.model_0.0.zip Blogging about it http://blog.sadphaeton.com/tom/2009/08/31/identitymodel-user-registration-an

Re: user management (login, registration, etc.)

2009-08-31 Thread Wyatt Baldwin
On Aug 31, 7:59 am, Ross Vandegrift wrote: > On Mon, Aug 31, 2009 at 05:19:58AM -0700, Graham Higgins wrote: > > At some point in the not-too-distant, if interest warrants, I will > > complete some of the more complex templates that I have lined up: > > using eXist a native XML database, a basic

Re: user management (login, registration, etc.)

2009-08-31 Thread Wyatt Baldwin
On Aug 31, 10:57 am, Wyatt Baldwin wrote: > On Aug 31, 7:59 am, Ross Vandegrift wrote: > > > On Mon, Aug 31, 2009 at 05:19:58AM -0700, Graham Higgins wrote: > > > At some point in the not-too-distant, if interest warrants, I will > > > complete some of the more complex templates that I have line

Re: user management (login, registration, etc.)

2009-08-31 Thread Ross Vandegrift
On Mon, Aug 31, 2009 at 10:57:14AM -0700, Wyatt Baldwin wrote: > > On Aug 31, 7:59 am, Ross Vandegrift wrote: > > On Mon, Aug 31, 2009 at 05:19:58AM -0700, Graham Higgins wrote: > > > At some point in the not-too-distant, if interest warrants, I will > > > complete some of the more complex templ

Re: user management (login, registration, etc.)

2009-08-31 Thread Chris Miles
On 31/08/2009, at 3:57 AM, Mike Orr wrote: > > A premade application template should get more prominence so newbies > will readily see it. I'm not sure where. I guess make a section in > the Auth page for now. We should probably start collecting > application templates with extra features som

Re: user management (login, registration, etc.)

2009-09-01 Thread Jonathan Vanasco
i've been working on a similar 'core' application distro its been near release a few times, and then we find a security bug. since its powering active sites, I've been hesitant to release things. if people want to communicate off line, i'd be happy to share code non- publicly until its at a publ

Re: user management (login, registration, etc.)

2009-09-10 Thread travis+ml-pylons
On Sun, Aug 30, 2009 at 12:01:32AM -0700, Mike Orr wrote: > That looks cool. Is it listed in the Pylons Cookbook somewhere? > We'll be getting more questions like this. Thanks to everyone who helped out with my question. I'm trying to wrap my head around all of this - Pylons is surprisingly com

Re: user management (login, registration, etc.)

2009-09-10 Thread Thomas G. Willis
I would probably recommend reading up on Paste http://pythonpaste.org/do-it-yourself-framework.html Should help you understand the wsgi things underlying pylons. It helped me anyway. On Thu, Sep 10, 2009 at 1:59 PM, > wrote: > On Sun, Aug 30, 2009 at 12:01:32AM -0700, Mike Orr wrote: > > That

Re: user management (login, registration, etc.)

2009-09-10 Thread Graham Higgins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10 Sep 2009, at 18:59, travis+ml-pyl...@subspacefield.org wrote: > I could use some more complete examples. Sure. There's Shabti: PyPi: http://pypi.python.org/pypi/Shabti/0.3.2c - for Pylons 0.9.7 users Bitbucket repos: http://bitbucket.or

Re: user management (login, registration, etc.)

2009-09-10 Thread Iain Duncan
Thanks! This should be on the site prominently somewhere. =) iain On Thu, 2009-09-10 at 22:23 +0100, Graham Higgins wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > On 10 Sep 2009, at 18:59, travis+ml-pyl...@subspacefield.org wrote: > > > I could use some more complete examples.