Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-22 | LibWeb: Convert URL to use TRY for error propagation | Linus Groh | |
2022-02-16 | LibWeb: Add imports to all IDL files that depend on others | Ali Mohammad Pur | |
2022-02-14 | LibWeb: Add support for the record variant of URLSearchParams | Luke Wilde | |
2022-01-31 | LibWeb: Accept array pairs in URLSearchParams constructor | Luke Wilde | |
2021-11-11 | Everywhere: Pass AK::StringView by value | Andreas Kling | |
2021-10-31 | LibWeb: Convert all generated bindings to ThrowCompletionOr | Timothy Flynn | |
This also required converting URLSearchParams::for_each and the callback function it invokes to ThrowCompletionOr. With this, the ReturnType enum used by WrapperGenerator is removed as all callers would be using ReturnType::Completion. | |||
2021-10-26 | LibWeb: Implement URLSearchParams.getAll | Luke Wilde | |
2021-10-03 | LibWeb: Make the URL.port setter return after assigning the empty string | Andreas Kling | |
This matches the spec ("3. Otherwise, ...") | |||
2021-09-28 | LibWeb: Make URLSearchParams iterable | Idan Horowitz | |
This uses the new support for the iterable IDL property. | |||
2021-09-14 | LibWeb: Add the URL::{protocol, pathname, search, hash} attributes | Idan Horowitz | |
2021-09-14 | LibWeb: Add the URL::host, URL::hostname & URL:port attributes | Idan Horowitz | |
2021-09-14 | LibWeb: Add the URL::username, URL::password & URL::origin attributes | Idan Horowitz | |
2021-09-14 | LibWeb: Add the URL::searchParams attribute | Idan Horowitz | |
2021-09-14 | LibWeb: Add the URL::href attribute and URL::to_json method | Idan Horowitz | |
2021-09-14 | LibWeb: Add a bare implementation of the URL built-in | Idan Horowitz | |
This only has the constructor implemented for now. | |||
2021-09-14 | LibWeb: Move url_{encode, decode} to URL/URLSearchParams.{h, cpp} | Idan Horowitz | |
The new URL built-in that will reside in URL.{h, cpp} will have an URLSearchParams member, which means it has to include its header, and as such URLSearchParams.h can't include URL's header, which it needs as it uses the url_{encode, decode} functions. | |||
2021-09-13 | LibWeb: Identical sub-expression bug in URLSearchParams::set | Brian Gianforcaro | |
Flagged by sonarcloud, we appear to want to make sure the entry.name matches the name we are searching for duplicates of. Link: https://sonarcloud.io/project/issues?fileUuids=AXvdC606QRvsO1F91p5C&id=SerenityOS_serenity&open=AXvdC_NEQRvsO1F91p6j | |||
2021-09-13 | LibWeb: Add the URLSearchParams built-in | Idan Horowitz | |
This is a very partial implementation, as some features (like 2 of the possible constructor types, iteration and the getAll method) are missing, and other's are not implemented due to the currently missing URL built-in. | |||
2021-09-13 | LibWeb: Add URL::url_decode for decoding form url encoded parameters | Idan Horowitz | |
2021-09-13 | LibWeb: Add the Web::URL namespace and move URLEncoder to it | Idan Horowitz | |
This namespace will be used for all interfaces defined in the URL specification, like URL and URLSearchParams. This has the unfortunate side-effect of requiring us to use the fully qualified AK::URL name whenever we want to refer to the AK class, so this commit also fixes all such references. |