Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 29 for docId (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

                String docId = docs.get(0).get("doc_id").toString();
    
                // Set favorite
                Map<String, String> params = new HashMap<>();
                params.put("queryId", queryId);
    
                Response response =
                        given().contentType("application/json").params(params).when().post("/api/v1/documents/" + docId + "/favorite");
    
                // Should return 200 or 201
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. src/main/webapp/js/login.js

        var button = $(event.relatedTarget);
        var docId = button.data("docid");
        var title = button.data("title");
        var url = button.data("url");
    
        var $modal = $(this);
        $modal.find(".modal-body #delete-doc-title").text(title);
        $modal.find(".modal-body #delete-doc-url").text(url);
        $modal.find(".modal-footer input#docId").val(docId);
      });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                // Override to avoid null pointer issues
                final String docid = (String) docMap.get("_id");
                if (docid == null) {
                    return "default.jpg";
                }
                return getImageFilename(docid);
            }
    
            @Override
            public void destroy() {
                // Override to avoid null pointer issues with thread
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                                        final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
                                        if (id != null && docId != null && clickCountMap.containsKey(docId)) {
                                            final Integer count = clickCountMap.get(docId);
                                            final Script script = ComponentUtil.getLanguageHelper()
    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)
  5. src/main/java/org/codelibs/fess/entity/ChatMessage.java

             * @return the document ID
             */
            public String getDocId() {
                return docId;
            }
    
            /**
             * Sets the document ID.
             *
             * @param docId the document ID
             */
            public void setDocId(final String docId) {
                this.docId = docId;
            }
    
            /**
             * Gets the source snippet.
             *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            assertEquals("/go/?rt=1710000000&docId=doc123&queryId=query456&order=0", url);
        }
    
        @Test
        public void test_buildGoUrl_withContextPath() {
            final String url = chatClient.testBuildGoUrl("/fess", "doc123", "query456", 1710000000L, 2);
            assertEquals("/fess/go/?rt=1710000000&docId=doc123&queryId=query456&order=2", url);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            for (Map<String, Object> doc : docs) {
                String docId = doc.get("doc_id").toString();
                given().contentType("application/json").header("Authorization", getTestToken()).delete(SEARCHLIST_API_PATH + "/doc/" + docId);
            }
            refresh();
    
            deleteTestToken();
        }
    
        @Override
        protected String getNamePrefix() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                    "file://home/taro/%E3%81%82.txt");
    
            assertUrlLink(null, "#not-found-docId");
            assertUrlLink("", "#not-found-docId");
            assertUrlLink(" ", "#not-found-docId");
        }
    
        private void assertUrlLink(String url, String expected) {
            Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "docId");
            doc.put("url", url);
            assertEquals(expected, viewHelper.getUrlLink(doc));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                        </button>
                                                        <input type="hidden" name="docId" id="docId"/>
                                                        <button type="submit" class="btn btn-outline-light"
                                                                name="delete"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

     */
    public class ThumbnailForm {
    
        /**
         * The document ID for which to retrieve the thumbnail.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * The query ID associated with the search request.
         */
        @Required
        public String queryId;
    
        /**
         * The search query string for error page display.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (0)
Back to Top