summaryrefslogtreecommitdiff
path: root/AK/URL.cpp
AgeCommit message (Collapse)Author
2019-11-25AK: Add a query string component to URLAndreas Kling
It's missing query string parsing from new URLs, but you can set the query string programmatically, and it will be part of the URL when serialized through to_string().
2019-11-19LibHTML+AK: Move URL completion from Document to AK::URLAndreas Kling
Completing a relative URL based on a base URL seems like generally useful functionality.
2019-10-21URL: https:// URLs should default to port 443Andreas Kling
2019-10-17URL: Parse URLs that lack a path (e.g "http://serenityos.org")Andreas Kling
2019-10-10URL: No need to include ":80" when serializing http:// URLsAndreas Kling
2019-10-05AK: URL should support file:// URL'sAndreas Kling
Also add some setters since this class was very setter-less.
2019-08-10AK: Add a basic URL class to help us handle URL'sAndreas Kling
We're gonna need these as we start to write more networking programs.