crap. software patents now almost legal in EU (fwd)

This post by Justin Mason is a fwd of a mail announcing the startling news that software patents are now legal in the EU. *bam* There goes Free Software in Europe! (maybe..)
UPDATE! Justin posted a follow up stating that there’s another stage to go through before it’s law in the EU. Colm replied saying it was at the “committee” stage still, and asking people to get in touch with their MEPs to reject the upcoming law!

Relaunching a website..

John points at a story about relaunching websites. I dunno, It doesn’t make sense to completely revamp your site, but it still happens. We’re in the middle of a relaunch, and while the site design is going to change, the basic contents and structure isn’t. Does that count as a redesign? Incremental changes happen all the time of course, without them the site would stagnate and glaring bugs wouldn’t be fixed!

model view controller pattern

I’m still working away at a registration process using the MVC pattern. It’s coming along very nicely in fact! Here’s an article describing it in some depth.
I’ve hijacked the idea somewhat for my project. I have one controller, and multiple views/models. There’s one model and view for each page. The view is split between PHP code and Smarty templates. The PHP code doesn’t do much beyond assigning variables for the Smarty templates but I wouldn’t put those assign calls into the model, as then the model would have to know about Smarty. This makes it easy to figure out where something is going wrong, and where I need to _put_ code.
How many of you have “super” classes with thousands of lines of code? That sucks for maintainability.
While some of the Java examples I’ve seen redirect the browser to the new view, I simply unset the old model and view and create the new model and view. The single solitary display() call at the end of the controller takes care of displaying whatever view is active!
Must post some example PHP code later.