mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 17:13:47 +02:00
2018-08-07 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'pam_rd' plug-in. * Removed rdchunk(1). * Upgraded Qt3 to Qt4.
This commit is contained in:
@@ -146,9 +146,9 @@ bool CitadelXds::LoadIsciXreference(const QString &filename)
|
||||
// Load Records
|
||||
//
|
||||
while(fgets(line,1024,f)!=NULL) {
|
||||
fields=fields.split(",",line,"\"");
|
||||
fields=fields.split(',',line,"\"");
|
||||
if(fields.size()==9) {
|
||||
for(unsigned i=0;i<fields.size();i++) {
|
||||
for(int i=0;i<fields.size();i++) {
|
||||
fields[i]=fields[i].replace("\"","").stripWhiteSpace();
|
||||
}
|
||||
cartnum=fields[3].right(fields[3].length()-1).toUInt(&ok);
|
||||
@@ -420,7 +420,7 @@ void CitadelXds::PurgeCuts()
|
||||
if(path.right(1)!="/") {
|
||||
path+="/";
|
||||
}
|
||||
QUrl url(path+q->value(1).toString());
|
||||
Q3Url url(path+q->value(1).toString());
|
||||
conv=new RDDelete(rda->config());
|
||||
conv->setTargetUrl(url);
|
||||
if((conv_err=conv->runDelete(config()->urlUsername(),
|
||||
|
Reference in New Issue
Block a user