Joe’s ColdFusion post got me thinking about a little fling I had with ColdFusion a few years back. I liked it for its simplicity and declarative syntax, but I didn’t think it had enough depth.
However, wouldn’t it be great as a templating language for an existing CMS? It’s lightweight, simple, plays well with HTML, etc. In a larger sense, who says that your content needs to be presented by the same language that your CMS is written in? Separation is good.
Think of content management as having two sides — (1) managing and adminstering content, and (2) displaying content. (I would actually argue — and I have — that content management has nothing to do with displaying content, but stick with me here.)
Now, lets put the 50-yard line of this game at the database. So the creation, management, approval, and general administration of content all leads up to one moment — when a certain content record in a database table is declared “active.” Everything is working up to that point. The “active” records in the database table are free to be used on the public side of the site.
Why not just create a view of the database that only includes those records, then give your designers and presentation specialists a read-only user and a copy of ColdFusion? Who says that the language the CMS is programmed in has to be the language the content is presented in?
I’ve talked before about the fact that the management of content is the hard part, The presentation of content is usually pretty easy, while actually getting content to the 50-yard line of our situation — through creation, adding of metadata, approvals, various workflows, etc. — is the real value-add of content management.
I say use whatever language you need to program your CMS, but don’t feel compelled to use that same langauge for presenting the content. ColdFusion would be perfect in this capacity (and ColdFusion Express is — or was — free). Client-tools work work well here as well — Dreamweaver has great database integration, and FrontPage would even work in a pinch. And who could forget about Escapade?
I working on a CMS right now, and I’m tempted to bag the entire built-in templating system I have and just leverage an existing language for it. I’m suddenly enamoured with the idea of drawing a defined “content line” and having a complete separation of systems on either side of, with the only common element the database itself.
I spent some time this morning looking at PureEdit. It bills itself as a CMS, which is a classification I don't know that I can agree with completely. For the record, I only watched a couple of screencasts and browsed through some of the code. I don't know if…
So it's 2000, and you're happily writing your web apps in ColdFusion. Then Allaire is bought out by Macromedia, the Sun sales rep drops by and takes your IT director to lunch, and now things are migrating to Java, your IT director has a snazzy leather jacket, and you're stuck…
I don't like content management systems that try to handle the displaying of content. I alluded to this last year, when I wrote: There are two sides to publishing Web content: First you create the content, store it, edit it, send it through workflow, get it approved, then stage it…
I've been involved with dozens of content management systems — both designing and building them, and working with some of the big, enterprise systems. During this time, I hit upon a seemingly obvious point that it took me a while to grasp: content management and content publishing are two…
I stumbled across Escapade while looking through the EditPlus Yahoo! group. It's a very (very) lightweight server-side scripting language. It provides for include files, database access, variable assignment and retrieval, and not much else. But I had it installed in about two minutes and I was pulling…
I like the idea. One challenge might be providing content authors a preview function so they can see how their content will appear in the presentation layer. An argument could be made that the authors have no need to see a preview of the final presenation if they stick to a defined set of style markup. However, it can be hard to convince the content author of that...