OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: [xml-dev] Implementing an Blogger-style template using XSLT

[ Lists Home | Date Index | Thread Index ]

On 2/21/06, publicreg@nascencetech.com <publicreg@nascencetech.com> wrote:
> Hi,
>
> I'm trying to implement a Blogger-style templating system and would like
> to get some feedback on whether it's feasible or not. While it's true that
> an XSLT file itself would be a template, some of my users are not keen on
> learning it and I'm trying to strike some middle ground here.
>
> The premise is this:
>
> The template file would be an extension of XHTML and looks like this:
>
<snip/> -------------------------
>
> Then, the data input would come in the form of an XML document that looks
> like this:
>
><snip/> --------------------------
>
>
> Finally, I'd have an XSLT file that uses the 2 files and then translates
> into XHTML code that I can output to the browser.
>
> How, folks? Do you think it's feasible to do this? Would appreciate any
> pointers in the right direction.

I've used essentially this architecture since the days when XSLT was
still a draft standard.  It works very well and with proper design can
have good performance. (Proper design includes many forms of caching.)

Currently we use Apache Cocoon to drive this which gives us a lot of
capabilities, many of which we don't really exploit.  It's probably at
least worth looking at.  In particular you can exploit pipelines to
break complex XSLT down into multiple transformations which often
makes hard XSLT problems a lot easier to code (you don't have to build
up complex variables and re-parse them for some problems) and you can
aggregate multiple XML sources to make context sensitive parsing much
easier.

Depending on your eventual deployment targets (cell phones, print,
other devices?) you may want to go a little more abstract than XHTML
for your mark up language.  XUL, XFORMS or something proprietary
perhaps.Among other things you might be able to keep the language
simpler and easier for the end users; and you can maybe separate the
presentation details from the markup model.

In our case we use a very abstract model and two main XSLT passes. 
The first creates an abstract combined model from the layout model,
the data, authorizations and other context dependant things (eg. do
you need internationalization support?).  The output of smashing all
these things together is still an abstract object model, but one that
maps pretty directly to output, minus any presentation device specific
details.  Depending on the deployment target a second transformation
then takes care of the specific presentation details.

I'd note that you should also plan on exploiting the capabilities of
CSS.  Depending on your needs it might be possible to do everything in
pure XML and CSS in which case things can be a lot simpler.


--
Peter Hunsberger




 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS