if (location.endsWith(".jar")) {
path = findJar(location);
if (path != null && path.exists()) {
jar = JarPath.create(path);
if (jar.lookup("META-INF/taglib.tld").exists())
return parseTld(jar.lookup("META-INF/taglib.tld"));
else if (jar.lookup("meta-inf/taglib.tld").exists())
return parseTld(jar.lookup("meta-inf/taglib.tld"));
else
throw new JspParseException(L.l("can't find META-INF/taglib.tld in `{0}'",