�`^c
@s�dZddlZyddlmZmZWn'ek
rUddlmZmZnXddlZddlZdddddd gZ d
j
Zdj
Zdj
Z
defd
��YZejejdZi�dd6dd6dd6dd6dd6dd6dd6dd6dd 6d!d"6d#d$6d%d&6d'd(6d)d*6d+d,6d-d.6d/d06d1d26d3d46d5d66d7d86d9d:6d;d<6d=d>6d?d@6dAdB6dCdD6dEdF6dGdH6dIdJ6dKdL6dMdN6dOdP6dQdR6dSdT6dUdV6dWdX6dYdZ6d[d\6d]d^6d_d`6dadb6dcdd6dedf6dgdh6didj6dkdl6dmdn6dodp6dqdr6dsdt6dudv6dwdx6dydz6d{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�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�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�d��d��d��d��d��d��d��d���6d�6d�6d�6d�6d�6d�6d�6dd6dd6dd6dd6d d
6dd6d
d6dd6dd6dd6dd6dd6dd6dd6dd6dd 6d!d"6d#d$6d%d&6d'd(6d)d*6d+d,6d-d.6d/d06d1d26d3d46d5d66d7d86d9d:6d;d<6d=d>6d?d@6dAdB6dCdD6dEdF6dGdH6dIdJ6dKdL6dMdN6dOdP6dQdR6dSdT6dUdV6dWdX6Zd
j
dY�edZ�D��Zeeejd[�Zejd\�Zejd]�Zd^�Zd_d`dadbdcdddegZddfdgdhdidjdkdldmdndodpdqg
Zdreeds�Zdte fdu��YZ!dvZ"ejdwe"dxe"dy�Z#de fdz��YZ$de$fd{��YZ%de$fd|��YZ&de$fd}��YZ'e'Z(d~�Z)e*dkr�e)�ndS(�s)
Here's a sample session to show how to use this module.
At the moment, this is the only documentation.
The Basics
----------
Importing is easy..
>>> import Cookie
Most of the time you start by creating a cookie. Cookies come in
three flavors, each with slightly different encoding semantics, but
more on that later.
>>> C = Cookie.SimpleCookie()
>>> C = Cookie.SerialCookie()
>>> C = Cookie.SmartCookie()
[Note: Long-time users of Cookie.py will remember using
Cookie.Cookie() to create an Cookie object. Although deprecated, it
is still supported by the code. See the Backward Compatibility notes
for more information.]
Once you've created your Cookie, you can add values just as if it were
a dictionary.
>>> C = Cookie.SmartCookie()
>>> C["fig"] = "newton"
>>> C["sugar"] = "wafer"
>>> C.output()
'Set-Cookie: fig=newton\r\nSet-Cookie: sugar=wafer'
Notice that the printable representation of a Cookie is the
appropriate format for a Set-Cookie: header. This is the
default behavior. You can change the header and printed
attributes by using the .output() function
>>> C = Cookie.SmartCookie()
>>> C["rocky"] = "road"
>>> C["rocky"]["path"] = "/cookie"
>>> print C.output(header="Cookie:")
Cookie: rocky=road; Path=/cookie
>>> print C.output(attrs=[], header="Cookie:")
Cookie: rocky=road
The load() method of a Cookie extracts cookies from a string. In a
CGI script, you would use this method to extract the cookies from the
HTTP_COOKIE environment variable.
>>> C = Cookie.SmartCookie()
>>> C.load("chips=ahoy; vienna=finger")
>>> C.output()
'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'
The load() method is darn-tootin smart about identifying cookies
within a string. Escaped quotation marks, nested semicolons, and other
such trickeries do not confuse it.
>>> C = Cookie.SmartCookie()
>>> C.load('keebler="E=everybody; L=\\"Loves\\"; fudge=\\012;";')
>>> print C
Set-Cookie: keebler="E=everybody; L=\"Loves\"; fudge=\012;"
Each element of the Cookie also supports all of the RFC 2109
Cookie attributes. Here's an example which sets the Path
attribute.
>>> C = Cookie.SmartCookie()
>>> C["oreo"] = "doublestuff"
>>> C["oreo"]["path"] = "/"
>>> print C
Set-Cookie: oreo=doublestuff; Path=/
Each dictionary element has a 'value' attribute, which gives you
back the value associated with the key.
>>> C = Cookie.SmartCookie()
>>> C["twix"] = "none for you"
>>> C["twix"].value
'none for you'
A Bit More Advanced
-------------------
As mentioned before, there are three different flavors of Cookie
objects, each with different encoding/decoding semantics. This
section briefly discusses the differences.
SimpleCookie
The SimpleCookie expects that all values should be standard strings.
Just to be sure, SimpleCookie invokes the str() builtin to convert
the value to a string, when the values are set dictionary-style.
>>> C = Cookie.SimpleCookie()
>>> C["number"] = 7
>>> C["string"] = "seven"
>>> C["number"].value
'7'
>>> C["string"].value
'seven'
>>> C.output()
'Set-Cookie: number=7\r\nSet-Cookie: string=seven'
SerialCookie
The SerialCookie expects that all values should be serialized using
cPickle (or pickle, if cPickle isn't available). As a result of
serializing, SerialCookie can save almost any Python object to a
value, and recover the exact same object when the cookie has been
returned. (SerialCookie can yield some strange-looking cookie
values, however.)
>>> C = Cookie.SerialCookie()
>>> C["number"] = 7
>>> C["string"] = "seven"
>>> C["number"].value
7
>>> C["string"].value
'seven'
>>> C.output()
'Set-Cookie: number="I7\\012."\r\nSet-Cookie: string="S\'seven\'\\012p1\\012."'
Be warned, however, if SerialCookie cannot de-serialize a value (because
it isn't a valid pickle'd object), IT WILL RAISE AN EXCEPTION.
SmartCookie
The SmartCookie combines aspects of each of the other two flavors.
When setting a value in a dictionary-fashion, the SmartCookie will
serialize (ala cPickle) the value *if and only if* it isn't a
Python string. String objects are *not* serialized. Similarly,
when the load() method parses out values, it attempts to de-serialize
the value. If it fails, then it fallsback to treating the value
as a string.
>>> C = Cookie.SmartCookie()
>>> C["number"] = 7
>>> C["string"] = "seven"
>>> C["number"].value
7
>>> C["string"].value
'seven'
>>> C.output()
'Set-Cookie: number="I7\\012."\r\nSet-Cookie: string=seven'
Backwards Compatibility
-----------------------
In order to keep compatibilty with earlier versions of Cookie.py,
it is still possible to use Cookie.Cookie() to create a Cookie. In
fact, this simply returns a SmartCookie.
>>> C = Cookie.Cookie()
>>> print C.__class__.__name__
SmartCookie
Finis.
i�N(tdumpstloadstCookieErrort
BaseCookietSimpleCookietSerialCookietSmartCookietCookiets; t cBseZRS((t__name__t
__module__(((s/sys/lib/python2.7/Cookie.pyR�ss!#$%&'*+-.^_`|~s\000ts\001ss\002ss\003ss\004ss\005ss\006ss\007ss\010ss\011s s\012s
s\013ss\014ss\015s
s\016ss\017ss\020ss\021ss\022ss\023ss\024ss\025ss\026ss\027ss\030ss\031ss\032ss\033ss\034ss\035ss\036ss\037ss\054t,s\073t;s\"t"s\\s\s\177ss\200s�\201s�\202s�\203s�\204s�\205s�\206s�\207s�\210s�\211s�\212s�\213s�\214s�\215s�\216s�\217s�\220s�\221s�\222s�\223s�\224s�\225s�\226s�\227s�\230s�\231s�\232s�\233s�\234s�\235s�\236s�\237s�\240s�\241s�\242s�\243s�\244s�\245s�\246s�\247s�\250s�\251s�\252s�\253s�\254s�\255s�\256s�\257s�\260s�\261s�\262s�\263s�\264s�\265s�\266s�\267s�\270s�\271s�\272s�\273s�\274s�\275s�\276s�\277s�\300s�\301s�\302s�\303s�\304s�\305s�\306s�\307s�\310s�\311s�\312s�\313s�\314s�\315s�\316s�\317s�\320s�\321s�\322s�\323s�\324s�\325s�\326s�\327s�\330s�\331s�\332s�\333s�\334s�\335s�\336s�\337s�\340s�\341s�\342s�\343s�\344s�\345s�\346s�\347s�\350s�\351s�\352s�\353s�\354s�\355s�\356s�\357s�\360s�\361s�\362s�\363s�\364s�\365s�\366s�\367s�\370s�\371s�\372s�\373s�\374s�\375s�\376s�\377s�cs|]}t|�VqdS(N(tchr(t.0tx((s/sys/lib/python2.7/Cookie.pys <genexpr>6sicCsAd||||�kr|Sdtttj||��dSdS(NRR(t _nulljointmapt_Translatortget(tstrt
LegalCharstidmapt translate((s/sys/lib/python2.7/Cookie.pyt_quote8ss\\[0-3][0-7][0-7]s[\\].cCs�t|�dkr|S|ddks6|ddkr:|S|dd!}d}t|�}g}x9d|koy|knr�tj||�}tj||�}|r�|r�|j||�Pnd}}|r�jd�}n|r�jd�}n|rN|s||krN|j|||!�|j||d�|d}qb|j|||!�|jtt||d|d!d���|d}qbWt|�S(NiiRi�iii( tlent
_OctalPatttsearcht
_QuotePatttappendtstartRtintR(RtitntrestOmatchtQmatchtjtk((s/sys/lib/python2.7/Cookie.pyt_unquoteJs6
+tMontTuetWedtThutFritSattSuntJantFebtMartAprtMaytJuntJultAugtSeptOcttNovtDecic Csoddlm}m}|�}|||�\ }}}} }
}}}
}d||||||| |
|fS(Ni�(tgmtimettimes#%s, %02d %3s %4d %02d:%02d:%02d GMT(R?R>(tfuturetweekdaynamet monthnameR>R?tnowtyeartmonthtdaythhtmmtsstwdtytz((s/sys/lib/python2.7/Cookie.pyt_getdate�s
+tMorselcBs�eZidd6dd6dd6dd6dd6d d 6d
d
6dd6Zd
�Zd�Zd�Zeeej d�Z
ddd�ZeZ
d�Zdd�Zdd�ZRS(texpirestPathtpathtCommenttcommenttDomaintdomainsMax-Agesmax-agetsecurethttponlytVersiontversioncCsBd|_|_|_x$|jD]}tj||d�q!WdS(NR(tNonetkeytvaluetcoded_valuet _reservedtdictt__setitem__(tselftK((s/sys/lib/python2.7/Cookie.pyt__init__�scCsE|j�}||jkr.td|��ntj|||�dS(NsInvalid Attribute %s(tlowerR^RR_R`(RaRbtV((s/sys/lib/python2.7/Cookie.pyR`�scCs|j�|jkS(N(RdR^(RaRb((s/sys/lib/python2.7/Cookie.pyt
isReservedKey�scCsr|j�|jkr(td|��nd||||�krStd|��n||_||_||_dS(Ns!Attempt to set a reserved key: %sRsIllegal key value: %s(RdR^RR[R\R](RaR[tvalt coded_valRRR((s/sys/lib/python2.7/Cookie.pytset�s sSet-Cookie:cCsd||j|�fS(Ns%s %s(tOutputString(Ratattrstheader((s/sys/lib/python2.7/Cookie.pytoutput�scCs#d|jj|jt|j�fS(Ns<%s: %s=%s>(t __class__R
R[treprR\(Ra((s/sys/lib/python2.7/Cookie.pyt__repr__�scCs d|j|�jdd�fS(Ns�
<script type="text/javascript">
<!-- begin hiding
document.cookie = "%s";
// end hiding -->
</script>
Rs\"(Rjtreplace(RaRk((s/sys/lib/python2.7/Cookie.pyt js_output�scCs�g}|j}|d|j|jf�|dkrA|j}n|j�}|j�x)|D]!\}}|dkr|q^n||kr�q^n|dkr�t|�td�kr�|d|j|t|�f�q^|dkrt|�td�kr|d|j||f�q^|dkr>|t |j|��q^|dkrd|t |j|��q^|d|j||f�q^Wt
|�S( Ns%s=%sRROismax-ages%s=%dRVRW(R R[R]RZR^titemstsortttypeRMRt_semispacejoin(RaRktresulttRARsRbRe((s/sys/lib/python2.7/Cookie.pyRj�s,
$$$N(R
RR^RcR`Rft_LegalCharst_idmaptstringRRiRZRmt__str__RpRrRj(((s/sys/lib/python2.7/Cookie.pyRN�s$
s.[\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=]s(?x)(?P<key>sK+?)\s*=\s*(?P<val>"(?:[^\\"]|\\.)*"|\w{3},\s[\s\w\d-]{9,11}\s[\d:]{8}\sGMT|s*)\s*;?cBszeZd�Zd�Zdd�Zd�Zd�Zdddd�ZeZ d�Z
dd �Zd
�Ze
d�ZRS(
cCs
||fS(s
real_value, coded_value = value_decode(STRING)
Called prior to setting a cookie's value from the network
representation. The VALUE is the value read from HTTP
header.
Override this function to modify the behavior of cookies.
((RaRg((s/sys/lib/python2.7/Cookie.pytvalue_decode+scCst|�}||fS(s�real_value, coded_value = value_encode(VALUE)
Called prior to setting a cookie's value from the dictionary
representation. The VALUE is the value being assigned.
Override this function to modify the behavior of cookies.
(R(RaRgtstrval((s/sys/lib/python2.7/Cookie.pytvalue_encode5scCs|r|j|�ndS(N(tload(Ratinput((s/sys/lib/python2.7/Cookie.pyRc?scCs?|j|t��}|j|||�tj|||�dS(s+Private method for setting a cookie's valueN(RRNRiR_R`(RaR[t
real_valueR]tM((s/sys/lib/python2.7/Cookie.pyt__setCscCs,|j|�\}}|j|||�dS(sDictionary style assignment.N(Rt_BaseCookie__set(RaR[R\trvaltcval((s/sys/lib/python2.7/Cookie.pyR`JssSet-Cookie:s
cCsYg}|j�}|j�x-|D]%\}}|j|j||��q#W|j|�S(s"Return a string suitable for HTTP.(RsRtR Rmtjoin(RaRkRltsepRwRsRbRe((s/sys/lib/python2.7/Cookie.pyRmPs
cCsmg}|j�}|j�x4|D],\}}|jd|t|j�f�q#Wd|jjt|�fS(Ns%s=%ss<%s: %s>(RsRtR RoR\RnR
t
_spacejoin(RatLRsRbRe((s/sys/lib/python2.7/Cookie.pyRp\s
$cCsSg}|j�}|j�x*|D]"\}}|j|j|��q#Wt|�S(s(Return a string suitable for JavaScript.(RsRtR RrR(RaRkRwRsRbRe((s/sys/lib/python2.7/Cookie.pyRrds
cCsSt|�td�kr(|j|�n'x$|j�D]\}}|||<q5WdS(s�Load cookies from a string (presumably HTTP_COOKIE) or
from a dictionary. Loading cookies from a dictionary 'd'
is equivalent to calling:
map(Cookie.__setitem__, d.keys(), d.values())
RN(Rut_BaseCookie__ParseStringRs(RatrawdataR)tv((s/sys/lib/python2.7/Cookie.pyR�ns
cCsd}t|�}d}x�|ko2|knr|j||�}|sSPn|jd�|jd�}}|jd�}|ddkr�|r|||d<qq|j�tjkr�|rt|�||<qq|j |�\} }
|j
|| |
�||}qWdS(NiR[Rgt$i(RRZRtgrouptendRdRNR^R*R}R�(RaRtpattR#R$R�tmatchRbReR�R�((s/sys/lib/python2.7/Cookie.pyt
__ParseString}s$N(R
RR}RRZRcR�R`RmR|RpRrR�t_CookiePatternR�(((s/sys/lib/python2.7/Cookie.pyR's
cBs eZdZd�Zd�ZRS(s
SimpleCookie
SimpleCookie supports strings as cookie values. When setting
the value using the dictionary assignment notation, SimpleCookie
calls the builtin str() to convert the value to a string. Values
received from HTTP are kept as strings.
cCst|�|fS(N(R*(RaRg((s/sys/lib/python2.7/Cookie.pyR}�scCst|�}|t|�fS(N(RR(RaRgR~((s/sys/lib/python2.7/Cookie.pyR�s(R
Rt__doc__R}R(((s/sys/lib/python2.7/Cookie.pyR�s cBs,eZdZdd�Zd�Zd�ZRS(s.SerialCookie
SerialCookie supports arbitrary objects as cookie values. All
values are serialized (using cPickle) before being sent to the
client. All incoming values are assumed to be valid Pickle
representations. IF AN INCOMING VALUE IS NOT IN A VALID PICKLE
FORMAT, THEN AN EXCEPTION WILL BE RAISED.
Note: Large cookie values add overhead because they must be
retransmitted on every HTTP transaction.
Note: HTTP has a 2k limit on the size of a cookie. This class
does not check for this limit, so be careful!!!
cCs$tjdt�tj||�dS(Ns-SerialCookie class is insecure; do not use it(twarningstwarntDeprecationWarningRRc(RaR�((s/sys/lib/python2.7/Cookie.pyRc�s cCstt|��|fS(N(RR*(RaRg((s/sys/lib/python2.7/Cookie.pyR}�scCs|tt|��fS(N(RR(RaRg((s/sys/lib/python2.7/Cookie.pyR�sN(R
RR�RZRcR}R(((s/sys/lib/python2.7/Cookie.pyR�s
cBs,eZdZdd�Zd�Zd�ZRS(s�SmartCookie
SmartCookie supports arbitrary objects as cookie values. If the
object is a string, then it is quoted. If the object is not a
string, however, then SmartCookie will use cPickle to serialize
the object into a string representation.
Note: Large cookie values add overhead because they must be
retransmitted on every HTTP transaction.
Note: HTTP has a 2k limit on the size of a cookie. This class
does not check for this limit, so be careful!!!
cCs$tjdt�tj||�dS(Ns3Cookie/SmartCookie class is insecure; do not use it(R�R�R�RRc(RaR�((s/sys/lib/python2.7/Cookie.pyRc�s cCs5t|�}yt|�|fSWn||fSXdS(N(R*R(RaRgR~((s/sys/lib/python2.7/Cookie.pyR}�s
cCsBt|�td�kr(|t|�fS|tt|��fSdS(NR(RuRR(RaRg((s/sys/lib/python2.7/Cookie.pyR�sN(R
RR�RZRcR}R(((s/sys/lib/python2.7/Cookie.pyR�s cCs%ddl}ddl}|j|�S(Ni�(tdoctestRttestmod(R�R((s/sys/lib/python2.7/Cookie.pyt_test�st__main__(+R�R{tcPickleRRtImportErrortpickletreR�t__all__R�RRvR�t ExceptionRt
ascii_letterstdigitsRyRtxrangeRzRRtcompileRRR*t_weekdaynameRZt
_monthnameRMR_RNt_LegalCharsPattR�RRRRRR�R
(((s/sys/lib/python2.7/Cookie.pyt<module>�s�
2|
t$
|