revert code that did not affect memory
[gitlive] / NewBranch.bjs
index 7b28d30..2d55a7a 100644 (file)
   {
    "listeners" : {
     "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n    //test  \n}\n ",
-    "response" : " (self, response_id) =>  { \n  \n\t GLib.debug(\"got %d\", (int) response_id);\n}",
-    "show" : "(self)  => {\n \n\n  //test\n}"
+    "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; \t    \n\t    GitMonitor.gitmonitor.start();\n\n\t \treturn;\n\t}\n\t\n\tswitch(response_id) {\n\t\tcase 1: \n\t\n\t\t\t\n\t\t\tvar ticket_id = _this.ticketsel.selectedTicketId();\n\t\t\t\n\t\t\tif (this.repo != null) {\n\t\t\t\t var bn = _this.name.el.get_text();\n\n\t\t\t\t var res = this.repo.setActiveTicket(\t\t\t\n\t\t\t\t\t RooTicket.singleton().getById(ticket_id != \"\" ? ticket_id : \"-1\"), bn\n\t\t\t\t );\n\t\t\t\t if (res) {\n\t\t\t\t \t// start the monitoring..\n\t\t\t\t \t GitMonitor.gitmonitor.start();\n\t\t\t\t \t \n\t\t\t\t }\n\t\t\t}\n     \t\tbreak;\n \t\tcase 2: // create ticket + branch\n \t\t\n\t \t\tvar tid = RooTicket.singleton().createTicket(\n\t\t\n\t\t\t\t_this.project_id.selectedProjectId(),\n\t\t\t\n\t\t\t\t_this.milestone_id.selectedMilestoneId(),\n\t\t\t\t_this.priority_id.selectedPriorityId() ,\n\t\t\t\t_this.severity_id.selectedSeverityId() ,\t\t\n\t\t\t\t_this.classification_id.selectedClassificationId() ,\n\t\t\t\t_this.developer_id.selectedDeveloperId(),\n\t\t\t\t_this.summary.el.get_text() ,\n\t\t\t\t_this.description.el.buffer.text \n\t\t\t);\n\t\t\tvar ticket = RooTicket.singleton().getById(tid);\n\t\t\tvar name = RooTicket.singleton().usernameLocal();\n\t\t\t var bn = \"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName());\n\n\n\t\t\t var res = this.repo.setActiveTicket( ticket, bn );\n\t\t\tif (res) {\n\t\t\t \t// start the monitoring..\n\t\t\t \t GitMonitor.gitmonitor.start(); \n\t\t\t }\n\t\t\t \n\t \t\t\n \t\t\n \t\t\n\t \t\tbreak;\n \t\t\n \t\tcase 3: // just commit...\n\t\t   _this.repo.git({ \"commit\" , \"-a\" ,\"-m\", _this.commit_message.el.get_text() });\n\t\t   _this.repo.push();\n\t\t   _this.repo.loadBranches();\n\t\t   _this.repo.loadStatus();\n\t\t \t GitMonitor.gitmonitor.start(); \n \t\t\tbreak;\n\t\tdefault:\n\t\t\tbreak;\n\t}\n    this.running = false; \n\n\tthis.el.hide();\n\t \n\t \n\n\t \n}"
    },
    "default_width" : 500,
    "$ deletable" : true,
    "title" : "Create a working branch ",
    "xtype" : "Dialog",
-   "|   void show" : "( ) \n{\n     // this.el.set_gravity(Gdk.Gravity.NORTH);\n     \n\tthis.el.move((Gdk.Screen.width() / 2)- 250 ,0);\n       \tGLib.debug(\"Loading tickets\"); \n \t_this.dbmodel.loadTickets();\n\n    this.el.show_all();\n\n\n \n    \n      \n}",
-   "default_height" : 200,
+   "# GitRepo? repo" : "null",
+   "|   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\n\t\n\t\n\t\n     \n\n    this.el.show_all();\n    _this.table.el.hide(); // hide ticket layout\n\t_this.diff_sv.el.hide();\n\t_this.el.resize( 500,100); \n     \n    this.el.set_keep_above(true);\n\t\n\t_this.notebook.el.set_current_page(0);\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     _this.commit_message.el.set_text(\"\");\n    _this.diff_view.el.get_buffer().set_text( this.repo.diffWorking() );\t\n   \n   \n\tthis.el.move((Gdk.Screen.width() / 2)- 250 ,0);\n\tthis.el.resize( 500,100); // not sure why it grows..\n\t    \n     \n    \n \tthis.el.run();\n\n}",
+   "default_height" : 500,
    "$ xns" : "Gtk",
+   "# bool running" : false,
+   "# Gee.ArrayList<GitMonitorQueue> queue" : "null",
    "bool modal" : true,
    "items" : [
     {
-     "xtype" : "VBox",
-     "$ pack" : "get_content_area().add",
+     "listeners" : {
+      "switch_page" : "(page, page_num) => {\n\tGLib.debug(\"Switch to page: %d\", (int)page_num);\n\tswitch(page_num) {\n\t\tcase 0: \n\t\t\t_this.table.el.hide(); // hide ticket layout\n\t\t\t_this.diff_sv.el.hide();\n\t\t\t_this.el.resize( 500,100); \n\t\t\tbreak; // do nothing.. it's already loaded at start.\n\t\tcase 1: \n\t\t\t_this.diff_sv.el.hide();\n\t\t\t_this.table.el.show(); \n\t\t\t_this.el.resize( 500,100); \n\t\t//\t_this.create_ticket_tab.load_data();\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\t_this.quick_commit_tab.load_data();\n\t\t\t_this.diff_sv.el.show();\n\t\t\t_this.el.resize( 500,100); \n\t\t\tbreak;\n\t\tdefault:\n\t\t\tbreak;\n\t}\n}\n"
+     },
+     "id" : "notebook",
+     "* pack" : "get_content_area().add",
+     "xtype" : "Notebook",
      "$ xns" : "Gtk",
+     "bool vexpand" : true,
      "items" : [
       {
+       "id" : "label_select_ticket",
+       "* pack" : false,
+       "xtype" : "Label",
+       "string label" : "Select Existing Ticket to work on",
+       "$ xns" : "Gtk"
+      },
+      {
+       "id" : "label_create_ticket",
+       "xtype" : "Label",
+       "* pack" : false,
+       "string label" : "Create a New Ticket",
+       "$ xns" : "Gtk"
+      },
+      {
+       "id" : "label_quick_commit",
+       "* pack" : false,
+       "xtype" : "Label",
+       "string label" : "Quick Commit",
+       "$ xns" : "Gtk"
+      },
+      {
+       "id" : "select_ticket_tab",
        "bool homogeneous" : false,
-       "* pack" : "pack_start,false,false,0",
-       "xtype" : "Table",
-       "uint column_spacing" : 2,
-       "n_columns" : 2,
+       "* pack" : "append_page,_this.label_select_ticket.el",
+       "xtype" : "Box",
+       "| void load_data" : "(string tid = \"\") {\n\n    \n\t _this.branch_table.el.hide();\n\t  _this.scrolled_window.el.hide();\n\t_this.branch_spinner.el.show();\n\t_this.branch_spinner.el.start();\t\n\t_this.el.resize( 500,100); \t\n    Timeout.add(200, () => {\n\t\n\n\t\tGLib.debug(\"Loading tickets\"); \n\t\t\n\t\tvar curproj = RooProject.getProjectByRepo(_this.repo);\n\t\t _this.prmodel.loadProjects(curproj == null ? \"\" : curproj.id);\n\t\t\n\t \t_this.dbmodel.loadTickets(curproj == null ? \"\": curproj.id, tid);\n\t \t_this.branchbtn.updateState();\n\t \t\n\t\t_this.ticketsel.el.get_child().get_style_context().remove_class(\"warning\");\n\t \tif (tid != \"\") { \n\t\t \tvar name = RooTicket.singleton().usernameLocal();\n\t \t\tvar ticket = RooTicket.singleton().getById(tid);\n\t\t\t_this.name.el.set_text(\"wip_%s_T%s_%s\".printf(name,ticket.id, ticket.summaryToBranchName()));\n\t\t} else {\n\t\t\t_this.ticketsel.el.get_child().get_style_context().add_class(\"warning\");\n\t\t}\n\t\t_this.view.loadTicket(tid);\n\t  \t _this.branch_table.el.show();\n\t\t_this.branch_spinner.el.stop();\n\t\t_this.branch_spinner.el.hide();\t\n\t\t_this.el.resize( 500,100); \n\t\treturn false;\n\t});\n\t\n}\n",
        "$ xns" : "Gtk",
-       "n_rows" : 2,
-       "int margin" : 2,
+       "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
        "items" : [
         {
-         "label" : "Select Ticket",
-         "$ visible" : true,
-         "xalign" : 0.90000000000000002,
-         "* pack" : "attach_defaults,0,1,0,1",
-         "xtype" : "Label",
-         "$ justify" : "Gtk.Justification.RIGHT",
-         "x_options" : 4,
-         "$ xns" : "Gtk"
+         "id" : "branch_table",
+         "bool homogeneous" : true,
+         "bool expand" : false,
+         "xtype" : "Table",
+         "* pack" : "pack_start,false,false,0",
+         "uint column_spacing" : 4,
+         "n_columns" : 5,
+         "$ xns" : "Gtk",
+         "n_rows" : 5,
+         "bool vexpand" : false,
+         "int margin" : 2,
+         "items" : [
+          {
+           "label" : "Project",
+           "$ visible" : true,
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,0,1,0,1",
+           "xtype" : "Label",
+           "$ justify" : "Gtk.Justification.RIGHT",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "label" : "Ticket",
+           "$ visible" : true,
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,1,2,0,1",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "listeners" : {
+            "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}"
+           },
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "| 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",
+           "id" : "projectsel",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,1,2",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "items" : [
+            {
+             "id" : "prcellrenderer",
+             "* pack" : "pack_start,true",
+             "xtype" : "CellRendererText",
+             "$ xns" : "Gtk"
+            },
+            {
+             "| 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",
+             "id" : "prmodel",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "listeners" : {
+            "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}"
+           },
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "ticketsel",
+           "* init" : "//this.el.add_attribute(_this.dbcellrenderer.el , \"markup\", 1 );\nthis.el.set_entry_text_column(1);\nthis.el.get_child().set_sensitive(false); ",
+           "* pack" : "attach_defaults,1,5,1,2",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "| 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",
+           "items" : [
+            {
+             "id" : "dbcellrenderer",
+             "xtype" : "CellRendererText",
+             "* pack" : "pack_start,true",
+             "$ xns" : "Gtk"
+            },
+            {
+             "id" : "dbmodel",
+             "xtype" : "ListStore",
+             "* pack" : "set_model",
+             "| 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",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "label" : "Use this as branch name",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "xalign" : 0.90000000000000002,
+           "* pack" : "attach_defaults,0,1,3,4",
+           "xtype" : "Label",
+           "$ justify" : "Gtk.Justification.RIGHT",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "id" : "name",
+           "$ visible" : true,
+           "xtype" : "Entry",
+           "* pack" : "attach_defaults,0,4,4,5",
+           "$ xns" : "Gtk"
+          },
+          {
+           "listeners" : {
+            "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}"
+           },
+           "label" : "Create Branch",
+           "| 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",
+           "id" : "branchbtn",
+           "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
+           "xtype" : "Button",
+           "* pack" : "attach_defaults,4,5,4,5",
+           "$ xns" : "Gtk"
+          },
+          {
+           "* pack" : "attach_defaults,0,5,2,3",
+           "xtype" : "Box",
+           "$ xns" : "Gtk",
+           "Gtk.Orientation orientation" : "Gtk.Orientation.HORIZONTAL",
+           "items" : [
+            {
+             "listeners" : {
+              "toggled" : "() => {\n\tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n}"
+             },
+             "id" : "btn_not_me",
+             "* pack" : "add",
+             "string label" : "Show tickets not assigned to me",
+             "xtype" : "CheckButton",
+             "$ xns" : "Gtk"
+            },
+            {
+             "listeners" : {
+              "toggled" : "() => {\n \tvar project_id = _this.projectsel.selectedProjectId();\n\t_this.dbmodel.loadTickets(project_id);\t\n\t \n}"
+             },
+             "id" : "btn_closed",
+             "string label" : "Show closed Tickets",
+             "xtype" : "CheckButton",
+             "* pack" : "add",
+             "$ xns" : "Gtk"
+            },
+            {
+             "listeners" : {
+              "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}"
+             },
+             "bool use_markup" : true,
+             "Gtk.Align halign" : "Gtk.Align.END",
+             "bool hexpand" : true,
+             "* pack" : "add",
+             "xtype" : "Label",
+             "string label" : "<a href=\"refresh\">Refresh Ticket list</a>",
+             "$ xns" : "Gtk"
+            }
+           ]
+          }
+         ]
         },
         {
-         "listeners" : {
-          "changed" : "() => {\n\tGtk.TreeIter iter;\n\tValue val1;\n\tValue val2;\n \n\tthis.el.get_active_iter (out iter);\n\t_this.dbmodel.el.get_value (iter, 0, out val1);\n\t_this.dbmodel.el.get_value (iter, 1, out val2);\n\n\tGLib.debug (\"Selection: %s, %d\\n\", (string) val1, (string) val2);\n}"
-         },
-         "id" : "build_module",
-         "* init" : "this.el.add_attribute(_this.dbcellrenderer.el , \"markup\", 1 );",
-         "* pack" : "attach_defaults,1,2,0,1",
-         "xtype" : "ComboBox",
+         "int height_request" : 500,
+         "id" : "scrolled_window",
+         "* init" : "{\n\tthis.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);\n}\n",
+         "* pack" : "add",
+         "xtype" : "ScrolledWindow",
          "$ xns" : "Gtk",
+         "bool vexpand" : true,
+         "bool visible" : false,
          "items" : [
           {
-           "id" : "dbcellrenderer",
-           "xtype" : "CellRendererText",
-           "* pack" : "pack_start,true",
+           "id" : "view",
+           "* pack" : "add",
+           "xtype" : "WebView",
+           "$ xns" : "WebKit",
+           "| 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"
+          }
+         ]
+        },
+        {
+         "id" : "branch_spinner",
+         "bool hexpand" : true,
+         "* pack" : "add",
+         "xtype" : "Spinner",
+         "$ xns" : "Gtk",
+         "bool vexpand" : true
+        }
+       ]
+      },
+      {
+       "id" : "create_ticket_tab",
+       "bool homogeneous" : false,
+       "xtype" : "Box",
+       "* pack" : "append_page,_this.label_create_ticket.el",
+       "| void load_data" : "() {\n \n \t// _this.table.el.hide();\n\t//_this.spinner.el.show();\n\t//_this.spinner.el.start();\t\n\t\n    Timeout.add_seconds(1, () => {\n\t\t \n\t\tRooProject? curproj = null;\n\t\tif (_this.repo != null) {\n\t\t\tcurproj = RooProject.getProjectByRepo(_this.repo);\n\t\t}\n\t\t_this.tprmodel.loadProjects(curproj == null ? \"\" : curproj.id);\n\t\tif (curproj != null) {\n\t \n\t\t\t\n\t\t\tvar rt = RooTicket.singleton();\n\t\t\trt.loadProjectOptions(curproj.id);\n\t\t\t\n\t\t\t_this.msmodel.loadMilestones();\n\t\t\t_this.primodel.loadPriorities();\n\t\t\t_this.sevmodel.loadSeverities();\n\t\t\t_this.clmodel.loadClassifications();\t\n\t\t\t_this.devmodel.loadDevelopers();\t\n\t\t\t\n\t\t}\n\t\t_this.summary.el.set_text(\"\");\n\t\t_this.description.el.buffer.text = \"\"; \n\t\t//_this.spinner.el.stop();\n//\t\t_this.spinner.el.hide();\t\n\n\t\t//_this.table.el.show();\n\t    //_this.summary.el.grab_focus();\n \n\t \treturn false;\n \t});\n}\n",
+       "$ xns" : "Gtk",
+       "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
+       "items" : [
+        {
+         "id" : "table",
+         "bool homogeneous" : true,
+         "bool expand" : false,
+         "xtype" : "Table",
+         "* pack" : "pack_start,false,false,0",
+         "uint column_spacing" : 4,
+         "n_columns" : 4,
+         "$ xns" : "Gtk",
+         "n_rows" : 14,
+         "bool vexpand" : false,
+         "int margin" : 2,
+         "items" : [
+          {
+           "label" : "Project",
+           "$ visible" : true,
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,0,1,0,1",
+           "xtype" : "Label",
+           "$ xns" : "Gtk"
+          },
+          {
+           "label" : "Summary",
+           "$ visible" : true,
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,1,2,0,1",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "listeners" : {
+            "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}"
+           },
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "project_id",
+           "| 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",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,1,2",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "items" : [
+            {
+             "id" : "tprcellrenderer",
+             "xtype" : "CellRendererText",
+             "* pack" : "pack_start,true",
+             "$ xns" : "Gtk"
+            },
+            {
+             "| 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",
+             "id" : "tprmodel",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "id" : "summary",
+           "$ visible" : true,
+           "xtype" : "Entry",
+           "* pack" : "attach_defaults,1,4,1,2",
+           "$ xns" : "Gtk"
+          },
+          {
+           "label" : "Milestone",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "xalign" : 0.90000000000000002,
+           "* pack" : "attach_defaults,0,1,2,3",
+           "xtype" : "Label",
+           "$ justify" : "Gtk.Justification.RIGHT",
+           "x_options" : 4,
            "$ xns" : "Gtk"
           },
           {
-           "id" : "dbmodel",
-           "xtype" : "ListStore",
-           "* pack" : "set_model",
-           "| void loadTickets" : "  () {\n\n    RooTicket.singleton().loadTickets();\n    \n    \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.build_module.el.set_active_iter(iter);\n    var tickets = RooTicket.singleton().tickets;\n    foreach(var ticket in tickets) {\n    \n\n        el.append(out iter);\n        \n        el.set_value(iter, 0, ticket.id);\n        el.set_value(iter, 1, \"#%s [%s] %s\".printf( ticket.id, ticket.project_id_name , ticket.summary));\n        \n        //if (data.get(i) == cur) {\n         //   _this.build_module.el.set_active_iter(iter);\n       // }\n        \n    }\n     //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          \n                                     \n}\n",
-           "$ columns" : "typeof(string),typeof(string)",
-           "n_columns" : 2,
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "milestone_id",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,3,4",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "| 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",
+           "items" : [
+            {
+             "id" : "msmodel",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "| 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",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "label" : "Description",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,1,4,2,3",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "id" : "description",
+           "* pack" : "attach_defaults,1,4,3,12",
+           "xtype" : "TextView",
+           "$ xns" : "Gtk",
+           "uint border_width" : 1
+          },
+          {
+           "label" : "Priority",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "xalign" : 0.90000000000000002,
+           "* pack" : "attach_defaults,0,1,4,5",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "priority_id",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,5,6",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "| 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",
+           "items" : [
+            {
+             "id" : "primodel",
+             "| 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",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "label" : "Severity",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,0,1,6,7",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "severity_id",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,7,8",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "| 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",
+           "items" : [
+            {
+             "| 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",
+             "id" : "sevmodel",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "label" : "Classification",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,0,1,8,9",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "classification_id",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,9,10",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "$ xns" : "Gtk",
+           "| 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",
+           "items" : [
+            {
+             "id" : "clmodel",
+             "| 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",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk"
+            }
+           ]
+          },
+          {
+           "label" : "Assign to",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "* pack" : "attach_defaults,0,1,10,11",
+           "xtype" : "Label",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "* ctor" : "new Gtk.ComboBox.with_entry()",
+           "id" : "developer_id",
+           "* init" : "this.el.set_entry_text_column(1);",
+           "* pack" : "attach_defaults,0,1,11,12",
+           "xtype" : "ComboBox",
+           "# bool loading" : false,
+           "| 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",
+           "$ xns" : "Gtk",
+           "items" : [
+            {
+             "id" : "devmodel",
+             "* pack" : "set_model",
+             "xtype" : "ListStore",
+             "$ columns" : "typeof(string),typeof(string)",
+             "n_columns" : 2,
+             "$ xns" : "Gtk",
+             "| 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"
+            }
+           ]
+          },
+          {
+           "listeners" : {
+            "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(2);\n}"
+           },
+           "label" : "Create Ticket & Branch",
+           "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
+           "xtype" : "Button",
+           "* pack" : "attach_defaults,0,4,13,14",
            "$ xns" : "Gtk"
           }
          ]
-        },
+        }
+       ]
+      },
+      {
+       "id" : "quick_commit_tab",
+       "bool homogeneous" : false,
+       "* pack" : "append_page,_this.label_quick_commit.el",
+       "xtype" : "Box",
+       "| void load_data" : "() {\n\n  _this.createbtn.updateState();\n}\n",
+       "$ xns" : "Gtk",
+       "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
+       "items" : [
         {
-         "label" : "or use this as branch name",
-         "xalign" : 0.90000000000000002,
-         "* pack" : "attach_defaults,0,1,1,2",
-         "xtype" : "Label",
-         "$ justify" : "Gtk.Justification.RIGHT",
-         "x_options" : 4,
-         "$ xns" : "Gtk"
+         "bool homogeneous" : true,
+         "bool expand" : false,
+         "xtype" : "Table",
+         "* pack" : "pack_start,false,false,0",
+         "uint column_spacing" : 4,
+         "n_columns" : 5,
+         "$ xns" : "Gtk",
+         "n_rows" : 3,
+         "bool vexpand" : false,
+         "int margin" : 2,
+         "items" : [
+          {
+           "label" : "Just commit with this comment",
+           "Gtk.Align halign" : "Gtk.Align.START",
+           "xalign" : 0.90000000000000002,
+           "* pack" : "attach_defaults,0,1,0,1",
+           "xtype" : "Label",
+           "$ justify" : "Gtk.Justification.RIGHT",
+           "x_options" : 4,
+           "$ xns" : "Gtk"
+          },
+          {
+           "listeners" : {
+            "key_release_event" : "() => { \n\n\t_this.createbtn.updateState();\n\treturn true;\n}"
+           },
+           "id" : "commit_message",
+           "$ visible" : true,
+           "xtype" : "Entry",
+           "* pack" : "attach_defaults,0,5,1,2",
+           "$ xns" : "Gtk"
+          },
+          {
+           "listeners" : {
+            "clicked" : "() => {\n\n\tGLib.debug(\"fire response = 1\");\n\t\n\t \n\t \n\t_this.el.response(3);\n}"
+           },
+           "label" : "Commit Changes",
+           "id" : "createbtn",
+           "| void updateState" : "() {\n\n\tvar msg = _this.commit_message.el.get_text();\n\t\n\tif (msg == \"\") {\n\t\tthis.el.set_sensitive(false);\n\t\treturn;\n\t}\n \n\tthis.el.set_sensitive(true);\n \n}\n",
+           "* init" : "{\n   this.el.get_style_context().add_class(\"suggested-action\");\n}\n",
+           "xtype" : "Button",
+           "* pack" : "attach_defaults,0,5,2,3",
+           "$ xns" : "Gtk"
+          }
+         ]
         },
         {
-         "id" : "name",
-         "$ visible" : true,
-         "xtype" : "Entry",
-         "* pack" : "attach_defaults,1,2,1,2",
-         "$ xns" : "Gtk"
+         "int height_request" : 400,
+         "id" : "diff_sv",
+         "* pack" : "add",
+         "xtype" : "ScrolledWindow",
+         "$ xns" : "Gtk",
+         "bool vexpand" : true,
+         "bool visible" : false,
+         "items" : [
+          {
+           "id" : "diff_view",
+           "* 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    );",
+           "xtype" : "View",
+           "* pack" : "add",
+           "$ xns" : "GtkSource"
+          }
+         ]
         }
        ]
       }
      ]
-    },
-    {
-     "label" : "Do not create Branch",
-     "xtype" : "Button",
-     "* pack" : "add_action_widget,0",
-     "Gtk.ReliefStyle relief" : "Gtk.ReliefStyle.NONE",
-     "$ xns" : "Gtk"
-    },
-    {
-     "label" : "Create Branch",
-     "xtype" : "Button",
-     "* pack" : "add_action_widget,1",
-     "$ xns" : "Gtk"
     }
    ]
   }