WikiPage page = m_engine.getPage( pageName );
Collection attachments = m_engine.getAttachmentManager().listAttachments(page);
for( Iterator i = attachments.iterator(); i.hasNext(); )
{
Attachment att = (Attachment) i.next();
DavPath thisPath = new DavPath( "/" );
thisPath.append( att.getName() );
AttachmentItem ai = new AttachmentItem( this, thisPath, att );
result.add( ai );
}