]> spindle.queued.net Git - midori/commitdiff
Remove spaces from the speed dial JSON
authorJean-François Guchens <zcx000@gmail.com>
Sat, 23 May 2009 21:59:22 +0000 (23:59 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sat, 23 May 2009 21:59:22 +0000 (23:59 +0200)
data/speeddial.json
midori/midori-browser.c

index 0bb63f32866a2e41fcb991097b71a3161d0d214e..eeb62ab8326638805371e6fdbe0cccfbe976c868 100644 (file)
@@ -1 +1 @@
-'{"shortcuts": [ { "id": "s1", "href": "#", "title": "", "img": "" }, { "id": "s2", "href": "#", "title": "", "img": "" }, { "id": "s3", "href": "#", "title": "", "img": "" }, { "id": "s4", "href": "#", "title": "", "img": "" }, { "id": "s5", "href": "#", "title": "", "img": "" }, { "id": "s6", "href": "#", "title": "", "img": "" }, { "id": "s7", "href": "#", "title": "", "img": "" }, { "id": "s8", "href": "#", "title": "", "img": "" }, { "id": "s9", "href": "#", "title": "", "img": "" } ] }'
+'{"shortcuts":[{"id":"s1","href":"#","title":"","img":""},{"id":"s2","href":"#","title":"","img":""},{"id":"s3","href":"#","title":"","img":""},{"id":"s4","href":"#","title":"","img":""},{"id":"s5","href":"#","title":"","img":""},{"id":"s6","href":"#","title":"","img":""},{"id":"s7","href":"#","title":"","img":""},{"id":"s8","href":"#","title":"","img":""},{"id":"s9","href":"#","title":"","img":""}]}'
index 6a4c38f8302fea0c0d44a01cd35af46654b7bcff..e85ae55466d3aa9ad81419205fdf0e560f06f5b1 100644 (file)
@@ -932,7 +932,7 @@ midori_browser_speed_dial_get_next_free_slot (void)
     else
         g_file_get_contents (body_fname, &speed_dial_body, NULL, NULL);
 
-    regex = g_regex_new ("\"id\":[ \t]*\"(s[0-9])\"[ \t]*,[ \t]*\"href\":\"#\"",
+    regex = g_regex_new ("\"id\":\"(s[1-9])\",\"href\":\"#\"",
                          G_REGEX_MULTILINE, 0, NULL);
 
     if (g_regex_match (regex, speed_dial_body, 0, &match_info))
@@ -1029,9 +1029,8 @@ midori_browser_add_speed_dial (MidoriBrowser* browser)
             encoded = g_base64_encode ((guchar *)file_content, sz);
 
             replace_from = g_strdup_printf (
-                "\\{[ \t]*\"id\"[ \t]*:[ \t]*\"%s\"[ \t]*,[ \t]*\"href\"[ \t]*"\
-                "[ \t]*:[ \t]*\"#\"[ \t]*,[ \t]*\"title\"[ \t]*:[ \t]*\"\"[ \t]*,"\
-                "\"img\"[ \t]*:[ \t]*\"\"[ \t]*\\}", slot_id);
+                "\\{\"id\":\"%s\",\"href\":\"#\",\"title\":\"\",\"img\":\"\"\\}",
+                slot_id);
             replace_by = g_strdup_printf (
                 "{\"id\":\"%s\",\"href\":\"%s\",\"title\":\"%s\",\"img\":\"%s\"}",
                 slot_id, uri, title, encoded);