Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6ac7d7c8
Commit
6ac7d7c8
authored
Sep 06, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#1638033: add support for httponly on Cookie.Morsel
Reviewer: Benjamin
parent
810f807b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
Doc/library/cookie.rst
Doc/library/cookie.rst
+9
-1
Lib/Cookie.py
Lib/Cookie.py
+6
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/cookie.rst
View file @
6ac7d7c8
...
...
@@ -148,7 +148,7 @@ Morsel Objects
--------------
.. class:: Morsel
()
.. class:: Morsel
Abstract a key/value pair, which has some :rfc:`2109` attributes.
...
...
@@ -162,9 +162,17 @@ Morsel Objects
* ``max-age``
* ``secure``
* ``version``
* ``httponly``
The attribute :attr:`httponly` specifies that the cookie is only transfered
in HTTP requests, and is not accessible through JavaScript. This is intended
to mitigate some forms of cross-site scripting.
The keys are case-insensitive.
.. versionadded:: 2.6
The :attr:`httponly` attribute was added.
.. attribute:: Morsel.value
...
...
Lib/Cookie.py
View file @
6ac7d7c8
...
...
@@ -408,6 +408,9 @@ class Morsel(dict):
# For historical reasons, these attributes are also reserved:
# expires
#
# This is an extension from Microsoft:
# httponly
#
# This dictionary provides a mapping from the lowercase
# variant on the left to the appropriate traditional
# formatting on the right.
...
...
@@ -417,6 +420,7 @@ class Morsel(dict):
"domain"
:
"Domain"
,
"max-age"
:
"Max-Age"
,
"secure"
:
"secure"
,
"httponly"
:
"httponly"
,
"version"
:
"Version"
,
}
...
...
@@ -499,6 +503,8 @@ class Morsel(dict):
RA
(
"%s=%d"
%
(
self
.
_reserved
[
K
],
V
))
elif
K
==
"secure"
:
RA
(
str
(
self
.
_reserved
[
K
]))
elif
K
==
"httponly"
:
RA
(
str
(
self
.
_reserved
[
K
]))
else
:
RA
(
"%s=%s"
%
(
self
.
_reserved
[
K
],
V
))
...
...
Misc/ACKS
View file @
6ac7d7c8
...
...
@@ -122,6 +122,7 @@ Nicolas Chauvat
Michael Chermside
Albert Chin-A-Young
Adal Chiriliuc
Matt Chisholm
Tom Christiansen
Vadim Chugunov
David Cinege
...
...
Misc/NEWS
View file @
6ac7d7c8
...
...
@@ -56,6 +56,8 @@ C-API
Library
-------
- Issue #1638033: Cookie.Morsel gained the httponly attribute.
- Issue #3535: zipfile couldn't read some zip files larger than 2GB.
- Issue #3776: Deprecate the bsddb package for removal in 3.0.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment