From 329ce64473ac1c830e3a70b238c0c1466be17b2f Mon Sep 17 00:00:00 2001 From: Ciprian Dorin Craciun Date: Fri, 9 Nov 2018 20:59:18 +0200 Subject: [PATCH] [readme] Minor update --- documentation/readme.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/documentation/readme.rst b/documentation/readme.rst index 2820ac3..03eebdd 100644 --- a/documentation/readme.rst +++ b/documentation/readme.rst @@ -86,7 +86,7 @@ Examples * fetch and extract the Python 3.7 documentation HTML archive: :: curl -s -S -f \ - 'https://docs.python.org/3/archives/python-3.7.1-docs-html.tar.bz2' \ + https://docs.python.org/3/archives/python-3.7.1-docs-html.tar.bz2 \ | tar -x -j -v * create the CDB archive (without any compression): :: @@ -94,19 +94,22 @@ Examples cdb-http-archiver \ --archive ./python-3.7.1-docs.cdb \ --sources ./python-3.7.1-docs-html \ + --debug * create the CDB archive (with `gzip` compression): :: cdb-http-archiver \ --archive ./python-3.7.1-docs-gzip.cdb \ --sources ./python-3.7.1-docs-html \ - --compress gzip + --compress gzip \ + --debug * serve the CDB archive (with `gzip` compression): :: cdb-http-server \ --bind 127.0.0.1:8080 \ --archive ./python-3.7.1-docs-gzip.cdb \ + --preload \ --debug * compare sources and archive sizes: ::