diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-29 23:09:04 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-29 23:09:04 +0800 |
commit | 3a78991995ffbd980f1520a4c666929a7ed8b19c (patch) | |
tree | 4f3e057216e3128d2bc60d179351efdd7a866595 /src/pdm-dialog.h | |
parent | daa303eedb6e900836a721673dcd2af444748c87 (diff) | |
download | gsoc2013-epiphany-3a78991995ffbd980f1520a4c666929a7ed8b19c.tar.gz gsoc2013-epiphany-3a78991995ffbd980f1520a4c666929a7ed8b19c.tar.zst gsoc2013-epiphany-3a78991995ffbd980f1520a4c666929a7ed8b19c.zip |
Add a method to generate collation keys for domain names.
2005-11-29 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-string.c: (ephy_string_collate_key_for_domain):
* lib/ephy-string.h:
Add a method to generate collation keys for domain names.
* src/pdm-dialog.c: (cookie_search_equal),
(pdm_dialog_cookies_construct), (cookie_host_to_iter),
(compare_cookie_host_keys), (pdm_dialog_fill_cookies_list),
(pdm_dialog_cookies_destruct), (pdm_dialog_cookie_add),
(pdm_dialog_cookie_scroll_to), (sync_notebook_tab),
(pdm_dialog_init), (pdm_dialog_finalize), (pdm_dialog_open):
* src/pdm-dialog.h:
* src/window-commands.c: (window_cmd_edit_personal_data):
Open the PDM dialogue on the cookies page scrolled to show the
cookies of the currently loaded page, if there are any. Sort
cookies by domain. Allow treeview typeaheadfind search to find
by substring not prefix.
Diffstat (limited to 'src/pdm-dialog.h')
-rw-r--r-- | src/pdm-dialog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pdm-dialog.h b/src/pdm-dialog.h index 9dd7a3183..b6ffec552 100644 --- a/src/pdm-dialog.h +++ b/src/pdm-dialog.h @@ -51,7 +51,10 @@ struct PdmDialogClass EphyDialogClass parent_class; }; -GType pdm_dialog_get_type (void); +GType pdm_dialog_get_type (void); + +void pdm_dialog_open (PdmDialog *dialog, + const char *host); G_END_DECLS |