aboutsummaryrefslogtreecommitdiffstats
path: root/docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2020-10-14 13:26:09 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-10-14 11:28:17 +0000
commit93c1058794d8bdab19c49df6d402a40963be65ec (patch)
treeab893f78a3b9928cf409cd3b63f6129381e4f5aa /docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md
parent11d46ac01cf2b4bbc2e8ffe9b70ca27783af0137 (diff)
Added Documentation for Jellyfish
(rewrote majority of them and updated with minor changes) (removed whitespaces, added contribution guide, corrected rcar-gen3 section 7, added aglsetup.h flags to hardware support, some minor changes) Bug-AGL: [SPEC-3633] Signed-off-by: Shankho Boron Ghosh <shankhoghosh123@gmail.com> Change-Id: Ifd6b3c1cdaa41f05a74c1affe6db9e24763921b9 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25411 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md')
-rw-r--r--docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md b/docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md
deleted file mode 100644
index c6f411c..0000000
--- a/docs/3_Developer_Guides/6_AFB_Helper_Guide/3.7.4_URL_Escaping.md
+++ /dev/null
@@ -1,46 +0,0 @@
----
-edit_link: ''
-title: URL escaping
-origin_url: >-
- https://git.automotivelinux.org/src/libafb-helpers/plain/docs/escape.md?h=master
----
-
-<!-- WARNING: This file is generated by fetch_docs.js using /home/boron/Documents/AGL/docs-webtemplate/site/_data/tocs/devguides/master/afb-helpers-function-references-afb-helpers-book.yml -->
-
-# Escaping helpers functions reference
-
-## char *escape_url(const char *base, const char *path, const char * const *args, size_t *length)
-
-Escape an `url` and `arguments` and returned it as a string.
-
-* `base`: representing the FQDN of the url.
-* `path`: the path to the requested page.
-* `args`: optionnal array of arguments provided for the GET request.
-* `length`: length of the returned `url`.
-
-Returns the escaped `url`.
-
-## const char *escape_args(const char * const *args, size_t *length)
-
-Escape an array of arguments and returned the lenght of the escaped arguments
-string.
-
-* `args`: array of arguments provided for the GET request.
-* `length`: length of the returned `arguments`.
-
-Returns the escaped `arguments`.
-
-## const char *escape_str(const char *str, size_t *length)
-
-Escape a string and returns it.
-
-* `str`: the string to escape.
-* `length`: length of the returned string.
-
-Returns the escaped string.
-
-## const char **unescape_args(const char *args)
-
-Unescape an argument and returns it.
-
-* `args`: the argument to unescape.