Home | History | Annotate | Download | only in webob

Lines Matching refs:httponly

253     httponly = cookie_property(b'httponly', bool)
278 if self.httponly:
279 add(b'HttpOnly')
427 _c_keys.update([b'expires', b'secure', b'httponly'])
431 secure=False, httponly=False, comment=None):
458 if httponly:
459 morsel.httponly = True
621 ``httponly``
622 Hide the cookie from Javascript by setting the 'HttpOnly' flag of the
646 httponly=None,
654 self.httponly = httponly
676 self.httponly,
706 path=_default, secure=_default, httponly=_default):
714 httponly=httponly
720 path=_default, secure=_default, httponly=_default):
738 httponly=httponly
741 def _get_cookies(self, value, domains, max_age, path, secure, httponly):
752 :httponly: Set this cookie to HttpOnly, overrides any set in CookieProfile
769 if httponly is _default:
770 httponly = self.httponly
787 httponly=httponly,
800 httponly=httponly,
840 ``httponly``
841 Hide the cookie from Javascript by setting the 'HttpOnly' flag of the
865 httponly=False,
887 httponly=httponly,
902 self.httponly,