/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
D | ContextHandlerCollection.java | 93 String contextPath=handler.getContextPath(); in mapContexts() local 95 if (contextPath==null || contextPath.indexOf(',')>=0 || contextPath.startsWith("*")) in mapContexts() 96 throw new IllegalArgumentException ("Illegal context spec:"+contextPath); in mapContexts() 98 if(!contextPath.startsWith("/")) in mapContexts() 99 contextPath='/'+contextPath; in mapContexts() 101 if (contextPath.length()>1) in mapContexts() 103 if (contextPath.endsWith("/")) in mapContexts() 104 contextPath+="*"; in mapContexts() 105 else if (!contextPath.endsWith("/*")) in mapContexts() 106 contextPath+="/*"; in mapContexts() [all …]
|
D | MovedContextHandler.java | 54 public MovedContextHandler(HandlerContainer parent, String contextPath, String newContextURL) in MovedContextHandler() argument 56 super(parent,contextPath); in MovedContextHandler()
|
D | ContextHandler.java | 195 public ContextHandler(String contextPath) in ContextHandler() argument 198 setContextPath(contextPath); in ContextHandler() 205 public ContextHandler(HandlerContainer parent, String contextPath) in ContextHandler() argument 208 setContextPath(contextPath); in ContextHandler() 1282 public void setContextPath(String contextPath) in setContextPath() argument 1284 if (contextPath != null && contextPath.length() > 1 && contextPath.endsWith("/")) in setContextPath() 1286 _contextPath = contextPath; in setContextPath()
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
D | ServletUtils.java | 41 String contextPath = request.getContextPath(); in getContextRelativePath() local 43 if (contextPath.length() < requestURI.length()) { in getContextRelativePath() 44 return requestURI.substring(contextPath.length()); in getContextRelativePath() 46 contextPath.length() == requestURI.length()) { in getContextRelativePath()
|
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
D | PutFilter.java | 302 String contextPath = request.getContextPath(); in handleMove() local 303 if (contextPath != null && !newPath.startsWith(contextPath)) in handleMove() 309 if (contextPath != null) in handleMove() 310 newInfo = newInfo.substring(contextPath.length()); in handleMove()
|
D | ProxyServlet.java | 872 String contextPath = _context.getContextPath(); in init() local 873 _prefix = _prefix == null?contextPath:(contextPath + _prefix); in init()
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
D | ServletDefinitionPathsTest.java | 142 private void pathInfoWithServletStyleMatching(final String requestUri, final String contextPath, in pathInfoWithServletStyleMatching() argument 192 .andReturn(contextPath); in pathInfoWithServletStyleMatching() 242 public final void pathInfoWithRegexMatching(final String requestUri, final String contextPath, in pathInfoWithRegexMatching() argument 292 .andReturn(contextPath); in pathInfoWithRegexMatching()
|
D | ContextPathTest.java | 232 private void runTest(final String requestURI, final String servletPath, final String contextPath, in runTest() argument 247 expect(req.getContextPath()).andReturn(contextPath).anyTimes(); in runTest()
|
/external/jetty/src/java/org/eclipse/jetty/servlet/ |
D | ServletContextHandler.java | 108 public ServletContextHandler(HandlerContainer parent, String contextPath) in ServletContextHandler() argument 110 this(parent,contextPath,null,null,null,null); in ServletContextHandler() 114 public ServletContextHandler(HandlerContainer parent, String contextPath, int options) in ServletContextHandler() argument 116 this(parent,contextPath,null,null,null,null); in ServletContextHandler() 121 …public ServletContextHandler(HandlerContainer parent, String contextPath, boolean sessions, boolea… in ServletContextHandler() argument 123 this(parent,contextPath,(sessions?SESSIONS:0)|(security?SECURITY:0)); in ServletContextHandler() 133 …public ServletContextHandler(HandlerContainer parent, String contextPath, SessionHandler sessionHa… in ServletContextHandler() argument 144 if (contextPath!=null) in ServletContextHandler() 145 setContextPath(contextPath); in ServletContextHandler()
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
D | WebInfConfiguration.java | 665 String contextPath = context.getContextPath(); in getCanonicalNameForWebAppTmpDir() local 666 contextPath=contextPath.replace('/','_'); in getCanonicalNameForWebAppTmpDir() 667 contextPath=contextPath.replace('\\','_'); in getCanonicalNameForWebAppTmpDir() 668 canonicalName.append(contextPath); in getCanonicalNameForWebAppTmpDir()
|
D | WebAppContext.java | 206 public WebAppContext(String webApp,String contextPath) in WebAppContext() argument 208 super(null,contextPath,SESSIONS|SECURITY); in WebAppContext() 210 setContextPath(contextPath); in WebAppContext() 222 public WebAppContext(HandlerContainer parent, String webApp, String contextPath) in WebAppContext() argument 224 super(parent,contextPath,SESSIONS|SECURITY); in WebAppContext()
|
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
D | JDBCSessionIdManager.java | 209 …tatement getLoadStatement (Connection connection, String rowId, String contextPath, String virtual… in getLoadStatement() argument 212 if (contextPath == null || "".equals(contextPath)) in getLoadStatement() 230 statement.setString(2, contextPath); in getLoadStatement()
|
D | AbstractSessionManager.java | 469 …public HttpCookie getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecur… in getSessionCookie() argument 473 String sessionPath = (_sessionPath==null) ? contextPath : _sessionPath; in getSessionCookie()
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | SessionManager.java | 188 …public HttpCookie getSessionCookie(HttpSession session, String contextPath, boolean requestIsSecur… in getSessionCookie() argument
|
D | Server.java | 390 final String contextPath=state.getServletContext().getContextPath(); in handleAsync() local 391 HttpURI uri = new HttpURI(URIUtil.addPaths(contextPath,path)); in handleAsync()
|
D | Request.java | 1762 public void setContextPath(String contextPath) in setContextPath() argument 1764 _contextPath = contextPath; in setContextPath()
|
/external/jetty/src/resources/org/eclipse/jetty/server/handler/jmx/ |
D | ContextHandler-mbean.properties | 8 contextPath: URI prefix of context key
|
/external/guice/extensions/struts2/lib/ |
D | jetty-6.1.0.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mortbay/
org/ ... |
D | struts2-core-2.2.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | dom4j-1.6.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/dom4j/
org/ ... |
/external/guice/extensions/persist/lib/ |
D | dom4j-1.6.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/dom4j/
org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.mortbay.jetty.server_6.1.23.v201004211559.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/ |
D | FlexAntTasks.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/adobe/
com/ ... |
/external/jetty/ |
D | VERSION.txt | 495 contextPath is / 525 + 378487 Null out contextPath on Request.recycle 2653 + JETTY-584 handle null contextPath 2682 + JETTY-584 handle null contextPath 3075 + AJP13 remoteUser, contextPath, servletPath requests implemented
|