diff options
| author | Dan Winship <danw@gnome.org> | 2019-01-17 10:38:20 +0400 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-06-25 13:57:35 +0400 |
| commit | d83d68d64c40021be432416f9912ff9e59a337ce (patch) | |
| tree | 1723b6e387b6dc70d82a9838aa9c3fd6dce70a90 /docs/reference/glib/glib-sections.txt | |
| parent | 167b95012227bd6d8c50359ff7f3f4f648dc0803 (diff) | |
| download | glib-d83d68d64c40021be432416f9912ff9e59a337ce.tar.gz | |
guri: new URI parsing and generating functions
Add a set of new URI parsing and generating functions, including a new
parsed-URI type GUri. Move all the code from gurifuncs.c into guri.c,
reimplementing some of those functions (and
g_string_append_uri_encoded()) in terms of the new code.
Fixes:
https://gitlab.gnome.org/GNOME/glib/issues/110
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'docs/reference/glib/glib-sections.txt')
| -rw-r--r-- | docs/reference/glib/glib-sections.txt | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/docs/reference/glib/glib-sections.txt b/docs/reference/glib/glib-sections.txt index eed38b759..6f2722ade 100644 --- a/docs/reference/glib/glib-sections.txt +++ b/docs/reference/glib/glib-sections.txt @@ -3335,19 +3335,63 @@ g_base64_decode_inplace <SECTION> <TITLE>URI Functions</TITLE> -<FILE>gurifuncs</FILE> +<FILE>guri</FILE> +GUri +g_uri_ref +g_uri_unref +<SUBSECTION> +GUriFlags +g_uri_split +g_uri_split_with_user +g_uri_split_network +g_uri_is_valid +g_uri_join +g_uri_join_with_user +g_uri_parse +g_uri_parse_relative +g_uri_resolve_relative +g_uri_build +g_uri_build_with_user +g_uri_peek_scheme +g_uri_parse_scheme +<SUBSECTION> +GUriHideFlags +g_uri_to_string +g_uri_to_string_partial +<SUBSECTION> +g_uri_get_scheme +g_uri_get_userinfo +g_uri_get_user +g_uri_get_password +g_uri_get_auth_params +g_uri_get_host +g_uri_get_port +g_uri_get_path +g_uri_get_query +g_uri_get_fragment +g_uri_get_flags +<SUBSECTION> +g_uri_parse_params +<SUBSECTION> G_URI_RESERVED_CHARS_ALLOWED_IN_PATH G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO G_URI_RESERVED_CHARS_GENERIC_DELIMITERS G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS -g_uri_parse_scheme g_uri_escape_string g_uri_unescape_string +g_uri_escape_bytes +g_uri_unescape_bytes g_uri_unescape_segment +<SUBSECTION> g_uri_list_extract_uris g_filename_from_uri g_filename_to_uri +<SUBSECTION> +G_URI_ERROR +GUriError +<SUBSECTION Private> +g_uri_error_quark </SECTION> <SECTION> |
