1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<!-- HDF5 -->
<mime-type type="application/x-silx-hdf5">
<comment>Hierarchical Data Format</comment>
<sub-class-of type="application/x-hdf"/>
<glob pattern="*.h5"/>
<glob pattern="*.hdf"/>
<glob pattern="*.hdf5"/>
</mime-type>
<mime-type type="application/x-silx-nexus">
<comment>NeXus file</comment>
<sub-class-of type="application/x-silx-hdf5"/>
<glob pattern="*.nx"/>
<glob pattern="*.nxs"/>
<glob pattern="*.h5"/>
<glob pattern="*.hdf"/>
<glob pattern="*.hdf5"/>
</mime-type>
<!-- Spec formats -->
<mime-type type="application/x-silx-specfile">
<comment>Spec file</comment>
<glob pattern="*.spec"/>
<glob pattern="*.mca"/>
<glob pattern="*.dat"/>
</mime-type>
<!-- Image formats -->
<mime-type type="image/x-silx-marccd">
<comment>MarCCD image file</comment>
<sub-class-of type="image/tiff"/>
<glob pattern="*.mccd"/>
</mime-type>
<mime-type type="image/x-silx-cbf">
<comment>CBF image file</comment>
<acronym>CBF</acronym>
<expanded-acronym>Crystallographic Information File</expanded-acronym>
<glob pattern="*.cbf"/>
</mime-type>
<mime-type type="image/x-silx-edf">
<comment>EDF image file</comment>
<acronym>EDF</acronym>
<expanded-acronym>ESRF data format</expanded-acronym>
<glob pattern="*.edf"/>
</mime-type>
<mime-type type="image/x-silx-numpy">
<comment>Numpy data file</comment>
<glob pattern="*.npz"/>
<glob pattern="*.npy"/>
</mime-type>
</mime-info>
|