Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for favorite (0.17 sec)

  1. src/main/resources/fess_indices/fess_log.favorite_log/favorite_log.json

    Shinsuke Sugaya <******@****.***> 1551046046 +0900
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Feb 24 22:07:26 GMT 2019
    - 335 bytes
    - Viewed (0)
  2. src/main/config/es/fess_log_favorite_log.json

    {
      "fess_log.favorite_log" : {
        "aliases" : { },
        "mappings" : {
          "favorite_log" : {
            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "docId" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "url" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Nov 05 07:28:42 GMT 2017
    - 855 bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_log.favorite_log.json

    Shinsuke Sugaya <******@****.***> 1524115279 +0900
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 19 05:21:19 GMT 2018
    - 173 bytes
    - Viewed (0)
  4. 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);
                });
              }
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 7.5K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            if (FormatType.POPULARWORD.name().equals(type)) {
                return FormatType.POPULARWORD;
            }
            if (FormatType.FAVORITE.name().equals(type)) {
                return FormatType.FAVORITE;
            }
            if (FormatType.FAVORITES.name().equals(type)) {
                return FormatType.FAVORITES;
            }
            if (FormatType.PING.name().equals(type)) {
                return FormatType.PING;
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        public static final String LOG_TYPE_CLICK = "click";
    
        public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg";
    
        public static final String LOG_TYPE_FAVORITE = "favorite";
    
        public static final String LOG_TYPE_FAVORITE_COUNT = "favorite_count_agg";
    
        public static final String LOG_TYPE_USERINFO = "user_info";
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    				</la:option>
    			</c:if>
    			<c:if test="${favoriteSupport}">
    				<la:option value="favorite_count.asc">
    					<la:message key="labels.search_result_sort_favorite_count_asc" />
    				</la:option>
    				<la:option value="favorite_count.desc">
    					<la:message key="labels.search_result_sort_favorite_count_desc" />
    				</la:option>
    			</c:if>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Jul 17 08:19:53 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/searchOptions.jsp

    				</la:option>
    			</c:if>
    			<c:if test="${favoriteSupport}">
    				<la:option value="favorite_count.asc">
    					<la:message key="labels.search_result_sort_favorite_count_asc" />
    				</la:option>
    				<la:option value="favorite_count.desc">
    					<la:message key="labels.search_result_sort_favorite_count_desc" />
    				</la:option>
    			</c:if>
    		</la:select>
    	</fieldset>
    	<fieldset class="form-group">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Jul 17 08:19:53 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                });
            } else if (SearchLogPager.LOG_TYPE_FAVORITE_COUNT.equalsIgnoreCase(pager.logType)) {
                list = (EsPagingResultBean<?>) favoriteLogBhv.selectPage(cb -> {
                    cb.fetchFirst(0);
                    createFavoriteLogCondition(pager, cb);
                    cb.aggregation().setUrl_Terms(SearchLogPager.LOG_TYPE_FAVORITE_COUNT, op -> {
                        op.size(pager.getPageSize());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
Back to top