NewBranch.bjs
[gitlive] / NewBranch.bjs
1 {
2  "name" : "NewBranch",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/gitlive/NewBranch.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "gitlive",
9  "items" : [
10   {
11    "listeners" : {
12     "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n    //test  \n}\n ",
13     "response" : " (self, response_id) =>  { \n  \n\tGLib.debug(\"got %d\", (int) response_id);\n\t\n\t \n\t\n\t \n\t// have they selected a ticket..\n\t// make that the current active ticket?\n\t// we really need to store locally what ticket is being worked on..\n\t// in theory we could be working on multiple project and not merging..\n\t// -- each repo would have their active ticket (only one per repo)\n\t// -- so we could just store that in there\n\t// -- initial load can check the contents of the ticket files on first scan.\n\n\t \n\tif (response_id < 1) {\n\t    _this.el.hide();\t\n\t    this.running = false; \n\t \treturn;\n\t}\n\t\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n    if (this.repo != null) {\n    \tvar bn = _this.name.el.get_text();\n\n\t\tvar res = this.repo.setActiveTicket(\t\t\t\n\t\t\t RooTicket.singleton().getById(ticket_id != \"\" ? ticket_id : \"-1\"), bn\n\t\t );\n\t\t if (res) {\n\t\t \t// start the monitoring..\n\t\t \t GitMonitor.gitmonitor.start();\n\t\t \t \n\t\t }\n    }\n     \n\n    this.running = false; \n\n\tthis.el.hide();\n\t \n\t \n\n\t \n}"
14    },
15    "default_width" : 500,
16    "$ deletable" : true,
17    "title" : "Create a working branch ",
18    "xtype" : "Dialog",
19    "# GitRepo? repo" : "null",
20    "|   void show" : "( GitRepo repo, Gee.ArrayList<GitMonitorQueue> queue, string tid = \"\" ) \n{\n     // this.el.set_gravity(Gdk.Gravity.NORTH);\n    if (this.running) { // should not happen!!\n    \tGLib.error(\"new branch show called, when already being displayed?\");\n\t}\n\t\n\t\n\tthis.queue = queue;\n\tthis.running  = true;\n\tGitMonitor.gitmonitor.stop();\n\t\n\t\n    this.repo = repo;\n\tthis.el.move((Gdk.Screen.width() / 2)- 250 ,0);\n\tthis.el.set_default_size( 500,200); // not sure why it grows..\n\t\n\t\n\t\n\t\n     \n\n    this.el.show_all();\n    this.el.set_keep_above(true);\n\t\n\t_this.select_ticket_tab.load_data(tid);\n\t_this.create_ticket_tab.load_data();\n\t_this.quick_commit_tab.load_data();\n   \n   \n    \n    \n    \n    \n    \n \tthis.el.run();\n\n}",
21    "default_height" : 500,
22    "$ xns" : "Gtk",
23    "# bool running" : false,
24    "# Gee.ArrayList<GitMonitorQueue> queue" : "null",
25    "bool modal" : true,
26    "items" : [
27     {
28      "* pack" : "get_content_area().add",
29      "xtype" : "Notebook",
30      "$ xns" : "Gtk",
31      "bool vexpand" : true,
32      "items" : [
33       {
34        "id" : "label_select_ticket",
35        "* pack" : false,
36        "xtype" : "Label",
37        "string label" : "Select Existing Ticket to work on",
38        "$ xns" : "Gtk"
39       },
40       {
41        "id" : "label_create_ticket",
42        "xtype" : "Label",
43        "* pack" : false,
44        "string label" : "Create a New Ticket",
45        "$ xns" : "Gtk"
46       },
47       {
48        "id" : "label_quick_commit",
49        "* pack" : false,
50        "xtype" : "Label",
51        "string label" : "Quick Commit",
52        "$ xns" : "Gtk"
53       },
54       {
55        "id" : "select_ticket_tab",
56        "bool homogeneous" : false,
57        "* pack" : "append_page,_this.label_select_ticket.el",
58        "xtype" : "Box",
59        "| void load_data" : "(string tid = \"\") {\n\n    GLib.debug(\"Loading tickets\"); \n    \n    var curproj = RooProject.getProjectByRepo(_this.repo);\n     _this.prmodel.loadProjects(curproj == null ? \"\" : curproj.id);\n    \n \t_this.dbmodel.loadTickets(curproj == null ? \"\": curproj.id, tid);\n \t_this.branchbtn.updateState();\n \t\n\t_this.ticketsel.el.get_child().get_style_context().remove_class(\"warning\");\n \tif (tid != \"\") { \n\t \tvar name = RooTicket.singleton().usernameLocal();\n \t\tvar ticket = RooTicket.singleton().getById(tid);\n\t\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t} else {\n\t\t_this.ticketsel.el.get_child().get_style_context().add_class(\"warning\");\n\t}\n    _this.view.loadTicket(tid);\n    \n    \n}\n",
60        "$ xns" : "Gtk",
61        "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
62        "items" : [
63         {
64          "bool homogeneous" : true,
65          "bool expand" : false,
66          "xtype" : "Table",
67          "* pack" : "pack_start,false,false,0",
68          "uint column_spacing" : 4,
69          "n_columns" : 5,
70          "$ xns" : "Gtk",
71          "n_rows" : 5,
72          "bool vexpand" : false,
73          "int margin" : 2,
74          "items" : [
75           {
76            "label" : "Project",
77            "$ visible" : true,
78            "Gtk.Align halign" : "Gtk.Align.START",
79            "* pack" : "attach_defaults,0,1,0,1",
80            "xtype" : "Label",
81            "$ justify" : "Gtk.Justification.RIGHT",
82            "x_options" : 4,
83            "$ xns" : "Gtk"
84           },
85           {
86            "label" : "Ticket",
87            "$ visible" : true,
88            "Gtk.Align halign" : "Gtk.Align.START",
89            "* pack" : "attach_defaults,1,2,0,1",
90            "xtype" : "Label",
91            "x_options" : 4,
92            "$ xns" : "Gtk"
93           },
94           {
95            "listeners" : {
96             "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar project_id = this.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\n\t\n\t\n\t/*if (this.loading) {\n\t\treturn;\n\t}\n\tvar ticket_id = this.selectedTicketId();\n\t\n\tvar name = RooTicket.singleton().usernameLocal();\n\t\n\tif (ticket_id == \"\" || ticket_id == null) {\n\t\n\t\tvar dt = new  DateTime.now_local();\n\t\t_this.name.el.set_text(\"wip_%s_%s\".printf(name,dt.format(\"%Y_%b_%d\")));\n\t\treturn;\n\t}\n\t\n\t\n\tvar ticket = RooTicket.singleton().getById(ticket_id);\n   \n\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t\n\t//GLib.debug (//\"Selection: %s, %s\\n\", (string) val1, (string) val2);\n\t*/\n}"
97            },
98            "* ctor" : "new Gtk.ComboBox.with_entry()",
99            "| string selectedProjectId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.prmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
100            "id" : "projectsel",
101            "* init" : "this.el.set_entry_text_column(1);",
102            "* pack" : "attach_defaults,0,1,1,2",
103            "xtype" : "ComboBox",
104            "# bool loading" : false,
105            "$ xns" : "Gtk",
106            "items" : [
107             {
108              "id" : "prcellrenderer",
109              "* pack" : "pack_start,true",
110              "xtype" : "CellRendererText",
111              "$ xns" : "Gtk"
112             },
113             {
114              "| void loadProjects" : "  (string id) {\n\n\n    \n    _this.projectsel.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a project --\");\n    if (id == \"\") {\n\t    _this.projectsel.el.set_active_iter(iter);\n    }\n  \n    foreach(var project in RooProject.projects()) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.name );\n        if (id == project.id) {\n\t \t   _this.projectsel.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.projectsel.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
115              "id" : "prmodel",
116              "* pack" : "set_model",
117              "xtype" : "ListStore",
118              "$ columns" : "typeof(string),typeof(string)",
119              "n_columns" : 2,
120              "$ xns" : "Gtk"
121             }
122            ]
123           },
124           {
125            "listeners" : {
126             "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar ticket_id = this.selectedTicketId();\n\t\n\tvar name = RooTicket.singleton().usernameLocal();\n\t\n\tthis.el.get_child().get_style_context().remove_class(\"warning\");\n\tif (ticket_id == \"\" || ticket_id == null) {\n\t\n\t\tvar dt = new  DateTime.now_local();\n\t\t_this.name.el.set_text(\"wip_%s_%s\".printf(name,dt.format(\"%Y_%b_%d\")));\n\t\t_this.view.loadTicket(\"\");\t\t\n\t\t\n\t\tthis.el.get_child().get_style_context().add_class(\"warning\");\n\t\t_this.createbtn.updateState();\n\t\treturn;\n\t}\n\t\n\t\n\tvar ticket = RooTicket.singleton().getById(ticket_id);\n   \n\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t_this.scrolled_window.el.show();\n\t \n\t_this.view.loadTicket(ticket.id);\n\t_this.branchbtn.updateState();\n\t\n\t//GLib.debug (//\"Selection: %s, %s\\n\", (string) val1, (string) val2);\n}"
127            },
128            "* ctor" : "new Gtk.ComboBox.with_entry()",
129            "id" : "ticketsel",
130            "* init" : "//this.el.add_attribute(_this.dbcellrenderer.el , \"markup\", 1 );\nthis.el.set_entry_text_column(1);\nthis.el.get_child().set_sensitive(false); ",
131            "* pack" : "attach_defaults,1,5,1,2",
132            "xtype" : "ComboBox",
133            "# bool loading" : false,
134            "$ xns" : "Gtk",
135            "| string selectedTicketId" : "() {\nGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.dbmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
136            "items" : [
137             {
138              "id" : "dbcellrenderer",
139              "xtype" : "CellRendererText",
140              "* pack" : "pack_start,true",
141              "$ xns" : "Gtk"
142             },
143             {
144              "id" : "dbmodel",
145              "xtype" : "ListStore",
146              "* pack" : "set_model",
147              "| void loadTickets" : "(string project_id , string tid = \"\") {\n\n\n    \n    // fixme .. get project id from selection..\n    \n     RooTicket.singleton().loadTickets(\n \t\t\tproject_id,\n \t\t\t_this.btn_not_me.el.active ? RooTicket.Who.ANYBODY :  RooTicket.Who.ME,\n \t\t\t _this.btn_closed.el.active ? RooTicket.Status.ALL :  RooTicket.Status.ACTIVE\n\t\t );\n        \n    _this.ticketsel.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a ticket --\");\n    \n    _this.ticketsel.el.set_active_iter(iter);\n    var tickets = RooTicket.singleton().tickets;\n    foreach(var ticket in tickets) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, ticket.id);\n        el.set_value(iter, 1, \"#%s %s\".printf( ticket.id, ticket.summary));\n        \n        if (ticket.id == tid) {\n\t\t    _this.ticketsel.el.set_active_iter(iter);\n        }\n        \n    }\n    \n    _this.ticketsel.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
148              "$ columns" : "typeof(string),typeof(string)",
149              "n_columns" : 2,
150              "$ xns" : "Gtk"
151             }
152            ]
153           },
154           {
155            "label" : "Use this as branch name",
156            "Gtk.Align halign" : "Gtk.Align.START",
157            "xalign" : 0.90000000000000002,
158            "* pack" : "attach_defaults,0,1,3,4",
159            "xtype" : "Label",
160            "$ justify" : "Gtk.Justification.RIGHT",
161            "x_options" : 4,
162            "$ xns" : "Gtk"
163           },
164           {
165            "id" : "name",
166            "$ visible" : true,
167            "xtype" : "Entry",
168            "* pack" : "attach_defaults,0,4,4,5",
169            "$ xns" : "Gtk"
170           },
171           {
172            "listeners" : {
173             "clicked" : "() => {\n\n\tGLib.debug(\"fire response = 1\");\n\t\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n\tif (ticket_id == \"\") {\n\t\t_this.ticketsel.el.get_child().get_style_context().add_class(\"warning\");\n\t\treturn;\n\t}\n\t \n\t_this.el.response(1);\n}"
174            },
175            "label" : "Create Branch",
176            "| void updateState" : "() {\n\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n\tif (ticket_id == \"\") {\n\t\tthis.el.set_sensitive(false);\n\t\treturn;\n\t}\n \n\tthis.el.set_sensitive(true);\n \n}\n",
177            "id" : "branchbtn",
178            "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
179            "xtype" : "Button",
180            "* pack" : "attach_defaults,4,5,4,5",
181            "$ xns" : "Gtk"
182           },
183           {
184            "* pack" : "attach_defaults,0,5,2,3",
185            "xtype" : "Box",
186            "$ xns" : "Gtk",
187            "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
188            "items" : [
189             {
190              "listeners" : {
191               "toggled" : "() => {\n\tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n}"
192              },
193              "id" : "btn_not_me",
194              "* pack" : "add",
195              "string label" : "Show tickets not assigned to me",
196              "xtype" : "CheckButton",
197              "$ xns" : "Gtk"
198             },
199             {
200              "listeners" : {
201               "toggled" : "() => {\n \tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n\t \n}"
202              },
203              "id" : "btn_closed",
204              "string label" : "Show closed Tickets",
205              "xtype" : "CheckButton",
206              "* pack" : "add",
207              "$ xns" : "Gtk"
208             },
209             {
210              "listeners" : {
211               "activate_link" : "(uri) => {\n\tif (uri == \"refresh\") {\n\t\tRooProject.reload();\n\t\tvar curproj = RooProject.getProjectByRepo(_this.repo);\n\t\t _this.prmodel.loadProjects(curproj == null ? \"\": curproj.id);\n\n\t\t_this.dbmodel.loadTickets(curproj == null ? \"\": curproj.id);\t\t\n\t}\n\treturn true;\n}"
212              },
213              "bool use_markup" : true,
214              "Gtk.Align halign" : "Gtk.Align.END",
215              "bool hexpand" : true,
216              "* pack" : "add",
217              "xtype" : "Label",
218              "string label" : "<a href=\"refresh\">Refresh Ticket list</a>",
219              "$ xns" : "Gtk"
220             }
221            ]
222           }
223          ]
224         },
225         {
226          "int height_request" : 500,
227          "id" : "scrolled_window",
228          "* init" : "{\n\tthis.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);\n}\n",
229          "* pack" : "add",
230          "xtype" : "ScrolledWindow",
231          "$ xns" : "Gtk",
232          "bool vexpand" : true,
233          "items" : [
234           {
235            "id" : "view",
236            "* pack" : "add",
237            "xtype" : "WebView",
238            "$ xns" : "WebKit",
239            "| void loadTicket" : "(string tid) {\n\tint h,w;\n\t_this.el.get_size(out w, out h);\n\t\n\tif (tid == \"\") {\n\t\t_this.scrolled_window.el.hide();\n\t\t_this.el.resize(w, 150);\n\t} else {\n\t\t_this.scrolled_window.el.show();\n\t\t_this.el.resize(w, 800);\n\t}\n\t\n\tvar rs =  RooTicket.singleton();\t\t\n\tvar uri = new WebKit.URIRequest(\"https://roojs.com/admin.php/MTrack/View/\" + tid);\n\tvar hd = uri.get_http_headers();\n\tvar authCode = Base64.encode (\"%s:%s\".printf(rs.username, rs.password).data);\n\thd.append(\"Authorization\", \"Basic %s\".printf(authCode));\n\t\n\t this.el.load_request(uri);\n}\n"
240           }
241          ]
242         }
243        ]
244       },
245       {
246        "id" : "create_ticket_tab",
247        "bool homogeneous" : false,
248        "xtype" : "Box",
249        "* pack" : "append_page,_this.label_create_ticket.el",
250        "$ xns" : "Gtk",
251        "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
252        "items" : [
253         {
254          "id" : "table",
255          "bool homogeneous" : true,
256          "bool expand" : false,
257          "xtype" : "Table",
258          "* pack" : "pack_start,false,false,0",
259          "uint column_spacing" : 4,
260          "n_columns" : 4,
261          "$ xns" : "Gtk",
262          "n_rows" : 14,
263          "bool vexpand" : false,
264          "int margin" : 2,
265          "items" : [
266           {
267            "label" : "Project",
268            "$ visible" : true,
269            "Gtk.Align halign" : "Gtk.Align.START",
270            "* pack" : "attach_defaults,0,1,0,1",
271            "xtype" : "Label",
272            "$ xns" : "Gtk"
273           },
274           {
275            "label" : "Summary",
276            "$ visible" : true,
277            "Gtk.Align halign" : "Gtk.Align.START",
278            "* pack" : "attach_defaults,1,2,0,1",
279            "xtype" : "Label",
280            "x_options" : 4,
281            "$ xns" : "Gtk"
282           },
283           {
284            "listeners" : {
285             "changed" : "() => {\n\tif (this.loading) {\n\t\treturn;\n\t}\n\tvar project_id = this.selectedProjectId();\n\t\n\tvar rt = RooTicket.singleton();\n\trt.loadProjectOptions(project_id);\n\t\n\t_this.msmodel.loadMilestones();\n\t_this.primodel.loadPriorities();\n\t_this.sevmodel.loadSeverities();\n\t_this.clmodel.loadClassifications();\t\n\t_this.devmodel.loadDevelopers();\t\n\t\n\t// affects projects and milestones..\n\t\n\t\n\t/*if (this.loading) {\n\t\treturn;\n\t}\n\tvar ticket_id = this.selectedTicketId();\n\t\n\tvar name = RooTicket.singleton().usernameLocal();\n\t\n\tif (ticket_id == \"\" || ticket_id == null) {\n\t\n\t\tvar dt = new  DateTime.now_local();\n\t\t_this.name.el.set_text(\"wip_%s_%s\".printf(name,dt.format(\"%Y_%b_%d\")));\n\t\treturn;\n\t}\n\t\n\t\n\tvar ticket = RooTicket.singleton().getById(ticket_id);\n   \n\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t\n\t//GLib.debug (//\"Selection: %s, %s\\n\", (string) val1, (string) val2);\n\t*/\n}"
286            },
287            "* ctor" : "new Gtk.ComboBox.with_entry()",
288            "id" : "project_id",
289            "| string selectedProjectId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.tprmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
290            "* init" : "this.el.set_entry_text_column(1);",
291            "* pack" : "attach_defaults,0,1,1,2",
292            "xtype" : "ComboBox",
293            "# bool loading" : false,
294            "$ xns" : "Gtk",
295            "items" : [
296             {
297              "id" : "tprcellrenderer",
298              "xtype" : "CellRendererText",
299              "* pack" : "pack_start,true",
300              "$ xns" : "Gtk"
301             },
302             {
303              "| void loadProjects" : "  (string id) {\n\n    \n    _this.project_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a project --\");\n    if (id == \"\") {\n\t    _this.project_id.el.set_active_iter(iter);\n    }\n\n    foreach(var project in RooProject.projects()) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.name );\n        if (id == project.id) {\n\t \t   _this.project_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.project_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
304              "id" : "tprmodel",
305              "* pack" : "set_model",
306              "xtype" : "ListStore",
307              "$ columns" : "typeof(string),typeof(string)",
308              "n_columns" : 2,
309              "$ xns" : "Gtk"
310             }
311            ]
312           },
313           {
314            "id" : "summary",
315            "$ visible" : true,
316            "xtype" : "Entry",
317            "* pack" : "attach_defaults,1,4,1,2",
318            "$ xns" : "Gtk"
319           },
320           {
321            "label" : "Milestone",
322            "Gtk.Align halign" : "Gtk.Align.START",
323            "xalign" : 0.90000000000000002,
324            "* pack" : "attach_defaults,0,1,2,3",
325            "xtype" : "Label",
326            "$ justify" : "Gtk.Justification.RIGHT",
327            "x_options" : 4,
328            "$ xns" : "Gtk"
329           },
330           {
331            "* ctor" : "new Gtk.ComboBox.with_entry()",
332            "id" : "milestone_id",
333            "* init" : "this.el.set_entry_text_column(1);",
334            "* pack" : "attach_defaults,0,1,3,4",
335            "xtype" : "ComboBox",
336            "# bool loading" : false,
337            "$ xns" : "Gtk",
338            "| string selectedMilestoneId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.msmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
339            "items" : [
340             {
341              "id" : "msmodel",
342              "* pack" : "set_model",
343              "xtype" : "ListStore",
344              "| void loadMilestones" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n   // rt.loadProjects();\n    \n    _this.milestone_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a milestone --\");\n    _this.milestone_id.el.set_active_iter(iter);    \n     \n    var projects = rt.milestones;\n    foreach(var project in projects) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.display_name );\n      //  if (id == project.id) {\n\t //\t   _this.milestone.el.set_active_iter(iter);\n\t //   }   \n        \n    }\n    \n    \n    _this.milestone_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
345              "$ columns" : "typeof(string),typeof(string)",
346              "n_columns" : 2,
347              "$ xns" : "Gtk"
348             }
349            ]
350           },
351           {
352            "label" : "Description",
353            "Gtk.Align halign" : "Gtk.Align.START",
354            "* pack" : "attach_defaults,1,4,2,3",
355            "xtype" : "Label",
356            "x_options" : 4,
357            "$ xns" : "Gtk"
358           },
359           {
360            "id" : "description",
361            "* pack" : "attach_defaults,1,4,3,12",
362            "xtype" : "TextView",
363            "$ xns" : "Gtk",
364            "uint border_width" : 1
365           },
366           {
367            "label" : "Priority",
368            "Gtk.Align halign" : "Gtk.Align.START",
369            "xalign" : 0.90000000000000002,
370            "* pack" : "attach_defaults,0,1,4,5",
371            "xtype" : "Label",
372            "x_options" : 4,
373            "$ xns" : "Gtk"
374           },
375           {
376            "* ctor" : "new Gtk.ComboBox.with_entry()",
377            "id" : "priority_id",
378            "* init" : "this.el.set_entry_text_column(1);",
379            "* pack" : "attach_defaults,0,1,5,6",
380            "xtype" : "ComboBox",
381            "# bool loading" : false,
382            "$ xns" : "Gtk",
383            "| string selectedPriorityId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.primodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
384            "items" : [
385             {
386              "id" : "primodel",
387              "| void loadPriorities" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n   // rt.loadProjects();\n    \n    _this.priority_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    \n   var projects = rt.priorities;\n    foreach(var project in projects) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.display_name );\n        if (\"normal\" == project.name) {\n\t \t   _this.priority_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.priority_id.loading = false;\n           \n                                     \n}\n",
388              "* pack" : "set_model",
389              "xtype" : "ListStore",
390              "$ columns" : "typeof(string),typeof(string)",
391              "n_columns" : 2,
392              "$ xns" : "Gtk"
393             }
394            ]
395           },
396           {
397            "label" : "Severity",
398            "Gtk.Align halign" : "Gtk.Align.START",
399            "* pack" : "attach_defaults,0,1,6,7",
400            "xtype" : "Label",
401            "x_options" : 4,
402            "$ xns" : "Gtk"
403           },
404           {
405            "* ctor" : "new Gtk.ComboBox.with_entry()",
406            "id" : "severity_id",
407            "* init" : "this.el.set_entry_text_column(1);",
408            "* pack" : "attach_defaults,0,1,7,8",
409            "xtype" : "ComboBox",
410            "# bool loading" : false,
411            "$ xns" : "Gtk",
412            "| string selectedSeverityId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.sevmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
413            "items" : [
414             {
415              "| void loadSeverities" : "  () {\n\n    var rt = RooTicket.singleton();\n    //rt.loadProjects();\n    \n    _this.severity_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n     \n    var projects = rt.serverities;\n    foreach(var project in projects) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.display_name );\n        if (\"normal\" == project.name) {\n\t \t   _this.severity_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n   \n    _this.severity_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
416              "id" : "sevmodel",
417              "* pack" : "set_model",
418              "xtype" : "ListStore",
419              "$ columns" : "typeof(string),typeof(string)",
420              "n_columns" : 2,
421              "$ xns" : "Gtk"
422             }
423            ]
424           },
425           {
426            "label" : "Classification",
427            "Gtk.Align halign" : "Gtk.Align.START",
428            "* pack" : "attach_defaults,0,1,8,9",
429            "xtype" : "Label",
430            "x_options" : 4,
431            "$ xns" : "Gtk"
432           },
433           {
434            "* ctor" : "new Gtk.ComboBox.with_entry()",
435            "id" : "classification_id",
436            "* init" : "this.el.set_entry_text_column(1);",
437            "* pack" : "attach_defaults,0,1,9,10",
438            "xtype" : "ComboBox",
439            "# bool loading" : false,
440            "$ xns" : "Gtk",
441            "| string selectedClassificationId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.clmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
442            "items" : [
443             {
444              "id" : "clmodel",
445              "| void loadClassifications" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n    // rt.loadProjects();\n    \n    _this.classification_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n     \n    var projects = rt.classifications;\n    foreach(var project in projects) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, project.id);\n        el.set_value(iter, 1,  project.display_name );\n        if (\"bug\" == project.name) {\n\t \t   _this.classification_id.el.set_active_iter(iter);\n\t    }   \n        \n    }\n    \n    _this.classification_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
446              "* pack" : "set_model",
447              "xtype" : "ListStore",
448              "$ columns" : "typeof(string),typeof(string)",
449              "n_columns" : 2,
450              "$ xns" : "Gtk"
451             }
452            ]
453           },
454           {
455            "label" : "Assign to",
456            "Gtk.Align halign" : "Gtk.Align.START",
457            "* pack" : "attach_defaults,0,1,10,11",
458            "xtype" : "Label",
459            "x_options" : 4,
460            "$ xns" : "Gtk"
461           },
462           {
463            "* ctor" : "new Gtk.ComboBox.with_entry()",
464            "id" : "developer_id",
465            "* init" : "this.el.set_entry_text_column(1);",
466            "* pack" : "attach_defaults,0,1,11,12",
467            "xtype" : "ComboBox",
468            "# bool loading" : false,
469            "| string selectedDeveloperId" : "() {\n\tGtk.TreeIter iter;\n\tValue val1;\n \n \n\tthis.el.get_active_iter (out iter);\n\t_this.devmodel.el.get_value (iter, 0, out val1);\n \n\n\treturn  (string) val1;\n\t\n\t\n\t\n\t\n}\n",
470            "$ xns" : "Gtk",
471            "items" : [
472             {
473              "id" : "devmodel",
474              "* pack" : "set_model",
475              "xtype" : "ListStore",
476              "$ columns" : "typeof(string),typeof(string)",
477              "n_columns" : 2,
478              "$ xns" : "Gtk",
479              "| void loadDevelopers" : "  ( ) {\n\n    var rt = RooTicket.singleton();\n    //rt.loadProjects();\n    \n    _this.developer_id.loading = true;\n\n    this.el.clear();                                    \n    Gtk.TreeIter iter;\n    var el = this.el;\n    \n    el.append(out iter);\n\n    \n    el.set_value(iter, 0, \"\");\n    el.set_value(iter, 1, \"-- select a developer --\");\n  //  if (id == \"\") {\n\t    _this.developer_id.el.set_active_iter(iter);\n   // }\n    \n    var peps = rt.developers;\n    foreach(var p in peps) {\n    \n        el.append(out iter);\n        \n        el.set_value(iter, 0, p.id);\n        el.set_value(iter, 1,  p.display_name );\n        if (rt.authuser_id == p.id) {\n\t \t   _this.developer_id.el.set_active_iter(iter);\n\t    }   \n    }\n \n    _this.developer_id.loading = false;\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n"
480             }
481            ]
482           },
483           {
484            "listeners" : {
485             "clicked" : "() => {\n\tGLib.debug(\"fire response = 1\");\n\t\n\t\n\tvar invalid = false;\n\t\n\t// validate first...\n\t_this.project_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.project_id.selectedProjectId() == \"\") {\n\t\t_this.project_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.milestone_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\n\t_this.priority_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.priority_id.selectedPriorityId() == \"\") {\n\t\t_this.priority_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.classification_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.classification_id.selectedClassificationId() == \"\") {\n\t\t_this.classification_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.developer_id.el.get_child().get_style_context().remove_class(\"warning\");\t\n\tif (_this.developer_id.selectedDeveloperId() == \"\") {\n\t\t_this.developer_id.el.get_child().get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.summary.el.get_style_context().remove_class(\"warning\");\t\n\tif (_this.summary.el.get_text() == \"\") {\n\t\t_this.summary.el.get_style_context().add_class(\"warning\");\n\t\tinvalid = true;\n\t}\n\t\n\t_this.description.el.get_style_context().remove_class(\"warning\");\t\n \n\tif (invalid) {\n\t\treturn;\n\t}\n\tGLib.debug(\"for is valid\");\n\t\n\t_this.el.response(1);\n}"
486            },
487            "label" : "Create Ticket & Branch",
488            "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
489            "xtype" : "Button",
490            "* pack" : "attach_defaults,0,4,13,14",
491            "$ xns" : "Gtk"
492           }
493          ]
494         }
495        ]
496       },
497       {
498        "id" : "quick_commit_tab",
499        "bool homogeneous" : false,
500        "* pack" : "append_page,_this.label_quick_commit.el",
501        "xtype" : "Box",
502        "$ xns" : "Gtk",
503        "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
504        "items" : [
505         {
506          "bool homogeneous" : true,
507          "bool expand" : false,
508          "xtype" : "Table",
509          "* pack" : "pack_start,false,false,0",
510          "uint column_spacing" : 4,
511          "n_columns" : 5,
512          "$ xns" : "Gtk",
513          "n_rows" : 2,
514          "bool vexpand" : false,
515          "int margin" : 2,
516          "items" : [
517           {
518            "label" : "Just commit with this comment",
519            "Gtk.Align halign" : "Gtk.Align.START",
520            "xalign" : 0.90000000000000002,
521            "* pack" : "attach_defaults,0,1,0,1",
522            "xtype" : "Label",
523            "$ justify" : "Gtk.Justification.RIGHT",
524            "x_options" : 4,
525            "$ xns" : "Gtk"
526           },
527           {
528            "id" : "commit_message",
529            "$ visible" : true,
530            "xtype" : "Entry",
531            "* pack" : "attach_defaults,0,4,1,2",
532            "$ xns" : "Gtk"
533           },
534           {
535            "listeners" : {
536             "clicked" : "() => {\n\n\tGLib.debug(\"fire response = 1\");\n\t\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n\tif (ticket_id == \"\") {\n\t\t_this.ticketsel.el.get_child().get_style_context().add_class(\"warning\");\n\t\treturn;\n\t}\n\t \n\t_this.el.response(1);\n}"
537            },
538            "label" : "Commit Changes",
539            "id" : "createbtn",
540            "| void updateState" : "() {\n\n\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\n\tif (ticket_id == \"\") {\n\t\tthis.el.set_sensitive(false);\n\t\treturn;\n\t}\n \n\tthis.el.set_sensitive(true);\n \n}\n",
541            "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
542            "xtype" : "Button",
543            "* pack" : "attach_defaults,4,5,1,2",
544            "$ xns" : "Gtk"
545           }
546          ]
547         },
548         {
549          "int height_request" : 400,
550          "* pack" : "add",
551          "xtype" : "ScrolledWindow",
552          "$ xns" : "Gtk",
553          "bool vexpand" : true,
554          "items" : [
555           {
556            "id" : "diff_view",
557            "* init" : " \n    var description =   Pango.FontDescription.from_string(\"monospace\");\n    description.set_size(9000);\n    this.el.override_font(description);\n     var lm = Gtk.SourceLanguageManager.get_default();\n                    \n    ((Gtk.SourceBuffer)(this.el.get_buffer())).set_language(\n        lm.get_language(\"diff\")\n    );",
558            "xtype" : "View",
559            "* pack" : "add",
560            "$ xns" : "GtkSource"
561           }
562          ]
563         }
564        ]
565       }
566      ]
567     }
568    ]
569   }
570  ]
571 }