Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for logType (0.03 sec)

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

         *
         * @param logType The type of log to retrieve (search, click, favorite, userinfo)
         * @param id The ID of the log entry
         * @return Optional entity containing the log entry if found
         */
        public OptionalEntity<?> getSearchLog(final String logType, final String id) {
            if (SearchLogPager.LOG_TYPE_CLICK.equalsIgnoreCase(logType)) {
                return clickLogBhv.selectByPK(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                    </c:if>
                                                    <c:if test="${logType.startsWith('search_keyword_') or logType.startsWith('search_zerohit_')} or logType.endsWith('_count_agg')}">
                                                        <th><la:message
                                                                key="labels.searchlog_value"/></th>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

                op.setup(form -> {
                    form.id = id;
                    form.logType = logType;
                    form.crudMode = crudMode;
                });
            }).renderWith(data -> {
                RenderDataUtil.register(data, "logParamItems", searchLogService.getSearchLogMap(logType, id));
            });
        }
    
        // -----------------------------------------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp

            <section class="content">
                <la:form action="/admin/searchlog/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==4}">
                        <la:hidden property="logType"/>
                        <la:hidden property="id"/>
                    </c:if>
                    <div class="row">
                        <div class="col-md-12">
                            <div
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

    import org.codelibs.fess.crawler.entity.RequestData;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.entity.UrlQueue;
    import org.codelibs.fess.crawler.log.LogType;
    import org.codelibs.fess.exception.ContainerNotAvailableException;
    import org.codelibs.fess.exception.ContentNotFoundException;
    import org.codelibs.fess.helper.CrawlingConfigHelper;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getTimeAdjustTimeMillis();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top