aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar dusanx <ef_dva@yahoo.com>2009-04-28 00:17:39 +0200
committerGravatar dusanx <ef_dva@yahoo.com>2009-04-28 00:17:39 +0200
commit8be6f1a68f17d9cb9b64da4b09cc833c167f4038 (patch)
tree9c6c9007cd6b040ed93d2f05a1f695a4a247f53d /uzbl.c
parente6f0542071874fdc4d041e9f2161e0f0bac2ecf4 (diff)
parentb6b60c7b63baa5e900fcfa88bfbc8f2504d1b80e (diff)
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into dieter/experimental
Conflicts: uzbl.c
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/uzbl.c b/uzbl.c
index da73bfe..1b4cd8b 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -107,6 +107,9 @@ char *XDG_CONFIG_DIRS_default = "/etc/xdg";
static void
update_title (GtkWindow* window);
+static void
+load_uri ( WebKitWebView * web_view, gchar * uri);
+
static gboolean
run_command(const char *command, const char *args);
@@ -207,7 +210,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, &webkit_web_view_load_uri },
+ { "uri", NULL, &load_uri },
{ "toggle_status", &toggle_status_cb, NULL }
//{ "get uri", &webkit_web_view_get_uri},
};
@@ -236,6 +239,12 @@ file_exists (const char * filename) {
return false;
}
+static void
+load_uri ( WebKitWebView * web_view, gchar * uri) {
+ webkit_web_view_load_uri (web_view, uricheck(uri));
+}
+
+
// make sure to put '' around args, so that if there is whitespace we can still keep arguments together.
static gboolean
run_command(const char *command, const char *args) {
@@ -468,7 +477,7 @@ settings_init () {
printf("XDG_CONFIG_HOME: %s\n", XDG_CONFIG_HOME);
strcpy (conf, XDG_CONFIG_HOME);
- strcat (conf, "/uzbl");
+ strcat (conf, "/uzbl/config");
if (file_exists (conf)) {
printf ("Config file %s found.\n", conf);
config_file = &conf[0];
@@ -484,7 +493,7 @@ settings_init () {
char *dir = (char *)strtok (dirs, ":");
while (dir && ! file_exists (conf)) {
strcpy (conf, dir);
- strcat (conf, "/uzbl");
+ strcat (conf, "/uzbl/config");
if (file_exists (conf)) {
printf ("Config file %s found.\n", conf);
config_file = &conf[0];