Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread David Schmidt
On Thu, Aug 26, 2010 at 10:46 AM, daniel.brunkho...@dataport.de wrote: Dear list members, I guess what I am trying to do is a pretty common task for web developers. So I am very astonished that a couple of hours spent searching the Internet didn’t provide me with a good starting point for my

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread Kiffin Gish
You might want to have a look in the MojoMojo code for an example of something similar. Is this is not exactly what you require, then I can provide you with some of my own example code which does something slightly more complicated. -- Kiffin Gish kiffin.g...@planet.nl Gouda, The Netherlands

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread David Schmidt
On Thu, Aug 26, 2010 at 12:41 PM, daniel.brunkho...@dataport.de wrote: Basically you need to setup a model (a common one would be DBIx::Class) to store your users. (http://search.cpan.org/~rkitover/Catalyst-Model-DBIC-Schema- 0.43/lib/Catalyst/Model/DBIC/Schema.pm) I am not going to use a

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread Denny
On Thu, 2010-08-26 at 13:10 +0200, David Schmidt wrote: Anyways, what you want can be done with Catalyst. 1) user enters mailaddress and hits submit 2) you generate a digest 3) store digest + mailaddress in model 4) send digest in URL to mailaddress 5) user klicks the link 6) validate

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread Kieren Diment
On 26/08/2010, at 9:25 PM, Denny wrote: On Thu, 2010-08-26 at 13:10 +0200, David Schmidt wrote: Anyways, what you want can be done with Catalyst. 1) user enters mailaddress and hits submit 2) you generate a digest 3) store digest + mailaddress in model 4) send digest in URL to

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread Bill Moseley
On Thu, Aug 26, 2010 at 4:10 AM, David Schmidt davew...@gmx.at wrote: 1) user enters mailaddress and hits submit 2) you generate a digest 3) store digest + mailaddress in model I currently collect info and store and then also save the digest. After seeing how much cruft get collected, I'd

Re: [Catalyst] User management with Catalyst (with email and URLs)

2010-08-26 Thread David Schmidt
On Thu, Aug 26, 2010 at 4:34 PM, Bill Moseley mose...@hank.org wrote: On Thu, Aug 26, 2010 at 4:10 AM, David Schmidt davew...@gmx.at wrote: 1) user enters mailaddress and hits submit 2) you generate a digest 3) store digest + mailaddress in model I currently collect info and store and