Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for webConfigItems (0.2 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

                searchPaging(data, form);
            });
        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "webConfigItems", webConfigService.getWebConfigList(webConfigPager)); // page navi
    
            // restore from webConfigPager
            copyBeanToBean(webConfigPager, form, op -> op.include("id", "name", "urls", "description"));
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader_edit.jsp

                                                       styleClass="form-control">
                                                <c:forEach var="item" items="${webConfigItems}">
                                                    <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
                                                </c:forEach>
                                            </la:select>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 5.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader_details.jsp

                                            <th><la:message
                                                    key="labels.reqheader_web_crawling_config"/></th>
                                            <td><c:forEach var="item" items="${webConfigItems}">
                                                <c:if test="${webConfigId==item.value}">${f:h(item.label)}</c:if>
                                            </c:forEach> <la:hidden property="webConfigId"/></td>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

            for (final WebConfig webConfig : webConfigList) {
                itemList.add(createItem(webConfig.getName(), webConfig.getId().toString()));
            }
            RenderDataUtil.register(data, "webConfigItems", itemList);
        }
    
        protected Map<String, String> createItem(final String label, final String value) {
            final Map<String, String> map = new HashMap<>(2);
            map.put(Constants.ITEM_LABEL, label);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                            <th><la:message
                                                    key="labels.webauth_web_crawling_config"/></th>
                                            <td><c:forEach var="item" items="${webConfigItems}">
                                                <c:if test="${webConfigId==item.value}">${f:h(item.label)}</c:if>
                                            </c:forEach> <la:hidden property="webConfigId"/></td>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            for (final WebConfig webConfig : webConfigList) {
                itemList.add(createItem(webConfig.getName(), webConfig.getId().toString()));
            }
            RenderDataUtil.register(data, "webConfigItems", itemList);
        }
    
        protected Map<String, String> createItem(final String label, final String value) {
            final Map<String, String> map = new HashMap<>(2);
            map.put(Constants.ITEM_LABEL, label);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                                                       styleClass="form-control">
                                                <c:forEach var="item" items="${webConfigItems}">
                                                    <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
                                                </c:forEach>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig.jsp

                                                <tbody>
                                                <c:forEach var="data" varStatus="s"
                                                           items="${webConfigItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/webconfig/details/4/${f:u(data.id)}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 8.6K bytes
    - Viewed (0)
Back to top