mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-26 01:26:00 +03:00
[GH-ISSUE #645] Feature Request: Disable original preview #402
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#402
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ghost on GitHub (Feb 2, 2021).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/645
Type
What is the problem that your feature request solves
The archive overview connects to the archived content and therefore leaks the users IP address. It would be good to completely avoid third party connections once archived.
Describe the ideal specific solution you'd want, and whether it fits into any broader scope of changes
Add toggle to disable preview of "Original".
What hacks or alternative solutions have you tried to solve the problem?
Block third party requests with browser addon
How badly do you want this new feature?
@pigmonkey commented on GitHub (Apr 21, 2021):
I'd also prefer to not hit Archive.org until I actually choose to load the Archive.org snapshot, so I'd want the option of disabling that preview as well.
Personally I do not find much value in the previews. I'd be happy if that part of the header was just replaced by a list of the snapshot methods and the date they were last updated. That would avoid this problem entirely. A
USE_PREVIEWS = Falseoption would probably be pretty simple to implement.@pirate commented on GitHub (Apr 21, 2021):
SAVE_ARCHIVE_DOT_ORGalready disables the Archive.org preview, but it's all or nothing and disables saving to Archive.org entirely, not just for the preview.I can add a
USE_PREVIEWS = Falseoption in the next release, but beware the Snapshot index pages are static html, not dynamic django templates, so you'll have to trigger them to be rerendered manually to update them (either by clickingPull Title,Pull, or runningarchivebox updateon them).@pirate commented on GitHub (May 10, 2022):
I've added this option in v0.6.3
8ebf3e2archivebox config --set PREVIEW_ORIGINALS=Falsecan now be used to disable the iframe previews of the original URLs.