Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 301 for Document (1.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/SearchBody.java

    /**
     * Search request body for boost document administration.
     * Extends BaseSearchBody with boost document-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The URL expression pattern to search for in boost documents. */
        public String urlExpr;
    
        /** The boost expression to search for in boost documents. */
        public String boostExpr;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        /**
         * Deletes all document-based words from the suggest index.
         *
         * @return true if the operation was successful, false otherwise.
         */
        public boolean deleteDocumentWords() {
            final SuggestDeleteResponse response = suggester.indexer().deleteDocumentWords();
            if (response.hasError()) {
                logger.warn("Failed to delete document words.", response.getErrors().get(0));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/osdd/OsddAction.java

        //                                                                      ==============
    
        /**
         * Returns the OSDD document.
         *
         * @return the OSDD document as a stream response
         */
        @Execute
        public ActionResponse index() {
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        /**
         * Appends query parameters to URLs based on document type.
         * Adds search highlighting for HTML and PDF documents.
         *
         * @param document the document data map
         * @param url the base URL
         * @return the URL with appended query parameters
         */
        protected String appendQueryParameter(final Map<String, Object> document, final String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

        /**
         * Default constructor for PurgeDocJob.
         * Creates a new instance of the document purging job with default settings.
         */
        public PurgeDocJob() {
            // Default constructor
        }
    
        /**
         * Executes the document purging job.
         * Removes all documents from the search index that have expired based on their expires field.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

        //                                                                      ==============
        /**
         * Serves a thumbnail image for the specified document.
         *
         * @param form the thumbnail request form containing document ID and query parameters
         * @return ActionResponse containing the thumbnail image or 404 if not found
         */
        @Execute
        public ActionResponse index(final ThumbnailForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

        //                                                                      ==============
        /**
         * Retrieves and displays cached content for a specific document.
         *
         * @param form the cache form containing document ID and highlight query
         * @return ActionResponse containing the cached document content or error redirect
         */
        @Execute
        public ActionResponse index(final CacheForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/xml/DomUtilTest.java

     */
    package org.codelibs.core.xml;
    
    import javax.xml.parsers.DocumentBuilder;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    /**
     * @author higa
     *
     */
    public class DomUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ingest/Ingester.java

            return target;
        }
    
        /**
         * Processes a document map for web/file crawling with access result.
         * Default implementation delegates to the basic process method.
         *
         * @param target the document data to process
         * @param accessResult the access result from crawling
         * @return the processed document data
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/bootstrap.min.js

    t");o.default(n).data("margin-right",i).css("margin-right",parseFloat(a)-t._scrollbarWidth+"px")}));var i=document.body.style.paddingRight,a=o.default(document.body).css("padding-right");o.default(document.body).data("padding-right",i).css("padding-right",parseFloat(a)+this._scrollbarWidth+"px")}o.default(document.body).addClass(ft)},e._resetScrollbar=function(){var t=[].slice.call(document.querySelectorAll(Et));o.default(t).each((function(t,e){var n=o.default(e).data("padding-right");o.default(...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 61.1K bytes
    - Viewed (0)
Back to top