Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 148 for doc_id (0.05 sec)

  1. profile.js

    function(event) { L39: var button = $(event.relatedTarget), L40: docId = button.data("docid"), L41: title = button.data("title"), L42: url = button.data("url"); L43: L44: $(this) L45: .find(".modal-body #delete-doc-title") L46: .text(title); L47: $(this) L48: .find(".modal-body #delete-doc-url") L49: .text(url); L50: $(this) L51: .find(".modal-footer input#docId") L52: .val(docId); L53: }); L54:});...
    github.com/codelibs/fess/src/main/webapp/js/pro...
    Wed Sep 12 06:47:49 UTC 2018
      1.3K bytes
  2. CacheAction.java

    doc = null; L56: try { L57: doc = searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getCacheResponseFields(), getUserBean()).orElse(null); L58: } catch (final Exception e) { L59: logger.warn("Failed to request: {}", form.docId, e); L60: } L61: if (doc == null) { L62: saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); L63: return redirect(ErrorAction.class); L64: } L65: L66: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.4K bytes
  3. admin_dict_stemmeroverride_download.jsp

    la:link href="/admin/dict"> L28: <la:message key="labels.dict_list_link"/> L29: </la:link></li> L30: <li class="breadcrumb-item"><la:link href="../list/1/?dictId=${f:u(dictId)}"> L31: <la:message key="labels.dict_stemmeroverride_list_link"/> L32: </la:link></li> L33: <li class="breadcrumb-item active"><la:message L34: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      6K bytes
  4. admin_dict_protwords_edit.jsp

    la:link href="/admin/dict"> L28: <la:message key="labels.dict_list_link"/> L29: </la:link></li> L30: <li class="breadcrumb-item"><la:link href="../list/1/?dictId=${f:u(dictId)}"> L31: <la:message key="labels.dict_protwords_list_link"/> L32: </la:link></li> L33: <c:if test="${crudMode == 1}"> L34: <li...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      6.9K bytes
  5. admin_dict_stemmeroverride_edit.jsp

    la:link href="/admin/dict"> L28: <la:message key="labels.dict_list_link"/> L29: </la:link></li> L30: <li class="breadcrumb-item"><la:link href="../list/1/?dictId=${f:u(dictId)}"> L31: <la:message key="labels.dict_stemmeroverride_list_link"/> L32: </la:link></li> L33: <c:if test="${crudMode == 1}"> L34: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      7.5K bytes
  6. ThumbnailAction.java

    = L55: searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getResponseFields(), getUserBean()).orElse(null); L56: final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldThumbnail(), String.class); L57: if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { L58: // 404 L59: throw responseManager.new404("Thumbnail for " + form.docId + " is not found."); L60: } L61: L62: final File...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.6K bytes
  7. fess_log_favorite_log.json

    : { L3: "aliases" : { }, L4: "mappings" : { L5: "favorite_log" : { L6: "properties" : { L7: "createdAt" : { L8: "type" : "date", L9: "format" : "date_optional_time" L10: }, L11: "docId" : { L12: "type" : "keyword" L13: }, L14: "queryId" : { L15: "type" : "keyword" L16: }, L17: "url" : { L18: "type" : "keyword" L19: }, L20: "userInfoId" : { L21:...
    github.com/codelibs/fess/src/main/config/es/fes...
    Sun Nov 05 07:28:42 UTC 2017
      855 bytes
  8. ThumbnailManager.java

    fessConfig = ComponentUtil.getFessConfig(); L299: final String docid = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldDocId(), String.class); L300: return getImageFilename(docid); L301: } L302: L303: protected String getImageFilename(final String docid) { L304: final StringBuilder buf = new StringBuilder(50); L305: for (int i = 0; i < docid.length(); i += splitSize) { L306: int hash = docid.substring(i).hashCode() % splitHashSize; L307: if (hash...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      21.5K bytes
  9. SearchLogHelper.java

    DocumentUtil.getValue(doc, fessConfig.getIndexFieldId(), String.class); L397: final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class); L398: if (id != null && docId != null && clickCountMap.containsKey(docId)) { L399: final Integer count = clickCountMap.get(docId); L400: final Script script = ComponentUtil.getLanguageHelper().createScript(doc,...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
  10. GoForm.java

    java.util.HashMap; L19:import java.util.Map; L20: L21:import org.lastaflute.web.validation.Required; L22: L23:import jakarta.validation.constraints.Size; L24: L25:public class GoForm { L26: @Required L27: @Size(max = 100) L28: public String docId; L29: L30: @Size(max = 10000) L31: @Required L32: public String rt; L33: L34: public String hash; L35: L36: @Required L37: public String queryId; L38: L39: public Integer order; L40: L41: // for error page L42: L43: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.2K bytes
Back to top