Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for httpie (0.21 sec)

  1. src/test/resources/plugin/repo2/index.html

        <title>Index of /repositories/snapshots/org/codelibs/fess</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    
        <link rel="icon" type="image/png" href="https://oss.sonatype.org/favicon.png">
        <!--[if IE]>
        <link rel="SHORTCUT ICON" href="https://oss.sonatype.org/favicon.ico"/>
        <![endif]-->
    
    HTML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 13 07:34:14 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertUrlLink("http://www.codelibs.org/?a=1&b=2", //
                    "http://www.codelibs.org/?a=1&b=2");
    
            // https
            assertUrlLink("https://www.codelibs.org/", //
                    "https://www.codelibs.org/");
            assertUrlLink("https://www.codelibs.org/あ", //
                    "https://www.codelibs.org/あ");
            assertUrlLink("https://www.codelibs.org/%E3%81%82", //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  3. pom.xml

    		</dependency>
    		<dependency>
    			<groupId>com.google.http-client</groupId>
    			<artifactId>google-http-client-jackson2</artifactId>
    			<version>${google.http.client.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.google.http-client</groupId>
    			<artifactId>google-http-client-xml</artifactId>
    			<version>${google.http.client.version}</version>
    			<exclusions>
    				<exclusion>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/main/webapp/js/clipboard.min.js

    /*!
     * clipboard.js v2.0.4
     * https://zenorocha.github.io/clipboard.js
     * 
     * Licensed MIT © Zeno Rocha
     */
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat May 28 04:16:16 GMT 2022
    - 10.5K bytes
    - Viewed (2)
  5. src/main/webapp/js/admin/adminlte.min.js

    /*!
     * AdminLTE v3.0.2 (https://adminlte.io)
     * Copyright 2014-2020 Colorlib <http://colorlib.com>
     * Licensed under MIT (https://github.com/ColorlibHQ/AdminLTE/blob/master/LICENSE)
     */
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 23.7K bytes
    - Viewed (3)
  6. src/main/resources/fess_label_ja.properties

    labels.menu_related_content=関連コンテンツ
    labels.menu_related_query=関連クエリー
    labels.sidebar.placeholder_search=検索...
    labels.menu_plugin=プラグイン
    labels.menu_storage=ストレージ
    labels.sidebar.menu=メニュー
    labels.footer.copyright=&copy;2024 <a href="https://github.com/codelibs">CodeLibs Project</a>.
    labels.search=検索
    labels.similar_doc_result_status=類似している結果を表示しています。
    labels.search_result_status=<b>{0}</b> の検索結果<span class="br-phone"></span> <b>{1}</b> 件中 <b>{2}</b> - <b>{3}</b> 件目
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        }
    
        protected boolean isWebCrawlingPath(final String path) {
            if (path.startsWith("http:") || path.startsWith("https:")) {
                return true;
            }
    
            return false;
        }
    
        protected String convertCrawlingPath(final String path) {
            if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:")
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                throw new PluginException("url is blank: " + artifact.getName());
            }
            if (url.startsWith("http:") || url.startsWith("https:")) {
                try (final CurlResponse response = createCurlRequest(url).execute()) {
                    if (response.getHttpStatusCode() != 200) {
                        throw new PluginException("HTTP Status " + response.getHttpStatusCode() + " : failed to get the artifact from " + url);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final boolean isHttpUrl = url.startsWith("http:") || url.startsWith("https:");
    
            if (isSmbUrl) {
                url = url.replace("smb:", "file:");
                url = url.replace("smb1:", "file:");
            }
    
            if (isHttpUrl && isSmbOrFtpUrl) {
                //  smb/ftp->http
                // encode
                final StringBuilder buf = new StringBuilder(url.length() + 100);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  10. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    
    import javax.annotation.Resource;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpSession;
    
    import org.apache.commons.text.StringEscapeUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.net.URLUtil;
    import org.codelibs.fess.Constants;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top