* Add support for SingleFileRepository.

This commit is contained in:
hns 2006-04-07 14:40:20 +00:00
parent d4d13f5adc
commit 0cb7650e6a

View file

@ -343,6 +343,8 @@ public class ApplicationManager implements XmlRpcHandler {
// implementation not set manually, have to guess it
if (repositoryArgs.endsWith(".zip")) {
repositoryImpl = "helma.framework.repository.ZipRepository";
} else if (repositoryArgs.endsWith(".js")) {
repositoryImpl = "helma.framework.repository.SingleFileRepository";
} else {
repositoryImpl = "helma.framework.repository.FileRepository";
}