diff --git a/CHANGES.rst b/CHANGES.rst index 352bfebd..bd940775 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +pywb 2.6.0b2 changelist +~~~~~~~~~~~~~~~~~~~~~~~ + +* Update documentation for CDX Server API (by @sebastian-nagel) `#651 `_ + +* Ensure banner template is not autoescaped + + pywb 2.6.0b1 changelist ~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/config.yaml b/config.yaml index 01827eb2..5522c685 100644 --- a/config.yaml +++ b/config.yaml @@ -17,3 +17,6 @@ enable_memento: true # Replay content in an iframe framed_replay: true +locales: + - en + - es diff --git a/pywb/templates/banner.html b/pywb/templates/banner.html index d629dd2b..4578f58b 100644 --- a/pywb/templates/banner.html +++ b/pywb/templates/banner.html @@ -1,4 +1,5 @@ {% if not env.pywb_proxy_magic or config.proxy.enable_banner | default(true) %} +{% autoescape false %} - +{% endautoescape %} {% endif %} diff --git a/pywb/version.py b/pywb/version.py index 21f487db..27669299 100644 --- a/pywb/version.py +++ b/pywb/version.py @@ -1,4 +1,4 @@ -__version__ = '2.6.0b1' +__version__ = '2.6.0b2' if __name__ == '__main__': print(__version__)