summaryrefslogtreecommitdiffstats
path: root/doc/classes/HTTPRequest.xml
Commit message (Collapse)AuthorAgeFilesLines
* 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`.
* Add an example of using HTTPRequest to contact a REST APIHugo Locurcio2019-12-241-0/+21
| | | | | We already had an example to download and display an image, but having another example dedicated to REST APIs doesn't hurt.
* doc: Markup fixes for enums and constantsRémi Verschelde2019-12-061-1/+1
|
* Add download_chunk_size property to HTTPRequest.Fabio Alessandrelli2019-11-241-0/+4
| | | | | | This allows setting the `read_chunk_size` of the internal HTTPClient. This is important to reduce the allocation overhead and number of file writes when downloading large files, allowing for better download speed.
* Add an HTTPRequest usage example to the class referenceHugo Locurcio2019-11-071-1/+31
| | | | This also adds a link to the "Making HTTP requests" tutorial.
* Mention body length getter caveats in HTTPClient and HTTPRequestHugo Locurcio2019-10-221-0/+1
|
* doc: Sync classref with current sourceRémi Verschelde2019-07-101-0/+4
|
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-4/+4
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-1/+1
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Don't use `GlobalScope` scope in hyperlinks, it's automatically inferredRémi Verschelde2019-06-271-1/+1
|
* doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinksRémi Verschelde2019-06-271-1/+1
|
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* doc: Fix references to setters and misc formattingRémi Verschelde2018-12-291-4/+4
|
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-1/+1
|
* doc: Use HTTPS for docs.godotengine.org and point to latest branchRémi Verschelde2018-11-051-1/+1
| | | | Fixes #23509.
* Add support for tutorial links to makerst.pyrobojumper2018-06-121-1/+1
| | | | Also change the <tutorials> structure to make use of individual <link> tags
* [DOCS] add HTTPRequest.request return valuesPoommetee Ketson2018-04-201-0/+2
|
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* doc: Fix references to online tutorials after godotengine/godot-docs#1015Rémi Verschelde2018-01-251-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* doc: Replace some more "val" with "value" + syncRémi Verschelde2018-01-171-1/+1
|
* Filled tutorial field in most relevent classes.Juan Linietsky2018-01-151-0/+1
| | | | Added tutorial display in doc.
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* Update docsBojidar Marinov2018-01-121-16/+3
| | | | [ci skip]
* [DOCS] HTTPClient & HTTPRequestmhilbrunner2017-12-101-10/+13
|
* doc: Fix enum tags thanks to 2bc6db6Rémi Verschelde2017-11-241-12/+12
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-48/+0
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|
* doc: Remove revision.module_config from version stringRémi Verschelde2017-11-151-1/+1
| | | | | It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.