CMPUT404-assignment-webserver
See requirements.org (plain-text) for a description of the project.
Make a simple webserver.
Generally everything is LICENSE'D under the Apache 2 license by Abram Hindle.
server.py contains contributions from:
- Abram Hindle
- Eddie Antonio Santos
- Jackson Z Chang
- Mandy Meindersma
But the server.py example is derived from the python documentation examples thus some of the code is Copyright © 2001-2013 Python Software Foundation; All Rights Reserved under the PSF license (GPL compatible) http://docs.python.org/2/library/socketserver.html
-
Understanding what mime-types are and how to use them:
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types
- Date Accessed: Jan.28.2021
-
Sending response headers:
- https://stackoverflow.com/a/8315292
- Date Accessed: Jan.28.2021
- Answer from stackoverflow user: Raymond Hettinger
-
Thread on serving files:
- https://stackoverflow.com/a/55895307
- Date Accessed: Jan.28.2021
- Answer from stackoverflow user: Mr Morgan
Discussed how to approach the test case "test_get_group" with Justin Tan.