- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for _english_ (0.04 seconds)
-
CONTRIBUTING.md
* For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md). * Use American English spelling in code, comments, and documentation (e.g., "color" not "colour", "initialize" not "initialise"). See [ADR-0009](architecture/standards/0009-use-american-english.md) for details.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
return StringUtil.EMPTY; } }); getMockRequest().setLocale(Locale.ENGLISH); assertNull(systemHelper.getForumLink()); } @Test public void test_getHelpLink() { getMockRequest().setLocale(Locale.ENGLISH); assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return null; } final String localeName = value.trim().toLowerCase(Locale.ENGLISH).replace("-", "_"); for (final String supportedLang : supportedLanguages) { if (localeName.startsWith(supportedLang.toLowerCase(Locale.ENGLISH))) { return supportedLang; } } return null; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
validationMessagesLambda.message(messages); message = ComponentUtil.getMessageManager() .toMessageList(LaRequestUtil.getOptionalRequest().map(HttpServletRequest::getLocale).orElse(Locale.ENGLISH), messages) .stream() .collect(Collectors.joining(" ")); return this; } } /** * Represents an API response for plugin information.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} } } for (final String s : context.fessConfig.getSearchlogRequestHeadersAsArray()) { final String key = s.replace('-', '_').toLowerCase(Locale.ENGLISH); Collections.list(context.request.getHeaders(s)).stream().forEach(v -> { searchLog.addRequestHeaderValue(key, v); }); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 29.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
final Map<String, String> valueMap = new LinkedHashMap<>(); valueMap.put("action", action.replace('\t', '_').toUpperCase(Locale.ENGLISH)); valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-")); final Comparator<Map.Entry<String, String>> c = Comparator.comparing(Map.Entry::getKey);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 11:45:43 GMT 2026 - 13.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default Set<String> getSessionTrackingModesAsSet() { return split(getSessionTrackingModes(), ",") .get(stream -> stream.map(s -> s.trim().toUpperCase(Locale.ENGLISH)).collect(Collectors.toSet())); } String getQueryTrackTotalHits(); default Object getQueryTrackTotalHitsValue() { Object value = propMap.get(QUERY_TRACK_TOTAL_HITS_VALUE);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ String getCrawlerDocumentUnknownHostname(); /** * Get the value for the key 'crawler.document.use.site.encoding.on.english'. <br> * The value is, e.g. false <br> * comment: Whether to use site encoding for English documents. * @return The value of found property. (NotNull: if not found, exception but basically no way) */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/main/resources/fess_config.properties
crawler.document.site.encoding=UTF-8 # Hostname to use when unknown in documents. crawler.document.unknown.hostname=unknown # Whether to use site encoding for English documents. crawler.document.use.site.encoding.on.english=false # Whether to append data to documents. crawler.document.append.data=true # Whether to append filename to documents. crawler.document.append.filename=false
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0)