- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for allinurl (0.05 sec)
-
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
final String k = "occt"; assertEquals("allintitle:", getAsQuery(Collections.singletonMap(k, new String[] { "allintitle" }))); assertEquals("allinurl:", getAsQuery(Collections.singletonMap(k, new String[] { "allinurl" }))); assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "invalid" }))); assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "" }))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
} // Test constructor with allinurl prefix public void test_constructor_allinurlPrefix() { queryContext = new QueryContext("allinurl:test query", false); assertEquals("test query", queryContext.getQueryString()); assertEquals("url", queryContext.getDefaultField()); } // Test constructor with allinurl 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) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
* 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) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<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 key="labels.advance_search_occt_allinurl" /></option> </select> </div> </div> <div class="mb-3 row">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<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 key="labels.advance_search_occt_allinurl" /></option> </select> </div> </div> <div class="mb-3 row">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
*/ public class QueryContext { /** Prefix for queries that search only in URL fields. */ 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. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/QueryHelperTest.java
Map.of("url", List.of("*")), // Set.of(), // buildQuery("allinurl:")); 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) -
src/main/resources/fess_label_it.properties
labels.error_title=Errore labels.system_error_title=Errore di sistema labels.contact_site_admin=Contatta l'amministratore del sito. labels.request_error_title=Formato richiesta non valido. labels.bad_request=La richiesta all'URL non รจ valida. labels.page_not_found_title=Pagina non trovata. labels.check_url=Controlla l'URL. labels.user_name=Nome utente labels.login=Accedi labels.login.placeholder_username=Nome utente
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0)