MergeBranch.bjs
[gitlive] / RooRepo.vala
index fbdb4fb..eb47406 100644 (file)
@@ -5,24 +5,29 @@ static RooRepo _RooRepo ;
 public class RooRepo : Object 
 {
  
-       
-
+       
        public string  id; // not really important that they are numbers..
        public string project_id;
        public string description;
        public string shortname;
        
        
+       // -- static below...
+       const string roourl = "https://roojs.com/admin.php/Roo";  
+       static Gee.ArrayList<RooRepo> _repos; // only available for singletonn.         
+       static int loadcount = 0;
+       
        static RooRepo init()
        {
                if (_RooRepo == null) {
                        _RooRepo = new RooRepo();
+               RooRepo.loadcount = 0;
                        RooRepo.load();
                }
                return _RooRepo;
        }
        
-       static Gee.ArrayList<RooRepo> _repos; // only available for singletonn.         
+
        public static  Gee.ArrayList<RooRepo> repos() {
                RooRepo.init();
                return RooRepo._repos;
@@ -39,6 +44,16 @@ public class RooRepo : Object
                GLib.debug("ADD project  %s : %s : %s", add.id, add.shortname, add.project_id);
                return add;
        }
+       
+       public static void reload()  /// has to be called on singleton..
+       {
+               RooRepo.loadcount = 0;
+               RooRepo.init();
+               if (RooRepo.loadcount == 0 ) {
+                       RooRepo.load();
+               }
+       }
+       
        static void load() // only called from above
        {