aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHECKLIST2
-rw-r--r--TODO1
-rw-r--r--uzbl.c2
3 files changed, 2 insertions, 3 deletions
diff --git a/CHECKLIST b/CHECKLIST
index 790fe69..254c58f 100644
--- a/CHECKLIST
+++ b/CHECKLIST
@@ -13,7 +13,7 @@ Also testers and interested people can use this list to see what uzbl is about,
* history logging: the script as defined in sample config should write history entries (date,time, url) into the file defined in the script (by default ./extra/history.sh and /tmp/uzbl.history)
* invocations of external commands: you'll see it on stdout everytime uzbl calls an external script/program. the invocations should work and none of the arguments passed should be null/garbage/.. .
all should be valid strings and contain things like the pid, fifo file, config file,.. (see README for details).
-* XDG_CONFIG_HOME and XDG_CONFIG_DIRS (+ default values) fully supported and working (looks for a config file called 'uzbl').
+* XDG_CONFIG_HOME and XDG_CONFIG_DIRS (+ default values) fully supported and working (looks for a config file called 'uzbl/config').
* --uri can be specified without http:// -- if missing will be prepended.
* Download completely finished
* Open in new window partially finished: target _new works, from popup meny does not work yet
diff --git a/TODO b/TODO
index 5b300e3..3dbcbc7 100644
--- a/TODO
+++ b/TODO
@@ -13,7 +13,6 @@ ASAP
* implement a vimperator-like link following scheme. but let user pick his favorite characters to construct the "link identifiers" with.
* add a keybind to hand the current url to an external scrips, so you can edit it and/or store it in the primary and secondary clipboards
* use http://library.gnome.org/devel/glib/stable/glib-Hash-Tables.html#g-hash-table-insert for tracking bindings and wherever we use structs and ugly loops
-* char *XDG_CONFIG_HOME_default = "~/.config"; where does ~ get expanded?
* fifo -> socket. so you can do question-response. socket is slightly more complicated so we'll need to create a uzblctrl
SOMEDAY:
diff --git a/uzbl.c b/uzbl.c
index 8eefe84..438dae3 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -244,7 +244,7 @@ static Command commands[] =
{ "stop", &webkit_web_view_stop_loading, NULL },
{ "zoom_in", &webkit_web_view_zoom_in, NULL }, //Can crash (when max zoom reached?).
{ "zoom_out", &webkit_web_view_zoom_out, NULL },
- { "uri", NULL, &load_uri },
+ { "uri", (void *) NULL, &load_uri },
{ "toggle_status", &toggle_status_cb, NULL }
//{ "get uri", &webkit_web_view_get_uri},
};