Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for as_filetype (0.05 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public static final String AS_EPQ = "epq";
    
        /** The parameter for query. */
        public static final String AS_Q = "q";
    
        /** The parameter for filetype. */
        public static final String AS_FILETYPE = "filetype";
    
        /** The parameter for sitesearch. */
        public static final String AS_SITESEARCH = "sitesearch";
    
        /** The parameter for occurrence. */
        public static final String AS_OCCURRENCE = "occt";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/advance.jsp

    					</select>
    				</div>
    			</div>
    			<div class="mb-3 row">
    				<label for="as_filetype" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_filetype"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<select id="as_filetype" name="as.filetype" class="form-control">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/orig/view/advance.jsp

    					</select>
    				</div>
    			</div>
    			<div class="mb-3 row">
    				<label for="as_filetype" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_filetype"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<select id="as_filetype" name="as.filetype" class="form-control">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        public void test_hasConditionQuery_withFileType() {
            // Test with file type
            testParams.conditions.put(SearchRequestParams.AS_FILETYPE, new String[] { "pdf" });
            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        public void test_hasConditionQuery_withMultipleConditions() {
            // Test with multiple conditions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                        queryBuf.append(' ').append(nq);
                    }));
            stream(conditions.get(SearchRequestParams.AS_FILETYPE))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength)
                            .forEach(q -> queryBuf.append(" filetype:\"").append(q.trim()).append('"')));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top