.TP
.B DownloadFinished
Fired if a Vimb managed download is finished.
-For external download this event is not available.
.TP
.B DownloadFailed
Fired if a Vimb managed download failed.
-For external download this event is not available.
.PD
.RE
.TP
.I config
Configuration file to set WebKit setting, some GUI styles and keybindings.
.TP
-.I cookies
-Cookie store file.
+.I cookies.db
+Sqlite cookie storage.
.TP
.I closed
Holds the URIs of last closed browser windows.
/* Setup those files that are use multiple time during runtime */
vb.files[FILES_CLOSED] = util_get_filepath(path, "closed", TRUE);
- vb.files[FILES_COOKIE] = util_get_filepath(path, "cookies", TRUE);
+ vb.files[FILES_COOKIE] = util_get_filepath(path, "cookies.db", TRUE);
vb.files[FILES_USER_STYLE] = util_get_filepath(path, "style.css", FALSE);
vb.files[FILES_SCRIPT] = util_get_filepath(path, "scripts.js", FALSE);
vb.files[FILES_HISTORY] = util_get_filepath(path, "history", TRUE);
webkit_cookie_manager_set_persistent_storage(
cm,
vb.files[FILES_COOKIE],
- WEBKIT_COOKIE_PERSISTENT_STORAGE_TEXT);
+ WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE);
}
/* initialize the modes */