884 """ |
884 """ |
885 Public method used to show some summary information of the |
885 Public method used to show some summary information of the |
886 working directory state. |
886 working directory state. |
887 |
887 |
888 @param mq flag indicating to show the queue status as well (boolean) |
888 @param mq flag indicating to show the queue status as well (boolean) |
889 @param mq flag indicating to show the largefiles status as well |
889 @param largefiles flag indicating to show the largefiles status as |
890 (boolean) |
890 well (boolean) |
891 """ |
891 """ |
892 from .HgSummaryDialog import HgSummaryDialog |
892 from .HgSummaryDialog import HgSummaryDialog |
893 self.summary = HgSummaryDialog(self) |
893 self.summary = HgSummaryDialog(self) |
894 self.summary.show() |
894 self.summary.show() |
895 self.summary.start(self.__projectHelper.getProject().getProjectPath(), |
895 self.summary.start(self.__projectHelper.getProject().getProjectPath(), |
2219 return |
2219 return |
2220 |
2220 |
2221 cfgFile = os.path.join(repodir, self.adminDir, "hgrc") |
2221 cfgFile = os.path.join(repodir, self.adminDir, "hgrc") |
2222 if not os.path.exists(cfgFile): |
2222 if not os.path.exists(cfgFile): |
2223 # open dialog to enter the initial data |
2223 # open dialog to enter the initial data |
2224 withLargefiles = (self.isExtensionActive("largefiles") and |
2224 withLargefiles = (self.isExtensionActive("largefiles") and |
2225 withLargefiles) |
2225 withLargefiles) |
2226 from .HgRepoConfigDataDialog import HgRepoConfigDataDialog |
2226 from .HgRepoConfigDataDialog import HgRepoConfigDataDialog |
2227 dlg = HgRepoConfigDataDialog(withLargefiles=withLargefiles, |
2227 dlg = HgRepoConfigDataDialog(withLargefiles=withLargefiles, |
2228 largefilesData=largefilesData) |
2228 largefilesData=largefilesData) |
2229 if dlg.exec_() == QDialog.Accepted: |
2229 if dlg.exec_() == QDialog.Accepted: |