Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for body (0.02 sec)

  1. ApiAdminJoblogAction.java

    ============== L52: L53: // GET /api/admin/joblog/logs L54: @Execute L55: public JsonResponse<ApiResult> logs(final SearchBody body) { L56: validateApi(body, messages -> {}); L57: final JobLogPager pager = copyBeanToNewBean(body, JobLogPager.class); L58: final List<JobLog> list = jobLogService.getJobLogList(pager); L59: return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(this::...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.1K bytes
  2. system.jsp

    ss')}" rel="stylesheet" L10: type="text/css" /> L11:<link href="${fe:url('/css/style.css')}" rel="stylesheet" L12: type="text/css" /> L13:<link href="${fe:url('/css/font-awesome.min.css')}" L14: rel="stylesheet" type="text/css" /> L15:</head> L16:<body class="error"> L17: <jsp:include page="../header.jsp" /> L18: <main class="container"> L19: <div class="text-center"> L20: <h2> L21: <la:message key="labels.system_error_title" /> L22: </h2> L23: <div class="errormessage"><la:message key...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      1.4K bytes
  3. index.jsp

    js')}"></script> L15:<![endif]--> L16:</head> L17:<body class="hold-transition login-page"> L18: <div class="login-box"> L19: <div class="login-logo"> L20: <la:link href="/"> L21: <img src="${fe:url('/images/logo-top.png')}" L22: alt="<la:message key="labels.header_brand_name" />" /> L23: </la:link> L24: </div> L25: <div class="notification">${notification}</div> L26: <div class="card"> L27: <div class="card-body login-card-body"> L28: <p class="login-box-msg"> L29: <la:message...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
  4. FileAuthTests.java

    requestBody.put("boost", 100.0); L75: requestBody.put("available", true); L76: requestBody.put("sort_order", 1); L77: checkMethodBase(requestBody).put("/api/admin/fileconfig/setting").then().body("response.created", equalTo(true)) L78: .body("response.status", equalTo(0)); L79: } L80: L81: String getFileConfigId() { L82: final Map<String, Object> searchBody = new HashMap<>(); L83: searchBody.put("name", "test_fileconfig"); L84: String...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  5. newpassword.jsp

    src="${fe:url('/css/admin/respond.min.js')}"></script> L15:<![endif]--> L16:</head> L17:<body class="hold-transition login-page"> L18: <div class="login-box"> L19: <div class="login-logo"> L20: <la:link href="/"> L21: <img src="${fe:url('/images/logo-top.png')}" L22: alt="<la:message key="labels.header_brand_name" />" /> L23: </la:link> L24: </div> L25: <div class="card"> L26: <div class="card-body login-card-body"> L27: <p class="login-box-msg"> L28: <la:message key="labels.login.newpassword"...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
  6. index.jsp

    js')}"></script> L15:<![endif]--> L16:</head> L17:<body class="hold-transition login-page"> L18: <div class="login-box"> L19: <div class="login-logo"> L20: <la:link href="/"> L21: <img src="${fe:url('/images/logo-top.png')}" L22: alt="<la:message key="labels.header_brand_name" />" /> L23: </la:link> L24: </div> L25: <div class="notification">${notification}</div> L26: <div class="card"> L27: <div class="card-body login-card-body"> L28: <p class="login-box-msg"> L29: <la:message...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      3K bytes
  7. ApiAdminDocumentsAction.java

    // POST /api/admin/documents/bulk L61: @Execute L62: public JsonResponse<ApiResult> post$bulk(final BulkBody body) { L63: validateApi(body, messages -> {}); L64: if (body.documents == null) { L65: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, "documents is required.")); L66: } L67: if (body.documents.isEmpty()) { L68: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      7.5K bytes
  8. admin_upgrade.jsp

    L3:<head> L4: <meta charset="UTF-8"> L5: <title><la:message key="labels.admin_brand_title" /> | <la:message L6: key="labels.upgrade_title_configuration" /></title> L7: <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include> L8:</head> L9:<body class="hold-transition sidebar-mini"> L10: <div class="wrapper"> L11: <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include> L12: <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> L13: <jsp:param name="menuCategoryType"...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sun Sep 22 07:32:24 UTC 2024
      4.3K bytes
  9. ApiAdminDictMappingAction.java

    L148: } L149: L150: protected EditBody createEditBody(final CharMappingItem entity, final String dictId) { L151: final EditBody body = new EditBody(); L152: body.id = entity.getId(); L153: body.dictId = dictId; L154: body.inputs = entity.getInputsValue(); L155: body.output = entity.getOutput(); L156: return body; L157: } L158:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
  10. ApiAdminDictStemmeroverrideAction.java

    L148: } L149: L150: protected EditBody createEditBody(final StemmerOverrideItem entity, final String dictId) { L151: final EditBody body = new EditBody(); L152: body.id = entity.getId(); L153: body.dictId = dictId; L154: body.input = entity.getInput(); L155: body.output = entity.getOutput(); L156: return body; L157: } L158:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.5K bytes
Back to top