Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 93 for searchForm (0.11 seconds)

  1. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        /**
         * Parameter to control tracking of total hits in search results.
         */
        @Size(max = 100)
        public String track_total_hits;
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
            super();
        }
    
        // advance
    
        @Override
        public int getStartPosition() {
            if (start == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  2. src/main/webapp/js/index.js

        },
        listDeselectedCssInfo: {
          "background-color": "#ffffff"
        },
        minterm: 1,
        adjustWidthVal: 11,
        searchForm: $("#searchForm")
      };
    
      $("#contentQuery").focus();
    
      $("#searchForm").on("submit", function() {
        $searchButton.prop("disabled", true);
        var $icon = $searchButton.find("i.fa-search");
        if ($icon.length > 0) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

         *
         * @param form the search form
         * @return HTML response for the duplicate host list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays the duplicate host list with pagination.
         *
         * @param pageNumber the page number to display
         * @param form the search form
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

         *
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays the key match list with pagination.
         *
         * @param pageNumber the page number
         * @param form the search form
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

         *
         * @param form the search form
         * @return HTML response for the index page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            validate(form, messages -> {}, this::asDictIndexHtml);
            stopwordsPager.clear();
            return asHtml(path_AdminDictStopwords_AdminDictStopwordsJsp).renderWith(data -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 20.3K bytes
    - Click Count (0)
  6. src/main/webapp/js/help.js

          "background-color": "rgba(82, 168, 236, 0.1)"
        },
        listDeselectedCssInfo: {
          "background-color": "#ffffff"
        },
        minterm: 1,
        adjustWidthVal: 11,
        searchForm: $("#searchForm")
      };
    
      $("#searchForm").on("submit", function() {
        $searchButton.prop("disabled", true);
        setTimeout(function() {
          $searchButton.prop("disabled", false);
        }, BUTTON_DISABLE_DURATION);
        return true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) {
            pageNumber.ifPresent(num -> {
                dataConfigPager.setCurrentPageNumber(pageNumber.get());
            }).orElse(() -> {
                dataConfigPager.setCurrentPageNumber(0);
            });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/orig/open-search/osdd.xml

      <ShortName>Fess</ShortName>
      <Description>Full Text Search for Your Documents.</Description>
      <Tags>Full Text Search</Tags>
      <Contact>******@****.***</Contact>
      <SearchForm>http://localhost:8080/fess/</SearchForm>
      <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
      <InputEncoding>UTF-8</InputEncoding>
      <OutputEncoding>UTF-8</OutputEncoding>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 02:26:02 GMT 2015
    - 535 bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

         * @return The HTML response.
         */
        @Execute
        public HtmlResponse index(final SearchForm form) {
            return search(form);
        }
    
        /**
         * The advance search page.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        public HtmlResponse advance(final SearchForm form) {
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

         * @param form the search form containing search criteria
         * @return HTML response for the path mapping list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays the path mapping list with pagination support.
         *
         * @param pageNumber the optional page number for pagination
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.4K bytes
    - Click Count (0)
Back to Top