Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add default template warning #2205

Open
wants to merge 8 commits into
base: next
Choose a base branch
from

Commits on Mar 19, 2023

  1. Next version

    Keats committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    8d16d17 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2023

  1. Configuration menu
    Copy the full SHA
    b00ae42 View commit details
    Browse the repository at this point in the history
  2. Speedup "zola check" command by reusing the Client (getzola#2171)

    * Reuse Client when checking urls and add timeout for requests
    MTRNord authored Apr 6, 2023
    Configuration menu
    Copy the full SHA
    1ed722c View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Implement replace_re filter (getzola#2163)

    * Implement replace_re filter
    
    * Cargo fmt
    
    * add regex caching
    
    * cargo fmt
    
    * update docs, update unit test
    
    * rename replace_re -> regex_replace
    cydave authored Apr 20, 2023
    Configuration menu
    Copy the full SHA
    6a5c241 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2023

  1. templates: add base URL for feed content (getzola#2190)

    Relative links in the entry content do not currently have a base URI, so
    will be resolved relative to the feed URI:
    
    Given an entry with the content:
    
        <a href="some-resource.bin">
    
    And URIS of:
    
     * entry: https://example.org/blog/some-entry/
     * feed:  https://example.org/atom.xml
    
    The link URI will end up as:
    
        https://example.org/some-resource.bin
    
    rather than the URI that ends up resolved in the rendered page:
    
       https://example.org/blog/some-entry/some-resource.bin
    
    The atom and RSS formats allow for an xml:base attribute (itself
    specified in [1]) to provide a base URI of a subset of a document. This
    change adds xml:base attributes to each entry, using the page permalink.
    
    This gives us something equivalent to:
    
        <entry>
         <content xml:base="https://example.org/blog/some-entry/">
          <![CDATA[
           <a href="some-resource.bin">
          ]]>
         </content>
        </entry>
    
    [1]: https://www.w3.org/TR/xmlbase/
    
    Signed-off-by: Jeremy Kerr <[email protected]>
    jk-ozlabs authored Apr 23, 2023
    Configuration menu
    Copy the full SHA
    c48b61a View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. Configuration menu
    Copy the full SHA
    332cf15 View commit details
    Browse the repository at this point in the history
  2. clippy

    Raymi306 committed May 1, 2023
    Configuration menu
    Copy the full SHA
    eb7cfdb View commit details
    Browse the repository at this point in the history
  3. cargo fmt

    Raymi306 committed May 1, 2023
    Configuration menu
    Copy the full SHA
    1012340 View commit details
    Browse the repository at this point in the history