uploadserver 6.0.1__tar.gz → 6.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {uploadserver-6.0.1/uploadserver.egg-info → uploadserver-6.0.2}/PKG-INFO +3 -1
- {uploadserver-6.0.1 → uploadserver-6.0.2}/README.md +2 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/setup.py +1 -1
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver/__init__.py +2 -2
- {uploadserver-6.0.1 → uploadserver-6.0.2/uploadserver.egg-info}/PKG-INFO +3 -1
- {uploadserver-6.0.1 → uploadserver-6.0.2}/LICENSE +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/setup.cfg +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver/__main__.py +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver/cgi.py +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver.egg-info/SOURCES.txt +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver.egg-info/dependency_links.txt +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver.egg-info/entry_points.txt +0 -0
- {uploadserver-6.0.1 → uploadserver-6.0.2}/uploadserver.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uploadserver
|
|
3
|
-
Version: 6.0.
|
|
3
|
+
Version: 6.0.2
|
|
4
4
|
Summary: Python's http.server extended to include a file upload page
|
|
5
5
|
Home-page: https://github.com/Densaugeo/uploadserver
|
|
6
6
|
Author: Densaugeo
|
|
@@ -216,3 +216,5 @@ Thanks to marvinruder for work on the upload progress indicator, theme option, a
|
|
|
216
216
|
Thanks to shuangye for finding an easy way to handle large file uploads, and improved handling of filename collisions.
|
|
217
217
|
|
|
218
218
|
Thanks to abbbe for adding HTTP basic auth (has now replaced the token option).
|
|
219
|
+
|
|
220
|
+
Thanks to SimarMugattarov, theo543, and poshul for minor updates.
|
|
@@ -193,3 +193,5 @@ Thanks to marvinruder for work on the upload progress indicator, theme option, a
|
|
|
193
193
|
Thanks to shuangye for finding an easy way to handle large file uploads, and improved handling of filename collisions.
|
|
194
194
|
|
|
195
195
|
Thanks to abbbe for adding HTTP basic auth (has now replaced the token option).
|
|
196
|
+
|
|
197
|
+
Thanks to SimarMugattarov, theo543, and poshul for minor updates.
|
|
@@ -186,8 +186,8 @@ handler: http.server.BaseHTTPRequestHandler, auth: str,
|
|
|
186
186
|
except binascii.Error:
|
|
187
187
|
return (False, 'Credentials incorrectly formatted')
|
|
188
188
|
|
|
189
|
-
http_username, http_password = http_username_password.split(':',
|
|
190
|
-
args_username, args_password = auth.split(':',
|
|
189
|
+
http_username, http_password = http_username_password.split(':', 1)
|
|
190
|
+
args_username, args_password = auth.split(':', 1)
|
|
191
191
|
if http_username != args_username: return (False, 'Bad username')
|
|
192
192
|
if http_password != args_password: return (False, 'Bad password')
|
|
193
193
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uploadserver
|
|
3
|
-
Version: 6.0.
|
|
3
|
+
Version: 6.0.2
|
|
4
4
|
Summary: Python's http.server extended to include a file upload page
|
|
5
5
|
Home-page: https://github.com/Densaugeo/uploadserver
|
|
6
6
|
Author: Densaugeo
|
|
@@ -216,3 +216,5 @@ Thanks to marvinruder for work on the upload progress indicator, theme option, a
|
|
|
216
216
|
Thanks to shuangye for finding an easy way to handle large file uploads, and improved handling of filename collisions.
|
|
217
217
|
|
|
218
218
|
Thanks to abbbe for adding HTTP basic auth (has now replaced the token option).
|
|
219
|
+
|
|
220
|
+
Thanks to SimarMugattarov, theo543, and poshul for minor updates.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|