- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 22 for isSecure (0.31 seconds)
-
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
DuplicateHost host2 = new DuplicateHost(); host2.setRegularName("secure.example.com"); host2.setDuplicateHostName("www.example.com"); helper.duplicateHostList.add(host2); String url = "http://example.com/test"; String result = helper.convert(url); assertEquals("http://secure.example.com/test", result); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
} @Test public void test_render_link_https() { String result = markdownRenderer.render("[Secure Link](https://example.com)"); assertTrue(result.contains("<a")); assertTrue(result.contains("href=\"https://example.com\"")); assertTrue(result.contains("Secure Link")); } @Test public void test_render_horizontalRule() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/assemblies/files/tomcat_config.properties
# Tomcat # ------ tomcat.URIEncoding = UTF-8 tomcat.useBodyEncodingForURI = true #tomcat.secure=false #tomcat.scheme=http #tomcat.bindAddress=127.0.0.1 #tomcat.proxyPort=
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Aug 11 21:43:37 GMT 2018 - 639 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/annotation/Secured.java
@Retention(RetentionPolicy.RUNTIME) @Inherited @Documented public @interface Secured { /** * Returns the list of security configuration attributes (e.g. ROLE_USER, ROLE_ADMIN). * * @return String[] The secure method attributes */ String[] value();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
public void test_convertCrawlingPath_https_protocol() { assertEquals("https://example.com", wizardAction.convertCrawlingPath("https://example.com")); assertEquals("https://secure.example.com/path", wizardAction.convertCrawlingPath("https://secure.example.com/path")); } @Test public void test_convertCrawlingPath_smb_protocol() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This method searches for 'fess_ds++.xml' configuration files within JAR files * in the data store plugin directory and extracts component class names. * * <p>The method uses secure XML parsing features to prevent XXE attacks and * other XML-based vulnerabilities. Component class names are extracted from * the 'class' attribute of 'component' elements in the XML files.</p> *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
import jakarta.servlet.ServletOutputStream; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * API manager for search engine administrative operations. * Provides secure access to search engine APIs through authentication and token-based authorization. */ public class SearchEngineApiManager extends BaseApiManager { private static final String ADMIN_SERVER = "/admin/server_";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:40 GMT 2026 - 13.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* which is commonly used for Kerberos-based authentication in Windows environments. * It handles the negotiation between client and server to establish a secure * authentication context without requiring users to explicitly enter credentials. * * The authenticator supports various configuration options including delegation,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
@Test public void test_isFileSystemPath_https_protocol_not_file_system() { assertFalse(goAction.isFileSystemPath("https://example.com/path/file.txt")); assertFalse(goAction.isFileSystemPath("https://secure.example.com/file.txt")); } @Test public void test_isFileSystemPath_other_protocols_not_file_system() { assertFalse(goAction.isFileSystemPath("mailto:******@****.***"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
*/ public GsaConfigParser() { super(); } /** * Parses a GSA configuration XML file from the given input source. * This method configures a secure SAX parser and processes the XML content * to extract configuration information for web and file crawling. * * @param is the input source containing the GSA configuration XMLCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0)