diff --git a/archivebox/config.py b/archivebox/config.py index 38318d98..fb7b96b3 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -107,7 +107,6 @@ CONFIG_SCHEMA: Dict[str, ConfigDefaultDict] = { 'PREVIEW_ARCHIVE_DOT_ORG': {'type': bool, 'default': True}, 'PREVIEW_ORIGINALS': {'type': bool, 'default': True}, 'LOGOUT_REDIRECT_URL': {'type': str, 'default': '/'}, - 'DISPLAY_DOCS': {'type': bool, 'default': True}, }, 'ARCHIVE_METHOD_TOGGLES': { diff --git a/archivebox/index/html.py b/archivebox/index/html.py index 6ec38536..a81850cb 100644 --- a/archivebox/index/html.py +++ b/archivebox/index/html.py @@ -25,7 +25,6 @@ from ..config import ( HTML_INDEX_FILENAME, PREVIEW_ARCHIVE_DOT_ORG, PREVIEW_ORIGINALS, - DISPLAY_DOCS, ) MAIN_INDEX_TEMPLATE = 'static_index.html' @@ -68,7 +67,6 @@ def main_index_template(links: List[Link], template: str=MAIN_INDEX_TEMPLATE) -> 'time_updated': datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M'), 'links': [link._asdict(extended=True) for link in links], 'FOOTER_INFO': FOOTER_INFO, - 'DISPLAY_DOCS': DISPLAY_DOCS, }) diff --git a/archivebox/templates/core/static_index.html b/archivebox/templates/core/static_index.html index fcc551ce..495d89c1 100644 --- a/archivebox/templates/core/static_index.html +++ b/archivebox/templates/core/static_index.html @@ -25,9 +25,7 @@
diff --git a/docker-compose.yml b/docker-compose.yml index b6757bc1..d120449e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,8 +9,6 @@ services: environment: - ALLOWED_HOSTS=* - MEDIA_MAX_SIZE=750m - # Custom - - DISPLAY_DOCS=False # Extractors - USE_YOUTUBEDL=False - USE_GIT=False