[Python-checkins] python/dist/src/Lib mimetypes.py,1.30,1.31

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Mar 15 16:52:13 CET 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1541

Modified Files:
	mimetypes.py 
Log Message:
add two more extensions:
- .wsdl --> Web Service Definition Language
- .xpdl --> XML Process Definition Language


Index: mimetypes.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/mimetypes.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- mimetypes.py	19 Dec 2003 18:15:10 -0000	1.30
+++ mimetypes.py	15 Mar 2005 15:52:08 -0000	1.31
@@ -443,12 +443,14 @@
     '.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',



More information about the Python-checkins mailing list