Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for query1 (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

     * Contains the document ID and query parameters needed to retrieve thumbnail images.
     */
    public class ThumbnailForm {
    
        /**
         * The document ID for which to retrieve the thumbnail.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * The query ID associated with the search request.
         */
        @Required
        public String queryId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsClickLogCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsClickLogCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsClickLogCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsFavoriteLogCB.java

        //                                                                               Query
        //                                                                               =====
        public BsFavoriteLogCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsFavoriteLogCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java

            }
        }
    
        public void addDocument(final Map<String, Object> doc) {
            documentList.add(doc);
        }
    
        public void setSearchQuery(final String query) {
            addSearchFieldLogValue(Constants.SEARCH_FIELD_LOG_SEARCH_QUERY, query);
        }
    
        public OptionalEntity<UserInfo> getUserInfo() {
            if (getUserInfoId() == null) {
                return OptionalEntity.empty();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         */
        public Integer order;
    
        // for error page
    
        /**
         * Query string parameter for error page fallback.
         * Contains the original search query if redirection fails.
         */
        public String q;
    
        /**
         * Number of results parameter for error page fallback.
         * Specifies how many results to display if redirection fails.
         */
        public String num;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsSearchLogCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsSearchLogCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsSearchLogCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

         */
        public SearchForm() {
        }
    
        /**
         * The log type field for filtering search logs.
         */
        public String logType;
    
        /**
         * The query ID field for searching specific queries.
         */
        public String queryId;
    
        /**
         * The user session ID field for filtering logs by session.
         */
        public String userSessionId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/searchResults.jsp

    </div>
    <c:if test="${partialResults}">
    	<div class="alert">
    		<p>
    			<la:message key="labels.process_time_is_exceeded" />
    		</p>
    	</div>
    </c:if>
    <div id="result" class="row">
    	<input type="hidden" id="queryId" value="${f:h(queryId)}" /> <input
    		type="hidden" id="rt" value="${f:h(requestedTime)}" />
    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/search.js

            rt = $("#rt").val(),
            queryId = $("#queryId").val(),
            order = $(this).attr("data-order"),
            url = $(this).attr("href"),
            buf = [],
            hashIndex,
            hashStr;
        buf.push(contextPath);
        buf.push("/go/?rt=");
        buf.push(rt);
        buf.push("&docId=");
        buf.push(docId);
        buf.push("&queryId=");
        buf.push(queryId);
        buf.push("&order=");
        buf.push(order);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

        /**
         * Serves a thumbnail image for the specified document.
         *
         * @param form the thumbnail request form containing document ID and query parameters
         * @return ActionResponse containing the thumbnail image or 404 if not found
         */
        @Execute
        public ActionResponse index(final ThumbnailForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top