Mercurial > prosody-hg
comparison plugins/mod_httpserver.lua @ 2361:926905cb777f
mod_httpserver: Text files are text/plain, and not plain/text.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Thu, 10 Dec 2009 16:52:08 +0500 |
| parents | 0bed4af40bff |
| children | 36b8de1bfa27 |
comparison
equal
deleted
inserted
replaced
| 2360:f1832bf27f84 | 2361:926905cb777f |
|---|---|
| 21 local mime_map = { | 21 local mime_map = { |
| 22 html = "text/html"; | 22 html = "text/html"; |
| 23 htm = "text/html"; | 23 htm = "text/html"; |
| 24 xml = "text/xml"; | 24 xml = "text/xml"; |
| 25 xsl = "text/xml"; | 25 xsl = "text/xml"; |
| 26 txt = "plain/text; charset=utf-8"; | 26 txt = "text/plain; charset=utf-8"; |
| 27 js = "text/javascript"; | 27 js = "text/javascript"; |
| 28 css = "text/css"; | 28 css = "text/css"; |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 local function preprocess_path(path) | 31 local function preprocess_path(path) |
