Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 23 for Favorit (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/resources/fess_label_id.properties

    labels.search_result_sort_click_count_desc=berdasarkan Jumlah Klik (desc)
    labels.search_result_sort_favorite_count_asc=berdasarkan Jumlah Favorit (asc)
    labels.search_result_sort_favorite_count_desc=berdasarkan Jumlah Favorit (desc)
    labels.search_result_sort_multiple=Beberapa
    labels.search_result_size={0} byte
    labels.search_result_created=Dibuat:
    labels.search_result_last_modified=Terakhir Dimodifikasi:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 50.2K bytes
    - Click Count (0)
  2. 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.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

                String docId = docs.get(0).get("doc_id").toString();
    
                // Set favorite
                Map<String, String> params = new HashMap<>();
                params.put("queryId", queryId);
    
                Response response =
                        given().contentType("application/json").params(params).when().post("/api/v1/documents/" + docId + "/favorite");
    
                // Should return 200 or 201
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  4. src/main/webapp/js/search.js

        }
    
        $link.attr("href", goUrl);
      });
    
      $result.on("click", "a.favorite", function(e) {
        e.preventDefault();
        var $favorite = $(this);
        var values = $favorite.attr("href").split("#");
    
        if (values.length === 2 && $queryId.length > 0) {
          var docId = values[1];
          var actionUrl = contextPath + "/api/v1/documents/" + docId + "/favorite";
    
          $.ajax({
            dataType: "json",
            cache: false,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  5. 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();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            }
        }
    
        /**
         * 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
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  7. 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  8. 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (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. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (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;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.6K bytes
    - Click Count (0)
Back to Top