ACC SHELL

Path : /usr/lib/python/
File Upload :
Current File : //usr/lib/python/cgi.pyc

Ñò
nÄMc"@sédZdZddklZddkZddkZddkZddkZddkZddk	l
Z
lZlZeƒi
iƒzXeioe
ddeƒnddkZeioe
ddeƒnddkZWdQXydd	klZWn#ej
odd	klZnXd
ddd
ddddddddddddddgZdZead„Zd„Zd„Zead aeeid d d!„Z d d d"„Z!d d d#„Z"d$„Z#d%„Z$d&„Z%d
fd'„ƒYZ&dfd(„ƒYZ'deifd)„ƒYZ(d
e(fd*„ƒYZ)de)fd+„ƒYZ*de(fd,„ƒYZ+eid-„Z,eeeed.„Z-eid/„Z.d0„Z/d1„Z0d2„Z1d3„Z2ed4„Z3d5d6„Z4e5d7joe,ƒndS(8sSupport module for CGI (Common Gateway Interface) scripts.

This module defines a number of utilities for use by CGI scripts
written in Python.
s2.6iÿÿÿÿ(t
attrgetterN(tfilterwarningstcatch_warningstwarntignores.*mimetools has been removeds.*rfc822 has been removed(tStringIOtMiniFieldStoragetFieldStoragetFormContentDicttSvFormContentDicttInterpFormContentDicttFormContenttparsetparse_qst	parse_qsltparse_multiparttparse_headertprint_exceptiont
print_environt
print_formtprint_directorytprint_argumentstprint_environ_usagetescapetcGsato5to-yttdƒaWq<tj
oq<Xntp
tantat|ŒdS(s„Write a log message, if there is a log file.

    Even though this function is called initlog(), you should always
    use log(); log is a variable that is set either to initlog
    (initially), to dolog (once the log file has been opened), or to
    nolog (when logging is disabled).

    The first argument is a format string; the remaining arguments (if
    any) are arguments to the % operator, so e.g.
        log("%s: %s", "a", "b")
    will write "a: b" to the log file, followed by a newline.

    If the global logfp is not None, it should be a file object to
    which log data is written.

    If the global logfp is None, the global logfile may be a string
    giving a filename to open, in append mode.  This file should be
    world writable!!!  If the file can't be opened, logging is
    silently disabled (since there is no safe place where we could
    send an error message).

    taN(tlogfiletlogfptopentIOErrortnologtlogtdolog(tallargs((s/usr/lib/python2.6/cgi.pytinitlogHs	
cGsti||dƒdS(s=Write a log message to the log file.  See initlog() for docs.s
N(Rtwrite(tfmttargs((s/usr/lib/python2.6/cgi.pyR kscGsdS(s9Dummy function, assigned to log when logging is disabled.N((R!((s/usr/lib/python2.6/cgi.pyRosicCs¢|d
jo
ti}nd|jod|d<n|ddjot|dƒ\}}|djot||ƒS|djoDt|dƒ}to|tjo
td‚n|i|ƒ}nd	}d
|jo'|o|d}n||d
}n9ti	do*|o|d}n|ti	d}n||d
<nKd
|jo|d
}n0ti	doti	d}nd	}||d
<t
|||ƒS(sParse a query in the environment or from a file (default stdin)

        Arguments, all optional:

        fp              : file pointer; default: sys.stdin

        environ         : environment dictionary; default: os.environ

        keep_blank_values: flag indicating whether blank values in
            URL encoded forms should be treated as blank strings.
            A true value indicates that blanks should be retained as
            blank strings.  The default false value indicates that
            blank values are to be ignored and treated as if they were
            not included.

        strict_parsing: flag indicating what to do with parsing errors.
            If false (the default), errors are silently ignored.
            If true, errors raise a ValueError exception.
    tREQUEST_METHODtGETtPOSTtCONTENT_TYPEsmultipart/form-datas!application/x-www-form-urlencodedtCONTENT_LENGTHsMaximum content length exceededRtQUERY_STRINGt&iN(tNonetsyststdinRRtinttmaxlent
ValueErrortreadtargvR
(tfptenvirontkeep_blank_valueststrict_parsingtctypetpdicttclengthtqs((s/usr/lib/python2.6/cgi.pyR}s<








cCs#tdtdƒti|||ƒS(s)Parse a query given as a string argument.sEcgi.parse_qs is deprecated, use urlparse.parse_qs             insteadi(RtPendingDeprecationWarningturlparseR
(R<R7R8((s/usr/lib/python2.6/cgi.pyR
µs
cCs#tdtdƒti|||ƒS(s)Parse a query given as a string argument.s;cgi.parse_qsl is deprecated, use urlparse.parse_qsl insteadi(RR=R>R(R<R7R8((s/usr/lib/python2.6/cgi.pyR¼s
c	Cs¸d}d|jo|d}nt|ƒptd|f‚nd|}d|d}h}d}xK||jo=d}d}|ošti|ƒ}	|	idƒ}
|
o*yt|
ƒ}WqØtj
oqØXn|djo4to|tjo
td‚n|i|ƒ}q#d}ng}xg|i	ƒ}|p|}Pn|d	 djo(|i
ƒ}|||fjoPqƒn|i|ƒq,|djoqin|djop|oe|d}|d
djo|d
 }n |ddjo|d }n||d<di|ƒ}q$n|	d
}|pqint
|ƒ\}
}|
djoqind|jo|d}nqi||jo||i|ƒqi|g||<qiW|S(søParse multipart input.

    Arguments:
    fp   : input file
    pdict: dictionary containing other parameters of content-type header

    Returns a dictionary just like parse_qs(): keys are the field names, each
    value is a list of values for that field.  This is easy to use but not
    much good if you are expecting megabytes to be uploaded -- in that case,
    use the FieldStorage class instead which is much more flexible.  Note
    that content-type is the raw, unparsed contents of the content-type
    header.

    XXX This does not parse nested multipart parts -- use FieldStorage for
    that.

    XXX This should really be subsumed by FieldStorage altogether -- no
    point in having two implementations of the same parsing algorithm.
    Also, FieldStorage protects itself better against certain DoS attacks
    by limiting the size of the data read in one chunk.  The API here
    does not support that kind of protection.  This also affects parse()
    since it can call parse_multipart().

    Rtboundarys&Invalid boundary in multipart form: %rs--iÿÿÿÿscontent-lengthisMaximum content length exceedediiþÿÿÿs
s
scontent-dispositions	form-datatnameN(tvalid_boundaryR2R-t	mimetoolstMessaget	getheaderR0R1R3treadlinetstriptappendtjoinR(R5R:R?tnextparttlastparttpartdictt
terminatortbytestdatatheadersR;tlinestlinetkeytparamsR@((s/usr/lib/python2.6/cgi.pyRÂs|



	


	







ccs·x°|d djož|d}|idƒ}xB|djo4|idd|ƒdo|id|dƒ}q0W|djot|ƒ}n|| }|iƒV||}qWdS(Nit;it"i(tfindtcounttlenRF(tstendtf((s/usr/lib/python2.6/cgi.pyt_parseparam$s
'

cCsùtd|ƒ}|iƒ}h}xÊ|D]Â}|idƒ}|djo || iƒiƒ}||diƒ}t|ƒdjoU|d|djo
djno/|dd!}|idd	ƒid
dƒ}n|||<q)q)W||fS(sfParse a Content-type like header.

    Return the main content-type and a dictionary of options.

    RTt=iiiiÿÿÿÿRUs\\s\s\"(R\tnextRVRFtlowerRXtreplace(RQtpartsRRR:tptiR@tvalue((s/usr/lib/python2.6/cgi.pyR0s
9
"cBsPeZdZdZdZdZdZhZdZ	hZ
hZd„Zd„Z
RS(s=Like FieldStorage, for use when no file uploads are possible.cCs||_||_dS(s&Constructor from field name and value.N(R@Rd(tselfR@Rd((s/usr/lib/python2.6/cgi.pyt__init__Vs	cCsd|i|ifS(s Return printable representation.sMiniFieldStorage(%r, %r)(R@Rd(Re((s/usr/lib/python2.6/cgi.pyt__repr__\sN(t__name__t
__module__t__doc__R-tfilenametlistttypetfilettype_optionstdispositiontdisposition_optionsRORfRg(((s/usr/lib/python2.6/cgi.pyRHs	cBseZdZdddeiddd„Zd„Zd„Zd„Z	d„Z
dd„Zdd	„Zd
„Z
d„Zd„Zd
„Zd„Zd„Zd„ZdZd„Zd„ZdZd„Zd„Zd„Zd„Zd„Zd„Zdd„ZRS(sšStore a sequence of fields, reading multipart/form-data.

    This class provides naming, typing, files stored on disk, and
    more.  At the top level, it is accessible like a dictionary, whose
    keys are the field names.  (Note: None can occur as a field name.)
    The items are either a Python list (if there's multiple values) or
    another FieldStorage or MiniFieldStorage object.  If it's a single
    object, it has the following attributes:

    name: the field name, if specified; otherwise None

    filename: the filename, if specified; otherwise None; this is the
        client side filename, *not* the file name on which it is
        stored (that's a temporary file you don't deal with)

    value: the value as a *string*; for file uploads, this
        transparently reads the file every time you request the value

    file: the file(-like) object from which you can read the data;
        None if the data is stored a simple string

    type: the content-type, or None if not specified

    type_options: dictionary of options specified on the content-type
        line

    disposition: content-disposition, or None if not specified

    disposition_options: dictionary of corresponding options

    headers: a dictionary(-like) object (sometimes rfc822.Message or a
        subclass thereof) containing *all* headers

    The class is subclassable, mostly for the purpose of overriding
    the make_file() method, which is called internally to come up with
    a file open for reading and writing.  This makes it possible to
    override the default choice of storing all files in a temporary
    directory and unlinking them as soon as they have been opened.

    Ric
	Csd}||_||_d|jo|diƒ}nd|_|djp
|djond|jo|d}n&tidotid}nd}t|ƒ}|djohdd6}qÊn|djoh}|d	jod|d<nd
|jo|d
|d<nd|jo|d|_nd|jo|d|d<qXn|pti|_	||_
||_dh}	}
d
|i
jot|i
d
ƒ\}	}
n|	|_
|
|_d|_d|
jo|
d|_nd|_d|
jo|
d|_nd|i
jot|i
dƒ\}}
n6|ip
|d	jodh}}
ndh}}
||_|
|_d|_d|
jo|
d|_nd}d|i
joRyt|i
dƒ}Wntj
onXto|tjo
td‚qn||_d|_|_d|_|djo|iƒn3|d djo|i|||ƒn|iƒdS(sConstructor.  Read multipart/* until last part.

        Arguments, all optional:

        fp              : file pointer; default: sys.stdin
            (not used when the request method is GET)

        headers         : header dictionary-like object; default:
            taken from environ as per CGI spec

        outerboundary   : terminating multipart boundary
            (for internal use only)

        environ         : environment dictionary; default: os.environ

        keep_blank_values: flag indicating whether blank values in
            URL encoded forms should be treated as blank strings.
            A true value indicates that blanks should be retained as
            blank strings.  The default false value indicates that
            blank values are to be ignored and treated as if they were
            not included.

        strict_parsing: flag indicating what to do with parsing errors.
            If false (the default), errors are silently ignored.
            If true, errors raise a ValueError exception.

        R'R&tHEADR+iRs!application/x-www-form-urlencodedscontent-typeR(R)R*scontent-lengthscontent-dispositionR@Rks
text/plainR?iÿÿÿÿsMaximum content length exceededii
s
multipart/N(R7R8tupperR-t
qs_on_postR.R4RR/R5ROt
outerboundaryRRpRqR@RkRmRot
innerboundaryR0R2R1tlengthRlRntdonetread_urlencodedt
read_multitread_single(
ReR5RORuR6R7R8tmethodR<tcdispR:R9tclen((s/usr/lib/python2.6/cgi.pyRfŒs„		
	






		
			
	

			
		
cCsd|i|i|ifS(s"Return a printable representation.sFieldStorage(%r, %r, %r)(R@RkRd(Re((s/usr/lib/python2.6/cgi.pyRgscCst|iƒƒS(N(titertkeys(Re((s/usr/lib/python2.6/cgi.pyt__iter__scCs~|djo
t|‚n|io3|iidƒ|iiƒ}|iidƒn$|idj	o
|i}nd}|S(NRdi(tAttributeErrorRntseekR3RlR-(ReR@Rd((s/usr/lib/python2.6/cgi.pyt__getattr__s



cCs|idjo
td‚ng}x2|iD]'}|i|jo|i|ƒq-q-W|p
t|‚nt|ƒdjo	|dS|SdS(sDictionary style indexing.s
not indexableiiN(RlR-t	TypeErrorR@RGtKeyErrorRX(ReRRtfoundtitem((s/usr/lib/python2.6/cgi.pyt__getitem__s


	cCsW||joB||}t|ƒtgƒjottdƒ|ƒS|iSn|SdS(s8Dictionary style get() method, including 'value' lookup.RdN(RmtmapRRd(ReRRtdefaultRd((s/usr/lib/python2.6/cgi.pytgetvalue#s

cCsO||jo:||}t|ƒtgƒjo|diS|iSn|SdS(s! Return the first value received.iN(RmRd(ReRRR‹Rd((s/usr/lib/python2.6/cgi.pytgetfirst.s

cCsZ||joE||}t|ƒtgƒjottdƒ|ƒS|igSngSdS(s  Return list of received values.RdN(RmRŠRRd(ReRRRd((s/usr/lib/python2.6/cgi.pytgetlist9s

cCs:|idjo
td‚nttd„|iDƒƒƒS(sDictionary style keys() method.s
not indexablecssx|]}|iVqWdS(N(R@(t.0Rˆ((s/usr/lib/python2.6/cgi.pys	<genexpr>Hs	N(RlR-R…tset(Re((s/usr/lib/python2.6/cgi.pyR€Ds
cs:|idjo
td‚nt‡fd†|iDƒƒS(s"Dictionary style has_key() method.s
not indexablec3s"x|]}|iˆjVqWdS(N(R@(RRˆ(RR(s/usr/lib/python2.6/cgi.pys	<genexpr>Ns	N(RlR-R…tany(ReRR((RRs/usr/lib/python2.6/cgi.pythas_keyJs
cs:|idjo
td‚nt‡fd†|iDƒƒS(s%Dictionary style __contains__ method.s
not indexablec3s"x|]}|iˆjVqWdS(N(R@(RRˆ(RR(s/usr/lib/python2.6/cgi.pys	<genexpr>Ts	N(RlR-R…R‘(ReRR((RRs/usr/lib/python2.6/cgi.pyt__contains__Ps
cCst|iƒƒS(s Dictionary style len(x) support.(RXR€(Re((s/usr/lib/python2.6/cgi.pyt__len__VscCs
t|iƒS(N(tboolRl(Re((s/usr/lib/python2.6/cgi.pyt__nonzero__ZscCs‘|ii|iƒ}|io|d|i7}ng|_}x?ti||i|iƒD]"\}}|i	t
||ƒƒq]W|iƒdS(s+Internal: read data in query string format.R,N(R5R3RwRtRlR>RR7R8RGRt
skip_lines(ReR<RlRRRd((s/usr/lib/python2.6/cgi.pyRy]s


c	Cs |i}t|ƒptd|f‚ng|_|ioRxEti|i|i|iƒD]%\}}|ii	t
||ƒƒq\Wd}n|ip|i
}||ih||||ƒ}	xO|	ipDti|iƒ}
||i|
||||ƒ}	|ii	|	ƒqÃW|iƒdS(s/Internal: read a part that is itself multipart.s&Invalid boundary in multipart form: %rN(RvRAR2RlRtR>RR7R8RGRR-tFieldStorageClasst	__class__R5Rxtrfc822RCR—(ReR6R7R8tibRRRdR˜tklasstpartRO((s/usr/lib/python2.6/cgi.pyRzjs(	
	


cCsF|idjo|iƒ|iƒn|iƒ|iidƒdS(sInternal: read an atomic part.iN(Rwtread_binaryR—t
read_linesRnRƒ(Re((s/usr/lib/python2.6/cgi.pyR{s


iicCs˜|idƒ|_|i}|djolxi|djoW|iit||iƒƒ}|pd|_Pn|ii|ƒ|t	|ƒ}q+WndS(sInternal: read binary data.tbiiÿÿÿÿN(
t	make_fileRnRwR5R3tmintbufsizeRxR#RX(RettodoRN((s/usr/lib/python2.6/cgi.pyRžŒs	

	cCs9tƒ|_|_|io|iƒn|iƒdS(s0Internal: read lines until EOF or outerboundary.N(RRnt_FieldStorage__fileRutread_lines_to_outerboundarytread_lines_to_eof(Re((s/usr/lib/python2.6/cgi.pyRŸ™s
cCs€|idj	o\|iiƒt|ƒdjo8|idƒ|_|ii|iiƒƒd|_qln|ii|ƒdS(NièR(R¥R-ttellRXR¡RnR#RŒ(ReRQ((s/usr/lib/python2.6/cgi.pyt__write¡s cCs>x7|iidƒ}|pd|_Pn|i|ƒqdS(sInternal: read lines until EOF.iiiÿÿÿÿNi(R5RERxt_FieldStorage__write(ReRQ((s/usr/lib/python2.6/cgi.pyR§©s	cCs"d|i}|d}d}t}xø|iidƒ}|pd|_Pn|d djoD|o=|iƒ}||joPn||jod|_Pq¢n|}|ddjod}|d }t}n8|dd	jod	}|d }t}n
d}t}|i||ƒq&d
S(s)Internal: read lines until outerboundary.s--Riiiÿÿÿÿiiþÿÿÿs
s
Ni(RutTrueR5RERxRFtFalseRª(ReR^tlasttdelimtlast_line_lfendRQtstrippedlinetodelim((s/usr/lib/python2.6/cgi.pyR¦²s8

	

		



cCsÌ|ip
|iodSd|i}|d}t}xŽ|iidƒ}|pd|_Pn|d djoD|o=|iƒ}||joPn||jod|_Pq¶n|idƒ}q:dS(	s5Internal: skip lines until outer boundary if defined.Ns--iiiÿÿÿÿis
i(RuRxR«R5RERFtendswith(ReR^R­R¯RQR°((s/usr/lib/python2.6/cgi.pyR—Òs$

	

		cCsddk}|idƒS(s±Overridable: return a readable & writable file.

        The file will be used as follows:
        - data is written to it
        - seek(0)
        - data is read from it

        The 'binary' argument is unused -- the file is always opened
        in binary mode.

        This version opens a temporary file for reading and writing,
        and immediately deletes (unlinks) it.  The trick (on Unix!) is
        that the file can still be used, but it can't be opened by
        another process, and it will automatically be deleted when it
        is closed or when the current process terminates.

        If you want a more permanent file, you derive a class which
        overrides this method.  If you want a visible temporary file
        that is nevertheless automatically deleted when the script
        terminates, try defining a __del__ method in a derived class
        which unlinks the temporary files you have created.

        iÿÿÿÿNsw+b(ttempfilet
TemporaryFile(RetbinaryR³((s/usr/lib/python2.6/cgi.pyR¡çsNi (RhRiRjR-tosR6RfRgRR„R‰RŒRRŽR€R’R“R”R–RyR˜RzR{R£RžRŸRªR§R¦R—R¡(((s/usr/lib/python2.6/cgi.pyRas6)	s			
												
					 	cBs#eZdZeiddd„ZRS(sxForm content as dictionary with a list of values per field.

    form = FormContentDict()

    form[key] -> [value, value, ...]
    key in form -> Boolean
    form.keys() -> [key, key, ...]
    form.values() -> [[val, val, ...], [val, val, ...], ...]
    form.items() ->  [(key, [val, val, ...]), (key, [val, val, ...]), ...]
    form.dict == {key: [val, val, ...], ...}

    icCs6td|d|d|ƒ|_|_|d|_dS(NR6R7R8R+(RtdictRNtquery_string(ReR6R7R8((s/usr/lib/python2.6/cgi.pyRfs(RhRiRjR¶R6Rf(((s/usr/lib/python2.6/cgi.pyRscBs2eZdZd„Zd„Zd„Zd„ZRS(s÷Form content as dictionary expecting a single value per field.

    If you only expect a single value for each field, then form[key]
    will return that single value.  It will raise an IndexError if
    that expectation is not true.  If you expect a field to have
    possible multiple values, than you can use form.getlist(key) to
    get all of the values.  values() and items() are a compromise:
    they return single strings where there is a single value, and
    lists of strings otherwise.

    cCs6t|i|ƒdjo
td‚n|i|dS(Nisexpecting a single valuei(RXR·t
IndexError(ReRR((s/usr/lib/python2.6/cgi.pyR‰'s
cCs|i|S(N(R·(ReRR((s/usr/lib/python2.6/cgi.pyRŽ+scCsYg}xL|iiƒD];}t|ƒdjo|i|dƒq|i|ƒqW|S(Nii(R·tvaluesRXRG(RetresultRd((s/usr/lib/python2.6/cgi.pyRº-scCskg}x^|iiƒD]M\}}t|ƒdjo|i||dfƒq|i||fƒqW|S(Nii(R·titemsRXRG(ReR»RRRd((s/usr/lib/python2.6/cgi.pyR¼4s(RhRiRjR‰RŽRºR¼(((s/usr/lib/python2.6/cgi.pyR	s
			cBs)eZdZd„Zd„Zd„ZRS(s7This class is present for backwards compatibility only.cCsyti||ƒ}|ddjoLyt|ƒSWqotj
o+yt|ƒSWqktj
oqkXqoXn|iƒS(Nis
0123456789+-.(R	R‰R0R2tfloatRF(ReRRtv((s/usr/lib/python2.6/cgi.pyR‰?scCs`g}xS|iƒD]E}y|i||ƒWqtj
o|i|i|ƒqXqW|S(N(R€RGR¹R·(ReR»RR((s/usr/lib/python2.6/cgi.pyRºGs
cCslg}x_|iƒD]Q}y|i|||fƒWqtj
o!|i||i|fƒqXqW|S(N(R€RGR¹R·(ReR»RR((s/usr/lib/python2.6/cgi.pyR¼Os
#(RhRiRjR‰RºR¼(((s/usr/lib/python2.6/cgi.pyR
=s		cBsDeZdZd„Zd„Zd„Zd„Zd„Zd„ZRS(s7This class is present for backwards compatibility only.cCs$||ijo|i|SdSdS(N(R·R-(ReRR((s/usr/lib/python2.6/cgi.pyRº[scCsJ||ijo2t|i|ƒ|jo|i||SdSndSdS(N(R·RXR-(ReRRtlocation((s/usr/lib/python2.6/cgi.pyt
indexed_value^s
cCs(||ijo|i|dSdSdS(Ni(R·R-(ReRR((s/usr/lib/python2.6/cgi.pyRddscCst|i|ƒS(N(RXR·(ReRR((s/usr/lib/python2.6/cgi.pyRwgscCs.||ijo|i|diƒSdSdS(Ni(R·RFR-(ReRR((s/usr/lib/python2.6/cgi.pytstrippediscCs|iS(N(R·(Re((s/usr/lib/python2.6/cgi.pytparsls(	RhRiRjRºRÀRdRwRÁRÂ(((s/usr/lib/python2.6/cgi.pyRYs					cCsÉdGHHtit_yWtƒ}tƒtƒt|ƒt|ƒtƒd„}|d„}dGH|ƒWnt	ƒnXdGHda
y/tƒ}tƒtƒt|ƒt|ƒWnt	ƒnXdS(s—Robust test CGI script, usable as main program.

    Write minimal HTTP headers and dump all information provided to
    the script in HTML form.

    sContent-type: text/htmlcRsddUdS(Ns,testing print_exception() -- <I>italics?</I>((((s/usr/lib/python2.6/cgi.pyR[„scSs|ƒdS(N((R[((s/usr/lib/python2.6/cgi.pytg†ss9<H3>What follows is a test, not an actual exception:</H3>s*<H1>Second try with a small maxlen...</H1>i2N(R.tstdouttstderrRRRRRRRR1(R6tformR[RÃ((s/usr/lib/python2.6/cgi.pyttestss4	

		
cCs|djotiƒ\}}}nddk}HdGH|i||ƒ|i||ƒ}dtdi|d ƒƒt|dƒfGH~dS(Niÿÿÿÿs+<H3>Traceback (most recent call last):</H3>s<PRE>%s<B>%s</B></PRE>R(R-R.texc_infot	tracebackt	format_tbtformat_exception_onlyRRH(RmRdttbtlimitRÉRl((s/usr/lib/python2.6/cgi.pyRšs
cCs]|iƒ}|iƒHdGHdGHx/|D]'}dGt|ƒGdGt||ƒGHq(WdGHHdS(s#Dump the shell environment as HTML.s<H3>Shell Environment:</H3>s<DL>s<DT>s<DD>s</DL>N(R€tsortR(R6R€RR((s/usr/lib/python2.6/cgi.pyR¨s
%cCsœ|iƒ}|iƒHdGH|p	dGHndGHx^|D]V}dt|ƒdG||}dttt|ƒƒƒdGHdtt|ƒƒGHq8Wd	GHHd
S(s$Dump the contents of a form as HTML.s<H3>Form Contents:</H3>s<P>No form fields.s<DL>s<DT>t:s<i>s</i>s<DD>s</DL>N(R€RÎRtreprRm(RÆR€RRRd((s/usr/lib/python2.6/cgi.pyR´s
	
cCsVHdGHytiƒ}Wn-tij
o}dGtt|ƒƒGHn
Xt|ƒGHHdS(s#Dump the current directory as HTML.s#<H3>Current Working Directory:</H3>s	os.error:N(R¶tgetcwdterrorRtstr(tpwdtmsg((s/usr/lib/python2.6/cgi.pyRÅscCsHdGHHtiGHHdS(Ns <H3>Command Line Arguments:</H3>(R.R4(((s/usr/lib/python2.6/cgi.pyRÑs
cCs	dGHdS(s9Dump a list of environment variables used by CGI as HTML.sØ
<H3>These environment variables could have been set:</H3>
<UL>
<LI>AUTH_TYPE
<LI>CONTENT_LENGTH
<LI>CONTENT_TYPE
<LI>DATE_GMT
<LI>DATE_LOCAL
<LI>DOCUMENT_NAME
<LI>DOCUMENT_ROOT
<LI>DOCUMENT_URI
<LI>GATEWAY_INTERFACE
<LI>LAST_MODIFIED
<LI>PATH
<LI>PATH_INFO
<LI>PATH_TRANSLATED
<LI>QUERY_STRING
<LI>REMOTE_ADDR
<LI>REMOTE_HOST
<LI>REMOTE_IDENT
<LI>REMOTE_USER
<LI>REQUEST_METHOD
<LI>SCRIPT_NAME
<LI>SERVER_NAME
<LI>SERVER_PORT
<LI>SERVER_PROTOCOL
<LI>SERVER_ROOT
<LI>SERVER_SOFTWARE
</UL>
In addition, HTTP headers sent by the server may be passed in the
environment as well.  Here are some common variable names:
<UL>
<LI>HTTP_ACCEPT
<LI>HTTP_CONNECTION
<LI>HTTP_HOST
<LI>HTTP_PRAGMA
<LI>HTTP_REFERER
<LI>HTTP_USER_AGENT
</UL>
N((((s/usr/lib/python2.6/cgi.pyRØs)cCsW|iddƒ}|iddƒ}|iddƒ}|o|iddƒ}n|S(	s¤Replace special characters "&", "<" and ">" to HTML-safe sequences.
    If the optional flag quote is true, the quotation mark character (")
    is also translated.R,s&amp;t<s&lt;t>s&gt;RUs&quot;(R`(RYtquote((s/usr/lib/python2.6/cgi.pyRss^[ -~]{0,200}[!-~]$cCsddk}|i||ƒS(Niÿÿÿÿ(tretmatch(RYt_vb_patternRÙ((s/usr/lib/python2.6/cgi.pyRAst__main__(6Rjt__version__toperatorRR.R¶turllibtUserDictR>twarningsRRRt__exit__t	__enter__tpy3kwarningtDeprecationWarningRBRšt	cStringIORtImportErrort__all__RR-RR"R RRR1R6RR
RRR\RRRRR	R
RRÇRRRRRRRRARh(((s/usr/lib/python2.6/cgi.pyt<module>sr
	
					#		8	b		ÿ§"'				/


ACC SHELL 2018