NewBranch.bjs
[gitlive] / NewBranch.vala
index 8b0c66f..230fc6f 100644 (file)
@@ -199,7 +199,20 @@ public class NewBranch : Object
                _this.dbmodel.el.get_value (iter, 0, out val1);
                _this.dbmodel.el.get_value (iter, 1, out val2);
             
-               GLib.debug ("Selection: %s, %s\n", (string) val1, (string) val2);
+               var ticket_id = (string) val1;
+               
+               var name = RooTicket.singleton().usernameLocal();
+               
+               if (ticket_id == "") {
+                       _this.name.el.set_text("wip_%s_%s".printf(name,date));
+                       return;
+               }
+               
+               var ticket = RooTicket.singleton().getById(ticket_id);
+               
+               _this.name.el.set_text("wip_%s_T%s_%s".printf(name,ticket.id, ticket.summaryToBranchName()));
+               
+               //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
             });
         }