A few more MIME Types

Add a few more likely suspects.
master
Jacques Distler 2007-05-29 23:02:19 -05:00
parent 162a00bed4
commit bc0153c23f
1 changed files with 11 additions and 6 deletions

View File

@ -1,7 +1,6 @@
#!/usr/bin/env ruby
require 'webrick'
require 'webrick/httputils'
require 'optparse'
OPTIONS = {
@ -11,11 +10,17 @@ OPTIONS = {
:server_root => File.expand_path(File.dirname(__FILE__) + "/../public/"),
:server_type => WEBrick::SimpleServer,
:mime_types => WEBrick::HTTPUtils::DefaultMimeTypes.merge({
'js' => 'application/x-javascript',
'svg' => 'application/svg+xml',
'tex' => 'application/x-tex',
'pdf' => 'application/pdf',
'avi' => 'video/x-msvideo' })
'avi' => 'video/x-msvideo',
'gz' => 'application/x-gzip',
'js' => 'application/x-javascript',
'nb' => 'application/mathematica',
'pdf' => 'application/pdf',
'svg' => 'application/svg+xml',
'tar' => 'application/x-tar',
'tex' => 'application/x-tex',
'xml' => 'application/xml',
'xslt' => 'application/xslt+xml'
})
}
ARGV.options do |opts|