summaryrefslogtreecommitdiff
authoralwin <alwin>2004-02-22 20:11:56 (UTC)
committer alwin <alwin>2004-02-22 20:11:56 (UTC)
commit936fc191ac5756a4de2e8b2a83c8bc910f918b95 (patch) (unidiff)
tree3b3b3ef8b9abd9ebe1eb9e3180eafe8313bc32d5
parent63e45b90437e78ee11753c6782516dc38c30dd24 (diff)
downloadopie-936fc191ac5756a4de2e8b2a83c8bc910f918b95.zip
opie-936fc191ac5756a4de2e8b2a83c8bc910f918b95.tar.gz
opie-936fc191ac5756a4de2e8b2a83c8bc910f918b95.tar.bz2
read more options from opiestorage.cf
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/global.cpp19
1 files changed, 12 insertions, 7 deletions
diff --git a/library/global.cpp b/library/global.cpp
index 6c0a66a..6182de8 100644
--- a/library/global.cpp
+++ b/library/global.cpp
@@ -752,55 +752,60 @@ void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter)
752 * a) the user don't want to check mediums global 752 * a) the user don't want to check mediums global
753 * b) the user wants to check but use the global options for it 753 * b) the user wants to check but use the global options for it
754 * c) the user wants to check it but not this medium 754 * c) the user wants to check it but not this medium
755 * d) the user wants to check and this medium as well 755 * d) the user wants to check and this medium as well
756 * 756 *
757 * In all cases we need to apply a different mimefilter to 757 * In all cases we need to apply a different mimefilter to
758 * the medium. 758 * the medium.
759 * a) mimefilter.isEmpty() we need to apply the responding filter 759 * a) mimefilter.isEmpty() we need to apply the responding filter
760 * either the global or the one on the medium 760 * either the global or the one on the medium
761 * 761 *
762 * b) mimefilter is set to an application we need to find out if the 762 * b) mimefilter is set to an application we need to find out if the
763 * mimetypes are included in the mime mask of the medium 763 * mimetypes are included in the mime mask of the medium
764 */ 764 */
765 StorageInfo storage; 765 StorageInfo storage;
766 const QList<FileSystem> &fs = storage.fileSystems(); 766 const QList<FileSystem> &fs = storage.fileSystems();
767 QListIterator<FileSystem> it ( fs ); 767 QListIterator<FileSystem> it ( fs );
768 for ( ; it.current(); ++it ) { 768 for ( ; it.current(); ++it ) {
769 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
770 // 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
771 QString path = (*it)->path(); 771 QString path = (*it)->path();
772 if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) 772 if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) )
773 continue; 773 continue;
774 Config conf((*it)->path() + "/.opiestorage.cf", Config::File ); 774 Config conf((*it)->path() + "/.opiestorage.cf", Config::File );
775 conf.setGroup("subdirs"); 775 conf.setGroup("subdirs");
776 QStringList subDirs = conf.readListEntry("subdirs",':'); 776 if (conf.readBoolEntry("wholemedia",true)) {
777 if (subDirs.isEmpty()) { 777 DocLnkSet ide( path,mimefilter);
778 subDirs.append("Documents"); 778 folder->appendFrom(ide);
779 } 779 } else {
780 for (unsigned c = 0; c < subDirs.count();++c) { 780 QStringList subDirs = conf.readListEntry("subdirs",':');
781 DocLnkSet ide( path+"/"+subDirs[c], mimefilter ); 781 if (subDirs.isEmpty()) {
782 folder->appendFrom(ide); 782 subDirs.append("Documents");
783 }
784 for (unsigned c = 0; c < subDirs.count();++c) {
785 DocLnkSet ide( path+"/"+subDirs[c], mimefilter );
786 folder->appendFrom(ide);
787 }
783 } 788 }
784 } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { 789 } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) {
785 QString path = (*it)->path() + "/Documents"; 790 QString path = (*it)->path() + "/Documents";
786 DocLnkSet ide( path, mimefilter ); 791 DocLnkSet ide( path, mimefilter );
787 folder->appendFrom(ide); 792 folder->appendFrom(ide);
788 } 793 }
789 } 794 }
790} 795}
791 796
792QStringList Global::languageList() 797QStringList Global::languageList()
793{ 798{
794 QString lang = getenv("LANG"); 799 QString lang = getenv("LANG");
795 QStringList langs; 800 QStringList langs;
796 langs.append(lang); 801 langs.append(lang);
797 int i = lang.find("."); 802 int i = lang.find(".");
798 if ( i > 0 ) 803 if ( i > 0 )
799 lang = lang.left( i ); 804 lang = lang.left( i );
800 i = lang.find( "_" ); 805 i = lang.find( "_" );
801 if ( i > 0 ) 806 if ( i > 0 )
802 langs.append(lang.left(i)); 807 langs.append(lang.left(i));
803 return langs; 808 return langs;
804} 809}
805 810
806QStringList Global::helpPath() 811QStringList Global::helpPath()