Home | History | Annotate | Download | only in jsoncpp

Lines Matching refs:sftp

178 def run_sftp_batch( userhost, sftp, batch, retry=0 ):
179 path = write_tempfile( batch, suffix='.sftp', text=True )
180 # psftp -agent -C blep,jsoncpp@web.sourceforge.net -batch -b batch.sftp -bc
181 cmd = [sftp, '-agent', '-C', '-batch', '-b', path, '-bc', userhost]
189 error = SFTPError( 'SFTP batch failed:\n' + stdout )
197 user=None, sftp='sftp' ):
201 stdout = run_sftp_batch( userhost, sftp, """
225 stdout = run_sftp_batch( userhost, sftp, """cd htdocs
238 run_sftp_batch( userhost, sftp, """cd htdocs
243 def sourceforge_release_tarball( sourceforge_project, paths, user=None, sftp='sftp' ):
245 run_sftp_batch( userhost, sftp, """
282 help="""Sourceforge user for SFTP documentation upload.""")
283 parser.add_option('--sftp', dest='sftp', action='store', default=doxybuild.find_program('psftp', 'sftp'),
284 help="""Path of the SFTP compatible binary used to upload the documentation.""")
366 sourceforge_web_synchro( SOURCEFORGE_PROJECT, doc_distcheck_top_dir, user=options.user, sftp=options.sftp )
371 user=options.user, sftp=options.sftp )