summaryrefslogtreecommitdiffstats
path: root/platform/javascript/http_request.h
Commit message (Collapse)AuthorAgeFilesLines
* [HTML5] Replace XMLHttpRequest with Fetch.Fabio Alessandrelli2021-03-061-73/+0
| | | | | | This has some advantages: - Streaming/chunked response support. - Broader headers support.
* [HTML5] Fix HTTPClient request_raw.Fabio Alessandrelli2021-02-111-3/+1
| | | | | Now send data according to the spec, properly handle null data. Simplify JS code since we are at it.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* [HTML5] Add function signatures to JS libraries.Fabio Alessandrelli2020-12-041-1/+1
|
* Replace NULL with nullptrlupoDharkael2020-04-021-1/+1
|
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-1/+2
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fix HTML5 HTTPClient includesLeon Krause2017-11-151-0/+2
|
* Implement HTTPClient in HTML5 platformLeon Krause2017-11-131-0/+72
Limitations: - Subject to same-origin policy - No persistent connection (but simulated for compatibility) - No blocking mode - No StreamPeer access - No chunked responses - Cannot disable host verification