Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for siteb (0.16 sec)

  1. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "{\"term\":{\"url\":{\"value\":\"aaa\",\"boost\":1.0}}}", //
                    "url:aaa");
            assertQueryBuilder(PrefixQueryBuilder.class, //
                    "{\"prefix\":{\"site\":{\"value\":\"aaa\",\"boost\":1.0}}}", //
                    "site:aaa");
    
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc");
    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)
  2. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.site" class="col-sm-3 text-sm-right col-form-label">site</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.site"/>
                                            <la:text styleId="doc.site" property="doc.site" 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)
  3. src/main/webapp/WEB-INF/view/common/help.jsp

    		":" and then the term you are looking for. If you want to find
    		documents which has "Fess" as the document title, you can enter:
    		<pre>title:Fess</pre>
    		The available fields are "url", "host", "site", "title", "content",
    		"content_length", "last_modified" and "mimetype", and they are
    		customizable.
    	</dd>
    	<dt>Sort</dt>
    	<dd>
    		sort field sorts documents by a specified field name. The format is
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                    putResultDataBody(dataMap, titleField, fileName);
                }
            }
            // host
            putResultDataBody(dataMap, fessConfig.getIndexFieldHost(), getHostOnFile(url));
            // site
            putResultDataBody(dataMap, fessConfig.getIndexFieldSite(), getSiteOnFile(url, urlEncoding));
            // filename
            if (StringUtil.isNotBlank(fileName)) {
    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)
  5. pom.xml

    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    				<artifactId>dbflute-maven-plugin</artifactId>
    				<configuration>
    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)
  6. src/main/resources/fess_label_ja.properties

    labels.searchoptions_menu_num=件数
    labels.searchoptions_num={0} 件
    labels.searchoptions_menu_lang=言語
    labels.searchoptions_menu_labels=ラベル
    labels.error_title=エラー
    labels.system_error_title=システムエラー
    labels.contact_site_admin=サイト管理者にお問い合わせください。
    labels.request_error_title=リクエスト形式が正しくありません。
    labels.bad_request=URLへのリクエストが正しくありません。
    labels.page_not_found_title=ページが見つかりません。
    labels.check_url=URLを確認してください。
    labels.user_name=ユーザー名
    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/helper/ViewHelper.java

            if (siteValue != null) {
                final String site = siteValue.toString();
                final int size = fessConfig.getResponseMaxSitePathLengthAsInteger();
                if (size > -1) {
                    return StringUtils.abbreviate(site, size);
                }
                return site;
            }
            final Object urlLink = docMap.get(fessConfig.getResponseFieldUrlLink());
    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)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. site_path */
        String RESPONSE_FIELD_site_path = "response.field.site_path";
    
        /** The key of the configuration. e.g. 50 */
        String RESPONSE_MAX_TITLE_LENGTH = "response.max.title.length";
    
        /** The key of the configuration. e.g. 100 */
        String RESPONSE_MAX_SITE_PATH_LENGTH = "response.max.site.path.length";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. src/main/webapp/js/admin/popper.min.js.map

    else {\n    // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n    const invertTop = sideA === 'bottom' ? -1 : 1;\n    const invertLeft = sideB === 'right' ? -1 : 1;\n    styles[sideA] = top * invertTop;\n    styles[sideB] = left * invertLeft;\n    styles.willChange = `${sideA}, ${sideB}`;\n  }\n\n  // Attributes\n  const attributes = {\n    'x-placement': data.placement,\n  };\n\n  // Update `data` attributes, styles and arrowStyles\n  data.attributes = { ...attributes,...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  10. deps.xml

    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    			</patternset>
    			<cutdirsmapper dirs="2" />
    		</unzip>
    		<!-- fess-script-groovy -->
    		<antcall target="install.plugin.jar">
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top