Third post in a single day, is that a good or bad thing?
Finally finished the CRUD infrastructure, thanks to HTML::FormHandler. I felt like sharing some good news instead of pent up rage.
Now I can create CRUD methods that are not over 5 lines, finally.
Since most of my projects involve other designers and CMS for clients, I'll definitely be using this for them as well. So, I will be looking into making it as generic and concise as I can. If that will end up well, I might put it on CPAN. Two things trouble me with it though: 1. There's already a lot of CRUD modules there, which I'm sure are more generic than this one and have more functionality. Albeit I personally wasn't able to enjoy any of them, but they do exist so I'm guessing someone is. 2. There's already so much bad code on CPAN and things that don't work, I wouldn't want to add another one and give someone else another module that doesn't work for them 'cos it's not generic enough.
Put it up! (Score:1)
Any news on this front? (Score:1)
Re: (Score:1)
Not really. I still use what I wrote but haven't released it. I think it needs some work before I could. You're more than welcome to check the source, work with it, play with it and help to release it, obviously.
However, I have an idea that I wanted to propose and this might be a good place (or not). I want to create a layers model for a CRUD system. That would include scaffolding, form processing, etc. That way, we'll be able to use modules interchangeably and everything will work because they will conve
Re: (Score:1)
My form processing is currently done by Rose::HTMLx::DBIC - another of my modules, but I am not too much attached to Rose (it is a fine module - but I would rather have one object model - and since everyone goes wi
Actually... (Score:1)
I'm all very for the "I don't want to do it like that!" attitude. It's a sum of years of experience and I think it could leverage us and make sure we do things better and not fall over the same things again.
With regards to your concerns: we don't have to use HTML::FormHandler specifically. The idea is that we figure out a protocol (or, something of that sort) for CRUD and CRUD implementations which will make it possible for users to use either HTML::FormHandler or Rose:HTMLx::DBIC or anything else they want
Re: (Score:1)