eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py

changeset 7257
c4d0cac9b5c9
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7256:4ef3b78ebb4e 7257:c4d0cac9b5c9
104 104
105 def __hgGpgSignatures(self): 105 def __hgGpgSignatures(self):
106 """ 106 """
107 Private slot used to list all signed changesets. 107 Private slot used to list all signed changesets.
108 """ 108 """
109 self.vcs.getExtensionObject("gpg")\ 109 self.vcs.getExtensionObject("gpg").hgGpgSignatures(
110 .hgGpgSignatures(self.project.getProjectPath()) 110 self.project.getProjectPath())
111 111
112 def __hgGpgVerifySignatures(self): 112 def __hgGpgVerifySignatures(self):
113 """ 113 """
114 Private slot used to verify the signatures of a revision. 114 Private slot used to verify the signatures of a revision.
115 """ 115 """
116 self.vcs.getExtensionObject("gpg")\ 116 self.vcs.getExtensionObject("gpg").hgGpgVerifySignatures(
117 .hgGpgVerifySignatures(self.project.getProjectPath()) 117 self.project.getProjectPath())
118 118
119 def __hgGpgSign(self): 119 def __hgGpgSign(self):
120 """ 120 """
121 Private slot used to sign a revision. 121 Private slot used to sign a revision.
122 """ 122 """
123 self.vcs.getExtensionObject("gpg")\ 123 self.vcs.getExtensionObject("gpg").hgGpgSign(
124 .hgGpgSign(self.project.getProjectPath()) 124 self.project.getProjectPath())

eric ide

mercurial