Searched refs:fragment (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib/
H A Duri-util.h13 /* Allow '#fragment' part in URI */
164 /* parse the URI 'fragment' syntax. Returns 1 if successful, 0 if the first
165 character is not valid for the 'fragment' syntax and -1 in case of
168 function for merely checking for valid 'fragment' syntax.
283 /* append partial fragment data to the out buffer. No leading '#' is
286 'fragment' characters.*/
289 /* append a full URI fragment part to the out buffer. A leading '#' is
291 void uri_append_fragment(string_t *out, const char *fragment);
H A Duri-util.c13 URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
18 relative-ref = relative-part [ "?" query ] [ "#" fragment ]
73 fragment = *( pchar / "/" / "?" )
1017 * URI = { ... } [ "#" fragment ]
1018 * fragment = *( pchar / "/" / "?" )
1082 URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
1125 /* [ "#" fragment ] */
1315 void uri_append_fragment(string_t *out, const char *fragment) argument
1318 if (*fragment != '\0')
1319 uri_append_fragment_data(out, NULL, fragment);
[all...]

Completed in 9 milliseconds