[doc] Fix: use 'charset' instead 'encoding' in mimetypes.conf
This commit is contained in:
parent
effdfb6e62
commit
81429d4eb5
|
@ -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"
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue