Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
8a7dac44
Commit
8a7dac44
authored
Aug 14, 2002
by
R. David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix references to urllib docs, and clarify action of unquote to
match those docs.
parent
ea39f634
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
lib/python/Products/PythonScripts/help/standard.py
lib/python/Products/PythonScripts/help/standard.py
+14
-11
No files found.
lib/python/Products/PythonScripts/help/standard.py
View file @
8a7dac44
...
...
@@ -53,7 +53,7 @@ def url_quote(s):
"Python 'urllib'
module":http://www.python.org/doc/current/lib/module-urllib.html
'
url_
quote' function.
'quote' function.
"""
...
...
@@ -66,30 +66,33 @@ def url_quote_plus(s):
"Python 'urllib'
module":http://www.python.org/doc/current/lib/module-urllib.html
'
url_
quote_plus' function.
'quote_plus' function.
"""
def
url_unquote
(
s
):
"""
Convert HTML character entities in strings back to their real values.
Convert HTML %xx character entities into the characters they
represent. (Undoes the affects of url_quote).
See Also
"Python 'urllib'
module":http://www.python.org/doc/current/lib/module-urllib.html
'url_unquote' function.
"Python 'urllib'
module":http://www.python.org/doc/current/lib/module-urllib.html
'unquote' function.
"""
def
url_unquote
(
s
):
def
url_unquote
_plus
(
s
):
"""
Like url_unquote
, but also replace '+' characters with
spaces.
Like url_unquote
but also replace '+' characters with blank
spaces.
See Also
See Also
"Python 'urllib'
module":http://www.python.org/doc/current/lib/module-urllib.html
'url_unquote_plus' function.
'unquote_plus' function.
"""
def
newline_to_br
(
s
):
...
...
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