Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 627 for HtML (0.02 sec)

  1. docs/en/overrides/main.html

    {% extends "base.html" %}
    
    {% block announce %}
    <div class="announce-wrapper">
      <div id="announce-left">
        <div class="item">
          <a class="announce-link" href="https://twitter.com/fastapi" target="_blank">
            <span class="twemoji twitter">
              {% include ".icons/fontawesome/brands/twitter.svg" %}
            </span> Follow <strong>@fastapi</strong> on <strong>Twitter</strong> to stay updated
          </a>
        </div>
        <div class="item">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 09:13:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. docs_src/templates/templates/item.html

    <html>
    <head>
        <title>Item Details</title>
        <link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
    </head>
    <body>
        <h1><a href="{{ url_for('read_item', id=id) }}">Item ID: {{ id }}</a></h1>
    </body>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Jan 11 22:25:37 UTC 2024
    - 235 bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo3/index.html

    <!DOCTYPE html>
    <html>
    
    <head>
    	<title>Central Repository: org/codelibs/fess</title>
    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	<style>
    body {
    	background: #fff;
    }
    	</style>
    </head>
    
    <body>
    	<header>
    		<h1>org/codelibs/fess</h1>
    	</header>
    	<hr/>
    	<main>
    		<pre id="contents">
    <a href="../">../</a>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. docs/en/overrides/partials/copyright.html

    Sebastián Ramírez <******@****.***> 1707080219 +0100
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 450 bytes
    - Viewed (0)
  5. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    coverage combine
    coverage report
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 18 21:07:03 UTC 2024
    - 109 bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/site/apt/index.apt

       ** profile injection: <<<ProfileInjector>>> ({{{./apidocs/org/apache/maven/model/profile/ProfileInjector.html}javadoc}}),
       with its <<<DefaultProfileInjector>>> implementation
       ({{{./xref/org/apache/maven/model/profile/DefaultProfileInjector.html}source}})
    
       ** parent resolution until {{{./super-pom.html}super-pom}}
    
       ** inheritance assembly (see {{{./index.html#Inheritance_Assembly}below}})
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. fastapi/openapi/docs.py

        })"""
    
        if init_oauth:
            html += f"""
            ui.initOAuth({json.dumps(jsonable_encoder(init_oauth))})
            """
    
        html += """
        </script>
        </body>
        </html>
        """
        return HTMLResponse(html)
    
    
    def get_redoc_html(
        *,
        openapi_url: Annotated[
            str,
            Doc(
                """
                The OpenAPI URL that ReDoc should load and use.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. 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$");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/html/HtmlEscapers.java

     *
     * <p>HTML escaping is particularly tricky: For example, <a
     * href="https://www.w3.org/TR/html4/types.html#h-6.2">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
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/site/apt/logging.apt

     / {{{https://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/Logger.html}Logger}}.
    
     Starting with Maven 3.1.0:
    
      *  Maven supports SLF4J API logging API too, ie {{{http://slf4j.org/apidocs/org/slf4j/LoggerFactory.html}LoggerFactory}} /
         {{{http://slf4j.org/apidocs/org/slf4j/Logger.html}Logger}},
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top