Hi René, > First I used the sitetree module to build a custom > navigation. The problem with this solution is (although it is easy to > build) that the resource type is not available and I want to be able > to mix documents but only show images in my preview page.
I think this is really the most straight-forward approach. You can inject the resource type information into the pipeline using the MetaDataTransformer. I'd actually use the mime type, because it allows to detect if a resource is an image. After that, you can just remove all non-image documents from the list of siblings. <map:transform src="addMetaDataStatements.xsl"/> <map:transform type="metadata"/> <map:transform src="filterImages.xsl"/> -- Andreas -- View this message in context: http://www.nabble.com/How-to-use-the-collection-module-tp23004294p23040043.html Sent from the Lenya - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
