summaryrefslogtreecommitdiff
path: root/Services/WebServer
AgeCommit message (Collapse)Author
2020-07-27WebServer: Show icons in directory listings :^)Andreas Kling
Just adding some basic folder/file icon makes a big difference here.
2020-07-27WebServer: Try to send an appopriate Content-Type headerAndreas Kling
Use Core::guess_mime_type_based_on_filename() for this. It's obviously not perfect, but it works better than just sending "text/html" for everything no matter what. :^)
2020-07-27WebServer: Use table tags in directory listingsAndreas Kling
Use tables to align stuff instead of putting everything in a <pre>.
2020-07-27WebServer: Use urlencode() in directory listingsAndreas Kling
2020-07-11WebServer: Allow the user to specify the base directoryAnotherTest
This commit makes the WebServer accept a base path to serve. This makes taking files out of the system significantly more simple (depending on whom you ask).
2020-06-17Meta: Scale back overly informal user-facing stringsAndreas Kling
We were getting a little overly memey in some places, so let's scale things back to business-casual. Informal language is fine in comments, commits and debug logs, but let's keep the runtime nice and presentable. :^)
2020-05-26AK: Rename FileSystemPath -> LexicalPathSergey Bugaev
And move canonicalized_path() to a static method on LexicalPath. This is to make it clear that FileSystemPath/canonicalized_path() only perform *lexical* canonicalization.
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
Closes https://github.com/SerenityOS/serenity/issues/2080
2020-05-08Services: Renamed from ServersAndreas Kling
It didn't feel right to have a "DHCPClient" in a "Servers" directory. Rename this to Services to better reflect the type of programs we'll be putting in there.