author | alwin <alwin> | 2004-02-21 23:05:04 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-02-21 23:05:04 (UTC) |
commit | 4cfad0d1331a5e3adc8bc2599783750875e6fd2b (patch) (unidiff) | |
tree | fda9d83c9cdf75a1340f3465460b5fe86009ac02 | |
parent | 51c51fef13a91b263acba430faaa3332bf145343 (diff) | |
download | opie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.zip opie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.tar.gz opie-4cfad0d1331a5e3adc8bc2599783750875e6fd2b.tar.bz2 |
on removable medias take a look into .opiestorage.cf and read the list
of subdirs of the media where to search for documents. If this value isn't
set, it will reduce search to FS+"/Documents" so not the whole media is
searched.
ToDo: Work on mediummount so users can set this values.
-rw-r--r-- | library/global.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/library/global.cpp b/library/global.cpp index 05d23ac..6c0a66a 100644 --- a/library/global.cpp +++ b/library/global.cpp | |||
@@ -28,2 +28,3 @@ | |||
28 | #include <qpe/qcopenvelope_qws.h> | 28 | #include <qpe/qcopenvelope_qws.h> |
29 | #include <qpe/config.h> | ||
29 | 30 | ||
@@ -768,8 +769,16 @@ void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter) | |||
768 | if ( (*it)->isRemovable() ) { // let's find out if we should search on it | 769 | if ( (*it)->isRemovable() ) { // let's find out if we should search on it |
769 | // this is a candidate look at the cf and see if we should search on it | 770 | // this is a candidate look at the cf and see if we should search on it |
770 | QString path = (*it)->path(); | 771 | QString path = (*it)->path(); |
771 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) | 772 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) |
772 | continue; | 773 | continue; |
773 | DocLnkSet ide( path, mimefilter ); | 774 | Config conf((*it)->path() + "/.opiestorage.cf", Config::File ); |
774 | folder->appendFrom(ide); | 775 | conf.setGroup("subdirs"); |
776 | QStringList subDirs = conf.readListEntry("subdirs",':'); | ||
777 | if (subDirs.isEmpty()) { | ||
778 | subDirs.append("Documents"); | ||
779 | } | ||
780 | for (unsigned c = 0; c < subDirs.count();++c) { | ||
781 | DocLnkSet ide( path+"/"+subDirs[c], mimefilter ); | ||
782 | folder->appendFrom(ide); | ||
783 | } | ||
775 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { | 784 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { |