Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for favorites (0.07 sec)

  1. src/main/config/openapi/openapi-user.yaml

      /documents/{docId}/favorite:
        post:
          tags:
            - favorite
          summary: Set a favorite mark
          description: Set a favorite mark to the document
          operationId: setFavorite
          parameters:
            - name: docId
              in: path
              description: Document ID to be favorited
              required: true
              schema:
                type: string
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            assertNotNull("Doc ID should be set", dataMap.get("doc_id"));
            assertNotNull("Click count should be set", dataMap.get("click_count"));
            assertNotNull("Favorite count should be set", dataMap.get("favorite_count"));
            assertEquals(1, indexUpdateCallback.docList.size());
        }
    
        public void test_store_withoutUrl_throwsException() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top