Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for url_link (0.04 seconds)

  1. src/main/java/org/codelibs/fess/entity/ChatMessage.java

             */
            public String getUrlLink() {
                return urlLink;
            }
    
            /**
             * Sets the ViewHelper-processed URL for display.
             *
             * @param urlLink the URL link
             */
            public void setUrlLink(final String urlLink) {
                this.urlLink = urlLink;
            }
    
            /**
             * Gets the go link URL for navigation.
    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)
  2. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

                doc.put("doc_id", existingDoc.get("doc_id"));
                doc.put("title", existingDoc.get("title") + "_updated");
                doc.put("url", existingDoc.get("url_link"));
                doc.put("content", "Updated content");
                doc.put("boost", 2.0f);
                doc.put("role", "Rguest");
                documents.add(doc);
            }
    
    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)
  3. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
                @Override
                public String getResponseFieldUrlLink() {
                    return "url_link";
                }
    
                @Override
                public String getIndexFieldExpires() {
                    return "expires";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

        }
    
        // ========== ChatSource goUrl/urlLink tests ==========
    
        @Test
        public void test_chatSource_goUrlAndUrlLink() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Doc");
            doc.put("url", "smb://server/share/file.doc");
            doc.put("doc_id", "doc123");
            doc.put("url_link", "http://proxy.example.com/file.doc");
    
    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)
  5. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
                @Override
                public String getResponseFieldUrlLink() {
                    return "url_link";
                }
    
                @Override
                public String getIndexFieldExpires() {
                    return "expires";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                source.setGoUrl(buildGoUrl(contextPath, source.getDocId(), queryId, requestedTime, i));
                assistantMessage.addSource(source);
            }
        }
    
        /**
         * Populates the url_link field in the document map if not already present.
         *
         * @param doc the document map
         */
        protected void populateUrlLink(final Map<String, Object> doc) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_config.properties

    response.field.content_title=content_title
    # Field name for content description in the response.
    response.field.content_description=content_description
    # Field name for URL link in the response.
    response.field.url_link=url_link
    # Field name for site path in the response.
    response.field.site_path=site_path
    # Maximum length of content title in the response.
    response.max.title.length=50
    # Maximum length of site path in the response.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. content_description */
        String RESPONSE_FIELD_content_description = "response.field.content_description";
    
        /** The key of the configuration. e.g. url_link */
        String RESPONSE_FIELD_url_link = "response.field.url_link";
    
        /** The key of the configuration. e.g. site_path */
        String RESPONSE_FIELD_site_path = "response.field.site_path";
    
        /** The key of the configuration. e.g. 50 */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  9. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "file:/home/user/";
            sitePath = "/home/user/";
            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "file://home/user/";
            sitePath = "/home/user/";
            docMap.put(fieldName, urlLink);
    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)
  10. src/main/webapp/js/chat.js

                var source = sources[i];
                var title = source.title || source.url || ('Source ' + (i + 1));
                var navigationUrl = sanitizeUrl(source.goUrl || source.urlLink || source.url);
                var icon = getFileTypeIcon(source.url, source.mimetype);
                var typeLabel = getFileTypeLabel(source.url, source.mimetype);
    
                html += '<li>' +
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top