Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-25 | AK: Add a query string component to URL | Andreas 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-19 | LibHTML+AK: Move URL completion from Document to AK::URL | Andreas Kling | |
Completing a relative URL based on a base URL seems like generally useful functionality. | |||
2019-10-21 | URL: https:// URLs should default to port 443 | Andreas Kling | |
2019-10-17 | URL: Parse URLs that lack a path (e.g "http://serenityos.org") | Andreas Kling | |
2019-10-10 | URL: No need to include ":80" when serializing http:// URLs | Andreas Kling | |
2019-10-05 | AK: URL should support file:// URL's | Andreas Kling | |
Also add some setters since this class was very setter-less. | |||
2019-08-10 | AK: Add a basic URL class to help us handle URL's | Andreas Kling | |
We're gonna need these as we start to write more networking programs. |