Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for allinurl (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top