summaryrefslogtreecommitdiffstats
path: root/doc/classes/HTTPRequest.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #99020 from Mickeon/documentation-example-pruning-2Thaddeus Crews2024-11-121-3/+3
|\ | | | | | | Clean up more `[b]Example:[/b]` lines from the class reference
| * Clean up more `[b]Example:[/b]` lines from the class referenceMicky2024-11-111-3/+3
| |
* | Add missing HTTPRequest Result descriptions.Anish Mishra2024-10-191-0/+2
|/
* [Doc] Fix casing of some C# namesA Thousand Ships2024-03-201-4/+4
|
* Validate `code` tags for class and member referencesYuri Sizov2023-10-031-3/+3
| | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors.
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Update HTTPRequest Class DocumentationTechnicalSoup2023-05-301-3/+4
| | | | | | | | | Reword the timeout member definition to indicate that example timeout values are suggestions. Add definition for timeout constant. Apply suggestions from code review Co-authored-by: Yuri Sizov <11782833+YuriSizov@users.noreply.github.com>
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* doc: Fix Image 'set_pixel' doc for use of 'create'Rémi Verschelde2023-02-081-2/+1
| | | | Fixes #72904.
* Fix C# examples in documentationRaul Santos2023-01-311-8/+8
| | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely.
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-281-6/+11
| | | | | | | | | | | | | Use a TLSOptions configuration object which is created via static functions. - "TLSOptions.client": uses the standard CA and common name verification. - "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified) - "TLSOptions.server": is the standard server configuration (chain + key) This will allow us to expand the TLS configuration options to include e.g. mutual authentication without bloating the classes that uses StreamPeerTLS and PacketPeerDTLS as underlying peers.
* Update C# signal documentation and remove bind arrayRaul Santos2023-01-231-2/+2
| | | | | - Updates C# signal documentation and code examples to the new API in 4.0 - Replace all `nameof` usages with the exposed `StringName`
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-2/+0
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* [Net] Rename "ssl" references to "tls" in methods and members.Fabio Alessandrelli2022-09-081-7/+7
|
* [doc] Fix grammar in class docs: amount vs. numberAndy Maloney2022-08-171-1/+1
| | | | | | Number is used for things that can be counted (discrete items - think "integer" in this context). Also fixes a couple of awkward phrases.
* [doc] Use "param" instead of "code" to refer to parameters (6)Andy Maloney2022-08-121-3/+3
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-18/+18
|
* Document the `timeout` property in HTTPRequestHugo Locurcio2022-07-081-0/+1
|
* Add static methods for creating Image and ImageTexturekobewi2022-07-081-2/+1
|
* Make code example in HTTPRequest classref workingHaoyu Qiu2022-06-241-13/+17
| | | | Co-authored-by: Raul Santos <raulsntos@gmail.com>
* [Net] Change HTTPRequest timeout type to double.Fabio Alessandrelli2022-03-271-1/+1
| | | | | For consistency with the Timer class and general time representation inside the engine.
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Add proxy support for the editorHaoyu Qiu2021-12-091-0/+18
| | | | | | | | | | * Adds proxy support for `HTTPRequest`. * Adds `network/http_proxy/{host,port}` editor settings. * Labeled as "HTTP Proxy" and it will be used for both HTTP and HTTPS requests. This is the same convention as seen in Android Studio's proxy settings. * Makes Asset Library and Export Template Manager use proxy according to the editor settings.
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* Document Android permission requirements for network access where neededHugo Locurcio2021-09-251-1/+1
|
* security tip when sending sensitive data on HTTP requestsArthur Paulino2021-09-071-1/+2
|
* improving note on HTTPRequest class under the request method documentationArthur Paulino2021-09-031-1/+1
|
* Docs: Add warnings about no SSL/(D)TLS revocationMax Hilbrunner2021-08-111-2/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-40/+20
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-3/+3
|
* class reference proofreadingPaul Joannon2021-03-191-1/+1
|
* Unify URI encoding/decoding and add to C#Aaron Franke2021-01-281-1/+1
| | | | http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
* Docs: Port Code Examples to C# (F, G, H, I, J, K, L)HaSa10022020-11-251-4/+88
| | | | | | | | | | | | | | | | | | Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* Merge pull request #42896 from Calinou/httprequest-increase-chunk-sizeRémi Verschelde2020-11-071-2/+2
|\ | | | | Increase the default HTTPClient download chunk size to 64 KiB
| * Increase the default HTTPClient download chunk size to 64 KiBHugo Locurcio2020-11-071-2/+2
| | | | | | | | | | | | | | | | This improves download speeds at the cost of increased memory usage. This change also effects HTTPRequest automatically. See #32807 and #33862.
* | Merge pull request #42870 from Calinou/doc-httprequest-tls-versionRémi Verschelde2020-11-061-4/+2
|\ \ | | | | | | Document the supported TLS versions in HTTPRequest
| * | Document the supported TLS versions in HTTPRequestHugo Locurcio2020-10-171-4/+2
| |/ | | | | | | See #42857.
* / Fix a variable being redeclared in the HTTPRequest code sampleHugo Locurcio2020-10-311-1/+1
|/
* Fix typos with codespellRémi Verschelde2020-09-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
* doc: Sync classref with current sourceRémi Verschelde2020-09-111-12/+14
| | | | Bind missing enums.
* HTTPRequest now accepts gzipAdam Brown2020-09-021-1/+30
| | | | | | | | | | Added request_raw to HttpRequest Added decompress_dynamic to Compression class Added decompress_dynamic to BytePoolArray Merge doc fix revert
* Add link titles for all links in the class referenceHugo Locurcio2020-08-311-2/+2
| | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
* Document HTTPRequest not supporting request data with GET methodHugo Locurcio2020-08-031-0/+1
| | | | | | | This also improves the HTTPClient class documentation to be easier to read and more informative. This closes #40564.
* Document HTML5 CORS restrictions in HTTPClient and HTTPRequestHugo Locurcio2020-07-201-0/+1
| | | | See https://github.com/godotengine/godot/issues/40247.
* Add a POST request example to the HTTPRequest class documentationHugo Locurcio2020-07-101-1/+9
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-3/+3
| | | | Handle removal of Pool*Array types and other recent changes.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* doc: Misc updates for AnimationNode* and othersRémi Verschelde2020-01-231-1/+1
| | | | | | | | | | | | | - Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`.