mimetypes
---------
+* Add MS and :rfc:`8081` MIME types for fonts:
+
+ * Embedded OpenType: ``application/vnd.ms-fontobject``
+ * OpenType Layout (OTF) ``font/otf``
+ * TrueType: ``font/ttf``
+ * WOFF 1.0 ``font/woff``
+ * WOFF 2.0 ``font/woff2``
+
+ (Contributed by Sahil Prajapati and Hugo van Kemenade in :gh:`84852`.)
+
* Add :rfc:`9559` MIME types for Matroska audiovisual data container
structures, containing:
'.m3u8' : 'application/vnd.apple.mpegurl',
'.xls' : 'application/vnd.ms-excel',
'.xlb' : 'application/vnd.ms-excel',
+ '.eot' : 'application/vnd.ms-fontobject',
'.ppt' : 'application/vnd.ms-powerpoint',
'.pot' : 'application/vnd.ms-powerpoint',
'.ppa' : 'application/vnd.ms-powerpoint',
'.aiff' : 'audio/x-aiff',
'.ra' : 'audio/x-pn-realaudio',
'.wav' : 'audio/x-wav',
+ '.otf' : 'font/otf',
+ '.ttf' : 'font/ttf',
+ '.woff' : 'font/woff',
+ '.woff2' : 'font/woff2',
'.avif' : 'image/avif',
'.bmp' : 'image/bmp',
'.gif' : 'image/gif',
("application/postscript", ".ps"),
("application/vnd.apple.mpegurl", ".m3u"),
("application/vnd.ms-excel", ".xls"),
+ ("application/vnd.ms-fontobject", ".eot"),
("application/vnd.ms-powerpoint", ".ppt"),
("application/x-texinfo", ".texi"),
("application/x-troff", ".roff"),
("application/xml", ".xsl"),
("audio/matroska", ".mka"),
("audio/mpeg", ".mp3"),
+ ("font/otf", ".otf"),
+ ("font/ttf", ".ttf"),
+ ("font/woff", ".woff"),
+ ("font/woff2", ".woff2"),
("image/avif", ".avif"),
("image/webp", ".webp"),
("image/jpeg", ".jpg"),
--- /dev/null
+Add MIME types for MS Embedded OpenType, OpenType Layout, TrueType,
+WOFF 1.0 and 2.0 fonts. Patch by Sahil Prajapati and Hugo van Kemenade.