Commit 4efdc09a authored by Petri Lehtinen's avatar Petri Lehtinen

#15199: Fix JavaScript's default MIME type to application/javascript

parent 07f6ea55
......@@ -437,7 +437,7 @@ def _default_mime_types():
'.jpe' : 'image/jpeg',
'.jpeg' : 'image/jpeg',
'.jpg' : 'image/jpeg',
'.js' : 'application/x-javascript',
'.js' : 'application/javascript',
'.ksh' : 'text/plain',
'.latex' : 'application/x-latex',
'.m1v' : 'video/mpeg',
......
......@@ -436,6 +436,7 @@ Jens B. Jorgensen
Sijin Joseph
Andreas Jung
Tattoo Mabonzo K.
Bohuslav Kabrda
Bob Kahn
Kurt B. Kaiser
Tamito Kajiyama
......
......@@ -95,6 +95,9 @@ Core and Builtins
Library
-------
- Issue #15199: Fix JavaScript's default MIME type to application/javascript.
Patch by Bohuslav Kabrda.
- Issue #15477: In cmath and math modules, add workaround for platforms whose
system-supplied log1p function doesn't respect signs of zeros.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment