summaryrefslogtreecommitdiffstats
path: root/kabc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-05-14 02:06:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-05-14 02:06:24 +0000
commita48fbc1e8d988aa5b83d85e031f179e06ec93184 (patch)
tree40c4e7b6762af9a473413591449ae0340d1ee7fb /kabc
parentbe5389144b23dad9f4b131118e158138fdd027b5 (diff)
downloadtdelibs-a48fbc1e8d988aa5b83d85e031f179e06ec93184.tar.gz
tdelibs-a48fbc1e8d988aa5b83d85e031f179e06ec93184.zip
First batch of kdepim stability and functionality repairs
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1126472 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc')
-rw-r--r--kabc/plugins/Makefile.am2
-rw-r--r--kabc/plugins/net/resourcenet.cpp29
2 files changed, 17 insertions, 14 deletions
diff --git a/kabc/plugins/Makefile.am b/kabc/plugins/Makefile.am
index 4024cc9f9..5a5dcb137 100644
--- a/kabc/plugins/Makefile.am
+++ b/kabc/plugins/Makefile.am
@@ -1 +1 @@
-SUBDIRS = file dir ldapkio
+SUBDIRS = file dir net ldapkio
diff --git a/kabc/plugins/net/resourcenet.cpp b/kabc/plugins/net/resourcenet.cpp
index 86d2f9bdc..49d66d9e0 100644
--- a/kabc/plugins/net/resourcenet.cpp
+++ b/kabc/plugins/net/resourcenet.cpp
@@ -57,7 +57,7 @@ ResourceNet::ResourceNet( const KConfig *config )
if ( config ) {
init( KURL( config->readPathEntry( "NetUrl" ) ), config->readEntry( "NetFormat" ) );
} else {
- init( KURL(), "vcard" );
+ init( KURL(), QString("vcard").latin1() );
}
}
@@ -81,7 +81,7 @@ void ResourceNet::init( const KURL &url, const QString &format )
FormatFactory *factory = FormatFactory::self();
mFormat = factory->format( mFormatName );
if ( !mFormat ) {
- mFormatName = "vcard";
+ mFormatName = QString("vcard").latin1();
mFormat = factory->format( mFormatName );
}
@@ -136,7 +136,7 @@ void ResourceNet::doClose()
bool ResourceNet::load()
{
QString tempFile;
-
+
if ( !KIO::NetAccess::download( mUrl, tempFile, 0 ) ) {
addressBook()->error( i18n( "Unable to download file '%1'." ).arg( mUrl.prettyURL() ) );
return false;
@@ -154,7 +154,7 @@ bool ResourceNet::load()
addressBook()->error( i18n( "Problems during parsing file '%1'." ).arg( tempFile ) );
KIO::NetAccess::removeTempFile( tempFile );
-
+
return result;
}
@@ -174,9 +174,10 @@ bool ResourceNet::asyncLoad()
kdWarning(5700) << "Aborted asyncLoad() because we're still asyncSave()ing!" << endl;
return false;
}
-
+
bool ok = createLocalTempFile();
if ( ok )
+ mTempFile->sync();
ok = mTempFile->close();
if ( !ok ) {
@@ -184,7 +185,7 @@ bool ResourceNet::asyncLoad()
deleteLocalTempFile();
return false;
}
-
+
KURL dest;
dest.setPath( mTempFile->name() );
@@ -218,7 +219,7 @@ void ResourceNet::abortAsyncSaving()
d->mSaveJob->kill(); // result not emitted
d->mSaveJob = 0;
}
-
+
deleteLocalTempFile();
d->mIsSaving = false;
}
@@ -234,12 +235,13 @@ bool ResourceNet::save( Ticket* )
KTempFile tempFile;
tempFile.setAutoDelete( true );
bool ok = false;
-
+
if ( tempFile.status() == 0 && tempFile.file() ) {
saveToFile( tempFile.file() );
+ tempFile.sync();
ok = tempFile.close();
}
-
+
if ( !ok ) {
addressBook()->error( i18n( "Unable to save file '%1'." ).arg( tempFile.name() ) );
return false;
@@ -248,7 +250,7 @@ bool ResourceNet::save( Ticket* )
ok = KIO::NetAccess::upload( tempFile.name(), mUrl, 0 );
if ( !ok )
addressBook()->error( i18n( "Unable to upload to '%1'." ).arg( mUrl.prettyURL() ) );
-
+
return ok;
}
@@ -264,13 +266,14 @@ bool ResourceNet::asyncSave( Ticket* )
kdWarning(5700) << "Aborted asyncSave() because we're still asyncLoad()ing!" << endl;
return false;
}
-
+
bool ok = createLocalTempFile();
if ( ok ) {
saveToFile( mTempFile->file() );
+ mTempFile->sync();
ok = mTempFile->close();
}
-
+
if ( !ok ) {
emit savingError( this, i18n( "Unable to save file '%1'." ).arg( mTempFile->name() ) );
deleteLocalTempFile();
@@ -348,7 +351,7 @@ void ResourceNet::downloadFinished( KIO::Job* )
d->mIsLoading = false;
if ( !hasTempFile() || mTempFile->status() != 0 ) {
- d->mLastErrorString = i18n( "Download failed in some way!" );
+ d->mLastErrorString = i18n( "Download failed: Unable to create temporary file" );
QTimer::singleShot( 0, this, SLOT( signalError() ) );
return;
}