Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for sanitizeFn (0.05 seconds)

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

  1. src/main/webapp/js/bootstrap.min.js

    ]||[],e[s]||[]);for(const e of i)pe(e,n)||t.removeAttribute(e.nodeName)}return i.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return v(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Ae=new Set(["sanitize","allowList","sanitizeFn"]),Ee="fade",Ce="show",Te=".modal",ke="hide.bs.modal",Se="hover",Le="focus",Oe={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 58.9K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/bootstrap.min.js

    if(i[o].test(n))return!0;return!1})(t,r)||i.removeAttribute(t.nodeName)}))},l=0,r=a.length;l<r;l++)s(l);return i.body.innerHTML}var It="tooltip",kt="bs.tooltip",Ot=o.default.fn.tooltip,jt=new RegExp("(^|\\s)bs-tooltip\\S+","g"),Pt=["sanitize","whiteList","sanitizeFn"],Lt="fade",Rt="show",xt="show",qt="out",Ft="hover",Qt="focus",Bt={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},Ht={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="t...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 61.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                return text;
            }
            return text.replaceAll("<[^>]+>", "");
        }
    
        /**
         * Sanitizes document content by escaping delimiter-like sequences
         * to prevent boundary spoofing in LLM prompts.
         *
         * @param text the text to sanitize
         * @return the sanitized text with delimiter sequences escaped
         */
        protected String sanitizeDocumentContent(final String text) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            assertTrue(result.toString().endsWith(".html"));
        }
    
        @Test
        public void test_buildFilePath_colonInFilename() {
            // Colon is valid in URI path but should be sanitized in filesystem path
            final Path result =
                    indexExportJob.buildFilePath("/export", "https://example.com/path/file%3Aname.html", new HtmlIndexExportFormatter());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  5. pom.xml

    			<artifactId>commonmark-ext-gfm-tables</artifactId>
    			<version>0.24.0</version>
    		</dependency>
    		<dependency>
    			<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
    			<artifactId>owasp-java-html-sanitizer</artifactId>
    			<version>20260101.1</version>
    		</dependency>
    
    		<!-- test -->
    		<dependency>
    			<groupId>org.junit.jupiter</groupId>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
Back to Top