Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OSDD (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/osdd/OsddAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.osdd;
    
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * OSDD (OpenSearch Description Document) action.
     */
    public class OsddAction extends FessSearchAction {
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/OsddHelper.java

        /** The OSDD file path. */
        protected String osddPath;
    
        /** The encoding for OSDD file. */
        protected String encoding = Constants.UTF_8;
    
        /** The content type for OSDD response. */
        protected String contentType = "text/xml"; // "application/opensearchdescription+xml"
    
        /** The OSDD file. */
        protected File osddFile;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

            osddHelper.setOsddPath("osdd/osdd.xml");
            osddHelper.init();
            assertTrue(osddHelper.hasOpenSearchFile());
        }
    
        public void test_setOsddPath() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setOsddPath("test/path/osdd.xml");
            assertEquals("test/path/osdd.xml", osddHelper.osddPath);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        /** Helper for managing user information and authentication. */
        @Resource
        protected UserInfoHelper userInfoHelper;
    
        /** Helper for OpenSearch Description Document (OSDD) functionality. */
        @Resource
        protected OsddHelper osddHelper;
    
        /** Helper for managing popular search words and suggestions. */
        @Resource
        protected PopularWordHelper popularWordHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    # Whether to enable label in admin config forms.
    form.admin.label.in.config.enabled=false
    # Default template name for admin forms.
    form.admin.default.template.name=__TEMPLATE__
    # Whether to enable OSDD link (OpenSearch Description Document).
    osdd.link.enabled=auto
    # Whether to enable the clipboard copy icon.
    clipboard.copy.icon.enabled=true
    
    # ----------------------------------------------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getFormAdminDefaultTemplateName();
    
        /**
         * Get the value for the key 'osdd.link.enabled'. <br>
         * The value is, e.g. auto <br>
         * comment: Whether to enable OSDD link (OpenSearch Description Document).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top