Server IP : 111.118.215.189 / Your IP : 3.16.78.226 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/lib64/python2.7/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
� m��fc @sqdZddlZddlZddlZddlZyddlZWnek r_dZnXddddddgZd d ddd ddddg Z e adadd-d��YZ ed�Zed�Zed�Zed�Zdd�Zd�Zd�Ze�edkrmddlZdZdd�Zy/ejejddd d!d"g�\ZZWn#ejk r�Zede�nXdZd#Z xWeD]O\Z!Z"e!d.kr�ed#�q�e!d/kr�d#Zq�e!d0kr�dZ q�q�WxxeD]mZ#e r.ee#e�Z$e$s&d*Ge#GHqfe$GHq�ee#e�\Z$Z%e$sUd*Ge#GHq�d+Ge$Gd,Ge%GHq�WndS(1s�Guess the MIME type of a file. This module defines two useful functions: guess_type(url, strict=1) -- guess the MIME type and encoding of a URL. guess_extension(type, strict=1) -- guess the extension for a given MIME type. It also contains the following, for tuning the behavior: Data: knownfiles -- list of files to parse inited -- flag set when init() has been called suffix_map -- dictionary mapping suffixes to suffixes encodings_map -- dictionary mapping suffixes to encodings types_map -- dictionary mapping suffixes to types Functions: init([files]) -- parse a list of files, default knownfiles (on Windows, the default values are taken from the registry) read_mime_types(file) -- parse one file, return a dictionary or None i����Nt guess_typetguess_extensiontguess_all_extensionstadd_typetread_mime_typestinits/etc/mime.typess/etc/httpd/mime.typess/etc/httpd/conf/mime.typess/etc/apache/mime.typess/etc/apache2/mime.typess$/usr/local/etc/httpd/conf/mime.typess"/usr/local/lib/netscape/mime.typess/usr/local/etc/mime.typest MimeTypescBsqeZdZd ed�Zed�Zed�Zed�Zed�Zed�Z ed�Z ed�ZRS( s�MIME-types datastore. This datastore can handle information from mime.types-style files and supports basic determination of MIME type from a filename or URL, and can guess a reasonable extension given a MIME type. cCs�tst�ntj�|_tj�|_iif|_iif|_x-tj�D]\}}|j||t �qYWx-t j�D]\}}|j||t�q�Wx|D]}|j||�q�WdS(N( tinitedRt encodings_maptcopyt suffix_mapt types_mapt types_map_invtitemsRtTruetcommon_typestFalsetread(tselft filenameststricttextttypetname((s!/usr/lib64/python2.7/mimetypes.pyt__init__@s cCsJ||j||<|j|j|g�}||krF|j|�ndS(s�Add a mapping between a type and an extension. When the extension is already known, the new type will replace the old one. When the type is already known the extension will be added to the list of known extensions. If strict is true, information will be added to list of standard types, else to the list of non-standard types. N(RRt setdefaulttappend(RRRRtexts((s!/usr/lib64/python2.7/mimetypes.pyRNscCs�tj|�\}}|dkr�|jd�}|dkr@d S|jdd|�}|dkrn|| }n || }d|ks�d|kr�d}n|dfStj|�\}}x3||jkr�tj||j|�\}}q�W||jkr"|j|} tj|�\}}nd} |jt } || krO| || fS|j �| kru| |j �| fS|r�d| fS|jt} || kr�| || fS|j �| kr�| |j �| fSd| fSdS( s:Guess the type of a file based on its URL. Return value is a tuple (type, encoding) where type is None if the type can't be guessed (no or unknown suffix) or a string of the form type/subtype, usable for a MIME Content-type header; and encoding is None for no encoding or the name of the program used to encode (e.g. compress or gzip). The mappings are table driven. Encoding suffixes are case sensitive; type suffixes are first tried case sensitive, then case insensitive. The suffixes .tgz, .taz and .tz (case sensitive!) are all mapped to '.tar.gz'. (This is table-driven too, using the dictionary suffix_map.) Optional `strict' argument when False adds a bunch of commonly found, but non-standard types. tdatat,it;t=t/s text/plainN(NN(turllibt splittypetfindtNonet posixpathtsplitextR RRRtlowerR(RturlRtschemetcommatsemiRtbaseRtencodingR((s!/usr/lib64/python2.7/mimetypes.pyR_s@ $ cCsr|j�}|jtj|g�}|snx@|jtj|g�D]"}||krE|j|�qEqEWn|S(s�Guess the extensions for a file based on its MIME type. Return value is a list of strings giving the possible filename extensions, including the leading dot ('.'). The extension is not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type `type' by guess_type(). Optional `strict' argument when false adds a bunch of commonly found, but non-standard types. (R'RRtgetRR(RRRt extensionsR((s!/usr/lib64/python2.7/mimetypes.pyR�s cCs$|j||�}|sdS|dS(sGuess the extension for a file based on its MIME type. Return value is a string giving a filename extension, including the leading dot ('.'). The extension is not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type `type' by guess_type(). If no extension can be guessed for `type', None is returned. Optional `strict' argument when false adds a bunch of commonly found, but non-standard types. iN(RR$(RRRR/((s!/usr/lib64/python2.7/mimetypes.pyR�s cCs)t|��}|j||�WdQXdS(s� Read a single mime.types-format file, specified by pathname. If strict is true, information will be added to list of standard types, else to the list of non-standard types. N(topentreadfp(RtfilenameRtfp((s!/usr/lib64/python2.7/mimetypes.pyR�sc Cs�x�|j�}|sPn|j�}x9tt|��D]%}||ddkr8||3Pq8q8W|smqn|d|d}}x%|D]}|j|d||�q�WqdS(s� Read a single mime.types-format file. If strict is true, information will be added to list of standard types, else to the list of non-standard types. it#it.N(treadlinetsplittrangetlenR( RR3RtlinetwordstiRtsuffixestsuff((s!/usr/lib64/python2.7/mimetypes.pyR1�s cs�ts dS�fd�}tj��tjtjd���}x�||�D]�}y7tj||��}tj|d�\}}WdQXWntk r�qJnX|tjkr�qJny|j��}Wnt k r�qJnX|j |||�qJWWdQXdS(s� Load the MIME types database from Windows registry. If strict is true, information will be added to list of standard types, else to the list of non-standard types. Nc3sxd}xktrsytj||�}Wntk r9PnXy|j��}Wntk r`nX|V|d7}q WdS(Nii(Rt_winregtEnumKeytEnvironmentErrortencodetUnicodeEncodeError(tmimedbR<tctype(tdefault_encoding(s!/usr/lib64/python2.7/mimetypes.pyt enum_types�s sMIME\Database\Content Typet Extension(R?tsystgetdefaultencodingtOpenKeytHKEY_CLASSES_ROOTtQueryValueExRAtREG_SZRBRCR(RRRGRDREtkeytsuffixtdatatype((RFs!/usr/lib64/python2.7/mimetypes.pytread_windows_registry�s( ((t__name__t __module__t__doc__RRRRRRRR1RR(((s!/usr/lib64/python2.7/mimetypes.pyR8s>cCs&tdkrt�ntj||�S(s�Guess the type of a file based on its URL. Return value is a tuple (type, encoding) where type is None if the type can't be guessed (no or unknown suffix) or a string of the form type/subtype, usable for a MIME Content-type header; and encoding is None for no encoding or the name of the program used to encode (e.g. compress or gzip). The mappings are table driven. Encoding suffixes are case sensitive; type suffixes are first tried case sensitive, then case insensitive. The suffixes .tgz, .taz and .tz (case sensitive!) are all mapped to ".tar.gz". (This is table-driven too, using the dictionary suffix_map). Optional `strict' argument when false adds a bunch of commonly found, but non-standard types. N(t_dbR$RR(R(R((s!/usr/lib64/python2.7/mimetypes.pyRs cCs&tdkrt�ntj||�S(s�Guess the extensions for a file based on its MIME type. Return value is a list of strings giving the possible filename extensions, including the leading dot ('.'). The extension is not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type `type' by guess_type(). If no extension can be guessed for `type', None is returned. Optional `strict' argument when false adds a bunch of commonly found, but non-standard types. N(RVR$RR(RR((s!/usr/lib64/python2.7/mimetypes.pyR*s cCs&tdkrt�ntj||�S(s�Guess the extension for a file based on its MIME type. Return value is a string giving a filename extension, including the leading dot ('.'). The extension is not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type `type' by guess_type(). If no extension can be guessed for `type', None is returned. Optional `strict' argument when false adds a bunch of commonly found, but non-standard types. N(RVR$RR(RR((s!/usr/lib64/python2.7/mimetypes.pyR;s cCs)tdkrt�ntj|||�S(siAdd a mapping between a type and an extension. When the extension is already known, the new type will replace the old one. When the type is already known the extension will be added to the list of known extensions. If strict is true, information will be added to list of standard types, else to the list of non-standard types. N(RVR$RR(RRR((s!/usr/lib64/python2.7/mimetypes.pyRKs cCs�tat�}|dkr7tr.|j�nt}nx0|D](}tjj |�r>|j |�q>q>W|ja|ja|j ta |j ta|adS(N(RRRR$R?RRt knownfilestostpathtisfileRRR RRRRV(tfilestdbtfile((s!/usr/lib64/python2.7/mimetypes.pyR\s cCsIyt|�}Wntk r$dSXt�}|j|t�|jtS(N(R0tIOErrorR$RR1RR(R]tfR\((s!/usr/lib64/python2.7/mimetypes.pyRps cCs�idd6dd6dd6dd6dd6aid d 6dd6d d6dd6ai{dd6dd6dd6dd6dd6dd6dd6dd6dd 6dd!6d"d#6dd$6d%d&6d'd&6d(d)6d*d+6d,d-6dd.6d/d06d/d16d2d36d4d56dd66d7d86dd96d:d;6d<d=6dd>6d?d@6dAdB6dAdC6dDdE6dFdG6dHdI6dHdJ6dHdK6dLdM6ddN6dOdP6dQdR6dSdT6dUdV6d4dW6d4dX6dYdZ6d[d\6d]d^6d_d`6d_da6dbdc6dQdd6dQde6dQdf6dQdg6dhdi6d'dj6d4dk6ddl6ddm6dndo6dpdq6drds6dtdu6dvdw6dpdx6dydz6dd{6d|d}6d~d6d�d�6d�d�6d�d�6d�d�6d�d�6dd�6d�d�6d�d�6d�d�6d�d�6d[d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6dd�6dd�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6dd�6d�d�6d�d�6d�d�6d/d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6aid�dK6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6d�d�6adS(�Ns.tar.gzs.tgzs.tazs.tzs.tar.bz2s.tbz2s.tar.xzs.txztgzips.gztcompresss.Ztbzip2s.bz2txzs.xzsapplication/octet-streams.asapplication/postscripts.aisaudio/x-aiffs.aifs.aifcs.aiffsaudio/basics.ausvideo/x-msvideos.avis text/plains.batsapplication/x-bcpios.bcpios.binsimage/x-ms-bmps.bmps.csapplication/x-cdfs.cdfsapplication/x-netcdfsapplication/x-cpios.cpiosapplication/x-cshs.cshstext/csss.csss.dllsapplication/mswords.docs.dotsapplication/x-dvis.dvismessage/rfc822s.emls.epss text/x-setexts.etxs.exes image/gifs.gifsapplication/x-gtars.gtars.hsapplication/x-hdfs.hdfs text/htmls.htms.htmlsimage/vnd.microsoft.icons.icos image/iefs.iefs image/jpegs.jpes.jpegs.jpgsapplication/javascripts.jss.kshsapplication/x-latexs.latexs video/mpegs.m1vsapplication/x-troff-mans.mansapplication/x-troff-mes.mes.mhts.mhtmlsapplication/x-mifs.mifsvideo/quicktimes.movsvideo/x-sgi-movies.movies audio/mpegs.mp2s.mp3s video/mp4s.mp4s.mpas.mpes.mpegs.mpgsapplication/x-troff-mss.mss.ncs.nwss.os.objsapplication/odas.odasapplication/x-pkcs12s.p12sapplication/pkcs7-mimes.p7csimage/x-portable-bitmaps.pbmsapplication/pdfs.pdfs.pfxsimage/x-portable-graymaps.pgms.pls image/pngs.pngsimage/x-portable-anymaps.pnmsapplication/vnd.ms-powerpoints.pots.ppasimage/x-portable-pixmaps.ppms.ppss.ppts.pss.pwzs text/x-pythons.pysapplication/x-python-codes.pycs.pyos.qtsaudio/x-pn-realaudios.rasapplication/x-pn-realaudios.ramsimage/x-cmu-rasters.rassapplication/xmls.rdfsimage/x-rgbs.rgbsapplication/x-troffs.roffs text/richtexts.rtxstext/x-sgmls.sgms.sgmlsapplication/x-shs.shsapplication/x-shars.shars.snds.sosapplication/x-wais-sources.srcsapplication/x-sv4cpios.sv4cpiosapplication/x-sv4crcs.sv4crcsapplication/x-shockwave-flashs.swfs.tsapplication/x-tars.tarsapplication/x-tcls.tclsapplication/x-texs.texsapplication/x-texinfos.texis.texinfos image/tiffs.tifs.tiffs.trstext/tab-separated-valuess.tsvs.txtsapplication/x-ustars.ustarstext/x-vcards.vcfsaudio/x-wavs.wavs.wizs.wsdlsimage/x-xbitmaps.xbmsapplication/vnd.ms-excels.xlbsapplication/excels.xlsstext/xmls.xmls.xpdlsimage/x-xpixmaps.xpms.xslsimage/x-xwindowdumps.xwdsapplication/zips.zips image/jpgs audio/midis.mids.midis image/picts.pcts.pics.pictsapplication/rtfs.rtfstext/xuls.xul(R RRR(((s!/usr/lib64/python2.7/mimetypes.pyt_default_mime_typeszs t__main__s4Usage: mimetypes.py [options] type Options: --help / -h -- print this message and exit --lenient / -l -- additionally search of some common, but non-standard types. --extension / -e -- guess extension instead of type More than one type argument may be given. tcCs$tGH|r|GHntj|�dS(N(tUSAGERItexit(tcodetmsg((s!/usr/lib64/python2.7/mimetypes.pytusage6sithlethelptlenientt extensionis-hs--helps-ls --lenients-es--extensions I don't know anything about typestype:s encoding:((s-hs--help(s-ls --lenient(s-es--extension(&RURXRIR%R!R?tImportErrorR$t__all__RWRRRVRRRRRRRRRdRStgetoptRgRktargvtoptstargsterrorRjRRotopttargtgtypetguessR-(((s!/usr/lib64/python2.7/mimetypes.pyt<module>st � �