2020-09-22 Fred Gleason <fredg@paravelsystems.com>

* Implemented the 'Repost' button on the 'Rivendell Feed List'
	dialog in rdadmin(1).
	* Added an 'Unpost' button to the 'Rivendell Feed List' dialog
	in rdadmin(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-09-23 16:41:13 -04:00
parent 26bcbcb86b
commit c1fce3006e
24 changed files with 735 additions and 178 deletions

View File

@@ -171,7 +171,7 @@ void MainObject::ProcessFeed(const QString &key_name)
q->value(0).toUInt());
deleted=true;
}
if(feed->postXml(&err_msg)) {
if(feed->postXml()) {
rda->syslog(LOG_DEBUG,
"repost of XML for feed \"%s\" triggered by cast id %u",
key_name.toUtf8().constData(),q->value(0).toUInt());
@@ -185,8 +185,7 @@ void MainObject::ProcessFeed(const QString &key_name)
}
}
else {
rda->syslog(LOG_WARNING,"repost of XML for feed \"%s\" failed [%s]",
key_name.toUtf8().constData(),err_msg.toUtf8().constData());
rda->syslog(LOG_WARNING,"repost of XML for feed \"%s\" failed");
}
}
delete q;