summaryrefslogtreecommitdiff
path: root/www/helma/files/patch-ApplicationManager.java
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-09-07 22:23:35 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-09-07 22:23:35 +0000
commite7ed232fe114fd0ea8289c4b0874365210ac0b7a (patch)
tree59b2a2adf6698ceecd0303bd9cde40168bbf5c99 /www/helma/files/patch-ApplicationManager.java
parent- Update to 0.2.1 (diff)
Helma is an open source web application framework for fast
and efficient scripting and serving of your websites and Internet applications. WWW: http://www.helma.org/ PR: ports/127184 Submitted by: Bernhard Froehlich <decke at bluelife.at>
Diffstat (limited to 'www/helma/files/patch-ApplicationManager.java')
-rw-r--r--www/helma/files/patch-ApplicationManager.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/www/helma/files/patch-ApplicationManager.java b/www/helma/files/patch-ApplicationManager.java
new file mode 100644
index 000000000000..9cf258490882
--- /dev/null
+++ b/www/helma/files/patch-ApplicationManager.java
@@ -0,0 +1,12 @@
+--- ../src/helma/main/ApplicationManager.java.orig 2008-04-07 14:45:30.000000000 +0200
++++ ../src/helma/main/ApplicationManager.java 2008-07-12 16:16:14.000000000 +0200
+@@ -369,6 +369,9 @@
+ repositoryImpl = "helma.framework.repository.FileRepository";
+ }
+ }
++
++ if(!new File(repositoryArgs).isAbsolute())
++ repositoryArgs = server.getHopHome() + "/" + repositoryArgs;
+
+ try {
+ Repository newRepository = (Repository) Class.forName(repositoryImpl)