Top | ![]() |
![]() |
![]() |
![]() |
gchar * | e_url_shroud () |
gboolean | e_url_equal () |
EUri * | e_uri_new () |
void | e_uri_free () |
const gchar * | e_uri_get_param () |
EUri * | e_uri_copy () |
gchar * | e_uri_to_string () |
gchar *
e_url_shroud (const gchar *url
);
Removes the moniker (i.e. mailto:) from a url.
gboolean e_url_equal (const gchar *url1
,const gchar *url2
);
Checks two urls for equality, after first removing any monikers on the urls.
EUri *
e_uri_new (const gchar *uri_string
);
Creates an EUri representation of the uri given in uri_string
.
const gchar * e_uri_get_param (EUri *uri
,const gchar *name
);
Retrieves the value of the parameter associated with name
in uri
.
gchar * e_uri_to_string (EUri *uri
,gboolean show_password
);
Creates a string representation of uri
. The password will only be
included in the string if show_password
is set to TRUE
.
uri |
The EUri to convert to a string. |
|
show_password |
Whether or not to show the password in the string. |
struct EUri { gchar *protocol; gchar *user; gchar *authmech; gchar *passwd; gchar *host; gint port; gchar *path; GData *params; gchar *query; gchar *fragment; };
A structure representing a URI.
gchar * |
The protocol to use. |
|
gchar * |
A user name. |
|
gchar * |
The authentication mechanism. |
|
gchar * |
The connection password. |
|
gchar * |
The host name. |
|
gint |
The port number. |
|
gchar * |
The file path on the host. |
|
GData * |
Additional parameters. |
|
gchar * |
The URI query. |
|
gchar * |
The URI fragment. |