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

fix - some broken paths (#212)

This commit is contained in:
Anastasia Aizman 2017-06-17 11:42:41 +01:00 committed by Ilya Kreymer
parent 3e8e590c1b
commit 4efb876d53

View File

@ -16,19 +16,19 @@ which will fetch a live url and apply the registered rewriting rules to that url
Run:
`python ./pywb.rewrite/rewrite_live.py http://example.com`
`python ./pywb/rewrite/rewrite_live.py http://example.com`
To specify custom timestamp and prefix:
```
python ./pywb.rewrite/rewrite_live.py http://example.com /mycoll/20141026000102/http://mysite.example.com/path.html
python ./pywb/rewrite/rewrite_live.py http://example.com /mycoll/20141026000102/http://mysite.example.com/path.html
```
This will print to stdout the content of `http://example.com` with all urls rewritten relative to
`/mycoll/20141026000102/http://mysite.example.com/path.html`.
Headers are also rewritten, for further details, consult the `get_rewritten` function in
[pywb_rewrite/rewrite_live.py](pywb_rewrite/rewrite_live.py)
[rewrite_live.py](rewrite_live.py)
#### Tests