Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py

changeset 564
b3d966393ba9
parent 495
b31b0bffa5b0
child 791
9ec2ac20e54e
equal deleted inserted replaced
563:e35d2cda9a74 564:b3d966393ba9
43 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) 43 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
44 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) 44 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
45 45
46 self.vcs = vcs 46 self.vcs = vcs
47 47
48 self.contents.setHtml(\ 48 self.contents.setHtml(
49 self.trUtf8('<b>Processing your request, please wait...</b>')) 49 self.trUtf8('<b>Processing your request, please wait...</b>'))
50 50
51 self.contents.anchorClicked.connect(self.__sourceChanged) 51 self.contents.anchorClicked.connect(self.__sourceChanged)
52 52
53 self.flags = { 53 self.flags = {
101 while fetched < limit: 101 while fetched < limit:
102 flimit = min(fetchLimit, limit - fetched) 102 flimit = min(fetchLimit, limit - fetched)
103 if fetched == 0: 103 if fetched == 0:
104 revstart = pysvn.Revision(pysvn.opt_revision_kind.head) 104 revstart = pysvn.Revision(pysvn.opt_revision_kind.head)
105 else: 105 else:
106 revstart = pysvn.Revision(\ 106 revstart = pysvn.Revision(
107 pysvn.opt_revision_kind.number, nextRev) 107 pysvn.opt_revision_kind.number, nextRev)
108 allLogs = self.client.log(fname, 108 allLogs = self.client.log(fname,
109 revision_start = revstart, 109 revision_start = revstart,
110 discover_changed_paths = verbose, 110 discover_changed_paths = verbose,
111 limit = flimit + 1, 111 limit = flimit + 1,

eric ide

mercurial