Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for contextPath (0.19 sec)

  1. src/main/java/org/codelibs/fess/FessBoot.java

        protected void setupWebappContext() {
            super.setupWebappContext();
            String contextPath = getContextPath();
            if (contextPath.length() > 0 && contextPath.endsWith("/")) {
                contextPath = contextPath.replaceAll("/+$", StringUtil.EMPTY);
            }
            final Context context = (Context) server.getHost().findChild(contextPath);
            if (context != null) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/advance.js

          contextPath = $("#contextPath").val();
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#as_q").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/main/webapp/js/index.js

    $(function() {
      $("#contentQuery").focus();
    
      var $searchButton = $("#searchButton"),
          contextPath = $("#contextPath").val();
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

    $(function() {
      var $result = $("#result"),
          $queryId = $("#queryId"),
          $favorites = $(".favorite", $result),
          $searchButton = $("#searchButton"),
          contextPath = $("#contextPath").val(),
          loadImage;
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 7.5K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                    final StringBuilder locationBuf = new StringBuilder(1000);
                    final String contextPath = servletContext.getContextPath();
                    if (StringUtil.isNotBlank(contextPath) && !"/".equals(contextPath)) {
                        locationBuf.append(contextPath);
                    }
                    locationBuf.append('/');
                    locationBuf.append(servletPath.substring(path.length()));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/common.jsp

     --%><%@taglib prefix="f" uri="http://lastaflute.org/functions" %><%--
     --%><%@taglib prefix="fe" uri="http://fess.codelibs.org/functions" %><%--
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 27 14:01:41 GMT 2015
    - 508 bytes
    - Viewed (0)
  7. src/main/webapp/js/help.js

    $(function() {
      var $searchButton = $("#searchButton"),
          contextPath = $("#contextPath").val();
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                        <div class="card card-outline card-primary">
                            <div class="card-header">
                                <h3 class="card-title">
                                    <a aria-hidden="true" href="${contextPath}/admin/storage/">
                                        <i class="fas fa-database fa-fw"
                                           aria-hidden="true"></i>${f:h(bucket)}
                                    </a>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 20.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/admin/header.jsp

    			title="<la:message key="labels.tooltip_search_view" />"><a class="nav-link" href="${contextPath}/"><em class="fa fa-list-alt"></a></li>
    		<c:if test="${fe:permission('admin-scheduler')}">
    			<li class="nav-item" data-toggle="tooltip" data-placement="left"
    				title="<la:message key="labels.tooltip_run_crawler" />"><a class="nav-link"
    									 href="${contextPath}/admin/scheduler/details/4/default_crawler"><em
    					class="fa fa-play-circle"></a></li>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/help.jsp

    			</div>
    		</div>
    		<div class="text-right">
    			<a href="#"><la:message key="labels.footer_back_to_top" /></a>
    		</div>
    	</main>
    	<jsp:include page="footer.jsp" />
    	<input type="hidden" id="contextPath" value="${contextPath}" />
    	<script type="text/javascript"
    		src="${fe:url('/js/jquery-3.6.3.min.js')}"></script>
    	<script src="${fe:url('/js/admin/popper.min.js')}" type="text/javascript"></script>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top