- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for favorited (0.05 sec)
-
src/main/webapp/js/search.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/webapp/css/style.css
} #result .info { font-size: 80%; } #result .url-copy { color: #007bff; } #result .url-copied { color: #2c974b; } #result .favorited { display: none; } #result .favorited i { color: #fab005; } #result .thumbnail { width: 100px; min-height: 30px; background-position: 50% 50%; background-repeat: no-repeat; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 2K bytes - Viewed (0) -
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) -
src/main/webapp/WEB-INF/view/searchResults.jsp
</c:if> <c:if test="${favoriteSupport}"> <div class="d-sm-none"></div> <span class="d-none d-sm-inline-block"> </span> <a href="#${doc.doc_id}" class="favorite"><i class="far fa-star"></i></a> <span class="favorited"><i class="fas fa-star"></i></span> </c:if> </div> </li> </c:forEach> </ol> <aside class="col-md-4 d-none d-md-block"> <%-- Side Content --%>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
</c:if> <c:if test="${favoriteSupport}"> <div class="d-sm-none"></div> <span class="d-none d-sm-inline-block"> </span> <a href="#${doc.doc_id}" class="favorite"><i class="far fa-star"></i></a> <span class="favorited"><i class="fas fa-star"></i></span> </c:if> </div> </li> </c:forEach> </ol> <aside class="col-md-4 d-none d-md-block"> <%-- Side Content --%>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:32:37 UTC 2025 - 9.1K bytes - Viewed (0) -
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) -
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) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
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) -
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)