diff --git a/setup.py b/setup.py index ed42ceff..54dfa435 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup(name='pywb', long_description=open('README.md').read(), license='GPL', packages=['pywb'], - install_requires=['rfc3987'], + install_requires=['rfc3987', 'chardet', 'redis'], # test_suite='?', # not sure how to run doctests here zip_safe=False) diff --git a/static/wb.css b/static/wb.css index 0e72df78..2e3a2100 100644 --- a/static/wb.css +++ b/static/wb.css @@ -1,12 +1,16 @@ #_wayback_banner { - display: block; - top: 0px; - width: 100%; - border: 1px solid; - background-color: lightYellow; - text-align: center; - z-index: 2147483643; + display: block !important; + top: 0px !important; + left: 0px !important; + position: relative !important; + padding: 4px !important; + width: 100% !important; + font-size: 24px !important; + border: 1px solid !important; + background-color: lightYellow !important; + text-align: center !important; + z-index: 2147483643 !important; } diff --git a/static/wb.js b/static/wb.js index 84299af4..ad5bd871 100644 --- a/static/wb.js +++ b/static/wb.js @@ -13,6 +13,7 @@ if (window.opener) { document.WB_wombat_domain = document.domain + function initBanner() { var BANNER_ID = "_wayback_banner"; @@ -24,8 +25,7 @@ function initBanner() banner.setAttribute("id", BANNER_ID); banner.style.cssText = "display: block; width: 100%; border: 1px solid; background-color: lightYellow; text-align: center"; - //banner.innerHTML = ""; - banner.innerHTML = "PyWb Banner!" + banner.innerHTML = "PyWb Test Banner!" document.body.insertBefore(banner, document.body.firstChild); } } diff --git a/test/test_archiveloader.py b/test/test_archiveloader.py deleted file mode 100644 index 0aa0d113..00000000 --- a/test/test_archiveloader.py +++ /dev/null @@ -1 +0,0 @@ -import pywb.archiveloader