[CMF-checkins] CVS: CMF - folder_view.dtml:1.1

tseaver@digicool.com tseaver@digicool.com
Tue, 19 Jun 2001 22:57:13 -0400 (EDT)


Update of /cvs-repository/CMF/CMFDefault/skins/content
In directory korak.digicool.com:/tmp/cvs-serv8146/CMFDefault/skins/content

Added Files:
	folder_view.dtml 
Log Message:


  - Land "skinned folder" module, which permits creation of
    "folderish" types with customized replacements for 'index_html'.



--- Added File folder_view.dtml in package CMF ---
<dtml-var standard_html_header>

<h2><dtml-var title_or_id></h2>

<dtml-let folder_url=absolute_url>

<dtml-in expr="objectValues( [ 'Document', 'News Item', 'Portal Image', 'Portal File' ] )"
skip_unauthorized>
<dtml-if sequence-start>
<h3> Documents, Images, and Files </h3>

<ul>
</dtml-if>
<li> <a href="&dtml-id;"> <dtml-var Title> </a>
<dtml-if name="Description"><blockquote>&dtml-Description;</blockquote></dtml-if></li>
<dtml-if sequence-end>
</ul>
</dtml-if>
</dtml-in>

<dtml-in expr="objectValues( [ 'Link','Favorite' ] )" skip_unauthorized>
<dtml-if sequence-start>
<h3> Links </h3>

<ul>
</dtml-if>
<li> <a href="&dtml-getRemoteUrl;"> <dtml-var Title> </a>
<dtml-if name="Description"><blockquote>&dtml-Description;</blockquote></dtml-if></li>
<dtml-if sequence-end>
</ul>
</dtml-if>
</dtml-in>

<dtml-in expr="objectValues( [ 'Folder', 'Portal Folder' ] )" skip_unauthorized>
<dtml-if sequence-start>
<h3> Folders </h3>

<ul>
</dtml-if>
<li> <a href="&dtml-id;"> <dtml-var title> </a>
<dtml-if name="Description"><blockquote>&dtml-Description;</blockquote></dtml-if></li>
<dtml-if sequence-end>
</ul>
</dtml-if>
</dtml-in>

</dtml-let>

<dtml-var standard_html_footer>