701 False, |
701 False, |
702 self.vcs, |
702 self.vcs, |
703 ) |
703 ) |
704 self.queuesListQueuesDialog.show() |
704 self.queuesListQueuesDialog.show() |
705 |
705 |
706 def hgQueueInit(self, name): |
706 def hgQueueInit(self): |
707 """ |
707 """ |
708 Public method to initialize a new queue repository. |
708 Public method to initialize a new queue repository. |
709 |
|
710 @param name directory name (string) |
|
711 """ |
709 """ |
712 args = self.vcs.initCommand("init") |
710 args = self.vcs.initCommand("init") |
713 args.append("--mq") |
711 args.append("--mq") |
714 args.append(self.vcs.getClient().getRepository()) |
712 args.append(self.vcs.getClient().getRepository()) |
715 # init is not possible with the command server |
713 # init is not possible with the command server |