1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

update version to 0.6.0, update CHANGELIST

add quotes around "coll" in header
This commit is contained in:
Ilya Kreymer 2014-07-31 21:17:07 -07:00
parent 92daad3b2b
commit 37fd75f744
5 changed files with 17 additions and 7 deletions

View File

@ -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
~~~~~~~~~~~~~~~~~~~~~
minor fixes:

View File

@ -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
.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=develop
:target: https://coveralls.io/r/ikreymer/pywb?branch=develop
.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=https-proxy
: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'.
@ -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-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:

View File

@ -37,7 +37,8 @@ class HeaderRewriter:
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']

View File

@ -75,7 +75,7 @@ function init_banner() {
var query_url = wbinfo.proxy_magic + "/*/" + wbinfo.url;
text += '&nbsp;<a target="_self" href="//query.' + query_url + '">All Capture Times</a>';
text += '<br/>'
text += 'From collection <b>' + wbinfo.coll + '</b>&nbsp;<a target="_self" href="//select.' + select_url + '">All Collections</a>';
text += 'From collection <b>"' + wbinfo.coll + '"</b>&nbsp;<a target="_self" href="//select.' + select_url + '">All Collections</a>';
}
banner.innerHTML = text;

View File

@ -34,7 +34,7 @@ class PyTest(TestCommand):
setup(
name='pywb',
version='0.5.2',
version='0.6.0',
url='https://github.com/ikreymer/pywb',
author='Ilya Kreymer',
author_email='ikreymer@gmail.com',