Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for DiGeSt (0.16 sec)

  1. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.digest" class="col-sm-3 text-sm-right col-form-label">digest</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.digest"/>
                                            <la:text styleId="doc.digest" property="doc.digest" styleClass="form-control"/>
                                        </div>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            AuthScheme authScheme = null;
            if (Constants.BASIC.equals(scheme)) {
                authScheme = new BasicScheme();
            } else if (Constants.DIGEST.equals(scheme)) {
                authScheme = new DigestScheme();
            } else if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                    putResultDataBody(dataMap, fessConfig.getIndexFieldCache(), cache);
                    putResultDataBody(dataMap, fessConfig.getIndexFieldHasCache(), Constants.TRUE);
                }
            }
            // digest
            putResultDataBody(dataMap, fessConfig.getIndexFieldDigest(),
                    documentHelper.getDigest(responseData, bodyBase, dataMap, fessConfig.getCrawlerDocumentFileMaxDigestLengthAsInteger()));
            // title
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ja.properties

    labels.webauth_scheme=スキーム
    labels.webauth_username=ユーザー名
    labels.webauth_password=パスワード
    labels.webauth_parameters=パラメーター
    labels.webauth_web_crawling_config=ウェブ設定
    labels.webauth_scheme_basic=Basic
    labels.webauth_scheme_digest=Digest
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Form
    labels.log_configuration=ログファイル
    labels.log_file_name=ファイル名
    labels.log_file_date=タイムスタンプ
    labels.labeltype_configuration=ラベル
    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)
  5. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                public static final String DEFAULT_LANG = "default.lang";
                public static final String DEFAULT_CONTENT = "default.content";
                public static final String DEFAULT_DIGEST = "default.digest";
                // xapth.<field>=<value>
            }
    
            // config.*
            public static class Config {
                public static final String KEEP_ORIGINAL_BODY = "keep.original.body";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    crawler.document.html.content.xpath=//BODY
    crawler.document.html.lang.xpath=//HTML/@lang
    crawler.document.html.digest.xpath=//META[@name='description']/@content
    crawler.document.html.canonical.xpath=//LINK[@rel='canonical'][1]/@href
    crawler.document.html.pruned.tags=noscript,script,style,header,footer,aside,nav,a[rel=nofollow]
    crawler.document.html.max.digest.length=120
    crawler.document.html.default.lang=
    crawler.document.html.default.include.index.patterns=
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_digest"), Constants.DIGEST));
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_ntlm"), Constants.NTLM));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. cache */
        String INDEX_FIELD_CACHE = "index.field.cache";
    
        /** The key of the configuration. e.g. digest */
        String INDEX_FIELD_DIGEST = "index.field.digest";
    
        /** The key of the configuration. e.g. title */
        String INDEX_FIELD_TITLE = "index.field.title";
    
        /** The key of the configuration. e.g. host */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  9. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // mimetype
            defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType);
            // title
            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                return new BasicScheme();
            }
            if (Constants.DIGEST.equals(scheme)) {
                return new DigestScheme();
            }
            if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top