Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for html (0.2 sec)

  1. android/guava/src/com/google/common/html/HtmlEscapers.java

     *
     * <p>HTML escaping is particularly tricky: For example, <a href="http://goo.gl/5TgZb">some
     * elements' text contents must not be HTML escaped</a>. As a result, it is impossible to escape an
     * HTML document correctly without domain-specific knowledge beyond what {@code HtmlEscapers}
     * provides. We strongly encourage the use of HTML templating systems.
     *
     * @author Sven Mawson
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 14 22:08:54 GMT 2021
    - 3K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

    /**
     * Generates release notes file from markdown to HTML
     */
    @CacheableTask
    public abstract class RenderMarkdown extends DefaultTask {
        /**
         * The source markdown file.
         */
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
         * The rendered HTML file
         */
        @OutputFile
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEscapePattern("", "# Test");
            assertEscapePattern(".*\\Q!/\\E.*", "!/");
            assertEscapePattern("\\Qindex.html\\E", "index.html");
            assertEscapePattern("^\\Qhttp://\\E.*", "^http://");
            assertEscapePattern(".*\\Qindex.html\\E$", "index.html$");
            assertEscapePattern("^\\Qhttp://www.codelibs.org/page.html\\E$", "^http://www.codelibs.org/page.html$");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

                    if (scanner.lookingAt(START_HTML_COMMENT)) {
                        skipComment();
                        continue;
                    }
                    if (scanner.lookingAt(HTML_ELEMENT)) {
                        break;
                    }
                    if (scanner.lookingAt(TAG)) {
                        break;
                    }
                    if (scanner.lookingAt(HTML_ENCODED_CHAR)) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

      public static final MediaType XHTML_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "xhtml+xml");
    
      /**
       * Extensible Resource Descriptors. This is not yet registered with the IANA, but it is specified
       * by OASIS in the <a href="http://docs.oasis-open.org/xri/xrd/v1.0/cd02/xrd-1.0-cd02.html">XRD
       * definition</a> and implemented in projects such as <a
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                public static final String JCIFS_PREFIX = "jcifs.";
                public static final String HTML_CANONICAL_XPATH = "html.canonical.xpath";
                public static final String HTML_PRUNED_TAGS = "html.pruned.tags";
                public static final String PIPELINE = "pipeline";
                public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags";
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            String data = "<html><body>aaa<style>bbb</style>ccc</body></html>";
            Document document = getDocument(data);
            String value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
            assertEquals("aaa bbb ccc", value);
    
            data = "<html><body> aaa <p> bbb <b>ccc</b> </p> </body></html>";
            document = getDocument(data);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            assertEquals(exp, transformer.decodeUrlAsName(url, false));
    
            url = "http://example.com/index.html";
            exp = "http://example.com/index.html";
            assertEquals(exp, transformer.decodeUrlAsName(url, false));
    
            url = "http://example.com/" + encodeUrl("テスト ") + ".html";
            exp = "http://example.com/テスト .html";
            assertEquals(exp, transformer.decodeUrlAsName(url, false));
    
            url = "file://C++.doc";
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_DOCUMENT_HTML_CONTENT_XPATH = "crawler.document.html.content.xpath";
    
        /** The key of the configuration. e.g. //HTML/@lang */
        String CRAWLER_DOCUMENT_HTML_LANG_XPATH = "crawler.document.html.lang.xpath";
    
        /** The key of the configuration. e.g. //META[@name='description']/@content */
        String CRAWLER_DOCUMENT_HTML_DIGEST_XPATH = "crawler.document.html.digest.xpath";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  10. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        response.append(String.format("<html><head><title>%s</title></head><body>", basePath));
        response.append(String.format("<h1>%s</h1>", basePath));
        for (String file : directory.list()) {
          response.append(String.format("<div class='file'><a href='%s'>%s</a></div>",
              basePath + file, file));
        }
        response.append("</body></html>");
    
        return new MockResponse()
    Java
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Jan 02 02:50:44 GMT 2019
    - 4.7K bytes
    - Viewed (0)
Back to top