mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-24 06:59:52 +01:00
update version to 0.6.0, update CHANGELIST
add quotes around "coll" in header
This commit is contained in:
parent
92daad3b2b
commit
37fd75f744
@ -1,3 +1,11 @@
|
|||||||
|
pywb 0.6.0 changelist
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* HTTPS Proxy Support!
|
||||||
|
|
||||||
|
* Revamped HTTP/S system: proxy collection and capture time switching via cookie!
|
||||||
|
|
||||||
|
|
||||||
pywb 0.5.1 changelist
|
pywb 0.5.1 changelist
|
||||||
~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
minor fixes:
|
minor fixes:
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
PyWb 0.5.2
|
PyWb 0.6.0
|
||||||
==========
|
==========
|
||||||
|
|
||||||
.. image:: https://travis-ci.org/ikreymer/pywb.png?branch=develop
|
.. image:: https://travis-ci.org/ikreymer/pywb.png?branch=https-proxy
|
||||||
:target: https://travis-ci.org/ikreymer/pywb
|
:target: https://travis-ci.org/ikreymer/pywb
|
||||||
|
|
||||||
.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=develop
|
.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=https-proxy
|
||||||
:target: https://coveralls.io/r/ikreymer/pywb?branch=develop
|
:target: https://coveralls.io/r/ikreymer/pywb?branch=https-proxy
|
||||||
|
|
||||||
pywb is a python implementation of web archival replay tools, sometimes also known as 'Wayback Machine'.
|
pywb is a python implementation of web archival replay tools, sometimes also known as 'Wayback Machine'.
|
||||||
|
|
||||||
@ -21,6 +21,7 @@ This README contains a basic overview of using pywb. After reading this intro, c
|
|||||||
|
|
||||||
* `pywb-samples <https://github.com/ikreymer/pywb-samples>`_ provides additional archive samples with difficult-to-replay content.
|
* `pywb-samples <https://github.com/ikreymer/pywb-samples>`_ provides additional archive samples with difficult-to-replay content.
|
||||||
|
|
||||||
|
* `pywb-proxy-demo <https://github.com/ikreymer/pywb-proxy-demo>`_ showcases the revamped HTTP/S proxy replay system (available from pywb 0.6.0)
|
||||||
|
|
||||||
The following deployed applications use pywb:
|
The following deployed applications use pywb:
|
||||||
|
|
||||||
|
@ -37,7 +37,8 @@ class HeaderRewriter:
|
|||||||
|
|
||||||
ENCODING_HEADERS = ['content-encoding']
|
ENCODING_HEADERS = ['content-encoding']
|
||||||
|
|
||||||
REMOVE_HEADERS = ['transfer-encoding', 'content-security-policy']
|
REMOVE_HEADERS = ['transfer-encoding', 'content-security-policy',
|
||||||
|
'strict-transport-security']
|
||||||
|
|
||||||
PROXY_NO_REWRITE_HEADERS = ['content-length']
|
PROXY_NO_REWRITE_HEADERS = ['content-length']
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ function init_banner() {
|
|||||||
var query_url = wbinfo.proxy_magic + "/*/" + wbinfo.url;
|
var query_url = wbinfo.proxy_magic + "/*/" + wbinfo.url;
|
||||||
text += ' <a target="_self" href="//query.' + query_url + '">All Capture Times</a>';
|
text += ' <a target="_self" href="//query.' + query_url + '">All Capture Times</a>';
|
||||||
text += '<br/>'
|
text += '<br/>'
|
||||||
text += 'From collection <b>' + wbinfo.coll + '</b> <a target="_self" href="//select.' + select_url + '">All Collections</a>';
|
text += 'From collection <b>"' + wbinfo.coll + '"</b> <a target="_self" href="//select.' + select_url + '">All Collections</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
banner.innerHTML = text;
|
banner.innerHTML = text;
|
||||||
|
2
setup.py
2
setup.py
@ -34,7 +34,7 @@ class PyTest(TestCommand):
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pywb',
|
name='pywb',
|
||||||
version='0.5.2',
|
version='0.6.0',
|
||||||
url='https://github.com/ikreymer/pywb',
|
url='https://github.com/ikreymer/pywb',
|
||||||
author='Ilya Kreymer',
|
author='Ilya Kreymer',
|
||||||
author_email='ikreymer@gmail.com',
|
author_email='ikreymer@gmail.com',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user