
Need to write a new item-list-full (for the time being call it item-list-smart)
that is just like item list full but FASTER and uses the DB.

Here is the old sequence entry...

    <sequence name="urn:quick-channel/item-list/full">

        <skeleton location="resource:/xml/users/default/subscriptions.xml"/>

        <stylesheet location="resource:/xsl/quick-channel/enumerate.xsl"/>

        <stylesheet location="resource:/xsl/quick-channel/mozilla/item-list-full.xsl"/>
        
    </sequence>

Here I what the new one should look like.

    <sequence name="urn:quick-channel/item-list/full">

        <skeleton location="resource:/xml/users/default/subscriptions.xml"/>

        <stylesheet location="resource:/xsl/quick-channel/mozilla/item-smart.xsl"/>
        
    </sequence>

This should depend on two assumptions:

- that we do not reparse large amounts of XML

- that we can use an extension within item-smart.xsl and then use it to enum
  over the results to output XHTML.

  - FIXME: BUT HOW DO WE DO THIS WITH XALAN!?

