* Add support for SingleFileRepository.
This commit is contained in:
parent
d4d13f5adc
commit
0cb7650e6a
1 changed files with 2 additions and 0 deletions
|
@ -343,6 +343,8 @@ public class ApplicationManager implements XmlRpcHandler {
|
||||||
// implementation not set manually, have to guess it
|
// implementation not set manually, have to guess it
|
||||||
if (repositoryArgs.endsWith(".zip")) {
|
if (repositoryArgs.endsWith(".zip")) {
|
||||||
repositoryImpl = "helma.framework.repository.ZipRepository";
|
repositoryImpl = "helma.framework.repository.ZipRepository";
|
||||||
|
} else if (repositoryArgs.endsWith(".js")) {
|
||||||
|
repositoryImpl = "helma.framework.repository.SingleFileRepository";
|
||||||
} else {
|
} else {
|
||||||
repositoryImpl = "helma.framework.repository.FileRepository";
|
repositoryImpl = "helma.framework.repository.FileRepository";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue