Merge branch 'master' into wip_alan_T5615_gitlive_force_all_roojs_projects
[gitlive] / GitRepo.vala
index 7c3b240..6954437 100644 (file)
@@ -212,14 +212,17 @@ public class GitRepo : Object
     public string get_config(string key) {
     
        if (this.config_cache.has_key(key)) {
+               //GLib.debug("get_config %s = '%s'", key, this.config_cache.get(key));
                return this.config_cache.get(key);
                }
        try {
-               var ret =   this.git({ "config" , "gitlive." + key });
+               var ret =   this.git({ "config" , "gitlive." + key }).strip();
                this.config_cache.set(key, ret);
+               //GLib.debug("get_config %s = '%s'", key, ret);
                return ret;
        } catch (Error e) {
                this.config_cache.set(key, "");
+               //GLib.debug("get_config (fail) %s = '%s'", key, "");
                return ""; // happens when there is nothing set...
        }
 
@@ -897,11 +900,14 @@ public class GitRepo : Object
 
                return;
                }
+               GLib.debug("call after load = %s", update_all_after);    
+               
                switch (update_all_after) {
                        case "show_clones":
                                Clones.singleton().show();
                                break;
                        default:
+                               GLib.debug("Unkown call after load = %s", update_all_after);            
                                break;
                }
                return;