mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2020-08-19 Fred Gleason <fredg@paravelsystems.com>
* Added a 'STATIONS.SSH_IDENTITY_FILE' field to the database. * Added a 'RECORDINGS.URL_USE_ID_FILE' field to the database. * Added a 'FEEDS.PURGE_USE_ID_FILE' field to the database. * Incremented the database version to 333. * Added 'RDStation::sshIdentityFile()' and 'RDStation::setSshIdentityFile()' methods. * Added 'RDRecording::urlUseIdFile()' and 'RDRecording::setUrlUseIdFile()' methods. * Added 'RDFeed::purgeUseIdFile()' and 'RDFeed::setPurgeUseIdFile()' methods. * Added a 'SSH Ident. File' control to the 'Host' dialog in rdadmin(1). * Added an 'Authenticate with local identity file' checkbox to the 'Feed' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -369,8 +369,11 @@ bool CitadelXds::PostCut(const QString &cutname,const QString &filename)
|
||||
RDUpload *upload=new RDUpload(rda->config());
|
||||
upload->setSourceFile(tempfile);
|
||||
upload->setDestinationUrl(config()->url()+"/"+filename);
|
||||
//
|
||||
// FIXME: Finish implementing ssh(1) id keys!
|
||||
//
|
||||
switch(upload_err=upload->runUpload(config()->urlUsername(),
|
||||
config()->urlPassword(),
|
||||
config()->urlPassword(),"",false,
|
||||
rda->config()->logXloadDebugData())) {
|
||||
case RDUpload::ErrorOk:
|
||||
break;
|
||||
@@ -420,8 +423,11 @@ void CitadelXds::PurgeCuts()
|
||||
Q3Url url(path+q->value(1).toString());
|
||||
conv=new RDDelete(rda->config());
|
||||
conv->setTargetUrl(url);
|
||||
//
|
||||
// FIXME: Finish implementing ssh(1) key support!
|
||||
//
|
||||
if((conv_err=conv->runDelete(config()->urlUsername(),
|
||||
config()->urlPassword(),
|
||||
config()->urlPassword(),"",false,
|
||||
rda->config()->logXloadDebugData()))==
|
||||
RDDelete::ErrorOk) {
|
||||
sql=QString().sprintf("delete from REPL_CART_STATE where ID=%d",
|
||||
|
Reference in New Issue
Block a user