Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for allintitle (0.34 sec)

  1. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

        }
    
        public void test_conditions_occurrence() {
            final String k = "occt";
            assertEquals("allintitle:", getAsQuery(Collections.singletonMap(k, new String[] { "allintitle" })));
            assertEquals("allinurl:", getAsQuery(Collections.singletonMap(k, new String[] { "allinurl" })));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

        }
    
        // Test constructor with allintitle prefix
        public void test_constructor_allintitlePrefix() {
            queryContext = new QueryContext("allintitle:test query", false);
            assertEquals("test query", queryContext.getQueryString());
            assertEquals("title", queryContext.getDefaultField());
        }
    
        // Test constructor with allintitle prefix and empty remainder
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

         * Checks if a value represents an occurrence-based search modifier.
         * Currently supports "allintitle" and "allinurl" modifiers.
         *
         * @param value the value to check
         * @return true if the value is an occurrence modifier, false otherwise
         */
        protected boolean isOccurrence(final String value) {
            return "allintitle".equals(value) || "allinurl".equals(value);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    					<select id="as_occt" name="as.occt" class="form-control">
    						<option value=""><la:message key="labels.advance_search_occt_default" /></option>
    						<option value="allintitle" <c:if test="${as.occt.contains('allintitle')}">selected</c:if>><la:message
    								key="labels.advance_search_occt_allintitle"
    							/></option>
    						<option value="allinurl" <c:if test="${as.occt.contains('allinurl')}">selected</c:if>><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/advance.jsp

    					<select id="as_occt" name="as.occt" class="form-control">
    						<option value=""><la:message key="labels.advance_search_occt_default" /></option>
    						<option value="allintitle" <c:if test="${as.occt.contains('allintitle')}">selected</c:if>><la:message
    								key="labels.advance_search_occt_allintitle"
    							/></option>
    						<option value="allinurl" <c:if test="${as.occt.contains('allinurl')}">selected</c:if>><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/QueryContext.java

        protected static final String ALLINURL_FIELD_PREFIX = "allinurl:";
    
        /** Prefix for queries that search only in title fields. */
        protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:";
    
        /** The OpenSearch query builder used for executing the search. */
        protected QueryBuilder queryBuilder;
    
        /** List of sort builders to apply to the search query. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("title", List.of("*")), //
                    Set.of(), //
                    buildQuery("allintitle:"));
            assertQueryContext(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top