Esempio n. 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)
Esempio n. 2
0
File: svnurl.py Progetto: 6br/servo
 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)
Esempio n. 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)
Esempio n. 4
0
File: svnurl.py Progetto: 6br/servo
 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)