diff options
author | Fred Drake <fdrake@acm.org> | 2005-03-15 15:52:08 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2005-03-15 15:52:08 +0000 |
commit | 18a90f3f03daea6d236cc3eef53cee3b631f5b55 (patch) | |
tree | 03488494781db506ba74e499a4f55b01df4570b5 | |
parent | 76a16dba879fc43f9c97271eba0fc3deb8b44571 (diff) | |
download | cpython-18a90f3f03daea6d236cc3eef53cee3b631f5b55.tar.gz |
add two more extensions:
- .wsdl --> Web Service Definition Language
- .xpdl --> XML Process Definition Language
-rw-r--r-- | Lib/mimetypes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 88b9e2f91e..7a8b765aef 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -443,12 +443,14 @@ types_map = { '.vcf' : 'text/x-vcard', '.wav' : 'audio/x-wav', '.wiz' : 'application/msword', + '.wsdl' : 'application/xml', '.xbm' : 'image/x-xbitmap', '.xlb' : 'application/vnd.ms-excel', # Duplicates :( '.xls' : 'application/excel', '.xls' : 'application/vnd.ms-excel', '.xml' : 'text/xml', + '.xpdl' : 'application/xml', '.xpm' : 'image/x-xpixmap', '.xsl' : 'application/xml', '.xwd' : 'image/x-xwindowdump', |