Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for favorites (0.08 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                logger.debug("Click Count: {}, url: {}", count, url);
            }
        }
    
        /**
         * Adds favorite count information to the document.
         *
         * @param doc the document to update
         * @param url the URL to get favorite count for
         * @param favoriteCountField the field name to store favorite count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
            }
        }
    
        /**
         * Adds a favorite count field to the document based on user favorite data.
         * The favorite count represents how many users have marked this document as a favorite.
         *
         * @param map the document data map to add the favorite count to
         */
        protected void addFavoriteCountField(final Map<String, Object> map) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        /** Log type constant for click count aggregation. */
        public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg";
    
        /** Log type constant for favorite logs. */
        public static final String LOG_TYPE_FAVORITE = "favorite";
    
        /** Log type constant for favorite count aggregation. */
        public static final String LOG_TYPE_FAVORITE_COUNT = "favorite_count_agg";
    
        /** Log type constant for user information logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    }
                }
            }
        }
    
        /**
         * Creates search conditions for favorite log queries based on pager criteria.
         *
         * @param pager The search log pager containing filter criteria
         * @param cb The favorite log condition bean to configure
         */
        private void createFavoriteLogCondition(final SearchLogPager pager, final FavoriteLogCB cb) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                        key="labels.searchlog_log_type_user_info"/></la:option>
                                                <la:option value="favorite"><la:message
                                                        key="labels.searchlog_log_type_favorite"/></la:option>
                                                <la:option value="search_keyword_agg"><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.search_result_sort_click_count_asc=by Click Count (asc)
    labels.search_result_sort_click_count_desc=by Click Count (desc)
    labels.search_result_sort_favorite_count_asc=by Favorite Count (asc)
    labels.search_result_sort_favorite_count_desc=by Favorite Count (desc)
    labels.search_result_sort_multiple=Multiple
    labels.search_result_size={0} bytes
    labels.search_result_created=Created:
    labels.search_result_last_modified=Last Modified:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
        public String userInfo;
    
        /**
         * Enable or disable user favorite functionality.
         * When enabled, users can save favorite search results.
         */
        @Size(max = 10)
        public String userFavorite;
    
        /**
         * Enable or disable JSON Web API.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            TestSearchLogEvent clickEvent = new TestSearchLogEvent("id", 1L, "click");
            assertEquals("click", clickEvent.getEventType());
    
            // Test favorite event type
            TestSearchLogEvent favoriteEvent = new TestSearchLogEvent("id", 1L, "favorite");
            assertEquals("favorite", favoriteEvent.getEventType());
    
            // Test user_info event type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java

                    + userInfoId + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "favorite";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        public String crawlingThreadCount;
    
        /** The search log setting. */
        public String searchLog;
    
        /** The user info setting. */
        public String userInfo;
    
        /** The user favorite setting. */
        public String userFavorite;
    
        /** The web API JSON setting. */
        public String webApiJson;
    
        /** The default label value setting. */
        public String defaultLabelValue;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top