- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for minuut (0.04 sec)
-
admin_general.jsp
<la:errors property="notificationTo"/> L184: <div class="input-group"> L185: <la:text styleId="notificationTo" property="notificationTo" L186: styleClass="form-control"/> L187: <div class="input-group-append"> L188: <button type="submit" class="btn btn-default...github.com/codelibs/fess/src/main/webapp/WEB-IN...Mon Jan 16 12:54:35 UTC 2023 39.4K bytes -
AdminDictProtwordsAction.java
createProtwordsItem(final FessBaseAction action, final CreateForm form, L351: final VaErrorHook hook) { L352: return getEntity(form).map(entity -> { L353: final String newInput = form.input; L354: validateProtwordsString(action, newInput, "input", hook); L355: entity.setNewInput(newInput); L356: return entity; L357: }); L358: } L359: L360: // ===================================================================================...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 17.2K bytes -
FileConfig.java
return Constants.TRUE; L70: } L71: L72: for (final Pattern pattern : includedDocPathPatterns) { L73: if (pattern.matcher(input).matches()) { L74: return Constants.TRUE; L75: } L76: } L77: L78: for (final Pattern pattern : excludedDocPathPatterns) { L79: if (pattern.matcher(input).matches()) { L80: return Constants.FALSE; L81: } L82: } L83: L84: return Constants.TRUE; L85: L86: } L87:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.8K bytes -
StemmerOverrideFile.java
null) { L154: updater.write("# " + line); L155: } L156: continue; L157: } L158: L159: final String input = m.group(1).trim(); L160: final String output = m.group(2).trim(); L161: L162: if (input == null || output == null) { L163: logger.warn("Failed to parse {} to {}", line, path); L164: if (updater != null) { L165: updater.write("#...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
WebConfig.java
return Constants.TRUE; L74: } L75: L76: for (final Pattern pattern : includedDocUrlPatterns) { L77: if (pattern.matcher(input).matches()) { L78: return Constants.TRUE; L79: } L80: } L81: L82: for (final Pattern pattern : excludedDocUrlPatterns) { L83: if (pattern.matcher(input).matches()) { L84: return Constants.FALSE; L85: } L86: } L87: L88: return Constants.TRUE; L89: } L90: L91:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.8K bytes -
admin_maintenance.jsp
<la:errors property="replaceAliases"/> L52: <div class="form-check"> L53: <la:checkbox styleId="replaceAliases" styleClass="form-check-input" property="replaceAliases"/> L54: <label for="replaceAliases" class="form-check-label"> L55: <la:message key="labels.enabled"/> L56: ...github.com/codelibs/fess/src/main/webapp/WEB-IN...Mon Jan 16 12:54:35 UTC 2023 11.3K bytes -
advance.jsp
class="form-group row"> L106: <label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message L107: key="labels.advance_search_must_queries" L108: /></label> L109: <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6"> L110: <input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}"> L111: </div> L112: <div class="col-lg-4 d-none d-lg-flex align-items-center"> L113: </div> L114: </div> L115: <div class="form-group row"> L116: <label...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 14.9K bytes -
AdminDictStemmeroverrideAction.java
public HtmlResponse edit(final EditForm form) { L160: validate(form, messages -> {}, () -> asListHtml(form.dictId)); L161: stemmerOverrideService.getStemmerOverrideItem(form.dictId, form.id).ifPresent(entity -> { L162: form.input = entity.getInput(); L163: form.output = entity.getOutput(); L164: }).orElse(() -> { L165: throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()), L166: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 18.6K bytes -
suggestor.js
$textArea.focus(); L400: $textArea.val(strTmp); L401: } */ L402: } L403: }); L404: $(this).blur(function() { L405: if (!isMouseHover) { L406: suggestor.fixList(); L407: } L408: }); L409: L410: //monitoring input field L411: setInterval(function() { L412: if (interval < 5) { L413: interval = interval + 1; L414: } else { L415: if ($textArea.val() !== inputText) { L416: if (!isFocusList && started && !suggestingSts) { L417:...github.com/codelibs/fess/src/main/webapp/js/sug...Thu Mar 30 05:45:24 UTC 2023 13.3K bytes -
FessSearchAction.java
queryBuf.append(URLUtil.encode(entry.getValue(), Constants.UTF_8)); L222: queryBuf.append('='); L223: queryBuf.append(URLUtil.encode(entry.getKey(), Constants.UTF_8)); L224: formBuf.append("<input type=\"hidden\" name=\""); L225: formBuf.append(StringEscapeUtils.escapeHtml4(entry.getValue())); L226: formBuf.append("\" value=\""); L227: formBuf.append(StringEscapeUtils.escapeHtml4(entry.getKey()));...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K bytes