in src/main/java/org/apache/sling/installer/core/impl/console/AbstractWebConsolePlugin.java [38:48]
private URL getResource(final String path) {
if (path.startsWith("/" + getRelativeResourcePrefix())) {
// strip label
int index = path.indexOf('/', 1);
if (index <= 0) {
throw new IllegalStateException("The relativeResourcePrefix must contain at least one '/'");
}
return this.getClass().getResource(path.substring(index));
}
return null;
}