Iterates through the attachments of the current page. The variable that is created is an instance of the Attachment class, which has the following methods: * String getName() - Returns the fully-fledged WikiName of the attachment. * String getFileName() - Returns the filename. * long getSize() - Size of the attachment in bytes. * String getParentName() - WikiName of the parent page. * String getAuthor() - Name of the last author. * int getVersion() - Current version. * Date getLastModified() - Date of the latest modification. The current page always becomes the attachment referred to by the variable. ---- !Usage ;:''JSP code'' !Parameters ;__id__: Name of the iterator variable to create. !Example {{{
<%=att.getFileName()%>
}}} Lists the attachments. Note how the [LinkToTag] refers to the currently iterated attachment, so that if you have two attachments (Foobar1 & Foobar2), the list might show up something like this: {{{
Foobar1
Foobar2
}}}