Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for ftp (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

                    return "file,smb,ftp";
                }
            });
    
            final ProtocolHelper protocolHelper = new ProtocolHelper();
            protocolHelper.init();
    
            assertTrue(protocolHelper.isValidFileProtocol("file:///path/to/file"));
            assertTrue(protocolHelper.isValidFileProtocol("smb://server/share"));
            assertTrue(protocolHelper.isValidFileProtocol("ftp://server/path"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            // ftp
            assertUrlLink("ftp://www.codelibs.org/", //
                    "ftp://www.codelibs.org/");
            assertUrlLink("ftp://www.codelibs.org/あ", //
                    "ftp://www.codelibs.org/あ");
            assertUrlLink("ftp://www.codelibs.org/%E3%81%82", //
                    "ftp://www.codelibs.org/%E3%81%82");
            assertUrlLink("ftp://www.codelibs.org/%z", //
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            return roleTypeList;
        }
    
        /**
         * Extracts role type information from FTP (File Transfer Protocol) response data.
         * Processes FTP metadata to extract file owner and group information.
         *
         * @param responseData the response data containing FTP metadata
         * @return a list of role type strings extracted from the FTP file permissions
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            String[] customWebProtocols = { "http:", "https:", "ftp:" };
            String[] customFileProtocols = { "file:", "smb:" };
    
            parser.setWebProtocols(customWebProtocols);
            parser.setFileProtocols(customFileProtocols);
    
            assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", true, false));
            assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", false, true));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            }
            return value;
        }
    
        /**
         * Extracts the filename from a URL, handling various protocols and URL decoding.
         * Processes HTTP, HTTPS, file, SMB, and FTP URLs appropriately.
         *
         * @param url the URL to extract filename from
         * @param encoding the character encoding (currently unused in this method)
         * @return the extracted filename, or empty string if none found
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.ftp.FtpAuthentication;
    import org.codelibs.fess.crawler.client.ftp.FtpClient;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.crawler.client.http.form.FormScheme;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/EditForm.java

     * including tracking information for optimistic locking and audit trails.
     * File configs define how to crawl and index files from local file systems, SMB shares, and FTP servers.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.service.FileAuthenticationService;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.client.ftp.FtpAuthentication;
    import org.codelibs.fess.crawler.client.smb.SmbAuthentication;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.opensearch.config.bsentity.BsFileConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 03 09:24:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

         */
        protected boolean isFileSystemPath(final String url) {
            return url.startsWith("file:") || url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("ftp:")
                    || url.startsWith("storage:");
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt

    http://foo:80/  s:http h:foo p:/
    http://foo:81/  s:http h:foo port:81 p:/
    httpa://foo:80/  s:httpa p://foo:80/
    http://foo:-80/
    https://foo:443/  s:https h:foo p:/
    https://foo:80/  s:https h:foo port:80 p:/
    ftp://foo:21/  s:ftp h:foo p:/
    ftp://foo:80/  s:ftp h:foo port:80 p:/
    gopher://foo:70/  s:gopher h:foo p:/
    gopher://foo:443/  s:gopher h:foo port:443 p:/
    ws://foo:80/  s:ws h:foo p:/
    ws://foo:81/  s:ws h:foo port:81 p:/
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top