Пример #1
0
 def _svnpopenauth(self, cmd):
     """ execute an svn command, return a pipe for reading stdin """
     cmd = svncommon.fixlocale() + cmd
     if self.auth is not None:
         cmd += " " + self.auth.makecmdoptions()
     return self._popen(cmd)
Пример #2
0
 def _svnpopenauth(self, cmd):
     """ execute an svn command, return a pipe for reading stdin """
     cmd = svncommon.fixlocale() + cmd
     if self.auth is not None:
         cmd += ' ' + self.auth.makecmdoptions()
     return self._popen(cmd)
Пример #3
0
 def _svncmdexecauth(self, cmd):
     """ execute an svn command 'as is' """
     cmd = svncommon.fixlocale() + cmd
     if self.auth is not None:
         cmd += " " + self.auth.makecmdoptions()
     return self._cmdexec(cmd)
Пример #4
0
 def _svncmdexecauth(self, cmd):
     """ execute an svn command 'as is' """
     cmd = svncommon.fixlocale() + cmd
     if self.auth is not None:
         cmd += ' ' + self.auth.makecmdoptions()
     return self._cmdexec(cmd)