Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for favorites (1.26 sec)

  1. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

    import org.dbflute.cbean.result.ListResultBean;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing favorite log operations.
     * Provides functionality to add URLs to user favorites and retrieve favorite URL lists.
     * This service handles the persistence and retrieval of favorite log entries in the search system.
     */
    public class FavoriteLogService {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/webapp/js/search.js

          })
            .done(function(data) {
              var $favorited,
                  $favoritedCount;
              if (data.result === "created") {
                $favorited = $favorite.siblings(".favorited");
                $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.css("display", "none");
                $favorite.fadeOut(1000, function() {
                  $favorited.fadeIn(1000);
                });
              }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            /** Search API format. */
            SEARCH,
            /** Label API format. */
            LABEL,
            /** Popular word API format. */
            POPULARWORD,
            /** Favorite API format. */
            FAVORITE,
            /** Favorites API format. */
            FAVORITES,
            /** Ping API format. */
            PING,
            /** Scroll API format. */
            SCROLL,
            /** Suggest API format. */
            SUGGEST,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return FormatType.LABEL;
            }
            if ("popular-words".equals(type)) {
                return FormatType.POPULARWORD;
            }
            if ("favorites".equals(type)) {
                return FormatType.FAVORITES;
            }
            if ("health".equals(type)) {
                return FormatType.PING;
            }
            if ("suggest-words".equals(type)) {
                return FormatType.SUGGEST;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_es.properties

    labels.search_result_sort_click_count_asc=Clics (asc)
    labels.search_result_sort_click_count_desc=Clics (desc)
    labels.search_result_sort_favorite_count_asc=Favoritos (asc)
    labels.search_result_sort_favorite_count_desc=Favoritos (desc)
    labels.search_result_sort_multiple=Múltiple
    labels.search_result_size={0} bytes
    labels.search_result_created=Fecha de registro:
    labels.search_result_last_modified=Última modificación:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

     *
     * This interface defines the contract for search log event objects that can be
     * written to log files or stored in the search index. Implementations include
     * search logs, click logs, favorite logs, and user information logs.
     */
    public interface SearchLogEvent {
        /**
         * Gets the unique identifier for this search log event.
         *
         * @return The event ID
         */
        String getId();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top