Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for mimetype (0.08 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            // mimetype
            putResultDataBody(dataMap, fessConfig.getIndexFieldMimetype(), mimeType);
            if (fileTypeHelper != null) {
                // filetype
                putResultDataBody(dataMap, fessConfig.getIndexFieldFiletype(), fileTypeHelper.get(mimeType));
            }
            // content_length
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/doc.json

          },
          "filetype": {
            "type": "keyword"
          },
          "host": {
            "type": "keyword"
          },
          "lang": {
            "type": "keyword"
          },
          "last_modified": {
            "type": "date",
            "format": "date_optional_time"
          },
          "location": {
            "type": "geo_point"
          },
          "mimetype": {
            "type": "keyword"
          },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/main/resources/app.xml

    	<include path="fess_rankfusion.xml"/>
    	<include path="fess_score.xml"/>
    	<include path="fess_sso.xml"/>
    	<include path="fess_thumbnail.xml"/>
    
    	<include path="crawler/client.xml" />
    	<include path="crawler/mimetype.xml" />
    
    	<component name="accessTokenHelper" class="org.codelibs.fess.helper.AccessTokenHelper">
    	</component>
    	<component name="activityHelper" class="org.codelibs.fess.helper.ActivityHelper">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         * @param style the CSS class name for styling
         * @param mimetype the MIME type of the content (currently unused)
         * @param input the code content to format
         * @return HTML formatted code with line numbers and styling
         */
        public static String formatCode(final String prefix, final String style, final String mimetype, final String input) {
            if (input == null) {
                return StringUtil.EMPTY;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

        public void test_convertFuzzyQuery_withVariousFields() {
            QueryContext context = new QueryContext("test", false);
            String[] fields = { "title", "content", "url", "site", "host", "mimetype" };
    
            for (String field : fields) {
                Term term = new Term(field, "fuzzy");
                FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                }
    
                @Override
                public String getIndexFieldMimetype() {
                    return "mimetype";
                }
    
                @Override
                public String getIndexFieldFiletype() {
                    return "filetype";
                }
    
                @Override
                public String getIndexFieldFilename() {
                    return "filename";
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/fe.tld

        <function-signature>java.lang.String formatCode(java.lang.String, java.lang.String, java.lang.String, java.lang.String)</function-signature>
        <example>${fe:formatCode("L", "prettyprint", doc.mimetype, doc.content_description)}</example>
      </function>
    
      <function>
        <description>Mask e-mail address.</description>
        <name>maskEmail</name>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/help_ja.jsp

    	<dd>
    		フィールド名の後にコロン : で指定した任意のフィールドで検索することができます。
    		たとえば、ドキュメントの title フィールドで Fess を含むドキュメントを検索する場合は次のように入力します。
    		<pre>title:Fess</pre>
    		標準で利用可能なフィールドは url, host, site, title, content,
    		content_length, last_modified および mimetype になります。
    		設定で指定するフィールドは変更することができます。
    	</dd>
    	<dt>ソート</dt>
    	<dd>
    		sort 演算子は指定したフィールド名でドキュメントをソートします。
    		sort 演算子の利用方法は sort:&lt;field&gt;.&lt;order&gt; になります。
    		&lt;order&gt; は asc または desc で昇順・降順を指定できます。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                public boolean isAppendQueryParameter() {
                    return true;
                }
    
                public String getIndexFieldMimetype() {
                    return "mimetype";
                }
            });
    
            document.put("mimetype", "text/html");
            String resultUrl = viewHelper.appendQueryParameter(document, url);
            assertNotNull(resultUrl);
    
            url = "http://example.com/test.html#section";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

                    return "timestamp";
                }
    
                @Override
                public String getIndexFieldMimetype() {
                    return "mimetype";
                }
    
                @Override
                public String getIndexFieldFiletype() {
                    return "filetype";
                }
    
                @Override
                public String getIndexFieldFilename() {
                    return "filename";
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top