Searched refs:normalize (Results 1 - 20 of 20) sorted by relevance

/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/
H A DSSIServletRequestUtil.java93 return RequestUtil.normalize(result);
102 * present), return <code>null</code> instead. This normalize should be
103 * the same as DefaultServlet.normalize, which is almost the same ( see
104 * source code below ) as RequestUtil.normalize. Do we need all this
111 public static String normalize(String path) { method in class:SSIServletRequestUtil
112 return RequestUtil.normalize(path);
H A DSSIServletExternalResolver.java421 String retVal = RequestUtil.normalize(fullPath);
454 String normalized = RequestUtil.normalize(virtualPath);
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/collections/
H A DManifestUtils.java76 public final static Map<String, Map<String,String>> normalize(Manifest m) method in class:ManifestUtils
81 all.put(MAIN_ATTS, normalize(mainAtt));
88 all.put(entryName, normalize(unwashed.get(entryName)));
99 public final static Map<String,String> normalize(Attributes att) method in class:ManifestUtils
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DJar.java70 // No need to normalize, because file.toURI() removes unnecessary slashes
87 uri = new URI(b.getLocation()).normalize();
94 this.uri = uri.normalize();
143 // It works, as we anyway use normalize()
/glassfish-3.1.2/appclient/client/acc-standalone/src/main/java/org/glassfish/appclient/client/acc/agent/
H A DACCAgentClassLoader.java166 return new URL[] {GFSystemURI().normalize().toURL()};
175 return agentClass.getProtectionDomain().getCodeSource().getLocation().toURI().normalize();
188 result.add(new File(classPathElement).toURI().normalize().toURL());
/glassfish-3.1.2/common/common-util/src/test/java/com/sun/enterprise/universal/collections/
H A DManifestUtilsTest.java79 * Test of normalize method, of class ManifestUtils.
82 public void normalize() { method in class:ManifestUtilsTest
94 Map<String,Map<String,String>> norm = ManifestUtils.normalize(m);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DDOMWriter.java201 out.print(normalize(attr.getNodeValue()));
240 out.print(normalize(node.getNodeValue()));
251 out.print(normalize(node.getNodeValue()));
329 protected String normalize(String s) { method in class:DOMWriter
370 } // normalize(String):String
H A DRequestUtil.java181 public static String normalize(String path) { method in class:RequestUtil
182 return normalize(path, true);
194 public static String normalize(String path, boolean replaceBackSlash) { method in class:RequestUtil
197 return Util.normalize(path, replaceBackSlash);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DUtil.java82 public static String normalize(String path, boolean replaceBackSlash) { method in class:Util
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DACCClassLoader.java144 return agentClass.getProtectionDomain().getCodeSource().getLocation().toURI().normalize();
157 result.add(new File(classPathElement).toURI().normalize().toURL());
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DFileDirContext.java867 protected String normalize(String path) { method in class:FileDirContext
868 return Util.normalize(path, File.separatorChar == '\\');
936 String absPath = normalize(fileAbsPath);
937 canPath = normalize(canPath);
H A DWARDirContext.java765 protected String normalize(ZipEntry entry) { method in class:WARDirContext
789 String name = normalize(entry);
807 // normalize method and add '/' character to end to
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/glassfish/
H A DAdminCommandResponse.java72 allRaw = ManifestUtils.normalize(m);
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/
H A DAutoDeployer.java246 final URI baseURI = baseDir.toURI().normalize();
247 final URI targetURI = targetDir.toURI().normalize();
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/core/
H A DJBIDescriptorReader.java182 mDoc.getDocumentElement().normalize();
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DCoyoteAdapter.java443 if (!normalize(req.decodedURI())) {
475 if (!normalize(decodedURI)) {
645 public static boolean normalize(MessageBytes uriMB) { method in class:CoyoteAdapter
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/
H A DDOMUtil.java389 aElement.normalize();
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardContext.java6874 path = RequestUtil.normalize(path);
6927 path = RequestUtil.normalize(path);
7005 path = RequestUtil.normalize(path);
7097 path = RequestUtil.normalize(path);
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/
H A DNestedAppClientDeployerHelper.java699 return newArtifact(referencingURI.resolve(referencedURI).normalize());
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DWebdavServlet.java1623 destinationPath = RequestUtil.normalize(destinationPath);
2373 generatedXML.writeText(rewriteUrl(RequestUtil.normalize(

Completed in 112 milliseconds