- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getContextPath (0.12 sec)
-
src/main/java/org/codelibs/fess/FessBoot.java
if (tempPath != null) { System.setProperty(JAVA_IO_TMPDIR, tempPath); } final TomcatBoot tomcatBoot = new FessBoot(getPort(), getContextPath()) // .useTldDetect(); // for JSP final String varPath = System.getProperty(FESS_VAR_PATH); if (varPath != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dashboard/admin_dashboard.jsp
</jsp:include> <div class="content-wrapper position-relative"> <iframe class="w-100 h-100 position-absolute" frameborder="0" src="<%=request.getContextPath()%>${serverPath}<%= response.encodeURL("/_plugin/kopf/") %>" seamless></iframe> </div> <jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 12:21:50 UTC 2020 - 1.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/error/redirect.jsp
String type = request.getParameter("type"); StringBuilder redirectPage = new StringBuilder(); redirectPage.append(((jakarta.servlet.http.HttpServletRequest)request).getContextPath()); if("systemError".equals(type)) { if(requestUri != null && !requestUri.endsWith("systemError")) { redirectPage.append("/error/systemerror/"); response.sendRedirect(redirectPage.toString()); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/error/redirect.jsp
String type = request.getParameter("type"); StringBuilder redirectPage = new StringBuilder(); redirectPage.append(((jakarta.servlet.http.HttpServletRequest)request).getContextPath()); if("systemError".equals(type)) { if(requestUri != null && !requestUri.endsWith("systemError")) { redirectPage.append("/error/systemerror/"); response.sendRedirect(redirectPage.toString()); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
req.setCharacterEncoding(entry.getValue()); final StringBuilder locationBuf = new StringBuilder(1000); final String contextPath = servletContext.getContextPath(); if (StringUtil.isNotBlank(contextPath) && !"/".equals(contextPath)) { locationBuf.append(contextPath); } locationBuf.append('/');
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
throw new IllegalArgumentException(msg); } final StringBuilder sb = new StringBuilder(); LaRequestUtil.getOptionalRequest().map(HttpServletRequest::getContextPath).filter(s -> s.length() > 1).ifPresent(s -> sb.append(s)); sb.append(input); if (input.indexOf('?') == -1) { try { final Long value = resourceHashCache.get(input);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
</span> </la:link> <div class="sidebar"> <c:if test="${fe:permission('admin-searchlist-view')}"> <form action="<%=request.getContextPath()%>/admin/searchlist/search" method="GET" class="form-inline mt-2 sidebar-search"> <div class="input-group"> <input class="form-control form-control-sidebar" name="q" id="query" maxlength="1000"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Apr 15 20:55:28 UTC 2021 - 17.8K bytes - Viewed (0)