mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 11:11:21 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@5815 72102866-910b-0410-8b05-ffd578937521
52 lines
1.4 KiB
Text
52 lines
1.4 KiB
Text
{
|
|
// This plist/dictionary is used by the GSWResourceRequestHandler
|
|
// to determine the 'Content-type' of resources requested by the client browser.
|
|
// The keys in this dictionary become case-insensitive when loaded.
|
|
|
|
// Image types
|
|
"gif" = "image/gif";
|
|
"jpg" = "image/jpeg";
|
|
"jpe" = "image/jpeg";
|
|
"ief" = "image/ief";
|
|
"png" = "image/png";
|
|
"tif" = "image/tiff";
|
|
"tiff" = "image/tiff";
|
|
"jpeg" = "image/jpeg";
|
|
|
|
// Audio types
|
|
"au" = "audio/basic";
|
|
"ra" = "audio/x-realaudio";
|
|
"snd" = "audio/basic";
|
|
"mid" = "audio/midi";
|
|
"kar" = "audio/midi";
|
|
"mp2" = "audio/mpeg";
|
|
"aif" = "audio/x-aiff";
|
|
"ram" = "audio/x-pn-realaudio";
|
|
"rpm" = "audio/x-pn-realaudio-plugin";
|
|
"wav" = "audio/x-wav";
|
|
"midi" = "audio/midi";
|
|
"mpga" = "audio/mpeg";
|
|
"aiff" = "audio/x-aiff";
|
|
"aifc" = "audio/x-aiff";
|
|
|
|
// Video types
|
|
"qt" = "video/quicktime";
|
|
"avi" = "video/x-msvideo";
|
|
"mpg" = "video/mpeg";
|
|
"mpe" = "video/mpe";
|
|
"mov" = "video/quicktime";
|
|
"mpeg" = "video/mpeg";
|
|
"movie" = "video/x-sgi-movie";
|
|
|
|
// Text types
|
|
"html" = "text/html";
|
|
"htm" = "text/html";
|
|
"txt" = "text/plain";
|
|
"rtx" = "text/richtext";
|
|
"sgm" = "text/x-sgml";
|
|
"sgml" = "text/x-sgml";
|
|
|
|
// Client-side components related types
|
|
"jar" = "application/java-archive";
|
|
"class" = "application/applet";
|
|
}
|