Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for noscript (0.13 sec)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final String data = "<html><body><br/><script>foo</script><noscript>bar</noscript></body></html>";
            final Document document = getDocument(data);
    
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getCrawlerDocumentHtmlPrunedTags() {
                    return "noscript";
                }
            });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    job.template.title.data=Data Crawler - {0}
    # Script template for job execution.
    job.template.script=return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute();
    # Maximum number of crawler processes.
    job.max.crawler.processes=0
    # Default script language for jobs.
    job.default.script=groovy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. //LINK[@rel='canonical'][1]/@href */
        String CRAWLER_DOCUMENT_HTML_CANONICAL_XPATH = "crawler.document.html.canonical.xpath";
    
        /** The key of the configuration. e.g. noscript,script,style,header,footer,aside,nav,a[rel=nofollow] */
        String CRAWLER_DOCUMENT_HTML_PRUNED_TAGS = "crawler.document.html.pruned.tags";
    
        /** The key of the configuration. e.g. 120 */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            // Setup test script engine
            scriptEngineFactory.add("test", testScriptEngine);
    
            // Execute script
            String scriptType = "test";
            String script = "test script content";
            Object result = scriptExecutor.execute(scriptType, script);
    
            // Verify result
            assertEquals("processed: test script content", result);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            // Test execute method
            String scriptType = "test";
            String script = "test script";
            Object result = jobExecutor.execute(scriptType, script);
            assertEquals("Executed: test test script", result);
    
            // Test with null values
            result = jobExecutor.execute(null, "script");
            assertEquals("Executed: null script", result);
    
            result = jobExecutor.execute("type", null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/JobExecutor.java

            // Default constructor
        }
    
        /**
         * Executes a script with the specified script type and content.
         *
         * @param scriptType the type of script to execute
         * @param script the script content to execute
         * @return the result of script execution
         */
        public abstract Object execute(String scriptType, String script);
    
        /**
         * Initiates shutdown of the job executor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                    logger.debug("Starting Job {}. scriptType: {}, script: {}", id, scriptType, script);
                } else if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                    logger.info("Starting Job {}.", id);
                }
    
                final Object ret = jobExecutor.execute(Constants.DEFAULT_SCRIPT, script);
                if (ret == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            }
        }
    
        /**
         * Evaluates a template script using the specified script engine and parameters.
         *
         * @param scriptType the type of script engine to use
         * @param template the template script to evaluate
         * @param paramMap the parameters to pass to the script
         * @return the result of script evaluation, or empty string if template is empty
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.script.Script;
    import org.opensearch.script.ScriptType;
    
    public class UpdateLabelJobTest extends UnitFessTestCase {
    
        private UpdateLabelJob updateLabelJob;
    
        @Override
        public void setUp() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/score/ScoreBooster.java

            this.requestCacheSize = requestCacheSize;
        }
    
        /**
         * Sets the script language.
         * @param scriptLang The script language.
         */
        public void setScriptLang(final String scriptLang) {
            this.scriptLang = scriptLang;
        }
    
        /**
         * Sets the script code.
         * @param scriptCode The script code.
         */
        public void setScriptCode(final String scriptCode) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top