Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
6c95d1a1
Commit
6c95d1a1
authored
Jul 29, 2023
by
Emmy Vouriot
Committed by
Jérome Perrin
Feb 14, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix function names WIP
parent
531204d2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.ContributionTool.py
...plateItem/portal_components/tool.erp5.ContributionTool.py
+1
-1
product/ERP5Type/Utils.py
product/ERP5Type/Utils.py
+5
-6
No files found.
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.ContributionTool.py
View file @
6c95d1a1
...
...
@@ -647,7 +647,7 @@ class ContributionTool(BaseTool):
# if a content-disposition header is present,
# try first to read the suggested filename from it.
header_info
=
url_file
.
info
()
content_disposition
=
header_info
.
get
header
(
'content-disposition'
,
''
)
content_disposition
=
header_info
.
get
(
'content-disposition'
,
''
)
filename
=
parse_header
(
content_disposition
)[
1
].
get
(
'filename'
)
if
not
filename
:
# Now read the filename from url.
...
...
product/ERP5Type/Utils.py
View file @
6c95d1a1
...
...
@@ -29,7 +29,6 @@
# Required modules - some modules are imported later to prevent circular deadlocks
from
__future__
import
absolute_import
from
six
import
int2byte
as
chr
from
six
import
string_types
as
basestring
from
six.moves
import
xrange
import
six
...
...
@@ -1852,11 +1851,11 @@ def guessEncodingFromText(data, content_type='text/html'):
_reencodeUrlEscapes_map = {chr(x): chr(x) if chr(x) in
# safe
str2bytes(
"!'
()
*-
.
" "
0123456789
" "
_
~
"
"!'
()
*-
.
" "
0123456789
" "
_
~
"
"
ABCDEFGHIJKLMNOPQRSTUVWXYZ
"
"
abcdefghijklmnopqrstuvwxyz
"
# reserved (maybe unsafe)
"
#$&+,/:;=?@[]")
"
#$&+,/:;=?@[]"
else
"%%%02X"
%
x
for
x
in
xrange
(
256
)}
...
...
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