From: Mathieu Baudier Date: Mon, 13 Feb 2012 11:06:55 +0000 (+0000) Subject: Documentation X-Git-Tag: argeo-slc-2.1.7~800 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=d1c290d7b0986117d44a3deae3ee8e1337521d05;p=gpl%2Fargeo-slc.git Documentation git-svn-id: https://svn.argeo.org/slc/trunk@5065 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/OsgiExecutionResources.java b/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/OsgiExecutionResources.java index b4658bdff..cf9b2d51d 100644 --- a/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/OsgiExecutionResources.java +++ b/runtime/org.argeo.slc.support.osgi/src/main/java/org/argeo/slc/osgi/OsgiExecutionResources.java @@ -28,6 +28,7 @@ import org.springframework.core.io.Resource; import org.springframework.osgi.context.BundleContextAware; import org.springframework.osgi.io.OsgiBundleResource; +/** Write access to resources in an OSGi context */ public class OsgiExecutionResources extends FileExecutionResources implements BundleContextAware { private final static Log log = LogFactory @@ -62,14 +63,15 @@ public class OsgiExecutionResources extends FileExecutionResources implements // TODO: Equinox specific? String relPath = location.substring("initial@reference:file:" .length()); -// if (relPath.startsWith("../"))// relative to the framework jar -// relPath = relPath.substring("../".length()); -// String framework = System.getProperty("osgi.framework").substring( -// "file:".length()); -// log.debug(framework); + // if (relPath.startsWith("../"))// relative to the framework jar + // relPath = relPath.substring("../".length()); + // String framework = + // System.getProperty("osgi.framework").substring( + // "file:".length()); + // log.debug(framework); String installArea = System.getProperty("osgi.install.area") .substring("file:".length()); -// log.debug(installArea); + // log.debug(installArea); base = installArea + '/' + relPath; // int sepIndex = framework.lastIndexOf(File.separatorChar); // framework = framework.substring(0, sepIndex);