author | zautrix <zautrix> | 2005-03-30 10:41:33 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-30 10:41:33 (UTC) |
commit | 597cad3a63e6c22855704bf8435db70e3c2b184f (patch) (unidiff) | |
tree | f7093b331be9a52a07d01a6f2f5c1f26daf42d50 /microkde | |
parent | 889d2102fcfe2fb0786b3f8f406dc32b42e38c7a (diff) | |
download | kdepimpi-597cad3a63e6c22855704bf8435db70e3c2b184f.zip kdepimpi-597cad3a63e6c22855704bf8435db70e3c2b184f.tar.gz kdepimpi-597cad3a63e6c22855704bf8435db70e3c2b184f.tar.bz2 |
fix
-rw-r--r-- | microkde/kdecore/kstandarddirs.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/microkde/kdecore/kstandarddirs.cpp b/microkde/kdecore/kstandarddirs.cpp index cf0d1ee..810c889 100644 --- a/microkde/kdecore/kstandarddirs.cpp +++ b/microkde/kdecore/kstandarddirs.cpp | |||
@@ -1237,128 +1237,138 @@ void KStandardDirs::addKDEDefaults() | |||
1237 | if (!kdedir.isEmpty()) | 1237 | if (!kdedir.isEmpty()) |
1238 | { | 1238 | { |
1239 | kdedir = KShell::tildeExpand(kdedir); | 1239 | kdedir = KShell::tildeExpand(kdedir); |
1240 | kdedirList.append(kdedir); | 1240 | kdedirList.append(kdedir); |
1241 | } | 1241 | } |
1242 | } | 1242 | } |
1243 | //US kdedirList.append(KDEDIR); | 1243 | //US kdedirList.append(KDEDIR); |
1244 | //US for embedded, add qtopia dir as kdedir | 1244 | //US for embedded, add qtopia dir as kdedir |
1245 | 1245 | ||
1246 | #ifndef DESKTOP_VERSION | 1246 | #ifndef DESKTOP_VERSION |
1247 | QString tmp = readEnvPath("QPEDIR"); | 1247 | QString tmp = readEnvPath("QPEDIR"); |
1248 | if (!tmp.isEmpty()) | 1248 | if (!tmp.isEmpty()) |
1249 | kdedirList.append(tmp); | 1249 | kdedirList.append(tmp); |
1250 | 1250 | ||
1251 | tmp = readEnvPath("QTDIR"); | 1251 | tmp = readEnvPath("QTDIR"); |
1252 | if (!tmp.isEmpty()) | 1252 | if (!tmp.isEmpty()) |
1253 | kdedirList.append(tmp); | 1253 | kdedirList.append(tmp); |
1254 | 1254 | ||
1255 | tmp = readEnvPath("OPIEDIR"); | 1255 | tmp = readEnvPath("OPIEDIR"); |
1256 | if (!tmp.isEmpty()) | 1256 | if (!tmp.isEmpty()) |
1257 | kdedirList.append(tmp); | 1257 | kdedirList.append(tmp); |
1258 | 1258 | ||
1259 | #endif | 1259 | #endif |
1260 | 1260 | ||
1261 | #ifdef __KDE_EXECPREFIX | 1261 | #ifdef __KDE_EXECPREFIX |
1262 | QString execPrefix(__KDE_EXECPREFIX); | 1262 | QString execPrefix(__KDE_EXECPREFIX); |
1263 | if (execPrefix!="NONE") | 1263 | if (execPrefix!="NONE") |
1264 | kdedirList.append(execPrefix); | 1264 | kdedirList.append(execPrefix); |
1265 | #endif | 1265 | #endif |
1266 | 1266 | ||
1267 | QString localKdeDir; | 1267 | QString localKdeDir; |
1268 | 1268 | ||
1269 | //US if (getuid()) | 1269 | //US if (getuid()) |
1270 | if (true) | 1270 | if (true) |
1271 | { | 1271 | { |
1272 | localKdeDir = readEnvPath("MICROKDEHOME"); | 1272 | localKdeDir = readEnvPath("MICROKDEHOME"); |
1273 | if (!localKdeDir.isEmpty()) | 1273 | if (!localKdeDir.isEmpty()) |
1274 | { | 1274 | { |
1275 | #ifdef _WIN32_ | 1275 | #ifdef _WIN32_ |
1276 | if (localKdeDir.at(localKdeDir.length()-1) != '\\') | 1276 | if (localKdeDir.at(localKdeDir.length()-1) != '\\') |
1277 | localKdeDir += '\\'; | 1277 | localKdeDir += '\\'; |
1278 | #else | 1278 | #else |
1279 | if (localKdeDir.at(localKdeDir.length()-1) != '/') | 1279 | if (localKdeDir.at(localKdeDir.length()-1) != '/') |
1280 | localKdeDir += '/'; | 1280 | localKdeDir += '/'; |
1281 | #endif | 1281 | #endif |
1282 | //QMessageBox::information( 0,"localKdeDir",localKdeDir, 1 ); | 1282 | //QMessageBox::information( 0,"localKdeDir",localKdeDir, 1 ); |
1283 | } | 1283 | } |
1284 | else | 1284 | else |
1285 | { | 1285 | { |
1286 | QString confFile; | 1286 | QString confFile; |
1287 | #ifdef DESKTOP_VERSION | 1287 | #ifdef DESKTOP_VERSION |
1288 | confFile = qApp->applicationDirPath ()+ "/.microkdehome" ; | 1288 | confFile = qApp->applicationDirPath ()+ "/.microkdehome" ; |
1289 | QFileInfo fi ( confFile ); | 1289 | QFileInfo fi ( confFile ); |
1290 | if ( !fi.exists() ) | 1290 | if ( !fi.exists() ) |
1291 | confFile = QDir::homeDirPath() + "/.microkdehome"; | 1291 | confFile = QDir::homeDirPath() + "/.microkdehome"; |
1292 | else | 1292 | else |
1293 | qDebug("Loading path info from " + confFile ); | 1293 | qDebug("Loading path info from " + confFile ); |
1294 | 1294 | ||
1295 | #else | 1295 | #else |
1296 | confFile = QDir::homeDirPath() + "/.microkdehome"; | 1296 | confFile = QDir::homeDirPath() + "/.microkdehome"; |
1297 | #endif | 1297 | #endif |
1298 | KConfig cfg ( confFile ); | 1298 | KConfig cfg ( confFile ); |
1299 | cfg.setGroup("Global"); | 1299 | cfg.setGroup("Global"); |
1300 | localKdeDir = cfg.readEntry( "MICROKDEHOME", QDir::homeDirPath() + "/kdepim/" ); | 1300 | localKdeDir = cfg.readEntry( "MICROKDEHOME", QDir::homeDirPath() + "/kdepim/" ); |
1301 | #ifdef DESKTOP_VERSION | ||
1302 | if ( localKdeDir.startsWith( "LOCAL:" ) ) { | ||
1303 | #ifdef _WIN32_ | ||
1304 | localKdeDir = qApp->applicationDirPath () + "\\"+ localKdeDir.mid( 6 ); | ||
1305 | #else | ||
1306 | localKdeDir = qApp->applicationDirPath () + "/"+ localKdeDir.mid( 6 ); | ||
1307 | #endif | ||
1308 | qDebug("Using local conf dir %s ",localKdeDir.latin1() ); | ||
1309 | } | ||
1310 | #endif | ||
1301 | } | 1311 | } |
1302 | } | 1312 | } |
1303 | else | 1313 | else |
1304 | { | 1314 | { |
1305 | // We treat root different to prevent root messing up the | 1315 | // We treat root different to prevent root messing up the |
1306 | // file permissions in the users home directory. | 1316 | // file permissions in the users home directory. |
1307 | localKdeDir = readEnvPath("MICROKDEROOTHOME"); | 1317 | localKdeDir = readEnvPath("MICROKDEROOTHOME"); |
1308 | if (!localKdeDir.isEmpty()) | 1318 | if (!localKdeDir.isEmpty()) |
1309 | { | 1319 | { |
1310 | if (localKdeDir.at(localKdeDir.length()-1) != '/') | 1320 | if (localKdeDir.at(localKdeDir.length()-1) != '/') |
1311 | localKdeDir += '/'; | 1321 | localKdeDir += '/'; |
1312 | } | 1322 | } |
1313 | else | 1323 | else |
1314 | { | 1324 | { |
1315 | //US struct passwd *pw = getpwuid(0); | 1325 | //US struct passwd *pw = getpwuid(0); |
1316 | //US localKdeDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.microkde/"; | 1326 | //US localKdeDir = QFile::decodeName((pw && pw->pw_dir) ? pw->pw_dir : "/root") + "/.microkde/"; |
1317 | qDebug("KStandardDirs::addKDEDefaults: 1 has to be fixed"); | 1327 | qDebug("KStandardDirs::addKDEDefaults: 1 has to be fixed"); |
1318 | } | 1328 | } |
1319 | 1329 | ||
1320 | } | 1330 | } |
1321 | 1331 | ||
1322 | //US localKdeDir = appDir(); | 1332 | //US localKdeDir = appDir(); |
1323 | 1333 | ||
1324 | //US | 1334 | //US |
1325 | // qDebug("KStandardDirs::addKDEDefaults: localKdeDir=%s", localKdeDir.latin1()); | 1335 | // qDebug("KStandardDirs::addKDEDefaults: localKdeDir=%s", localKdeDir.latin1()); |
1326 | if (localKdeDir != "-/") | 1336 | if (localKdeDir != "-/") |
1327 | { | 1337 | { |
1328 | localKdeDir = KShell::tildeExpand(localKdeDir); | 1338 | localKdeDir = KShell::tildeExpand(localKdeDir); |
1329 | addPrefix(localKdeDir); | 1339 | addPrefix(localKdeDir); |
1330 | } | 1340 | } |
1331 | 1341 | ||
1332 | for (QStringList::ConstIterator it = kdedirList.begin(); | 1342 | for (QStringList::ConstIterator it = kdedirList.begin(); |
1333 | it != kdedirList.end(); it++) | 1343 | it != kdedirList.end(); it++) |
1334 | { | 1344 | { |
1335 | QString dir = KShell::tildeExpand(*it); | 1345 | QString dir = KShell::tildeExpand(*it); |
1336 | addPrefix(dir); | 1346 | addPrefix(dir); |
1337 | } | 1347 | } |
1338 | // end KDEDIRS | 1348 | // end KDEDIRS |
1339 | 1349 | ||
1340 | // begin XDG_CONFIG_XXX | 1350 | // begin XDG_CONFIG_XXX |
1341 | QStringList xdgdirList; | 1351 | QStringList xdgdirList; |
1342 | QString xdgdirs = readEnvPath("XDG_CONFIG_DIRS"); | 1352 | QString xdgdirs = readEnvPath("XDG_CONFIG_DIRS"); |
1343 | if (!xdgdirs.isEmpty()) | 1353 | if (!xdgdirs.isEmpty()) |
1344 | { | 1354 | { |
1345 | tokenize(xdgdirList, xdgdirs, ":"); | 1355 | tokenize(xdgdirList, xdgdirs, ":"); |
1346 | } | 1356 | } |
1347 | else | 1357 | else |
1348 | { | 1358 | { |
1349 | xdgdirList.clear(); | 1359 | xdgdirList.clear(); |
1350 | xdgdirList.append("/etc/xdg"); | 1360 | xdgdirList.append("/etc/xdg"); |
1351 | } | 1361 | } |
1352 | 1362 | ||
1353 | QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); | 1363 | QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); |
1354 | if (!localXdgDir.isEmpty()) | 1364 | if (!localXdgDir.isEmpty()) |
1355 | { | 1365 | { |
1356 | if (localXdgDir.at(localXdgDir.length()-1) != '/') | 1366 | if (localXdgDir.at(localXdgDir.length()-1) != '/') |
1357 | localXdgDir += '/'; | 1367 | localXdgDir += '/'; |
1358 | } | 1368 | } |
1359 | else | 1369 | else |
1360 | { | 1370 | { |
1361 | //US if (getuid()) | 1371 | //US if (getuid()) |
1362 | if (true) | 1372 | if (true) |
1363 | { | 1373 | { |
1364 | localXdgDir = QDir::homeDirPath() + "/.config/"; | 1374 | localXdgDir = QDir::homeDirPath() + "/.config/"; |