implement disable sub repository detection option

This commit is contained in:
Sebastian Sdorra
2013-01-20 11:41:33 +01:00
parent 81d78b6fa8
commit cc81411523
5 changed files with 30 additions and 6 deletions

View File

@@ -256,7 +256,8 @@ public class SvnBrowseCommand extends AbstractSvnCommand
fileObject.setLength(entry.getSize());
if (fileObject.isDirectory() && entry.hasProperties())
if (!request.isDisableSubRepositoryDetection() && fileObject.isDirectory()
&& entry.hasProperties())
{
fetchExternalsProperty(repository, revision, entry, fileObject);
}