Ejemplo 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)
Ejemplo n.º 2
0
Archivo: svnurl.py Proyecto: 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)
Ejemplo 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)
Ejemplo n.º 4
0
Archivo: svnurl.py Proyecto: 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)