Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: Blender on Jan 22nd, 2012  |  syntax: None  |  size: 1.93 KB  |  hits: 117  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. mimetype.assign  = (
  2.   ".pdf"      =>  "application/pdf",
  3.   ".sig"      =>  "application/pgp-signature",
  4.   ".spl"      =>  "application/futuresplash",
  5.   ".class"    =>  "application/octet-stream",
  6.   ".ps"       =>  "application/postscript",
  7.   ".torrent"  =>  "application/x-bittorrent",
  8.   ".dvi"      =>  "application/x-dvi",
  9.   ".gz"       =>  "application/x-gzip",
  10.   ".pac"      =>  "application/x-ns-proxy-autoconfig",
  11.   ".swf"      =>  "application/x-shockwave-flash",
  12.   ".tar.gz"   =>  "application/x-tgz",
  13.   ".tgz"      =>  "application/x-tgz",
  14.   ".tar"      =>  "application/x-tar",
  15.   ".zip"      =>  "application/zip",
  16.   ".mp3"      =>  "audio/mpeg",
  17.   ".m3u"      =>  "audio/x-mpegurl",
  18.   ".wma"      =>  "audio/x-ms-wma",
  19.   ".wax"      =>  "audio/x-ms-wax",
  20.   ".ogg"      =>  "application/ogg",
  21.   ".wav"      =>  "audio/x-wav",
  22.   ".gif"      =>  "image/gif",
  23.   ".jpg"      =>  "image/jpeg",
  24.   ".jpeg"     =>  "image/jpeg",
  25.   ".png"      =>  "image/png",
  26.   ".xbm"      =>  "image/x-xbitmap",
  27.   ".xpm"      =>  "image/x-xpixmap",
  28.   ".xwd"      =>  "image/x-xwindowdump",
  29.   ".css"      =>  "text/css",
  30.   ".html"     =>  "text/html",
  31.   ".htm"      =>  "text/html",
  32.   ".js"       =>  "text/javascript",
  33.   ".asc"      =>  "text/plain",
  34.   ".c"        =>  "text/plain",
  35.   ".cpp"      =>  "text/plain",
  36.   ".log"      =>  "text/plain",
  37.   ".conf"     =>  "text/plain",
  38.   ".text"     =>  "text/plain",
  39.   ".txt"      =>  "text/plain",
  40.   ".dtd"      =>  "text/xml",
  41.   ".xml"      =>  "text/xml",
  42.   ".mpeg"     =>  "video/mpeg",
  43.   ".mpg"      =>  "video/mpeg",
  44.   ".mov"      =>  "video/quicktime",
  45.   ".qt"       =>  "video/quicktime",
  46.   ".avi"      =>  "video/x-msvideo",
  47.   ".asf"      =>  "video/x-ms-asf",
  48.   ".asx"      =>  "video/x-ms-asf",
  49.   ".wmv"      =>  "video/x-ms-wmv",
  50.   ".bz2"      =>  "application/x-bzip",
  51.   ".tbz"      =>  "application/x-bzip-compressed-tar",
  52.   ".tar.bz2"  =>  "application/x-bzip-compressed-tar"
  53.  )