You can add custom icon for any format.
Icon images should be in GIF format and should be present in two dimensions: 16x16 and 32x32 pixels. Both GIF files should be located in webtop/custom/theme/documentum/icons/format folder and named using this pattern: f_formatname_XX.gif
where:
formatname
- is a value of the name
attribute of the dm_format
object
XX
- is an image size with possible values 16 and 32
For example we had on our past project icons for Jasper Reports and InfoPath XML files in this structure:
webtop
├── custom
│ └── theme
│ └── documentum
│ └── icons
│ ├── format
│ │ ├── f_jasperreport_16.gif
│ │ ├── f_jasperreport_32.gif
│ │ ├── f_xmlinfopath_16.gif
│ │ └── f_xmlinfopath_32.gif
...