[Zope-CMF] using FGNav product with CMF1.1?

seb bacon seb@jamkit.com
Wed, 24 Oct 2001 10:33:05 +0100


* Larry Prikockis <Larry_Prikockis@ABI.org> [011023 23:01]:
> Hi... I'm building a Zope 2.4/CMF1.1 based site and would really like to use
> the very cool FGNav product... 

> Alternatively, perhaps I'm reinventing the wheel... Is there some other
> relatively simple and more CMFish way of creating a dynamic site map or nav.
> tree of CMF content (e.g., a listing of all CMF Document objects in a
> particular folder)????

I don't know anything about FGNav, but you can use all the standard
Zope ways of doing things in the CMF, except you usually use
contentValues instead of objectValues, and contentIds instead of
objectIds.

For example, 

 <dtml-in "contentValues('Document')">
   <a href="&dtml-absolute_url;">&dtml-Title;</a>
 </dtml-in>

in a DTMLMethod, will list all Documents in the current folder. 

seb