Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for minuut (0.04 sec)

  1. 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
  2. admin_plugin.jsp

    <la:form action="/admin/plugin/"> L118: <input type="hidden" name="name" L119: value="${f:h(artifact.name)}"> L120: <input type="hidden" name="version" L121: value...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      10.5K bytes
  3. admin_failureurl.jsp

    <div class="form-inline col-sm-10"> L60: <div> L61: <la:errors property="errorCountMin"/> L62: <input type="number" name="errorCountMin" id="errorCountMin" L63: value="${f:h(errorCountMin)}" class="form-control" L64: min="0" max="100000"> L65: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      13.3K bytes
  4. 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
  5. 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
  6. 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
  7. admin_design.jsp

    key="labels.design_file"/></label> L155: <div class="form-inline col-sm-9"> L156: <la:errors property="designFile"/> L157: <input type="file" name="designFile" class="form-control-file"/> L158: </div> L159: </div> L160: <div class="form-group row"> L161: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Wed Feb 12 20:25:27 UTC 2020
      11.1K bytes
  8. security.js

    dValidator({name:"confirmation",validatorFunction:function(b,c,d,e,f){var g,h=c.valAttr("confirm")||c.attr("name")+"_confirmation",i=f.find('[name="'+h+'"]');if(!i.length)return a.formUtils.warn('Password confirmation validator: could not find an input with name "'+h+'"',!0),!1;if(g=i.val(),d.validateOnBlur&&!i[0].hasValidationCallback){i[0].hasValidationCallback=!0;var j=function(){c.validate()};i.on("keyup",j),f.one("formValidationSetup",function(){i[0].hasValidationCallback=!1,i.off("keyup",j)})}return...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      10.5K bytes
  9. admin_user_edit.jsp

    key="labels.user_uidNumber"/></label> L359: <div class="col-sm-9"> L360: <la:errors property="attributes.uidNumber"/> L361: <input type="number" id="attributes.uidNumber" name="attributes.uidNumber" class="form-control"/> L362: </div> L363: </div> L364: <div class="form-group...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Fri Feb 14 12:15:45 UTC 2020
      31.4K bytes
  10. 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
Back to top