Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 270 for Role (0.25 sec)

  1. src/main/webapp/WEB-INF/view/admin/role/admin_role_edit.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="user"/>
            <jsp:param name="menuType" value="role"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/QueryContext.java

            return queryString;
        }
    
        /**
         * Checks if role-based query filtering is enabled.
         * @return True if role query is enabled, false otherwise.
         */
        public boolean roleQueryEnabled() {
            return !disableRoleQuery;
        }
    
        /**
         * Disables role-based query filtering for this context.
         */
        public void skipRoleQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            user = new TestFessUser("testuser", null, new String[] {}, new String[] {});
            assertNull(user.getRoleNames());
    
            // Test with roles containing special characters
            roles = new String[] { "role-1", "role_2", "role.3" };
            user = new TestFessUser("testuser", roles, new String[] {}, new String[] {});
            assertArrayEquals(roles, user.getRoleNames());
        }
    
        public void test_getGroupNames() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                    final String[] langs = searchLog.getLanguages() == null ? new String[] {} : searchLog.getLanguages().split(",");
                    stream(searchLog.getRoles()).of(stream -> stream.forEach(role -> roles.add(role)));
                    if (fessConfig.isValidSearchLogPermissions(roles.toArray(new String[roles.size()]))) {
                        suggester.indexer()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                    </la:info>
                                    <la:errors/>
                                </div>
                                <a role="button" data-toggle="collapse" href="#listSearchForm" aria-expanded="false"
                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_label.properties

    labels.labeltype_title_details=Label
    labels.labeltype_name=Name
    labels.labeltype_value=Value
    labels.labeltype_included_paths=Included Paths
    labels.labeltype_excluded_paths=Excluded Paths
    labels.roletype_configuration=Role
    labels.roletype_title_details=Role
    labels.roletype_name=Name
    labels.roletype_value=Value
    labels.reqheader_configuration=Request Header
    labels.reqheader_list_name=Name
    labels.reqheader_list_web_crawling_config=Config Name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         *
         * @param withLabelType whether to include label type information (currently not used in implementation)
         * @param withRoleType whether to include role type information (currently not used in implementation)
         * @param available whether to filter only available configurations
         * @param idList the list of configuration IDs to retrieve, or null for no ID filtering
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
            if (url.startsWith("file:")) {
                return "localhost";
            }
    
            return getHost(url);
        }
    
        /**
         * Get the role types.
         * @param responseData The response data.
         * @return The role types.
         */
        protected List<String> getRoleTypes(final ResponseData responseData) {
            final List<String> roleTypeList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                logger.debug("Ignored SID: {} {}", type, sid);
            }
            return null;
        }
    
        /**
         * Creates a search role.
         * @param type The SID type.
         * @param name The account name.
         * @return The search role.
         */
        protected String createSearchRole(final int type, final String name) {
            if (fessConfig.isLdapLowercasePermissionName()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer role="contentinfo">
    	<div class="container text-center">
    		<p class="text-muted">
    			<la:message key="labels.footer.copyright" />
    		</p>
    	</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 233 bytes
    - Viewed (0)
Back to top