From: Alan Knowles Date: Sat, 24 Nov 2012 13:47:00 +0000 (+0800) Subject: Clones.bjs X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=7169b2f6a0deb65f083a6349b4dfa81cf0b4a0dd Clones.bjs Clones.js --- diff --git a/Clones.bjs b/Clones.bjs index 2b57b25c..6235e24b 100644 --- a/Clones.bjs +++ b/Clones.bjs @@ -97,9 +97,9 @@ "id": "reposStore", "pack": "set_model", "xtype": "ListStore", - "|pathToRepo": "function(path) {\n\n var tr= this.repos;\n\n \n for(var i =0 ; i < tr.length; i++) {\n if (tr[i].repopath == path) {\n return tr;\n }\n } \n return false; \n}\n", "|init": "function() {\n XObject.prototype.init.call(this);\n this.el.set_column_types ( 8, [\n GObject.TYPE_STRING, // repo \n GObject.TYPE_STRING, // current branch\n GObject.TYPE_STRING, // all branch \n GObject.TYPE_STRING, // updated\n GObject.TYPE_BOOLEAN, // auto-commit\n GObject.TYPE_BOOLEAN, // auto-push\n GObject.TYPE_STRING, // repopath\n GObject.TYPE_STRING // color highighling \n ] );\n}\n", "|load": "function()\n{\n //this.insert(citer,iter,0);\n print(\"getting list\");\n this.repos = imports.Scm.Repo.Repo.list();\n var tr= this.repos;\n this.el.clear();\n \n for(var i =0 ; i < tr.length; i++) {\n var ret = { };\n \n this.el.append(ret);\n \n //print(JSON.stringify(ret,null,4));\n tr[i].getBranches();\n tr[i].getStatus();\n var hi;\n try {\n //tr[i].debug=1;\n hi = tr[i].history('/', 1, 'branch', tr[i].currentBranch.name );\n// print(JSON.stringify(hi,null,4));\n } catch(e) { print(e);}\n \n this.el.set_value(ret.iter, 0, '' + tr[i].repopath.split('/').pop() );\n this.el.set_value(ret.iter, 1, '' + tr[i].currentBranch.name );\n this.el.set_value(ret.iter, 2, '' + tr[i].branches.map(\n function(e) { return e.name; \n }).join(', ') \n );\n this.el.set_value(ret.iter, 3, '' + (!hi ? '??' : hi[0].changed_raw)); \n this.el.set_value(ret.iter, 4, tr[i].autocommit() ); \n this.el.set_value(ret.iter, 5, tr[i].autopush() ); \n this.el.set_value(ret.iter, 6, tr[i].repopath ); \n // highlight color.\n var cb = tr[i].currentBranch;\n //print(JSON.stringify(cb,null,4));\n var col = '#ffffff';\n if (cb.lastrev != cb.remoterev) {\n col = '#ff0000';\n }\n if (tr[i].hasLocalChanges) {\n col = '#0000ff';\n }\n if ((cb.lastrev != cb.remoterev) && (tr[i].hasLocalChanges)) {\n col = '#ff00ff';\n }\n \n this.el.set_value(ret.iter, 7, col ); \n \n } \n}", + "|pathToRepo": "function(path) {\n\n var tr= this.repos;\n\n \n for(var i =0 ; i < tr.length; i++) {\n if (tr[i].repopath == path) {\n return tr[i];\n }\n } \n return false; \n}\n", "|xns": "Gtk" }, { diff --git a/Clones.js b/Clones.js index 3af05b83..df571aad 100644 --- a/Clones.js +++ b/Clones.js @@ -333,18 +333,6 @@ Clones=new XObject({ xtype: Gtk.ListStore, id : "reposStore", pack : "set_model", - pathToRepo : function(path) { - - var tr= this.repos; - - - for(var i =0 ; i < tr.length; i++) { - if (tr[i].repopath == path) { - return tr; - } - } - return false; - }, init : function() { XObject.prototype.init.call(this); this.el.set_column_types ( 8, [ @@ -408,6 +396,18 @@ Clones=new XObject({ this.el.set_value(ret.iter, 7, col ); } + }, + pathToRepo : function(path) { + + var tr= this.repos; + + + for(var i =0 ; i < tr.length; i++) { + if (tr[i].repopath == path) { + return tr[i]; + } + } + return false; } }, {