GNOME Bugzilla – Bug 673066
hidden directories get indexed
Last modified: 2012-11-18 11:13:03 UTC
After setting DOTFILE_DIRS the script specified at FILE_VERSION_FILTER gets called also for files in hidden directories. In my case the subversion meta data in ".svn" directory. Best (at least in my case) would by to skip all hidden directories. Another possibility is the specify a filter pattern for dot files.
The following patch did work for me. Index: src/doxygen.cpp =================================================================== --- src/doxygen.cpp (Revision 808) +++ src/doxygen.cpp (Arbeitskopie) @@ -8990,9 +8990,9 @@ } else if (recursive && (!Config_getBool("EXCLUDE_SYMLINKS") || !cfi->isSymLink()) && - cfi->isDir() && cfi->fileName()!="." && + cfi->isDir() && !patternMatch(*cfi,exclPatList) && - cfi->fileName()!="..") + cfi->fileName().at(0)!='.') { cfi->setFile(cfi->absFilePath()); totalSize+=readDir(cfi,fnList,fnDict,exclDict,
Makes sense. I'll include the patch in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.1. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.