Arc Forumnew | comments | leaders | submitlogin
5 points by bogomipz 5939 days ago | link | parent

Just take any URL that is not defop'ed to mean a file name.

Currently, if no op is defined, the server responds with "Unknown operator.". Replace that with the code for opening a file, and if this fails, respond with a proper 404 Not Found message.



3 points by pg 5939 days ago | link

That should work for text/html files.

-----

2 points by bogomipz 5938 days ago | link

By throwing in a hash table which maps from file name extensions to MIME types, it could work for other files as well.

A byte array data type for buffering would do good for performance.

-----