Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isExcludedPath (0.05 seconds)

  1. src/main/java/org/codelibs/fess/filter/LoadControlFilter.java

            final HttpServletResponse httpResponse = (HttpServletResponse) response;
            final String path = httpRequest.getRequestURI().substring(httpRequest.getContextPath().length());
    
            if (isExcludedPath(path)) {
                chain.doFilter(request, response);
                return;
            }
    
            final boolean isApiPath = path.startsWith("/api/");
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/filter/LoadControlFilterTest.java

            assertTrue(loadControlFilter.isExcludedPath("/error/"));
            assertTrue(loadControlFilter.isExcludedPath("/error/busy/"));
            assertTrue(loadControlFilter.isExcludedPath("/login"));
            assertTrue(loadControlFilter.isExcludedPath("/login/"));
            assertTrue(loadControlFilter.isExcludedPath("/login/?type=logout"));
    
            assertTrue(loadControlFilter.isExcludedPath("/css/style.css"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 33.6K bytes
    - Click Count (0)
Back to Top