2
0
Fork 0

[doc] Fix: use 'charset' instead 'encoding' in mimetypes.conf

This commit is contained in:
Thomas Porzelt 2011-05-29 09:56:30 +02:00
parent effdfb6e62
commit 81429d4eb5
1 changed files with 11 additions and 11 deletions

View File

@ -385,19 +385,19 @@ mime_types = (
".x3db" => "model/x3d+binary",
".ics" => "text/calendar",
".icz" => "text/calendar",
".css" => "text/css; encoding=utf-8",
".csv" => "text/csv; encoding=utf-8",
".css" => "text/css; charset=utf-8",
".csv" => "text/csv; charset=utf-8",
".323" => "text/h323",
".html" => "text/html; encoding=utf-8",
".htm" => "text/html; encoding=utf-8",
".shtml" => "text/html; encoding=utf-8",
".html" => "text/html; charset=utf-8",
".htm" => "text/html; charset=utf-8",
".shtml" => "text/html; charset=utf-8",
".uls" => "text/iuls",
".mml" => "text/mathml",
".asc" => "text/plain; encoding=utf-8",
".txt" => "text/plain; encoding=utf-8",
".text" => "text/plain; encoding=utf-8",
".pot" => "text/plain; encoding=utf-8",
".brf" => "text/plain; encoding=utf-8",
".asc" => "text/plain; charset=utf-8",
".txt" => "text/plain; charset=utf-8",
".text" => "text/plain; charset=utf-8",
".pot" => "text/plain; charset=utf-8",
".brf" => "text/plain; charset=utf-8",
".rtx" => "text/richtext",
".sct" => "text/scriptlet",
".wsc" => "text/scriptlet",
@ -477,5 +477,5 @@ mime_types = (
#custom
"README" => "text/plain; encoding=utf-8"
"README" => "text/plain; charset=utf-8"
);