oh-my-opencode 4.19.3 → 5.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/command/get-unpublished-changes.md +2 -0
- package/.agents/command/omomomo.md +1 -1
- package/.agents/command/publish.md +7 -0
- package/.agents/skills/get-unpublished-changes/SKILL.md +2 -0
- package/.agents/skills/hyperplan/SKILL.md +3 -3
- package/.agents/skills/omomomo/SKILL.md +1 -1
- package/.agents/skills/publish/SKILL.md +7 -0
- package/.opencode/command/get-unpublished-changes.md +2 -0
- package/.opencode/command/omomomo.md +1 -1
- package/.opencode/command/publish.md +7 -0
- package/.opencode/skills/hyperplan/SKILL.md +3 -3
- package/README.ja.md +1 -1
- package/README.ko.md +1 -1
- package/README.md +6 -5
- package/README.ru.md +1 -1
- package/README.zh-cn.md +1 -1
- package/bin/oh-my-opencode.js +14 -1
- package/bin/oh-my-opencode.test.ts +21 -0
- package/dist/agents/sisyphus-junior/agent.d.ts +1 -1
- package/dist/cli/doctor/checks/deprecated-reasoning-keys.d.ts +2 -0
- package/dist/cli/index.js +2925 -1919
- package/dist/cli-node/index.js +2925 -1919
- package/dist/config/schema/agent-overrides.d.ts +1343 -15
- package/dist/config/schema/categories.d.ts +132 -0
- package/dist/config/schema/fallback-models.d.ts +50 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +1322 -11
- package/dist/config-migration/index.d.ts +1 -0
- package/dist/config-migration/migration-plans.d.ts +1 -0
- package/dist/config-migration/reasoning-unification.d.ts +3 -0
- package/dist/features/monitor/batcher.d.ts +3 -1
- package/dist/features/monitor/manager-internals.d.ts +1 -0
- package/dist/features/monitor/output-injector-types.d.ts +2 -0
- package/dist/features/monitor/output-injector.d.ts +6 -0
- package/dist/features/team-mode/tools/lifecycle-test-fixture.d.ts +2 -0
- package/dist/hooks/codegraph-bootstrap/command-runner.d.ts +1 -0
- package/dist/hooks/model-fallback/next-fallback.d.ts +1 -0
- package/dist/hooks/runtime-fallback/constants.d.ts +1 -1
- package/dist/hooks/todo-continuation-enforcer/types.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/unrecoverable-request-error.d.ts +9 -0
- package/dist/hooks/tool-pair-validator/hook.test-support.d.ts +29 -0
- package/dist/hooks/tool-pair-validator/tool-part-ids.d.ts +14 -5
- package/dist/hooks/tool-pair-validator/tool-result-repair.d.ts +4 -3
- package/dist/hooks/tool-pair-validator/types.d.ts +5 -22
- package/dist/index.js +4864 -4011
- package/dist/mcp/lsp.d.ts +1 -0
- package/dist/oh-my-opencode.schema.json +3221 -222
- package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +1 -0
- package/dist/shared/agent-variant.d.ts +11 -0
- package/dist/shared/session-prompt-params-helpers.d.ts +6 -1
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/skills/ast-grep/SOURCE +1 -1
- package/dist/skills/ast-grep/install.ps1 +2 -2
- package/dist/skills/ast-grep/install.sh +1 -1
- package/dist/skills/ast-grep/references/install.md +2 -2
- package/dist/skills/ast-grep/tests/smoke.sh +1 -1
- package/dist/skills/coding-agent-sessions/SKILL.md +4 -3
- package/dist/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/dist/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/dist/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/dist/skills/data-scientist/SKILL.md +243 -0
- package/dist/skills/data-scientist/references/common-scenarios.md +176 -0
- package/dist/skills/data-scientist/references/execution-templates.md +197 -0
- package/dist/skills/data-scientist/references/integration-patterns.md +153 -0
- package/dist/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/dist/skills/data-scientist/references/uv-setup.md +78 -0
- package/dist/skills/data-scientist/scripts/quick-query.py +111 -0
- package/dist/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/dist/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/dist/skills/debugging/SKILL.md +1 -1
- package/dist/skills/programming/SKILL.md +1 -2
- package/dist/skills/start-work/SKILL.md +54 -9
- package/dist/skills/ultimate-browsing/SKILL.md +2 -2
- package/dist/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/dist/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/dist/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/dist/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/dist/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/dist/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/dist/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/dist/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/dist/skills/ultimate-browsing/engine/validators.py +46 -0
- package/dist/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/dist/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/dist/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/dist/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/dist/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/dist/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/dist/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/dist/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/dist/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/dist/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/dist/skills/ulw-plan/SKILL.md +2 -2
- package/dist/skills/ulw-plan/references/full-workflow.md +3 -3
- package/dist/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/dist/skills/ulw-research/SKILL.md +128 -12
- package/dist/tools/delegate-task/builtin-categories.d.ts +1 -0
- package/dist/tools/delegate-task/builtin-category-definition.d.ts +1 -0
- package/dist/tools/delegate-task/constants.d.ts +1 -1
- package/dist/tui.js +1271 -1108
- package/docs/reference/web-terminal-visual-qa.md +1 -1
- package/package.json +27 -19
- package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +2 -2
- package/packages/lsp-core/src/lsp/connection.ts +1 -1
- package/packages/lsp-daemon/dist/cli.js +27 -13
- package/packages/lsp-daemon/dist/client.js +49 -35
- package/packages/lsp-daemon/dist/ensure-daemon.d.ts +1 -0
- package/packages/lsp-daemon/dist/ensure-daemon.js +18 -5
- package/packages/lsp-daemon/dist/index.js +34 -20
- package/packages/lsp-tools-mcp/dist/cli.js +1 -1
- package/packages/lsp-tools-mcp/dist/lsp/manager.js +1 -1
- package/packages/lsp-tools-mcp/dist/mcp.js +1 -1
- package/packages/lsp-tools-mcp/dist/tools.js +1 -1
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +289 -95
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/src/setup.ts +7 -7
- package/packages/omo-codex/plugin/components/bootstrap/src/worker.ts +3 -0
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +385 -64
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +336 -47
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- package/packages/omo-codex/plugin/components/codegraph/test/hook.test.ts +6 -0
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
- package/packages/omo-codex/plugin/components/lsp/dist/cli.js +56 -42
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/dist/cli.js +1 -1
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/AGENTS.md +1 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/README.md +5 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/directive.md +2 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/dist/cli.js +18 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/src/codex-hook.ts +21 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/test/codex-hook.test.ts +105 -0
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/CHANGELOG.md +2 -0
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-qa-executor.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-high.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-low.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-medium.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/directive.md +3 -2
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ultrawork/SKILL.md +3 -2
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/CHANGELOG.md +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/README.md +11 -11
- package/packages/omo-codex/plugin/components/ulw-loop/directive.md +3 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +9 -9
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +66 -66
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-hook.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/stop-resume-hook.js +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/SKILL.md +3 -3
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +22 -25
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +9 -9
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-steering.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-hook.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-crud.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/steering.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/stop-resume-hook.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-commands.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-entrypoint.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-helpers.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-steering-kind-guidance.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/codex-hook.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/fixtures/quality-gate-builder.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/package-smoke.test.ts +5 -5
- package/packages/omo-codex/plugin/components/ulw-loop/test/plan-io.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/steering.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/stop-resume-hook.test.ts +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +13 -13
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/scripts/sync-skills.mjs +8 -2
- package/packages/omo-codex/plugin/skills/ast-grep/SOURCE +1 -1
- package/packages/omo-codex/plugin/skills/ast-grep/install.ps1 +2 -2
- package/packages/omo-codex/plugin/skills/ast-grep/install.sh +1 -1
- package/packages/omo-codex/plugin/skills/ast-grep/references/install.md +2 -2
- package/packages/omo-codex/plugin/skills/ast-grep/tests/smoke.sh +1 -1
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/SKILL.md +4 -3
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/packages/omo-codex/plugin/skills/data-scientist/SKILL.md +243 -0
- package/packages/omo-codex/plugin/skills/data-scientist/agents/openai.yaml +2 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/common-scenarios.md +176 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/execution-templates.md +197 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/integration-patterns.md +153 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/uv-setup.md +78 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/quick-query.py +111 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/packages/omo-codex/plugin/skills/debugging/SKILL.md +1 -1
- package/packages/omo-codex/plugin/skills/programming/SKILL.md +1 -2
- package/packages/omo-codex/plugin/skills/start-work/SKILL.md +54 -9
- package/packages/omo-codex/plugin/skills/ultimate-browsing/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/validators.py +46 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +3 -2
- package/packages/omo-codex/plugin/skills/ulw-loop/SKILL.md +3 -3
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +22 -25
- package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/omo-codex/plugin/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/omo-codex/plugin/skills/ulw-research/SKILL.md +127 -12
- package/packages/omo-codex/plugin/test/bootstrap-binlinks.test.mjs +12 -12
- package/packages/omo-codex/plugin/test/bootstrap-orchestration.test.mjs +36 -4
- package/packages/omo-codex/plugin/test/sync-skills-orchestration.test.mjs +1 -1
- package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +9 -2
- package/packages/omo-codex/plugin/test/sync-skills.test.mjs +12 -0
- package/packages/omo-codex/scripts/install-bin-links.test.mjs +56 -2
- package/packages/omo-codex/scripts/install-delegated-command.test.mjs +6 -6
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +138 -65
- package/packages/omo-codex/scripts/install-local-entrypoint.test.mjs +4 -4
- package/packages/omo-codex/scripts/install-local.test.mjs +5 -2
- package/packages/shared-skills/index.mjs +19 -1
- package/packages/shared-skills/skills/ast-grep/SOURCE +1 -1
- package/packages/shared-skills/skills/ast-grep/install.ps1 +2 -2
- package/packages/shared-skills/skills/ast-grep/install.sh +1 -1
- package/packages/shared-skills/skills/ast-grep/references/install.md +2 -2
- package/packages/shared-skills/skills/ast-grep/tests/smoke.sh +1 -1
- package/packages/shared-skills/skills/coding-agent-sessions/SKILL.md +4 -3
- package/packages/shared-skills/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/packages/shared-skills/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/packages/shared-skills/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/packages/shared-skills/skills/data-scientist/SKILL.md +243 -0
- package/packages/shared-skills/skills/data-scientist/references/common-scenarios.md +176 -0
- package/packages/shared-skills/skills/data-scientist/references/execution-templates.md +197 -0
- package/packages/shared-skills/skills/data-scientist/references/integration-patterns.md +153 -0
- package/packages/shared-skills/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/packages/shared-skills/skills/data-scientist/references/uv-setup.md +78 -0
- package/packages/shared-skills/skills/data-scientist/scripts/quick-query.py +111 -0
- package/packages/shared-skills/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/packages/shared-skills/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/packages/shared-skills/skills/debugging/SKILL.md +1 -1
- package/packages/shared-skills/skills/programming/SKILL.md +1 -2
- package/packages/shared-skills/skills/start-work/SKILL.md +54 -9
- package/packages/shared-skills/skills/ultimate-browsing/SKILL.md +2 -2
- package/packages/shared-skills/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/packages/shared-skills/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/validators.py +46 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/packages/shared-skills/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/packages/shared-skills/skills/ulw-plan/SKILL.md +2 -2
- package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/shared-skills/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/shared-skills/skills/ulw-research/SKILL.md +128 -12
- package/postinstall.mjs +6 -0
|
@@ -0,0 +1,1128 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-sticky-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-toc-available" lang="en" dir="ltr">
|
|
3
|
+
<head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=2N_sDSC0" charset="utf-8"></script>
|
|
4
|
+
<script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=o9P2E1FK" charset="utf-8"></script>
|
|
5
|
+
<script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden","showSwfDownload":true};</script>
|
|
6
|
+
<script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script>
|
|
7
|
+
<script type="text/javascript">
|
|
8
|
+
__wm.init("https://web.archive.org/web");
|
|
9
|
+
__wm.wombat("https://en.wikipedia.org/wiki/Web_archiving","20241227132135","https://web.archive.org/","web","https://web-static.archive.org/_static/",
|
|
10
|
+
"1735305695");
|
|
11
|
+
</script>
|
|
12
|
+
<link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=1utQkbB3" />
|
|
13
|
+
<link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" />
|
|
14
|
+
<!-- End Wayback Rewrite JS Include -->
|
|
15
|
+
|
|
16
|
+
<meta charset="UTF-8">
|
|
17
|
+
<title>Web archiving - Wikipedia</title>
|
|
18
|
+
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-sticky-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-toc-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy",
|
|
19
|
+
"wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"6cf0a579-b951-4a77-8bf7-27f594dba84e","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Web_archiving","wgTitle":"Web archiving","wgCurRevisionId":1263947581,"wgRevisionId":1263947581,"wgArticleId":6014932,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles with short description","Short description is different from Wikidata","Use mdy dates from May 2020","All articles with failed verification","Articles with failed verification from July 2020","Web archiving","Internet Archive projects","Collections care","Internet properties established in 1996","Conservation and restoration of cultural heritage","Digital preservation","Library of Congress","Museology"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en",
|
|
20
|
+
"wgPageContentModel":"wikitext","wgRelevantPageName":"Web_archiving","wgRelevantArticleId":6014932,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgCiteReferencePreviewsActive":false,"wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":20000,"wgRelatedArticlesCompat":[],"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q2062069","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness",
|
|
21
|
+
"fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGETopicsMatchModeEnabled":false,"wgGEStructuredTaskRejectionReasonTextInputEnabled":false,"wgGELevelingUpEnabledForUser":false};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.cite.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.makeCollapsible.styles":"ready","ext.wikimediamessages.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready","ext.wikimediaBadges":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.makeCollapsible","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher",
|
|
22
|
+
"ext.urlShortener.toolbar","ext.centralauth.centralautologin","mmv.bootstrap","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession"];</script>
|
|
23
|
+
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
|
|
24
|
+
}];});});</script>
|
|
25
|
+
<link rel="stylesheet" href="/web/20241227132135cs_/https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022">
|
|
26
|
+
<script async="" src="/web/20241227132135js_/https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022"></script>
|
|
27
|
+
<meta name="ResourceLoaderDynamicStyles" content="">
|
|
28
|
+
<link rel="stylesheet" href="/web/20241227132135cs_/https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022">
|
|
29
|
+
<meta name="generator" content="MediaWiki 1.44.0-wmf.8">
|
|
30
|
+
<meta name="referrer" content="origin">
|
|
31
|
+
<meta name="referrer" content="origin-when-cross-origin">
|
|
32
|
+
<meta name="robots" content="max-image-preview:standard">
|
|
33
|
+
<meta name="format-detection" content="telephone=no">
|
|
34
|
+
<meta name="viewport" content="width=1120">
|
|
35
|
+
<meta property="og:title" content="Web archiving - Wikipedia">
|
|
36
|
+
<meta property="og:type" content="website">
|
|
37
|
+
<link rel="preconnect" href="//web.archive.org/web/20241227132135/https://upload.wikimedia.org/">
|
|
38
|
+
<link rel="alternate" media="only screen and (max-width: 640px)" href="//web.archive.org/web/20241227132135/https://en.m.wikipedia.org/wiki/Web_archiving">
|
|
39
|
+
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit">
|
|
40
|
+
<link rel="apple-touch-icon" href="/web/20241227132135im_/https://en.wikipedia.org/static/apple-touch/wikipedia.png">
|
|
41
|
+
<link rel="icon" href="/web/20241227132135im_/https://en.wikipedia.org/static/favicon/wikipedia.ico">
|
|
42
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/web/20241227132135/https://en.wikipedia.org/w/rest.php/v1/search" title="Wikipedia (en)">
|
|
43
|
+
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
|
|
44
|
+
<link rel="canonical" href="https://web.archive.org/web/20241227132135/https://en.wikipedia.org/wiki/Web_archiving">
|
|
45
|
+
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">
|
|
46
|
+
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:RecentChanges&feed=atom">
|
|
47
|
+
<link rel="dns-prefetch" href="//web.archive.org/web/20241227132135/https://meta.wikimedia.org/"/>
|
|
48
|
+
<link rel="dns-prefetch" href="login.wikimedia.org">
|
|
49
|
+
</head>
|
|
50
|
+
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-Web_archiving rootpage-Web_archiving skin-vector-2022 action-view"><a class="mw-jump-link" href="#bodyContent">Jump to content</a>
|
|
51
|
+
<div class="vector-header-container">
|
|
52
|
+
<header class="vector-header mw-header">
|
|
53
|
+
<div class="vector-header-start">
|
|
54
|
+
<nav class="vector-main-menu-landmark" aria-label="Site">
|
|
55
|
+
|
|
56
|
+
<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right">
|
|
57
|
+
<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox " aria-label="Main menu">
|
|
58
|
+
<label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span>
|
|
59
|
+
|
|
60
|
+
<span class="vector-dropdown-label-text">Main menu</span>
|
|
61
|
+
</label>
|
|
62
|
+
<div class="vector-dropdown-content">
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">
|
|
66
|
+
|
|
67
|
+
<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">
|
|
68
|
+
<div class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned" data-feature-name="main-menu-pinned" data-pinnable-element-id="vector-main-menu" data-pinned-container-id="vector-main-menu-pinned-container" data-unpinned-container-id="vector-main-menu-unpinned-container">
|
|
69
|
+
<div class="vector-pinnable-header-label">Main menu</div>
|
|
70
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
|
|
71
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
|
|
72
|
+
</div>
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation">
|
|
76
|
+
<div class="vector-menu-heading">
|
|
77
|
+
Navigation
|
|
78
|
+
</div>
|
|
79
|
+
<div class="vector-menu-content">
|
|
80
|
+
|
|
81
|
+
<ul class="vector-menu-content-list">
|
|
82
|
+
|
|
83
|
+
<li id="n-mainpage-description" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Main_Page" title="Visit the main page [z]" accesskey="z"><span>Main page</span></a></li><li id="n-contents" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li><li id="n-currentevents" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li><li id="n-randompage" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:Random" title="Visit a randomly selected article [x]" accesskey="x"><span>Random article</span></a></li><li id="n-aboutsite" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li><li id="n-contactpage" class="mw-list-item"><a href="//web.archive.org/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
|
|
84
|
+
</ul>
|
|
85
|
+
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
<div id="p-interaction" class="vector-menu mw-portlet mw-portlet-interaction">
|
|
92
|
+
<div class="vector-menu-heading">
|
|
93
|
+
Contribute
|
|
94
|
+
</div>
|
|
95
|
+
<div class="vector-menu-content">
|
|
96
|
+
|
|
97
|
+
<ul class="vector-menu-content-list">
|
|
98
|
+
|
|
99
|
+
<li id="n-help" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li><li id="n-introduction" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li><li id="n-portal" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li><li id="n-recentchanges" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]" accesskey="r"><span>Recent changes</span></a></li><li id="n-upload" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li>
|
|
100
|
+
</ul>
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
</div>
|
|
108
|
+
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
|
|
112
|
+
</nav>
|
|
113
|
+
|
|
114
|
+
<a href="/web/20241227132135/https://en.wikipedia.org/wiki/Main_Page" class="mw-logo">
|
|
115
|
+
<img class="mw-logo-icon" src="/web/20241227132135im_/https://en.wikipedia.org/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50">
|
|
116
|
+
<span class="mw-logo-container skin-invert">
|
|
117
|
+
<img class="mw-logo-wordmark" alt="Wikipedia" src="/web/20241227132135im_/https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;">
|
|
118
|
+
<img class="mw-logo-tagline" alt="The Free Encyclopedia" src="/web/20241227132135im_/https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg" width="117" height="13" style="width: 7.3125em; height: 0.8125em;">
|
|
119
|
+
</span>
|
|
120
|
+
</a>
|
|
121
|
+
|
|
122
|
+
</div>
|
|
123
|
+
<div class="vector-header-end">
|
|
124
|
+
|
|
125
|
+
<div id="p-search" role="search" class="vector-search-box-vue vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
|
|
126
|
+
<a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:Search" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Search Wikipedia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>
|
|
127
|
+
|
|
128
|
+
<span>Search</span>
|
|
129
|
+
</a>
|
|
130
|
+
<div class="vector-typeahead-search-container">
|
|
131
|
+
<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
|
|
132
|
+
<form action="/web/20241227132135/https://en.wikipedia.org/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">
|
|
133
|
+
<div id="simpleSearch" class="cdx-search-input__input-wrapper" data-search-loc="header-moved">
|
|
134
|
+
<div class="cdx-text-input cdx-text-input--has-start-icon">
|
|
135
|
+
<input class="cdx-text-input__input" type="search" name="search" placeholder="Search Wikipedia" aria-label="Search Wikipedia" autocapitalize="sentences" title="Search Wikipedia [f]" accesskey="f" id="searchInput">
|
|
136
|
+
<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
|
|
137
|
+
</div>
|
|
138
|
+
<input type="hidden" name="title" value="Special:Search">
|
|
139
|
+
</div>
|
|
140
|
+
<button class="cdx-button cdx-search-input__end-button">Search</button>
|
|
141
|
+
</form>
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
|
|
146
|
+
<nav class="vector-user-links vector-user-links-wide" aria-label="Personal tools">
|
|
147
|
+
<div class="vector-user-links-main">
|
|
148
|
+
|
|
149
|
+
<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet">
|
|
150
|
+
<div class="vector-menu-content">
|
|
151
|
+
|
|
152
|
+
<ul class="vector-menu-content-list">
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
</ul>
|
|
156
|
+
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet">
|
|
162
|
+
<div class="vector-menu-content">
|
|
163
|
+
|
|
164
|
+
<ul class="vector-menu-content-list">
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
</ul>
|
|
168
|
+
|
|
169
|
+
</div>
|
|
170
|
+
</div>
|
|
171
|
+
|
|
172
|
+
<nav class="vector-appearance-landmark" aria-label="Appearance">
|
|
173
|
+
|
|
174
|
+
<div id="vector-appearance-dropdown" class="vector-dropdown " title="Change the appearance of the page's font size, width, and color">
|
|
175
|
+
<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox " aria-label="Appearance">
|
|
176
|
+
<label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span>
|
|
177
|
+
|
|
178
|
+
<span class="vector-dropdown-label-text">Appearance</span>
|
|
179
|
+
</label>
|
|
180
|
+
<div class="vector-dropdown-content">
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
<div id="vector-appearance-unpinned-container" class="vector-unpinned-container">
|
|
184
|
+
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
</div>
|
|
188
|
+
</div>
|
|
189
|
+
|
|
190
|
+
</nav>
|
|
191
|
+
|
|
192
|
+
<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet">
|
|
193
|
+
<div class="vector-menu-content">
|
|
194
|
+
|
|
195
|
+
<ul class="vector-menu-content-list">
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
</ul>
|
|
199
|
+
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet">
|
|
205
|
+
<div class="vector-menu-content">
|
|
206
|
+
|
|
207
|
+
<ul class="vector-menu-content-list">
|
|
208
|
+
<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="https://web.archive.org/web/20241227132135/https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en" class=""><span>Donate</span></a>
|
|
209
|
+
</li>
|
|
210
|
+
<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&returnto=Web+archiving" title="You are encouraged to create an account and log in; however, it is not mandatory" class=""><span>Create account</span></a>
|
|
211
|
+
</li>
|
|
212
|
+
<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:UserLogin&returnto=Web+archiving" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o" class=""><span>Log in</span></a>
|
|
213
|
+
</li>
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
</ul>
|
|
217
|
+
|
|
218
|
+
</div>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
</div>
|
|
222
|
+
|
|
223
|
+
<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out" title="Log in and more options">
|
|
224
|
+
<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox " aria-label="Personal tools">
|
|
225
|
+
<label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span>
|
|
226
|
+
|
|
227
|
+
<span class="vector-dropdown-label-text">Personal tools</span>
|
|
228
|
+
</label>
|
|
229
|
+
<div class="vector-dropdown-content">
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item" title="User menu">
|
|
234
|
+
<div class="vector-menu-content">
|
|
235
|
+
|
|
236
|
+
<ul class="vector-menu-content-list">
|
|
237
|
+
|
|
238
|
+
<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en"><span>Donate</span></a></li><li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:CreateAccount&returnto=Web+archiving" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li><li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:UserLogin&returnto=Web+archiving" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
|
|
239
|
+
</ul>
|
|
240
|
+
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
|
|
244
|
+
<div id="p-user-menu-anon-editor" class="vector-menu mw-portlet mw-portlet-user-menu-anon-editor">
|
|
245
|
+
<div class="vector-menu-heading">
|
|
246
|
+
Pages for logged out editors <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Help:Introduction" aria-label="Learn more about editing"><span>learn more</span></a>
|
|
247
|
+
</div>
|
|
248
|
+
<div class="vector-menu-content">
|
|
249
|
+
|
|
250
|
+
<ul class="vector-menu-content-list">
|
|
251
|
+
|
|
252
|
+
<li id="pt-anoncontribs" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]" accesskey="y"><span>Contributions</span></a></li><li id="pt-anontalk" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:MyTalk" title="Discussion about edits from this IP address [n]" accesskey="n"><span>Talk</span></a></li>
|
|
253
|
+
</ul>
|
|
254
|
+
|
|
255
|
+
</div>
|
|
256
|
+
</div>
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
|
|
262
|
+
</nav>
|
|
263
|
+
|
|
264
|
+
</div>
|
|
265
|
+
</header>
|
|
266
|
+
</div>
|
|
267
|
+
<div class="mw-page-container">
|
|
268
|
+
<div class="mw-page-container-inner">
|
|
269
|
+
<div class="vector-sitenotice-container">
|
|
270
|
+
<div id="siteNotice"><!-- CentralNotice --></div>
|
|
271
|
+
</div>
|
|
272
|
+
<div class="vector-column-start">
|
|
273
|
+
<div class="vector-main-menu-container">
|
|
274
|
+
<div id="mw-navigation">
|
|
275
|
+
<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">
|
|
276
|
+
<div id="vector-main-menu-pinned-container" class="vector-pinned-container">
|
|
277
|
+
|
|
278
|
+
</div>
|
|
279
|
+
</nav>
|
|
280
|
+
</div>
|
|
281
|
+
</div>
|
|
282
|
+
<div class="vector-sticky-pinned-container">
|
|
283
|
+
<nav id="mw-panel-toc" aria-label="Contents" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">
|
|
284
|
+
<div id="vector-toc-pinned-container" class="vector-pinned-container">
|
|
285
|
+
<div id="vector-toc" class="vector-toc vector-pinnable-element">
|
|
286
|
+
<div class="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned" data-feature-name="toc-pinned" data-pinnable-element-id="vector-toc">
|
|
287
|
+
<h2 class="vector-pinnable-header-label">Contents</h2>
|
|
288
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">move to sidebar</button>
|
|
289
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">hide</button>
|
|
290
|
+
</div>
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
<ul class="vector-toc-contents" id="mw-panel-toc-list">
|
|
294
|
+
<li id="toc-mw-content-text" class="vector-toc-list-item vector-toc-level-1">
|
|
295
|
+
<a href="#" class="vector-toc-link">
|
|
296
|
+
<div class="vector-toc-text">(Top)</div>
|
|
297
|
+
</a>
|
|
298
|
+
</li>
|
|
299
|
+
<li id="toc-History_and_development" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
300
|
+
<a class="vector-toc-link" href="#History_and_development">
|
|
301
|
+
<div class="vector-toc-text">
|
|
302
|
+
<span class="vector-toc-numb">1</span>
|
|
303
|
+
<span>History and development</span>
|
|
304
|
+
</div>
|
|
305
|
+
</a>
|
|
306
|
+
|
|
307
|
+
<ul id="toc-History_and_development-sublist" class="vector-toc-list">
|
|
308
|
+
</ul>
|
|
309
|
+
</li>
|
|
310
|
+
<li id="toc-Methods_of_collection" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
311
|
+
<a class="vector-toc-link" href="#Methods_of_collection">
|
|
312
|
+
<div class="vector-toc-text">
|
|
313
|
+
<span class="vector-toc-numb">2</span>
|
|
314
|
+
<span>Methods of collection</span>
|
|
315
|
+
</div>
|
|
316
|
+
</a>
|
|
317
|
+
|
|
318
|
+
<button aria-controls="toc-Methods_of_collection-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">
|
|
319
|
+
<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
|
|
320
|
+
<span>Toggle Methods of collection subsection</span>
|
|
321
|
+
</button>
|
|
322
|
+
|
|
323
|
+
<ul id="toc-Methods_of_collection-sublist" class="vector-toc-list">
|
|
324
|
+
<li id="toc-Transactional_archiving" class="vector-toc-list-item vector-toc-level-2">
|
|
325
|
+
<a class="vector-toc-link" href="#Transactional_archiving">
|
|
326
|
+
<div class="vector-toc-text">
|
|
327
|
+
<span class="vector-toc-numb">2.1</span>
|
|
328
|
+
<span>Transactional archiving</span>
|
|
329
|
+
</div>
|
|
330
|
+
</a>
|
|
331
|
+
|
|
332
|
+
<ul id="toc-Transactional_archiving-sublist" class="vector-toc-list">
|
|
333
|
+
</ul>
|
|
334
|
+
</li>
|
|
335
|
+
</ul>
|
|
336
|
+
</li>
|
|
337
|
+
<li id="toc-Difficulties_and_limitations" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
338
|
+
<a class="vector-toc-link" href="#Difficulties_and_limitations">
|
|
339
|
+
<div class="vector-toc-text">
|
|
340
|
+
<span class="vector-toc-numb">3</span>
|
|
341
|
+
<span>Difficulties and limitations</span>
|
|
342
|
+
</div>
|
|
343
|
+
</a>
|
|
344
|
+
|
|
345
|
+
<button aria-controls="toc-Difficulties_and_limitations-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">
|
|
346
|
+
<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
|
|
347
|
+
<span>Toggle Difficulties and limitations subsection</span>
|
|
348
|
+
</button>
|
|
349
|
+
|
|
350
|
+
<ul id="toc-Difficulties_and_limitations-sublist" class="vector-toc-list">
|
|
351
|
+
<li id="toc-Crawlers" class="vector-toc-list-item vector-toc-level-2">
|
|
352
|
+
<a class="vector-toc-link" href="#Crawlers">
|
|
353
|
+
<div class="vector-toc-text">
|
|
354
|
+
<span class="vector-toc-numb">3.1</span>
|
|
355
|
+
<span>Crawlers</span>
|
|
356
|
+
</div>
|
|
357
|
+
</a>
|
|
358
|
+
|
|
359
|
+
<ul id="toc-Crawlers-sublist" class="vector-toc-list">
|
|
360
|
+
</ul>
|
|
361
|
+
</li>
|
|
362
|
+
<li id="toc-General_limitations" class="vector-toc-list-item vector-toc-level-2">
|
|
363
|
+
<a class="vector-toc-link" href="#General_limitations">
|
|
364
|
+
<div class="vector-toc-text">
|
|
365
|
+
<span class="vector-toc-numb">3.2</span>
|
|
366
|
+
<span>General limitations</span>
|
|
367
|
+
</div>
|
|
368
|
+
</a>
|
|
369
|
+
|
|
370
|
+
<ul id="toc-General_limitations-sublist" class="vector-toc-list">
|
|
371
|
+
</ul>
|
|
372
|
+
</li>
|
|
373
|
+
</ul>
|
|
374
|
+
</li>
|
|
375
|
+
<li id="toc-Laws" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
376
|
+
<a class="vector-toc-link" href="#Laws">
|
|
377
|
+
<div class="vector-toc-text">
|
|
378
|
+
<span class="vector-toc-numb">4</span>
|
|
379
|
+
<span>Laws</span>
|
|
380
|
+
</div>
|
|
381
|
+
</a>
|
|
382
|
+
|
|
383
|
+
<ul id="toc-Laws-sublist" class="vector-toc-list">
|
|
384
|
+
</ul>
|
|
385
|
+
</li>
|
|
386
|
+
<li id="toc-See_also" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
387
|
+
<a class="vector-toc-link" href="#See_also">
|
|
388
|
+
<div class="vector-toc-text">
|
|
389
|
+
<span class="vector-toc-numb">5</span>
|
|
390
|
+
<span>See also</span>
|
|
391
|
+
</div>
|
|
392
|
+
</a>
|
|
393
|
+
|
|
394
|
+
<ul id="toc-See_also-sublist" class="vector-toc-list">
|
|
395
|
+
</ul>
|
|
396
|
+
</li>
|
|
397
|
+
<li id="toc-General_bibliography" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
398
|
+
<a class="vector-toc-link" href="#General_bibliography">
|
|
399
|
+
<div class="vector-toc-text">
|
|
400
|
+
<span class="vector-toc-numb">6</span>
|
|
401
|
+
<span>General bibliography</span>
|
|
402
|
+
</div>
|
|
403
|
+
</a>
|
|
404
|
+
|
|
405
|
+
<ul id="toc-General_bibliography-sublist" class="vector-toc-list">
|
|
406
|
+
</ul>
|
|
407
|
+
</li>
|
|
408
|
+
<li id="toc-References" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
409
|
+
<a class="vector-toc-link" href="#References">
|
|
410
|
+
<div class="vector-toc-text">
|
|
411
|
+
<span class="vector-toc-numb">7</span>
|
|
412
|
+
<span>References</span>
|
|
413
|
+
</div>
|
|
414
|
+
</a>
|
|
415
|
+
|
|
416
|
+
<ul id="toc-References-sublist" class="vector-toc-list">
|
|
417
|
+
</ul>
|
|
418
|
+
</li>
|
|
419
|
+
<li id="toc-External_links" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded">
|
|
420
|
+
<a class="vector-toc-link" href="#External_links">
|
|
421
|
+
<div class="vector-toc-text">
|
|
422
|
+
<span class="vector-toc-numb">8</span>
|
|
423
|
+
<span>External links</span>
|
|
424
|
+
</div>
|
|
425
|
+
</a>
|
|
426
|
+
|
|
427
|
+
<ul id="toc-External_links-sublist" class="vector-toc-list">
|
|
428
|
+
</ul>
|
|
429
|
+
</li>
|
|
430
|
+
</ul>
|
|
431
|
+
</div>
|
|
432
|
+
|
|
433
|
+
</div>
|
|
434
|
+
</nav>
|
|
435
|
+
</div>
|
|
436
|
+
</div>
|
|
437
|
+
<div class="mw-content-container">
|
|
438
|
+
<main id="content" class="mw-body">
|
|
439
|
+
<header class="mw-body-header vector-page-titlebar">
|
|
440
|
+
<nav aria-label="Contents" class="vector-toc-landmark">
|
|
441
|
+
|
|
442
|
+
<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left">
|
|
443
|
+
<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox " aria-label="Toggle the table of contents">
|
|
444
|
+
<label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span>
|
|
445
|
+
|
|
446
|
+
<span class="vector-dropdown-label-text">Toggle the table of contents</span>
|
|
447
|
+
</label>
|
|
448
|
+
<div class="vector-dropdown-content">
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container">
|
|
452
|
+
</div>
|
|
453
|
+
|
|
454
|
+
</div>
|
|
455
|
+
</div>
|
|
456
|
+
|
|
457
|
+
</nav>
|
|
458
|
+
<h1 id="firstHeading" class="firstHeading mw-first-heading"><span class="mw-page-title-main">Web archiving</span></h1>
|
|
459
|
+
|
|
460
|
+
<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang">
|
|
461
|
+
<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Go to an article in another language. Available in 24 languages">
|
|
462
|
+
<label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-24" aria-hidden="true"><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span>
|
|
463
|
+
|
|
464
|
+
<span class="vector-dropdown-label-text">24 languages</span>
|
|
465
|
+
</label>
|
|
466
|
+
<div class="vector-dropdown-content">
|
|
467
|
+
|
|
468
|
+
<div class="vector-menu-content">
|
|
469
|
+
|
|
470
|
+
<ul class="vector-menu-content-list">
|
|
471
|
+
|
|
472
|
+
<li class="interlanguage-link interwiki-ar mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ar.wikipedia.org/wiki/%D8%A3%D8%B1%D8%B4%D9%81%D8%A9_%D8%A7%D9%84%D9%88%D9%8A%D8%A8" title="أرشفة الويب – Arabic" lang="ar" hreflang="ar" data-title="أرشفة الويب" data-language-autonym="العربية" data-language-local-name="Arabic" class="interlanguage-link-target"><span>العربية</span></a></li><li class="interlanguage-link interwiki-ca mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ca.wikipedia.org/wiki/Web_archiving" title="Web archiving – Catalan" lang="ca" hreflang="ca" data-title="Web archiving" data-language-autonym="Català" data-language-local-name="Catalan" class="interlanguage-link-target"><span>Català</span></a></li><li class="interlanguage-link interwiki-cs mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://cs.wikipedia.org/wiki/Archivace_internetu" title="Archivace internetu – Czech" lang="cs" hreflang="cs" data-title="Archivace internetu" data-language-autonym="Čeština" data-language-local-name="Czech" class="interlanguage-link-target"><span>Čeština</span></a></li><li class="interlanguage-link interwiki-de mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://de.wikipedia.org/wiki/Web-Archivierung" title="Web-Archivierung – German" lang="de" hreflang="de" data-title="Web-Archivierung" data-language-autonym="Deutsch" data-language-local-name="German" class="interlanguage-link-target"><span>Deutsch</span></a></li><li class="interlanguage-link interwiki-et mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://et.wikipedia.org/wiki/Veebiarhiveerimine" title="Veebiarhiveerimine – Estonian" lang="et" hreflang="et" data-title="Veebiarhiveerimine" data-language-autonym="Eesti" data-language-local-name="Estonian" class="interlanguage-link-target"><span>Eesti</span></a></li><li class="interlanguage-link interwiki-el mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://el.wikipedia.org/wiki/%CE%91%CF%81%CF%87%CE%B5%CE%B9%CE%BF%CE%B8%CE%AD%CF%84%CE%B7%CF%83%CE%B7_%CE%B9%CF%83%CF%84%CE%BF%CF%8D" title="Αρχειοθέτηση ιστού – Greek" lang="el" hreflang="el" data-title="Αρχειοθέτηση ιστού" data-language-autonym="Ελληνικά" data-language-local-name="Greek" class="interlanguage-link-target"><span>Ελληνικά</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://es.wikipedia.org/wiki/Archivado_web" title="Archivado web – Spanish" lang="es" hreflang="es" data-title="Archivado web" data-language-autonym="Español" data-language-local-name="Spanish" class="interlanguage-link-target"><span>Español</span></a></li><li class="interlanguage-link interwiki-fa mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://fa.wikipedia.org/wiki/%D8%A2%D8%B1%D8%B4%DB%8C%D9%88_%D9%88%D8%A8" title="آرشیو وب – Persian" lang="fa" hreflang="fa" data-title="آرشیو وب" data-language-autonym="فارسی" data-language-local-name="Persian" class="interlanguage-link-target"><span>فارسی</span></a></li><li class="interlanguage-link interwiki-fr mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://fr.wikipedia.org/wiki/Archivage_du_Web" title="Archivage du Web – French" lang="fr" hreflang="fr" data-title="Archivage du Web" data-language-autonym="Français" data-language-local-name="French" class="interlanguage-link-target"><span>Français</span></a></li><li class="interlanguage-link interwiki-ko mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ko.wikipedia.org/wiki/%EC%9B%B9_%EC%95%84%EC%B9%B4%EC%9D%B4%EB%B9%99" title="웹 아카이빙 – Korean" lang="ko" hreflang="ko" data-title="웹 아카이빙" data-language-autonym="한국어" data-language-local-name="Korean" class="interlanguage-link-target"><span>한국어</span></a></li><li class="interlanguage-link interwiki-id mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://id.wikipedia.org/wiki/Pengarsipan_web" title="Pengarsipan web – Indonesian" lang="id" hreflang="id" data-title="Pengarsipan web" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" class="interlanguage-link-target"><span>Bahasa Indonesia</span></a></li><li class="interlanguage-link interwiki-it mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://it.wikipedia.org/wiki/Archiviazione_web" title="Archiviazione web – Italian" lang="it" hreflang="it" data-title="Archiviazione web" data-language-autonym="Italiano" data-language-local-name="Italian" class="interlanguage-link-target"><span>Italiano</span></a></li><li class="interlanguage-link interwiki-hu mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://hu.wikipedia.org/wiki/Webarchiv%C3%A1l%C3%A1s" title="Webarchiválás – Hungarian" lang="hu" hreflang="hu" data-title="Webarchiválás" data-language-autonym="Magyar" data-language-local-name="Hungarian" class="interlanguage-link-target"><span>Magyar</span></a></li><li class="interlanguage-link interwiki-mk mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://mk.wikipedia.org/wiki/%D0%A1%D0%B5%D0%BC%D1%80%D0%B5%D0%B6%D0%BD%D0%BE_%D0%B0%D1%80%D1%85%D0%B8%D0%B2%D0%B8%D1%80%D0%B0%D1%9A%D0%B5" title="Семрежно архивирање – Macedonian" lang="mk" hreflang="mk" data-title="Семрежно архивирање" data-language-autonym="Македонски" data-language-local-name="Macedonian" class="interlanguage-link-target"><span>Македонски</span></a></li><li class="interlanguage-link interwiki-ms mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ms.wikipedia.org/wiki/Arkib_Web" title="Arkib Web – Malay" lang="ms" hreflang="ms" data-title="Arkib Web" data-language-autonym="Bahasa Melayu" data-language-local-name="Malay" class="interlanguage-link-target"><span>Bahasa Melayu</span></a></li><li class="interlanguage-link interwiki-mwl mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://mwl.wikipedia.org/wiki/Arquibo_de_la_Web" title="Arquibo de la Web – Mirandese" lang="mwl" hreflang="mwl" data-title="Arquibo de la Web" data-language-autonym="Mirandés" data-language-local-name="Mirandese" class="interlanguage-link-target"><span>Mirandés</span></a></li><li class="interlanguage-link interwiki-ja mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ja.wikipedia.org/wiki/%E3%82%A6%E3%82%A7%E3%83%96%E3%82%A2%E3%83%BC%E3%82%AB%E3%82%A4%E3%83%96" title="ウェブアーカイブ – Japanese" lang="ja" hreflang="ja" data-title="ウェブアーカイブ" data-language-autonym="日本語" data-language-local-name="Japanese" class="interlanguage-link-target"><span>日本語</span></a></li><li class="interlanguage-link interwiki-pt mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://pt.wikipedia.org/wiki/Arquivamento_da_web" title="Arquivamento da web – Portuguese" lang="pt" hreflang="pt" data-title="Arquivamento da web" data-language-autonym="Português" data-language-local-name="Portuguese" class="interlanguage-link-target"><span>Português</span></a></li><li class="interlanguage-link interwiki-ru mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://ru.wikipedia.org/wiki/%D0%90%D1%80%D1%85%D0%B8%D0%B2%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5_%D0%B2%D0%B5%D0%B1-%D1%81%D0%B0%D0%B9%D1%82%D0%BE%D0%B2" title="Архивирование веб-сайтов – Russian" lang="ru" hreflang="ru" data-title="Архивирование веб-сайтов" data-language-autonym="Русский" data-language-local-name="Russian" class="interlanguage-link-target"><span>Русский</span></a></li><li class="interlanguage-link interwiki-simple mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://simple.wikipedia.org/wiki/Web_archiving" title="Web archiving – Simple English" lang="en-simple" hreflang="en-simple" data-title="Web archiving" data-language-autonym="Simple English" data-language-local-name="Simple English" class="interlanguage-link-target"><span>Simple English</span></a></li><li class="interlanguage-link interwiki-sk mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://sk.wikipedia.org/wiki/Archiv%C3%A1cia_WWW" title="Archivácia WWW – Slovak" lang="sk" hreflang="sk" data-title="Archivácia WWW" data-language-autonym="Slovenčina" data-language-local-name="Slovak" class="interlanguage-link-target"><span>Slovenčina</span></a></li><li class="interlanguage-link interwiki-uk mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://uk.wikipedia.org/wiki/%D0%90%D1%80%D1%85%D1%96%D0%B2%D1%83%D0%B2%D0%B0%D0%BD%D0%BD%D1%8F_%D0%B2%D0%B5%D0%B1%D1%81%D0%B0%D0%B9%D1%82%D1%96%D0%B2" title="Архівування вебсайтів – Ukrainian" lang="uk" hreflang="uk" data-title="Архівування вебсайтів" data-language-autonym="Українська" data-language-local-name="Ukrainian" class="interlanguage-link-target"><span>Українська</span></a></li><li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://vi.wikipedia.org/wiki/L%C6%B0u_tr%E1%BB%AF_web" title="Lưu trữ web – Vietnamese" lang="vi" hreflang="vi" data-title="Lưu trữ web" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li><li class="interlanguage-link interwiki-zh mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://zh.wikipedia.org/wiki/%E7%BD%91%E7%BB%9C%E5%AD%98%E6%A1%A3" title="网络存档 – Chinese" lang="zh" hreflang="zh" data-title="网络存档" data-language-autonym="中文" data-language-local-name="Chinese" class="interlanguage-link-target"><span>中文</span></a></li>
|
|
473
|
+
</ul>
|
|
474
|
+
<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-edit wb-langlinks-link"><a href="https://web.archive.org/web/20241227132135/https://www.wikidata.org/wiki/Special:EntityPage/Q2062069#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span></div>
|
|
475
|
+
</div>
|
|
476
|
+
|
|
477
|
+
</div>
|
|
478
|
+
</div>
|
|
479
|
+
</header>
|
|
480
|
+
<div class="vector-page-toolbar">
|
|
481
|
+
<div class="vector-page-toolbar-container">
|
|
482
|
+
<div id="left-navigation">
|
|
483
|
+
<nav aria-label="Namespaces">
|
|
484
|
+
|
|
485
|
+
<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages">
|
|
486
|
+
<div class="vector-menu-content">
|
|
487
|
+
|
|
488
|
+
<ul class="vector-menu-content-list">
|
|
489
|
+
|
|
490
|
+
<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_archiving" title="View the content page [c]" accesskey="c"><span>Article</span></a></li><li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Talk:Web_archiving" rel="discussion" title="Discuss improvements to the content page [t]" accesskey="t"><span>Talk</span></a></li>
|
|
491
|
+
</ul>
|
|
492
|
+
|
|
493
|
+
</div>
|
|
494
|
+
</div>
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet">
|
|
498
|
+
<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Change language variant">
|
|
499
|
+
<label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">English</span>
|
|
500
|
+
</label>
|
|
501
|
+
<div class="vector-dropdown-content">
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet">
|
|
506
|
+
<div class="vector-menu-content">
|
|
507
|
+
|
|
508
|
+
<ul class="vector-menu-content-list">
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
</ul>
|
|
512
|
+
|
|
513
|
+
</div>
|
|
514
|
+
</div>
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
</div>
|
|
518
|
+
</div>
|
|
519
|
+
|
|
520
|
+
</nav>
|
|
521
|
+
</div>
|
|
522
|
+
<div id="right-navigation" class="vector-collapsible">
|
|
523
|
+
<nav aria-label="Views">
|
|
524
|
+
|
|
525
|
+
<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views">
|
|
526
|
+
<div class="vector-menu-content">
|
|
527
|
+
|
|
528
|
+
<ul class="vector-menu-content-list">
|
|
529
|
+
|
|
530
|
+
<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_archiving"><span>Read</span></a></li><li id="ca-edit" class="vector-tab-noicon mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li><li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=history" title="Past revisions of this page [h]" accesskey="h"><span>View history</span></a></li>
|
|
531
|
+
</ul>
|
|
532
|
+
|
|
533
|
+
</div>
|
|
534
|
+
</div>
|
|
535
|
+
|
|
536
|
+
</nav>
|
|
537
|
+
|
|
538
|
+
<nav class="vector-page-tools-landmark" aria-label="Page tools">
|
|
539
|
+
|
|
540
|
+
<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown">
|
|
541
|
+
<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox " aria-label="Tools">
|
|
542
|
+
<label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">Tools</span>
|
|
543
|
+
</label>
|
|
544
|
+
<div class="vector-dropdown-content">
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">
|
|
548
|
+
|
|
549
|
+
<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">
|
|
550
|
+
<div class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned" data-feature-name="page-tools-pinned" data-pinnable-element-id="vector-page-tools" data-pinned-container-id="vector-page-tools-pinned-container" data-unpinned-container-id="vector-page-tools-unpinned-container">
|
|
551
|
+
<div class="vector-pinnable-header-label">Tools</div>
|
|
552
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
|
|
553
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
|
|
554
|
+
</div>
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items" title="More options">
|
|
558
|
+
<div class="vector-menu-heading">
|
|
559
|
+
Actions
|
|
560
|
+
</div>
|
|
561
|
+
<div class="vector-menu-content">
|
|
562
|
+
|
|
563
|
+
<ul class="vector-menu-content-list">
|
|
564
|
+
|
|
565
|
+
<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_archiving"><span>Read</span></a></li><li id="ca-more-edit" class="vector-more-collapsible-item mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li><li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=history"><span>View history</span></a></li>
|
|
566
|
+
</ul>
|
|
567
|
+
|
|
568
|
+
</div>
|
|
569
|
+
</div>
|
|
570
|
+
|
|
571
|
+
<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb">
|
|
572
|
+
<div class="vector-menu-heading">
|
|
573
|
+
General
|
|
574
|
+
</div>
|
|
575
|
+
<div class="vector-menu-content">
|
|
576
|
+
|
|
577
|
+
<ul class="vector-menu-content-list">
|
|
578
|
+
|
|
579
|
+
<li id="t-whatlinkshere" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:WhatLinksHere/Web_archiving" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j"><span>What links here</span></a></li><li id="t-recentchangeslinked" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:RecentChangesLinked/Web_archiving" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k"><span>Related changes</span></a></li><li id="t-upload" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u"><span>Upload file</span></a></li><li id="t-specialpages" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q"><span>Special pages</span></a></li><li id="t-permalink" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&oldid=1263947581" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li><li id="t-info" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=info" title="More information about this page"><span>Page information</span></a></li><li id="t-cite" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:CiteThisPage&page=Web_archiving&id=1263947581&wpFormIdentifier=titleform" title="Information on how to cite this page"><span>Cite this page</span></a></li><li id="t-urlshortener" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWeb_archiving"><span>Get shortened URL</span></a></li><li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWeb_archiving"><span>Download QR code</span></a></li>
|
|
580
|
+
</ul>
|
|
581
|
+
|
|
582
|
+
</div>
|
|
583
|
+
</div>
|
|
584
|
+
|
|
585
|
+
<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export">
|
|
586
|
+
<div class="vector-menu-heading">
|
|
587
|
+
Print/export
|
|
588
|
+
</div>
|
|
589
|
+
<div class="vector-menu-content">
|
|
590
|
+
|
|
591
|
+
<ul class="vector-menu-content-list">
|
|
592
|
+
|
|
593
|
+
<li id="coll-download-as-rl" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Special:DownloadAsPdf&page=Web_archiving&action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li><li id="t-print" class="mw-list-item"><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&printable=yes" title="Printable version of this page [p]" accesskey="p"><span>Printable version</span></a></li>
|
|
594
|
+
</ul>
|
|
595
|
+
|
|
596
|
+
</div>
|
|
597
|
+
</div>
|
|
598
|
+
|
|
599
|
+
<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects">
|
|
600
|
+
<div class="vector-menu-heading">
|
|
601
|
+
In other projects
|
|
602
|
+
</div>
|
|
603
|
+
<div class="vector-menu-content">
|
|
604
|
+
|
|
605
|
+
<ul class="vector-menu-content-list">
|
|
606
|
+
|
|
607
|
+
<li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://web.archive.org/web/20241227132135/https://www.wikidata.org/wiki/Special:EntityPage/Q2062069" title="Structured data on this page hosted by Wikidata [g]" accesskey="g"><span>Wikidata item</span></a></li>
|
|
608
|
+
</ul>
|
|
609
|
+
|
|
610
|
+
</div>
|
|
611
|
+
</div>
|
|
612
|
+
|
|
613
|
+
</div>
|
|
614
|
+
|
|
615
|
+
</div>
|
|
616
|
+
|
|
617
|
+
</div>
|
|
618
|
+
</div>
|
|
619
|
+
|
|
620
|
+
</nav>
|
|
621
|
+
</div>
|
|
622
|
+
</div>
|
|
623
|
+
</div>
|
|
624
|
+
<div class="vector-column-end">
|
|
625
|
+
<div class="vector-sticky-pinned-container">
|
|
626
|
+
<nav class="vector-page-tools-landmark" aria-label="Page tools">
|
|
627
|
+
<div id="vector-page-tools-pinned-container" class="vector-pinned-container">
|
|
628
|
+
|
|
629
|
+
</div>
|
|
630
|
+
</nav>
|
|
631
|
+
<nav class="vector-appearance-landmark" aria-label="Appearance">
|
|
632
|
+
<div id="vector-appearance-pinned-container" class="vector-pinned-container">
|
|
633
|
+
<div id="vector-appearance" class="vector-appearance vector-pinnable-element">
|
|
634
|
+
<div class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned" data-feature-name="appearance-pinned" data-pinnable-element-id="vector-appearance" data-pinned-container-id="vector-appearance-pinned-container" data-unpinned-container-id="vector-appearance-unpinned-container">
|
|
635
|
+
<div class="vector-pinnable-header-label">Appearance</div>
|
|
636
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
|
|
637
|
+
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
|
|
638
|
+
</div>
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
</div>
|
|
642
|
+
|
|
643
|
+
</div>
|
|
644
|
+
</nav>
|
|
645
|
+
</div>
|
|
646
|
+
</div>
|
|
647
|
+
<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
|
|
648
|
+
<div class="vector-body-before-content">
|
|
649
|
+
<div class="mw-indicators">
|
|
650
|
+
</div>
|
|
651
|
+
|
|
652
|
+
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
|
|
653
|
+
</div>
|
|
654
|
+
<div id="contentSub"><div id="mw-content-subtitle"></div></div>
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
<div id="mw-content-text" class="mw-body-content"><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr"><div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Preserving history of web pages</div>
|
|
658
|
+
<style data-mw-deduplicate="TemplateStyles:r1236090951">.mw-parser-output .hatnote{font-style:italic}.mw-parser-output div.hatnote{padding-left:1.6em;margin-bottom:0.5em}.mw-parser-output .hatnote i{font-style:normal}.mw-parser-output .hatnote+link+.hatnote{margin-top:-0.5em}@media print{body.ns-0 .mw-parser-output .hatnote{display:none!important}}</style><div role="note" class="hatnote navigation-not-searchable">"Web archive" redirects here. For other uses, see <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_archive_(disambiguation)" class="mw-disambig" title="Web archive (disambiguation)">Web archive (disambiguation)</a>.</div>
|
|
659
|
+
<p class="mw-empty-elt">
|
|
660
|
+
</p><p><b>Web archiving</b> is the process of collecting, preserving and providing access to material from the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/World_Wide_Web" title="World Wide Web">World Wide Web</a>. The aim is to ensure that information is <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_preservation" title="Digital preservation">preserved</a> in an <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archive" title="Archive">archival</a> format for research and the public.<sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup>
|
|
661
|
+
</p><p>Web archivists typically employ automated <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_crawler" title="Web crawler">web crawlers</a> to capturing the massive amount of information on the Web. A widely known web archive service is the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a>, run by the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Internet_Archive" title="Internet Archive">Internet Archive</a>.
|
|
662
|
+
</p><p>The growing portion of human culture created and recorded on the web makes it inevitable that more and more libraries and archives will have to face the challenges of web archiving.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_library" title="National library">National libraries</a>, <a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_archive" class="mw-redirect" title="National archive">national archives</a> and various consortia of organizations are also involved in archiving Web content to prevent its loss.
|
|
663
|
+
</p><p>Commercial web archiving software and services are also available to organizations that need to archive their own web content for corporate heritage, regulatory, or legal purposes.
|
|
664
|
+
</p>
|
|
665
|
+
<meta property="mw:PageProp/toc"/>
|
|
666
|
+
<div class="mw-heading mw-heading2"><h2 id="History_and_development">History and development</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=1" title="Edit section: History and development"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
667
|
+
<p>While curation and organization of the web has been prevalent since the mid- to late-1990s, one of the first large-scale web archiving projects was the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Internet_Archive" title="Internet Archive">Internet Archive</a>, a non-profit organization created by <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Brewster_Kahle" title="Brewster Kahle">Brewster Kahle</a> in 1996.<sup id="cite_ref-kitsuregawa_3-0" class="reference"><a href="#cite_note-kitsuregawa-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> The Internet Archive released its own search engine for viewing archived web content, the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a>, in 2001.<sup id="cite_ref-kitsuregawa_3-1" class="reference"><a href="#cite_note-kitsuregawa-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> As of 2018, the Internet Archive was home to 40 petabytes of data.<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup> The Internet Archive also developed many of its own tools for collecting and storing its data, including <a href="/web/20241227132135/https://en.wikipedia.org/wiki/PetaBox" title="PetaBox">PetaBox</a> for storing large amounts of data efficiently and safely, and <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritrix" title="Heritrix">Heritrix</a>, a web crawler developed in conjunction with the Nordic national libraries.<sup id="cite_ref-kitsuregawa_3-2" class="reference"><a href="#cite_note-kitsuregawa-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> Other projects launched around the same time included a web archiving project by the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_Library_of_Canada" class="mw-redirect" title="National Library of Canada">National Library of Canada</a>, Australia's <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Pandora_Archive" class="mw-redirect" title="Pandora Archive">Pandora</a>, Tasmanian web archives and Sweden's Kulturarw3.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-:0_6-0" class="reference"><a href="#cite_note-:0-6"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup>
|
|
668
|
+
</p><p>From 2001 <span class="failed-verification-content" style="padding-left:0.1em; padding-right:0.1em; color:var(--color-subtle, #54595d); border:1px solid var(--border-color-subtle, #c8ccd1);">to 2010,</span><sup class="noprint Inline-Template Template-Fact" style="margin-left:0.1em; white-space:nowrap;">[<i><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability"><span title="Neither say that it ended in 2010 (July 2020)">failed verification</span></a></i>]</sup> the International Web Archiving Workshop (IWAW) provided a platform to share experiences and exchange ideas.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup> The <a href="/web/20241227132135/https://en.wikipedia.org/wiki/International_Internet_Preservation_Consortium" title="International Internet Preservation Consortium">International Internet Preservation Consortium</a> (IIPC), established in 2003, has facilitated international collaboration in developing standards and open source tools for the creation of web archives.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup>
|
|
669
|
+
</p><p>The now-defunct <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Internet_Memory_Foundation" title="Internet Memory Foundation">Internet Memory Foundation</a> was founded in 2004 and founded by the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/European_Commission" title="European Commission">European Commission</a> in order to archive the web in Europe.<sup id="cite_ref-kitsuregawa_3-3" class="reference"><a href="#cite_note-kitsuregawa-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> This project developed and released many open source tools, such as "rich media capturing, temporal coherence analysis, spam assessment, and terminology evolution detection."<sup id="cite_ref-kitsuregawa_3-4" class="reference"><a href="#cite_note-kitsuregawa-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup> The data from the foundation is now housed by the Internet Archive, but not currently publicly accessible.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup>
|
|
670
|
+
</p><p>Despite the fact that there is no centralized responsibility for its preservation, web content is rapidly becoming the official record. For example, in 2017, the United States Department of Justice affirmed that the government treats the President's tweets as official statements.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup>
|
|
671
|
+
</p>
|
|
672
|
+
<div class="mw-heading mw-heading2"><h2 id="Methods_of_collection">Methods of collection</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=2" title="Edit section: Methods of collection"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
673
|
+
<link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1236090951"><div role="note" class="hatnote navigation-not-searchable">See also: <a href="/web/20241227132135/https://en.wikipedia.org/wiki/List_of_Web_archiving_initiatives" title="List of Web archiving initiatives">List of Web archiving initiatives</a></div><p>Web archivists generally archive various types of web content including <a href="/web/20241227132135/https://en.wikipedia.org/wiki/HTML" title="HTML">HTML</a> web pages, <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Style_sheet_(web_development)" title="Style sheet (web development)">style sheets</a>, <a href="/web/20241227132135/https://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</a>, <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_image" title="Digital image">images</a>, and <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_video" title="Digital video">video</a>. They also archive <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Metadata" title="Metadata">metadata</a> about the collected resources such as access time, <a href="/web/20241227132135/https://en.wikipedia.org/wiki/MIME_type" class="mw-redirect" title="MIME type">MIME type</a>, and content length. This metadata is useful in establishing <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Authentication" title="Authentication">authenticity</a> and <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Provenance" title="Provenance">provenance</a> of the archived collection.
|
|
674
|
+
</p><div class="mw-heading mw-heading3"><h3 id="Transactional_archiving">Transactional archiving</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=3" title="Edit section: Transactional archiving"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
675
|
+
<p>Transactional archiving is an event-driven approach, which collects the actual transactions which take place between a <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_server" title="Web server">web server</a> and a <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_browser" title="Web browser">web browser</a>. It is primarily used as a means of preserving evidence of the content which was actually viewed on a particular <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Website" title="Website">website</a>, on a given date. This may be particularly important for organizations which need to comply with legal or regulatory requirements for disclosing and retaining information.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup>
|
|
676
|
+
</p><p>A transactional archiving system typically operates by intercepting every <a href="/web/20241227132135/https://en.wikipedia.org/wiki/HTTP" title="HTTP">HTTP</a> request to, and response from, the web server, filtering each response to eliminate duplicate content, and permanently storing the responses as bitstreams.
|
|
677
|
+
</p>
|
|
678
|
+
<div class="mw-heading mw-heading2"><h2 id="Difficulties_and_limitations">Difficulties and limitations</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=4" title="Edit section: Difficulties and limitations"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
679
|
+
<div class="mw-heading mw-heading3"><h3 id="Crawlers">Crawlers</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=5" title="Edit section: Crawlers"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
680
|
+
<p>Web archives which rely on web crawling as their primary means of collecting the Web are influenced by the difficulties of web crawling:
|
|
681
|
+
</p>
|
|
682
|
+
<ul><li>The <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Robots_exclusion_protocol" class="mw-redirect" title="Robots exclusion protocol">robots exclusion protocol</a> may request crawlers not access portions of a website. Some web archivists may ignore the request and crawl those portions anyway.</li>
|
|
683
|
+
<li>Large portions of a website may be hidden in the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Deep_Web_(search_indexing)" class="mw-redirect" title="Deep Web (search indexing)">Deep Web</a>. For example, the results page behind a web form can lie in the Deep Web if crawlers cannot follow a link to the results page.</li>
|
|
684
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Crawler_trap" class="mw-redirect" title="Crawler trap">Crawler traps</a> (e.g., calendars) may cause a crawler to download an infinite number of pages, so crawlers are usually configured to limit the number of dynamic pages they crawl.</li>
|
|
685
|
+
<li>Most of the archiving tools do not capture the page as it is. It is observed that ad banners and images are often missed while archiving.</li></ul>
|
|
686
|
+
<p>However, it is important to note that a native format web archive, i.e., a fully browsable web archive, with working links, media, etc., is only really possible using crawler technology.
|
|
687
|
+
</p><p>The Web is so large that crawling a significant portion of it takes a large number of technical resources. Also, the Web is changing so fast that portions of a website may suffer modifications before a crawler has even finished crawling it.
|
|
688
|
+
</p>
|
|
689
|
+
<div class="mw-heading mw-heading3"><h3 id="General_limitations">General limitations</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=6" title="Edit section: General limitations"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
690
|
+
<p>Some web servers are configured to return different pages to web archiver requests than they would in response to regular browser requests. This is typically done to fool search engines into directing more user traffic to a website and is often done to avoid accountability or to provide enhanced content only to those browsers that can display it.
|
|
691
|
+
</p><p>Not only must web archivists deal with the technical challenges of web archiving, they must also contend with intellectual property laws. Peter Lyman<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span class="cite-bracket">[</span>13<span class="cite-bracket">]</span></a></sup> states that "although the Web is popularly regarded as a <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Public_domain" title="Public domain">public domain</a> resource, it is <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Copyright" title="Copyright">copyrighted</a>; thus, archivists have no legal right to copy the Web". However <a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_library" title="National library">national libraries</a> in some countries<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span class="cite-bracket">[</span>14<span class="cite-bracket">]</span></a></sup> have a legal right to copy portions of the web under an extension of a <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Legal_deposit" title="Legal deposit">legal deposit</a>.
|
|
692
|
+
</p><p>Some private non-profit web archives that are made publicly accessible like <a href="/web/20241227132135/https://en.wikipedia.org/wiki/WebCite" title="WebCite">WebCite</a>, the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Internet_Archive" title="Internet Archive">Internet Archive</a> or the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Internet_Memory_Foundation" title="Internet Memory Foundation">Internet Memory Foundation</a> allow content owners to hide or remove archived content that they do not want the public to have access to. Other web archives are only accessible from certain locations or have regulated usage. WebCite cites a recent lawsuit against Google's caching, which <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Google" title="Google">Google</a> won.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span class="cite-bracket">[</span>15<span class="cite-bracket">]</span></a></sup>
|
|
693
|
+
</p>
|
|
694
|
+
<div class="mw-heading mw-heading2"><h2 id="Laws">Laws</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=7" title="Edit section: Laws"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
695
|
+
<p>In 2017 the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Financial_Industry_Regulatory_Authority" title="Financial Industry Regulatory Authority">Financial Industry Regulatory Authority, Inc.</a> (FINRA), a United States financial regulatory organization, released a notice stating all the businesses doing digital communications are required to keep a record. This includes website data, social media posts, and messages.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span class="cite-bracket">[</span>16<span class="cite-bracket">]</span></a></sup> Some <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Copyright_law" class="mw-redirect" title="Copyright law">copyright laws</a> may inhibit Web archiving. For instance, academic archiving by <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Sci-Hub" title="Sci-Hub">Sci-Hub</a> falls outside the bounds of contemporary copyright law. The site provides enduring access to academic works including those that do not have an <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Open_access" title="Open access">open access</a> license and thereby contributes to the archival of scientific research which may otherwise be lost.<sup id="cite_ref-Claburn_2020_17-0" class="reference"><a href="#cite_note-Claburn_2020-17"><span class="cite-bracket">[</span>17<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span class="cite-bracket">[</span>18<span class="cite-bracket">]</span></a></sup>
|
|
696
|
+
</p>
|
|
697
|
+
<div class="mw-heading mw-heading2"><h2 id="See_also">See also</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=8" title="Edit section: See also"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
698
|
+
<style data-mw-deduplicate="TemplateStyles:r1259569809">.mw-parser-output .portalbox{padding:0;margin:0.5em 0;display:table;box-sizing:border-box;max-width:175px;list-style:none}.mw-parser-output .portalborder{border:1px solid var(--border-color-base,#a2a9b1);padding:0.1em;background:var(--background-color-neutral-subtle,#f8f9fa)}.mw-parser-output .portalbox-entry{display:table-row;font-size:85%;line-height:110%;height:1.9em;font-style:italic;font-weight:bold}.mw-parser-output .portalbox-image{display:table-cell;padding:0.2em;vertical-align:middle;text-align:center}.mw-parser-output .portalbox-link{display:table-cell;padding:0.2em 0.2em 0.2em 0.3em;vertical-align:middle}@media(min-width:720px){.mw-parser-output .portalleft{clear:left;float:left;margin:0.5em 1em 0.5em 0}.mw-parser-output .portalright{clear:right;float:right;margin:0.5em 0 0.5em 1em}}</style><ul role="navigation" aria-label="Portals" class="noprint portalbox portalborder portalright">
|
|
699
|
+
<li class="portalbox-entry"><span class="portalbox-image"><span class="noviewer" typeof="mw:File"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/File:Crystal_Clear_app_linneighborhood.svg" class="mw-file-description"><img alt="icon" src="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linneighborhood.svg/28px-Crystal_Clear_app_linneighborhood.svg.png" decoding="async" width="28" height="28" class="mw-file-element" srcset="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linneighborhood.svg/42px-Crystal_Clear_app_linneighborhood.svg.png 1.5x, //web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linneighborhood.svg/56px-Crystal_Clear_app_linneighborhood.svg.png 2x" data-file-width="407" data-file-height="407"/></a></span></span><span class="portalbox-link"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Portal:Internet" title="Portal:Internet">Internet portal</a></span></li></ul>
|
|
700
|
+
<style data-mw-deduplicate="TemplateStyles:r1184024115">.mw-parser-output .div-col{margin-top:0.3em;column-width:30em}.mw-parser-output .div-col-small{font-size:90%}.mw-parser-output .div-col-rules{column-rule:1px solid #aaa}.mw-parser-output .div-col dl,.mw-parser-output .div-col ol,.mw-parser-output .div-col ul{margin-top:0}.mw-parser-output .div-col li,.mw-parser-output .div-col dd{page-break-inside:avoid;break-inside:avoid-column}</style><div class="div-col" style="column-width: 15em;">
|
|
701
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Anna%27s_Archive" title="Anna's Archive">Anna's Archive</a></li>
|
|
702
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archive_site" title="Archive site">Archive site</a></li>
|
|
703
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archive_Team" title="Archive Team">Archive Team</a></li>
|
|
704
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archive.today" title="Archive.today">archive.today</a> (formerly archive.is)</li>
|
|
705
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collective_memory" title="Collective memory">Collective memory</a></li>
|
|
706
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Common_Crawl" title="Common Crawl">Common Crawl</a></li>
|
|
707
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_hoarding" title="Digital hoarding">Digital hoarding</a></li>
|
|
708
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_preservation" title="Digital preservation">Digital preservation</a></li>
|
|
709
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_library" title="Digital library">Digital library</a></li>
|
|
710
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ghost_Archive" class="mw-redirect" title="Ghost Archive">Ghost Archive</a></li>
|
|
711
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Google_Cache" class="mw-redirect" title="Google Cache">Google Cache</a></li>
|
|
712
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/List_of_Web_archiving_initiatives" title="List of Web archiving initiatives">List of Web archiving initiatives</a></li>
|
|
713
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:List_of_web_archives_on_Wikipedia" title="Wikipedia:List of web archives on Wikipedia">Wikipedia:List of web archives on Wikipedia</a></li>
|
|
714
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Memento_Project" title="Memento Project">Memento Project</a></li>
|
|
715
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Minerva_Initiative" title="Minerva Initiative">Minerva Initiative</a></li>
|
|
716
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Mirror_website" class="mw-redirect" title="Mirror website">Mirror website</a></li>
|
|
717
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_Digital_Information_Infrastructure_and_Preservation_Program" title="National Digital Information Infrastructure and Preservation Program">National Digital Information Infrastructure and Preservation Program</a> (NDIIPP)</li>
|
|
718
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_Digital_Library_Program" title="National Digital Library Program">National Digital Library Program</a> (NDLP)</li>
|
|
719
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/PADICAT" title="PADICAT">PADICAT</a></li>
|
|
720
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/PageFreezer" title="PageFreezer">PageFreezer</a></li>
|
|
721
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Pandora_Archive" class="mw-redirect" title="Pandora Archive">Pandora Archive</a></li>
|
|
722
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/UK_Web_Archive" title="UK Web Archive">UK Web Archive</a></li>
|
|
723
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Virtual_artifact" title="Virtual artifact">Virtual artifact</a></li>
|
|
724
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wayback_Machine" title="Wayback Machine">Wayback Machine</a></li>
|
|
725
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Web_crawling" class="mw-redirect" title="Web crawling">Web crawling</a></li>
|
|
726
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/WebCite" title="WebCite">WebCite</a></li></ul>
|
|
727
|
+
</div>
|
|
728
|
+
<div class="mw-heading mw-heading2"><h2 id="General_bibliography">General bibliography</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=9" title="Edit section: General bibliography"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
729
|
+
<style data-mw-deduplicate="TemplateStyles:r1239549316">.mw-parser-output .refbegin{margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li{margin-left:0;padding-left:3.2em;text-indent:-3.2em}.mw-parser-output .refbegin-hanging-indents ul,.mw-parser-output .refbegin-hanging-indents ul li{list-style:none}@media(max-width:720px){.mw-parser-output .refbegin-hanging-indents>ul>li{padding-left:1.6em;text-indent:-1.6em}}.mw-parser-output .refbegin-columns{margin-top:0.3em}.mw-parser-output .refbegin-columns ul{margin-top:0}.mw-parser-output .refbegin-columns li{page-break-inside:avoid;break-inside:avoid-column}@media screen{.mw-parser-output .refbegin{font-size:90%}}</style><div class="refbegin" style="">
|
|
730
|
+
<ul><li><style data-mw-deduplicate="TemplateStyles:r1238218222">.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}</style><cite id="CITEREFBrown2006" class="citation book cs1">Brown, A. (2006). <i>Archiving Websites: A Practical Guide for Information Management Professionals</i>. London: Facet Publishing. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-1-85604-553-7" title="Special:BookSources/978-1-85604-553-7"><bdi>978-1-85604-553-7</bdi></a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Archiving+Websites%3A+A+Practical+Guide+for+Information+Management+Professionals&rft.place=London&rft.pub=Facet+Publishing&rft.date=2006&rft.isbn=978-1-85604-553-7&rft.aulast=Brown&rft.aufirst=A.&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
731
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFBrügger2005" class="citation book cs1">Brügger, N. (2005). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20090129171453/https://www.cfi.au.dk/en/publications/cfi"><i>Archiving Websites. General Considerations and Strategies</i></a>. Aarhus: The Centre for Internet Research. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-87-990507-0-3" title="Special:BookSources/978-87-990507-0-3"><bdi>978-87-990507-0-3</bdi></a>. Archived from <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.cfi.au.dk/en/publications/cfi">the original</a> on January 29, 2009.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Archiving+Websites.+General+Considerations+and+Strategies&rft.place=Aarhus&rft.pub=The+Centre+for+Internet+Research&rft.date=2005&rft.isbn=978-87-990507-0-3&rft.aulast=Br%C3%BCgger&rft.aufirst=N.&rft_id=https%3A%2F%2Fwww.cfi.au.dk%2Fen%2Fpublications%2Fcfi&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
732
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFDay,_M.2003" class="citation book cs1">Day, M. (2003). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://purehost.bath.ac.uk/ws/files/569662/ecdl-2003-final.pdf">"Preserving the Fabric of Our Lives: A Survey of Web Preservation Initiatives"</a> <span class="cs1-format">(PDF)</span>. <i>Research and Advanced Technology for Digital Libraries</i>. Lecture Notes in Computer Science. Vol. 2769. pp. 461–472. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1007%2F978-3-540-45175-4_42">10.1007/978-3-540-45175-4_42</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-3-540-40726-3" title="Special:BookSources/978-3-540-40726-3"><bdi>978-3-540-40726-3</bdi></a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.atitle=Preserving+the+Fabric+of+Our+Lives%3A+A+Survey+of+Web+Preservation+Initiatives&rft.btitle=Research+and+Advanced+Technology+for+Digital+Libraries&rft.series=Lecture+Notes+in+Computer+Science&rft.pages=461-472&rft.date=2003&rft_id=info%3Adoi%2F10.1007%2F978-3-540-45175-4_42&rft.isbn=978-3-540-40726-3&rft.au=Day%2C+M.&rft_id=https%3A%2F%2Fpurehost.bath.ac.uk%2Fws%2Ffiles%2F569662%2Fecdl-2003-final.pdf&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
733
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFEysenbach,_G.Trudel,_M.2005" class="citation journal cs1">Eysenbach, G. & Trudel, M. (2005). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1550686">"Going, going, still there: using the WebCite service to permanently archive cited web pages"</a>. <i>Journal of Medical Internet Research</i>. <b>7</b> (5): e60. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.2196%2Fjmir.7.5.e60">10.2196/jmir.7.5.e60</a></span>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/PMC_(identifier)" class="mw-redirect" title="PMC (identifier)">PMC</a> <span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1550686">1550686</a></span>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/PMID_(identifier)" class="mw-redirect" title="PMID (identifier)">PMID</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://pubmed.ncbi.nlm.nih.gov/16403724">16403724</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Journal+of+Medical+Internet+Research&rft.atitle=Going%2C+going%2C+still+there%3A+using+the+WebCite+service+to+permanently+archive+cited+web+pages&rft.volume=7&rft.issue=5&rft.pages=e60&rft.date=2005&rft_id=https%3A%2F%2Fwww.ncbi.nlm.nih.gov%2Fpmc%2Farticles%2FPMC1550686%23id-name%3DPMC&rft_id=info%3Apmid%2F16403724&rft_id=info%3Adoi%2F10.2196%2Fjmir.7.5.e60&rft.au=Eysenbach%2C+G.&rft.au=Trudel%2C+M.&rft_id=https%3A%2F%2Fwww.ncbi.nlm.nih.gov%2Fpmc%2Farticles%2FPMC1550686&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
734
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFFitch2003" class="citation conference cs1">Fitch, Kent (2003). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20030720111610/https://ausweb.scu.edu.au/aw03/papers/fitch/">"Web site archiving—an approach to recording every materially different response produced by a website"</a>. <i>Ausweb 03</i>. Archived from <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://ausweb.scu.edu.au/aw03/papers/fitch/">the original</a> on July 20, 2003<span class="reference-accessdate">. Retrieved <span class="nowrap">September 27,</span> 2006</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=conference&rft.atitle=Web+site+archiving%E2%80%94an+approach+to+recording+every+materially+different+response+produced+by+a+website&rft.btitle=Ausweb+03&rft.date=2003&rft.aulast=Fitch&rft.aufirst=Kent&rft_id=https%3A%2F%2Fausweb.scu.edu.au%2Faw03%2Fpapers%2Ffitch%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
735
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFJacoby2010" class="citation web cs1">Jacoby, Robert (August 19, 2010). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20110103095915/https://www.seoq.com/archiving-a-web-page/">"Archiving a Web Page"</a>. Archived from <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.seoq.com/archiving-a-web-page/">the original</a> on January 3, 2011<span class="reference-accessdate">. Retrieved <span class="nowrap">October 23,</span> 2010</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Archiving+a+Web+Page&rft.date=2010-08-19&rft.aulast=Jacoby&rft.aufirst=Robert&rft_id=https%3A%2F%2Fwww.seoq.com%2Farchiving-a-web-page%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
736
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFLyman,_P.2002" class="citation journal cs1">Lyman, P. (2002). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.clir.org/pubs/reports/pub106/web.html">"Archiving the World Wide Web"</a>. <i>Building a National Strategy for Preservation: Issues in Digital Media Archiving</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Building+a+National+Strategy+for+Preservation%3A+Issues+in+Digital+Media+Archiving&rft.atitle=Archiving+the+World+Wide+Web&rft.date=2002&rft.au=Lyman%2C+P.&rft_id=https%3A%2F%2Fwww.clir.org%2Fpubs%2Freports%2Fpub106%2Fweb.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
737
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFMasanès2006" class="citation book cs1">Masanès, J.), ed. (2006). <i>Web Archiving</i>. Berlin: <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Springer-Verlag" class="mw-redirect" title="Springer-Verlag">Springer-Verlag</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-3-540-23338-1" title="Special:BookSources/978-3-540-23338-1"><bdi>978-3-540-23338-1</bdi></a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Web+Archiving&rft.place=Berlin&rft.pub=Springer-Verlag&rft.date=2006&rft.isbn=978-3-540-23338-1&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
738
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFPennock2013" class="citation book cs1">Pennock, Maureen (2013). <i>Web-Archiving</i>. DPC Technology Watch Reports. Great Britain: <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_Preservation_Coalition" title="Digital Preservation Coalition">Digital Preservation Coalition</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.7207%2Ftwr13-01">10.7207/twr13-01</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://search.worldcat.org/issn/2048-7916">2048-7916</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Web-Archiving&rft.place=Great+Britain&rft.series=DPC+Technology+Watch+Reports&rft.pub=Digital+Preservation+Coalition&rft.date=2013&rft_id=info%3Adoi%2F10.7207%2Ftwr13-01&rft.issn=2048-7916&rft.aulast=Pennock&rft.aufirst=Maureen&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li>
|
|
739
|
+
<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFToyoda,_M.Kitsuregawa,_M.2012" class="citation journal cs1">Toyoda, M.; Kitsuregawa, M. (2012). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1109%2FJPROC.2012.2189920">"The History of Web Archiving"</a>. <i><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Proceedings_of_the_IEEE" title="Proceedings of the IEEE">Proceedings of the IEEE</a></i>. <b>100</b> (special centennial issue): 1441–1443. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1109%2FJPROC.2012.2189920">10.1109/JPROC.2012.2189920</a></span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Proceedings+of+the+IEEE&rft.atitle=The+History+of+Web+Archiving&rft.volume=100&rft.issue=special+centennial+issue&rft.pages=1441-1443&rft.date=2012&rft_id=info%3Adoi%2F10.1109%2FJPROC.2012.2189920&rft.au=Toyoda%2C+M.&rft.au=Kitsuregawa%2C+M.&rft_id=https%3A%2F%2Fdoi.org%2F10.1109%252FJPROC.2012.2189920&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></li></ul>
|
|
740
|
+
</div>
|
|
741
|
+
<div class="mw-heading mw-heading2"><h2 id="References">References</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=10" title="Edit section: References"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
742
|
+
<style data-mw-deduplicate="TemplateStyles:r1239543626">.mw-parser-output .reflist{margin-bottom:0.5em;list-style-type:decimal}@media screen{.mw-parser-output .reflist{font-size:90%}}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}</style><div class="reflist">
|
|
743
|
+
<div class="mw-references-wrap mw-references-columns"><ol class="references">
|
|
744
|
+
<li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://netpreserve.org/web-archiving/">"Web Archiving"</a>. <i>Netpreserve - International Internet Preservation Consortium</i>. August 14, 2024. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20240712174404/https://netpreserve.org/web-archiving/">Archived</a> from the original on July 12, 2024.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=Netpreserve+-+International+Internet+Preservation+Consortium&rft.atitle=Web+Archiving&rft.date=2024-08-14&rft_id=https%3A%2F%2Fnetpreserve.org%2Fweb-archiving%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
745
|
+
</li>
|
|
746
|
+
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFTruman2016" class="citation journal cs1">Truman, Gail (2016). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://nrs.harvard.edu/urn-3:HUL.InstRepos:25658314">"Web Archiving Environmental Scan"</a>. <i>Harvard Library</i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Harvard+Library&rft.atitle=Web+Archiving+Environmental+Scan&rft.date=2016&rft.aulast=Truman&rft.aufirst=Gail&rft_id=https%3A%2F%2Fnrs.harvard.edu%2Furn-3%3AHUL.InstRepos%3A25658314&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
747
|
+
</li>
|
|
748
|
+
<li id="cite_note-kitsuregawa-3"><span class="mw-cite-backlink">^ <a href="#cite_ref-kitsuregawa_3-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-kitsuregawa_3-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-kitsuregawa_3-2"><sup><i><b>c</b></i></sup></a> <a href="#cite_ref-kitsuregawa_3-3"><sup><i><b>d</b></i></sup></a> <a href="#cite_ref-kitsuregawa_3-4"><sup><i><b>e</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFToyodaKitsuregawa2012" class="citation journal cs1">Toyoda, M.; Kitsuregawa, M. (May 2012). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1109%2FJPROC.2012.2189920">"The History of Web Archiving"</a>. <i>Proceedings of the IEEE</i>. <b>100</b> (Special Centennial Issue): 1441–1443. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1109%2FJPROC.2012.2189920">10.1109/JPROC.2012.2189920</a></span>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://search.worldcat.org/issn/0018-9219">0018-9219</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Proceedings+of+the+IEEE&rft.atitle=The+History+of+Web+Archiving&rft.volume=100&rft.issue=Special+Centennial+Issue&rft.pages=1441-1443&rft.date=2012-05&rft_id=info%3Adoi%2F10.1109%2FJPROC.2012.2189920&rft.issn=0018-9219&rft.aulast=Toyoda&rft.aufirst=M.&rft.au=Kitsuregawa%2C+M.&rft_id=https%3A%2F%2Fdoi.org%2F10.1109%252FJPROC.2012.2189920&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
749
|
+
</li>
|
|
750
|
+
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://thehustle.co/inside-wayback-machine-internet-archive">"Inside Wayback Machine, the internet's time capsule"</a>. <i>The Hustle</i>. September 28, 2018. sec. Wayyyy back<span class="reference-accessdate">. Retrieved <span class="nowrap">July 21,</span> 2020</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=The+Hustle&rft.atitle=Inside+Wayback+Machine%2C+the+internet%27s+time+capsule&rft.pages=sec.+Wayyyy+back&rft.date=2018-09-28&rft_id=https%3A%2F%2Fthehustle.co%2Finside-wayback-machine-internet-archive&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
751
|
+
</li>
|
|
752
|
+
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFCostaGomesSilva2017" class="citation journal cs1">Costa, Miguel; Gomes, Daniel; Silva, Mário J. (September 2017). "The evolution of web archiving". <i>International Journal on Digital Libraries</i>. <b>18</b> (3): 191–205. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1007%2Fs00799-016-0171-9">10.1007/s00799-016-0171-9</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://api.semanticscholar.org/CorpusID:24303455">24303455</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=International+Journal+on+Digital+Libraries&rft.atitle=The+evolution+of+web+archiving&rft.volume=18&rft.issue=3&rft.pages=191-205&rft.date=2017-09&rft_id=info%3Adoi%2F10.1007%2Fs00799-016-0171-9&rft_id=https%3A%2F%2Fapi.semanticscholar.org%2FCorpusID%3A24303455%23id-name%3DS2CID&rft.aulast=Costa&rft.aufirst=Miguel&rft.au=Gomes%2C+Daniel&rft.au=Silva%2C+M%C3%A1rio+J.&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
753
|
+
</li>
|
|
754
|
+
<li id="cite_note-:0-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-:0_6-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFConsalvoEss2011" class="citation book cs1">Consalvo, Mia; Ess, Charles, eds. (April 2011). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://onlinelibrary.wiley.com/doi/pdf/10.1002/9781444314861.ch2">"Web Archiving – Between Past, Present, and Future"</a>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://onlinelibrary.wiley.com/doi/book/10.1002/9781444314861"><i>The Handbook of Internet Studies</i></a> (1 ed.). Wiley. pp. 24–42. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1002%2F9781444314861">10.1002/9781444314861</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-1-4051-8588-2" title="Special:BookSources/978-1-4051-8588-2"><bdi>978-1-4051-8588-2</bdi></a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.atitle=Web+Archiving+%E2%80%93+Between+Past%2C+Present%2C+and+Future&rft.btitle=The+Handbook+of+Internet+Studies&rft.pages=24-42&rft.edition=1&rft.pub=Wiley&rft.date=2011-04&rft_id=info%3Adoi%2F10.1002%2F9781444314861&rft.isbn=978-1-4051-8588-2&rft_id=https%3A%2F%2Fonlinelibrary.wiley.com%2Fdoi%2Fpdf%2F10.1002%2F9781444314861.ch2&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
755
|
+
</li>
|
|
756
|
+
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=9651">"IWAW 2010: The 10th Intl Web Archiving Workshop"</a>. <i>www.wikicfp.com</i><span class="reference-accessdate">. Retrieved <span class="nowrap">August 19,</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=www.wikicfp.com&rft.atitle=IWAW+2010%3A+The+10th+Intl+Web+Archiving+Workshop&rft_id=https%3A%2F%2Fwww.wikicfp.com%2Fcfp%2Fservlet%2Fevent.showcfp%3Feventid%3D9651&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
757
|
+
</li>
|
|
758
|
+
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20121120035514/https://bibnum.bnf.fr/ecdl/index.html">"IWAW - International Web Archiving Workshops"</a>. <i>bibnum.bnf.fr</i>. Archived from <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://bibnum.bnf.fr/ecdl/index.html">the original</a> on November 20, 2012<span class="reference-accessdate">. Retrieved <span class="nowrap">August 19,</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=bibnum.bnf.fr&rft.atitle=IWAW+-+International+Web+Archiving+Workshops&rft_id=https%3A%2F%2Fbibnum.bnf.fr%2Fecdl%2Findex.html&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
759
|
+
</li>
|
|
760
|
+
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://netpreserve.org/about-us/">"About the IIPC"</a>. <i>IIPC</i><span class="reference-accessdate">. Retrieved <span class="nowrap">April 17,</span> 2022</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=IIPC&rft.atitle=About+the+IIPC&rft_id=https%3A%2F%2Fnetpreserve.org%2Fabout-us%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span> </span>
|
|
761
|
+
</li>
|
|
762
|
+
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://archive.org/details/internetmemoryfoundation">"Internet Memory Foundation : Free Web: Free Download, Borrow and Streaming"</a>. <i>archive.org</i>. Internet Archive<span class="reference-accessdate">. Retrieved <span class="nowrap">July 21,</span> 2020</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=archive.org&rft.atitle=Internet+Memory+Foundation+%3A+Free+Web%3A+Free+Download%2C+Borrow+and+Streaming&rft_id=https%3A%2F%2Farchive.org%2Fdetails%2Finternetmemoryfoundation&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
763
|
+
</li>
|
|
764
|
+
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFRegis2019" class="citation web cs1">Regis, Camille (June 4, 2019). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.historyassociates.com/resources/blog/web-archiving-challenges/">"Web Archiving: Think the Web is Permanent? Think Again"</a>. History Associates<span class="reference-accessdate">. Retrieved <span class="nowrap">July 14,</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=unknown&rft.btitle=Web+Archiving%3A+Think+the+Web+is+Permanent%3F+Think+Again&rft.pub=History+Associates&rft.date=2019-06-04&rft.aulast=Regis&rft.aufirst=Camille&rft_id=https%3A%2F%2Fwww.historyassociates.com%2Fresources%2Fblog%2Fweb-archiving-challenges%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
765
|
+
</li>
|
|
766
|
+
<li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFBrown2016" class="citation book cs1">Brown, Adrian (January 10, 2016). <i>Archiving websites: a practical guide for information management professionals</i>. Facet. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:BookSources/978-1-78330-053-2" title="Special:BookSources/978-1-78330-053-2"><bdi>978-1-78330-053-2</bdi></a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/OCLC_(identifier)" class="mw-redirect" title="OCLC (identifier)">OCLC</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://search.worldcat.org/oclc/1064574312">1064574312</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Archiving+websites%3A+a+practical+guide+for+information+management+professionals&rft.pub=Facet&rft.date=2016-01-10&rft_id=info%3Aoclcnum%2F1064574312&rft.isbn=978-1-78330-053-2&rft.aulast=Brown&rft.aufirst=Adrian&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
767
|
+
</li>
|
|
768
|
+
<li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text">Lyman (2002)</span>
|
|
769
|
+
</li>
|
|
770
|
+
<li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://netpreserve.org/legal-deposit">"Legal Deposit | IIPC"</a>. <i>netpreserve.org</i>. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://web.archive.org/web/20170316103200/https://netpreserve.org/legal-deposit">Archived</a> from the original on March 16, 2017<span class="reference-accessdate">. Retrieved <span class="nowrap">January 31,</span> 2017</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=netpreserve.org&rft.atitle=Legal+Deposit+%7C+IIPC&rft_id=https%3A%2F%2Fnetpreserve.org%2Flegal-deposit&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
771
|
+
</li>
|
|
772
|
+
<li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.webcitation.org/faq">"WebCite FAQ"</a>. <i>Webcitation.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">September 20,</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=Webcitation.org&rft.atitle=WebCite+FAQ&rft_id=https%3A%2F%2Fwww.webcitation.org%2Ffaq&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
773
|
+
</li>
|
|
774
|
+
<li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.finra.org/sites/default/files/notice_doc_file_ref/Regulatory-Notice-17-18.pdf">"Social Media and Digital Communications"</a> <span class="cs1-format">(PDF)</span>. <i>finra.org</i>. FINRA.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=finra.org&rft.atitle=Social+Media+and+Digital+Communications&rft_id=https%3A%2F%2Fwww.finra.org%2Fsites%2Fdefault%2Ffiles%2Fnotice_doc_file_ref%2FRegulatory-Notice-17-18.pdf&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
775
|
+
</li>
|
|
776
|
+
<li id="cite_note-Claburn_2020-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-Claburn_2020_17-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFClaburn2020" class="citation web cs1">Claburn, Thomas (September 10, 2020). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.theregister.com/2020/09/10/open_access_journal/">"Open access journals are vanishing from the web, Internet Archive stands ready to fill in the gaps"</a>. <i><a href="/web/20241227132135/https://en.wikipedia.org/wiki/The_Register" title="The Register">The Register</a></i>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=unknown&rft.jtitle=The+Register&rft.atitle=Open+access+journals+are+vanishing+from+the+web%2C+Internet+Archive+stands+ready+to+fill+in+the+gaps&rft.date=2020-09-10&rft.aulast=Claburn&rft.aufirst=Thomas&rft_id=https%3A%2F%2Fwww.theregister.com%2F2020%2F09%2F10%2Fopen_access_journal%2F&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
777
|
+
</li>
|
|
778
|
+
<li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1238218222"><cite id="CITEREFLaaksoMatthiasJahn2021" class="citation journal cs1">Laakso, Mikael; Matthias, Lisa; Jahn, Najko (2021). "Open is not forever: A study of vanished open access journals". <i>Journal of the Association for Information Science and Technology</i>. <b>72</b> (9): 1099–1112. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/ArXiv_(identifier)" class="mw-redirect" title="ArXiv (identifier)">arXiv</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://arxiv.org/abs/2008.11933">2008.11933</a></span>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://doi.org/10.1002%2FASI.24460">10.1002/ASI.24460</a>. <a href="/web/20241227132135/https://en.wikipedia.org/wiki/S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://api.semanticscholar.org/CorpusID:221340749">221340749</a>.</cite><span title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.jtitle=Journal+of+the+Association+for+Information+Science+and+Technology&rft.atitle=Open+is+not+forever%3A+A+study+of+vanished+open+access+journals&rft.volume=72&rft.issue=9&rft.pages=1099-1112&rft.date=2021&rft_id=info%3Aarxiv%2F2008.11933&rft_id=https%3A%2F%2Fapi.semanticscholar.org%2FCorpusID%3A221340749%23id-name%3DS2CID&rft_id=info%3Adoi%2F10.1002%2FASI.24460&rft.aulast=Laakso&rft.aufirst=Mikael&rft.au=Matthias%2C+Lisa&rft.au=Jahn%2C+Najko&rfr_id=info%3Asid%2Fen.wikipedia.org%3AWeb+archiving" class="Z3988"></span></span>
|
|
779
|
+
</li>
|
|
780
|
+
</ol></div></div>
|
|
781
|
+
<div class="mw-heading mw-heading2"><h2 id="External_links">External links</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&action=edit&section=11" title="Edit section: External links"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span></div>
|
|
782
|
+
<style data-mw-deduplicate="TemplateStyles:r1235681985">.mw-parser-output .side-box{margin:4px 0;box-sizing:border-box;border:1px solid #aaa;font-size:88%;line-height:1.25em;background-color:var(--background-color-interactive-subtle,#f8f9fa);display:flow-root}.mw-parser-output .side-box-abovebelow,.mw-parser-output .side-box-text{padding:0.25em 0.9em}.mw-parser-output .side-box-image{padding:2px 0 2px 0.9em;text-align:center}.mw-parser-output .side-box-imageright{padding:2px 0.9em 2px 0;text-align:center}@media(min-width:500px){.mw-parser-output .side-box-flex{display:flex;align-items:center}.mw-parser-output .side-box-text{flex:1;min-width:0}}@media(min-width:720px){.mw-parser-output .side-box{width:238px}.mw-parser-output .side-box-right{clear:right;float:right;margin-left:1em}.mw-parser-output .side-box-left{margin-right:1em}}</style><div class="side-box metadata side-box-right"><style data-mw-deduplicate="TemplateStyles:r1126788409">.mw-parser-output .plainlist ol,.mw-parser-output .plainlist ul{line-height:inherit;list-style:none;margin:0;padding:0}.mw-parser-output .plainlist ol li,.mw-parser-output .plainlist ul li{margin-bottom:0}</style>
|
|
783
|
+
<div class="side-box-abovebelow">
|
|
784
|
+
<a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:The_Wikipedia_Library" title="Wikipedia:The Wikipedia Library">Library resources</a> about <br/> <b>Web archiving</b> <hr/></div>
|
|
785
|
+
<div class="side-box-flex">
|
|
786
|
+
<div class="side-box-text plainlist"><ul><li><a class="external text" href="https://web.archive.org/web/20241227132135/https://ftl.toolforge.org/cgi-bin/ftl?st=wp&su=Web+archiving&library=OLBP">Online books</a></li>
|
|
787
|
+
<li><a class="external text" href="https://web.archive.org/web/20241227132135/https://ftl.toolforge.org/cgi-bin/ftl?st=wp&su=Web+archiving">Resources in your library</a></li>
|
|
788
|
+
<li><a class="external text" href="https://web.archive.org/web/20241227132135/https://ftl.toolforge.org/cgi-bin/ftl?st=wp&su=Web+archiving&library=0CHOOSE0">Resources in other libraries</a></li>
|
|
789
|
+
</ul></div></div>
|
|
790
|
+
</div>
|
|
791
|
+
<ul><li><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.netpreserve.org/">International Internet Preservation Consortium (IIPC)</a>—International consortium whose mission is to acquire, preserve, and make accessible knowledge and information from the Internet for future generations</li>
|
|
792
|
+
<li><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.nla.gov.au/padi/topics/92.html">National Library of Australia, Preserving Access to Digital Information (PADI)</a></li>
|
|
793
|
+
<li><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.loc.gov/webarchiving/">Library of Congress—Web Archiving</a></li></ul>
|
|
794
|
+
<div class="navbox-styles"><style data-mw-deduplicate="TemplateStyles:r1129693374">.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}</style><style data-mw-deduplicate="TemplateStyles:r1236075235">.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}</style></div><div role="navigation" class="navbox" aria-labelledby="Digital_preservation" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374"><style data-mw-deduplicate="TemplateStyles:r1239400231">.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}</style><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Template:Digital_preservation" title="Template:Digital preservation"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Template_talk:Digital_preservation" title="Template talk:Digital preservation"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:EditPage/Template:Digital_preservation" title="Special:EditPage/Template:Digital preservation"><abbr title="Edit this template">e</abbr></a></li></ul></div><div id="Digital_preservation" style="font-size:114%;margin:0 4em"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_preservation" title="Digital preservation">Digital preservation</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Concepts</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
795
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_artifactual_value" title="Digital artifactual value">Artifactual value</a></li>
|
|
796
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_curation" title="Digital curation">Curation</a></li>
|
|
797
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_dark_age" title="Digital dark age">Dark age</a></li>
|
|
798
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_obsolescence" title="Digital obsolescence">Obsolescence</a></li>
|
|
799
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Open_Archival_Information_System" title="Open Archival Information System">Open Archival Information System</a></li></ul>
|
|
800
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Techniques</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0;background:#F4F0EC"><div style="padding:0 0.25em">
|
|
801
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_forensics" title="Digital forensics">Forensics</a></li>
|
|
802
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Emulator#In_preservation" title="Emulator">Emulation</a></li></ul>
|
|
803
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">By type</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
804
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_time-based_media_art" title="Conservation and restoration of time-based media art">Artworks</a></li>
|
|
805
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Email_archiving" title="Email archiving">Email</a></li>
|
|
806
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Video_game_preservation" title="Video game preservation">Video games</a></li>
|
|
807
|
+
<li><a class="mw-selflink selflink">Websites</a></li></ul>
|
|
808
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Organizations</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0;background:#F4F0EC"><div style="padding:0 0.25em">
|
|
809
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Arctic_World_Archive" title="Arctic World Archive">Arctic World Archive</a></li>
|
|
810
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Computer_museums" title="Category:Computer museums">Computer museums</a></li>
|
|
811
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_Curation_Centre" title="Digital Curation Centre">Digital Curation Centre</a></li>
|
|
812
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/National_Digital_Information_Infrastructure_and_Preservation_Program" title="National Digital Information Infrastructure and Preservation Program">National Digital Information Infrastructure and Preservation Program</a> (US)</li></ul>
|
|
813
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Lists</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
814
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/List_of_digital_preservation_initiatives" title="List of digital preservation initiatives">Preservation initiatives</a></li>
|
|
815
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Timeline_of_digital_preservation" title="Timeline of digital preservation">Timeline</a></li>
|
|
816
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Timeline_of_audio_formats" title="Timeline of audio formats">Timeline of audio formats</a></li>
|
|
817
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/List_of_Web_archiving_initiatives" title="List of Web archiving initiatives">Web archiving initiatives</a></li></ul>
|
|
818
|
+
</div></td></tr><tr><td class="navbox-abovebelow" colspan="2"><div><span class="noviewer" typeof="mw:File"><span title="Category"><img alt="" src="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/16px-Symbol_category_class.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/23px-Symbol_category_class.svg.png 1.5x, //web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/31px-Symbol_category_class.svg.png 2x" data-file-width="180" data-file-height="185"/></span></span> <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Digital_preservation" title="Category:Digital preservation">Category</a></div></td></tr></tbody></table></div>
|
|
819
|
+
<div class="navbox-styles"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1236075235"></div><div role="navigation" class="navbox" aria-labelledby="Cultural_heritage_and_historic_preservation" style="padding:3px"><table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1239400231"><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Template:Cultural_Conservation-Restoration" title="Template:Cultural Conservation-Restoration"><abbr title="View this template">v</abbr></a></li><li class="nv-talk"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Template_talk:Cultural_Conservation-Restoration" title="Template talk:Cultural Conservation-Restoration"><abbr title="Discuss this template">t</abbr></a></li><li class="nv-edit"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Special:EditPage/Template:Cultural_Conservation-Restoration" title="Special:EditPage/Template:Cultural Conservation-Restoration"><abbr title="Edit this template">e</abbr></a></li></ul></div><div id="Cultural_heritage_and_historic_preservation" style="font-size:114%;margin:0 4em"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_heritage" title="Cultural heritage">Cultural heritage</a> and <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Historic_preservation" title="Historic preservation">historic preservation</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Topics<br/> and issues</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
820
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Agents_of_deterioration" title="Agents of deterioration">Agents of deterioration</a></li>
|
|
821
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archival_processing" title="Archival processing">Archival processing</a></li>
|
|
822
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archaeological_science" title="Archaeological science">Archaeological science</a></li>
|
|
823
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archaeology" title="Archaeology">Archaeology</a></li>
|
|
824
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archive" title="Archive">Archive</a></li>
|
|
825
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Bioarchaeology" title="Bioarchaeology">Bioarchaeology</a></li>
|
|
826
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Book" title="Book">Book</a></li>
|
|
827
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Calendar_(archives)" title="Calendar (archives)">Calendar (archives)</a></li>
|
|
828
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_cultural_property" title="Conservation and restoration of cultural property">Conservation and restoration of cultural property</a></li>
|
|
829
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_immovable_cultural_property" title="Conservation and restoration of immovable cultural property">Conservation and restoration of immovable cultural property</a></li>
|
|
830
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_movable_cultural_property" title="Conservation and restoration of movable cultural property">Conservation and restoration of movable cultural property</a></li>
|
|
831
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_science_(cultural_property)" title="Conservation science (cultural property)">Conservation science (cultural property)</a></li>
|
|
832
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collecting" title="Collecting">Collecting</a></li>
|
|
833
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collection_(museum)" title="Collection (museum)">Collection (museum)</a></li>
|
|
834
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collection_catalog" title="Collection catalog">Collection catalog</a></li>
|
|
835
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collections_maintenance" title="Collections maintenance">Collections maintenance</a></li>
|
|
836
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collections_management" title="Collections management">Collections management</a></li>
|
|
837
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collections_management_system" title="Collections management system">Collections management system</a></li>
|
|
838
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_heritage" title="Cultural heritage">Cultural heritage</a></li>
|
|
839
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_heritage_management" title="Cultural heritage management">Cultural heritage management</a></li>
|
|
840
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property" title="Cultural property">Cultural property</a></li>
|
|
841
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property_documentation" title="Cultural property documentation">Cultural property documentation</a></li>
|
|
842
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property_exhibition" title="Cultural property exhibition">Cultural property exhibition</a></li>
|
|
843
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property_imaging" title="Cultural property imaging">Cultural property imaging</a></li>
|
|
844
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property_storage" title="Cultural property storage">Cultural property storage</a></li>
|
|
845
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_resource_management" title="Cultural resource management">Cultural resource management</a></li>
|
|
846
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Database_preservation" title="Database preservation">Database preservation</a></li>
|
|
847
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Deaccessioning" title="Deaccessioning">Deaccessioning</a></li>
|
|
848
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_library" title="Digital library">Digital library</a></li>
|
|
849
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_photograph_restoration" title="Digital photograph restoration">Digital photograph restoration</a></li>
|
|
850
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_preservation" title="Digital preservation">Digital preservation</a></li>
|
|
851
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Disaster_preparedness_(cultural_property)" title="Disaster preparedness (cultural property)">Disaster preparedness (cultural property)</a></li>
|
|
852
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Film_preservation" title="Film preservation">Film preservation</a></li>
|
|
853
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Finding_aid" title="Finding aid">Finding aid</a></li>
|
|
854
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Fonds" title="Fonds">Fonds</a></li>
|
|
855
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Found_in_collection" title="Found in collection">Found in collection</a></li>
|
|
856
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritage_asset" title="Heritage asset">Heritage asset</a></li>
|
|
857
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritage_science" title="Heritage science">Heritage science</a></li>
|
|
858
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Inherent_vice" title="Inherent vice">Inherent vice</a></li>
|
|
859
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Intangible_cultural_heritage" title="Intangible cultural heritage">Intangible cultural heritage</a></li>
|
|
860
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Integrated_pest_management_(cultural_property)" title="Integrated pest management (cultural property)">Integrated pest management (cultural property)</a></li>
|
|
861
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Inventory_(library_and_archive)" title="Inventory (library and archive)">Inventory (library and archive)</a></li>
|
|
862
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Inventory_(museums)" title="Inventory (museums)">Inventory (museums)</a></li>
|
|
863
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Media_preservation" title="Media preservation">Media preservation</a></li>
|
|
864
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Midden" title="Midden">Midden</a></li>
|
|
865
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Mold_control_and_prevention_(library_and_archive)" title="Mold control and prevention (library and archive)">Mold control and prevention (library and archive)</a></li>
|
|
866
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Museum" title="Museum">Museum</a></li>
|
|
867
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Optical_media_preservation" title="Optical media preservation">Optical media preservation</a></li>
|
|
868
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservation_(library_and_archive)" title="Preservation (library and archive)">Preservation (library and archive)</a></li>
|
|
869
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservation_metadata" title="Preservation metadata">Preservation metadata</a></li>
|
|
870
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservation_survey" title="Preservation survey">Preservation survey</a></li>
|
|
871
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Provenance" title="Provenance">Provenance</a></li>
|
|
872
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Repatriation_(cultural_property)" title="Repatriation (cultural property)">Repatriation</a></li>
|
|
873
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ruins" title="Ruins">Ruins</a></li>
|
|
874
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Sustainable_preservation" title="Sustainable preservation">Sustainable preservation</a></li>
|
|
875
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Treasure" title="Treasure">Treasure</a></li>
|
|
876
|
+
<li><a class="mw-selflink selflink">Web archiving</a></li></ul>
|
|
877
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Roles<br/> and expertise</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
878
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Archivist" title="Archivist">Archivist</a></li>
|
|
879
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Art_dealer" title="Art dealer">Art dealer</a></li>
|
|
880
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Art_handler" title="Art handler">Art handler</a></li>
|
|
881
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Auction" title="Auction">Auctioneer</a></li>
|
|
882
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Collection_manager" title="Collection manager">Collection manager</a></li>
|
|
883
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservator-restorer" title="Conservator-restorer">Conservator-restorer</a></li>
|
|
884
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_scientist" title="Conservation scientist">Conservation scientist</a></li>
|
|
885
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_technician" title="Conservation technician">Conservation technician</a></li>
|
|
886
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Curator" title="Curator">Curator</a></li>
|
|
887
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Exhibition_designer" title="Exhibition designer">Exhibition designer</a></li>
|
|
888
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Mount_maker" title="Mount maker">Mount maker</a></li>
|
|
889
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Objects_conservator" title="Objects conservator">Objects conservator</a></li>
|
|
890
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Paintings_conservator" title="Paintings conservator">Paintings conservator</a></li>
|
|
891
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Photograph_conservator" title="Photograph conservator">Photograph conservator</a></li>
|
|
892
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservationist" title="Preservationist">Preservationist</a></li>
|
|
893
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Registrar_(cultural_property)" title="Registrar (cultural property)">Registrar (cultural property)</a></li>
|
|
894
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Textile_conservator" title="Textile conservator">Textile conservator</a></li></ul>
|
|
895
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Methods<br/> and techniques</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
896
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Aging_(artwork)" title="Aging (artwork)">Aging (artwork)</a></li>
|
|
897
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Anastylosis" title="Anastylosis">Anastylosis</a></li>
|
|
898
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Arrested_decay" title="Arrested decay">Arrested decay</a></li>
|
|
899
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cradling_(paintings)" title="Cradling (paintings)">Cradling (paintings)</a></li>
|
|
900
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Cultural_property_radiography" title="Cultural property radiography">Cultural property radiography</a></li>
|
|
901
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Detachment_of_wall_paintings" title="Detachment of wall paintings">Detachment of wall paintings</a></li>
|
|
902
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Desmet_method" title="Desmet method">Desmet method</a></li>
|
|
903
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Display_case" title="Display case">Display case</a></li>
|
|
904
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Digital_repository_audit_method_based_on_risk_assessment" title="Digital repository audit method based on risk assessment">Digital repository audit method based on risk assessment</a></li>
|
|
905
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Historic_paint_analysis" title="Historic paint analysis">Historic paint analysis</a></li>
|
|
906
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Inpainting" title="Inpainting">Inpainting</a></li>
|
|
907
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Kintsugi" title="Kintsugi">Kintsugi</a></li>
|
|
908
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Leafcasting" title="Leafcasting">Leafcasting</a></li>
|
|
909
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Lining_of_paintings" title="Lining of paintings">Lining of paintings</a></li>
|
|
910
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Mass_deacidification" title="Mass deacidification">Mass deacidification</a></li>
|
|
911
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Overpainting" title="Overpainting">Overpainting</a></li>
|
|
912
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Paleo-inspiration" title="Paleo-inspiration">Paleo-inspiration</a></li>
|
|
913
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Paper_splitting" title="Paper splitting">Paper splitting</a></li>
|
|
914
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Reconstruction_(architecture)" title="Reconstruction (architecture)">Reconstruction (architecture)</a></li>
|
|
915
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Rissverklebung" title="Rissverklebung">Rissverklebung</a></li>
|
|
916
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Textile_stabilization" title="Textile stabilization">Textile stabilization</a></li>
|
|
917
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Transfer_of_panel_paintings" title="Transfer of panel paintings">Transfer of panel paintings</a></li>
|
|
918
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/UVC-based_preservation" title="UVC-based preservation">UVC-based preservation</a></li>
|
|
919
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/VisualAudio" title="VisualAudio">VisualAudio</a></li></ul>
|
|
920
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_immovable_cultural_property" title="Conservation and restoration of immovable cultural property">Conservation<br/> and restoration<br/> of immovable <br/> cultural property</a><br/> by item type</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
921
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_archaeological_sites" title="Conservation and restoration of archaeological sites">Archaeological sites</a></li>
|
|
922
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_frescos" title="Conservation and restoration of frescos">Frescos</a></li>
|
|
923
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritage_railway" title="Heritage railway">Heritage railways</a></li>
|
|
924
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_historic_gardens" title="Conservation and restoration of historic gardens">Historic gardens</a></li>
|
|
925
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_outdoor_artworks" title="Conservation and restoration of outdoor artworks">Outdoor artworks</a></li>
|
|
926
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_outdoor_bronze_objects" title="Conservation and restoration of outdoor bronze objects">Outdoor bronze objects</a></li>
|
|
927
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_outdoor_murals" title="Conservation and restoration of outdoor murals">Outdoor murals</a></li></ul>
|
|
928
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_movable_cultural_property" title="Conservation and restoration of movable cultural property">Conservation<br/> and restoration<br/> of movable <br/> cultural property</a><br/> by item type</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
929
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_aircraft" class="mw-redirect" title="Conservation and restoration of aircraft">Aircraft</a></li>
|
|
930
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_ancient_Greek_pottery" title="Conservation and restoration of ancient Greek pottery">Ancient Greek pottery</a></li>
|
|
931
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_bone,_horn,_and_antler_objects" title="Conservation and restoration of bone, horn, and antler objects">Bone, horn, and antler objects</a></li>
|
|
932
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_books,_manuscripts,_documents,_and_ephemera" title="Conservation and restoration of books, manuscripts, documents, and ephemera">Books, manuscripts, documents and ephemera</a></li>
|
|
933
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_ceramic_objects" title="Conservation and restoration of ceramic objects">Ceramic objects</a></li>
|
|
934
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_clocks" title="Conservation and restoration of clocks">Clocks</a></li>
|
|
935
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_copper-based_objects" title="Conservation and restoration of copper-based objects">Copper-based objects</a></li>
|
|
936
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_feathers" title="Conservation and restoration of feathers">Feathers</a></li>
|
|
937
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_film" title="Conservation and restoration of film">Film</a></li>
|
|
938
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_flags_and_banners" title="Conservation and restoration of flags and banners">Flags and banners</a></li>
|
|
939
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_fur_objects" title="Conservation and restoration of fur objects">Fur objects</a></li>
|
|
940
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_glass_objects" title="Conservation and restoration of glass objects">Glass objects</a></li>
|
|
941
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_herbaria" title="Conservation and restoration of herbaria">Herbaria</a></li>
|
|
942
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_human_remains" title="Conservation and restoration of human remains">Human remains</a></li>
|
|
943
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_illuminated_manuscripts" title="Conservation and restoration of illuminated manuscripts">Illuminated manuscripts</a></li>
|
|
944
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_insect_specimens" title="Conservation and restoration of insect specimens">Insect specimens</a></li>
|
|
945
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_iron_and_steel_objects" title="Conservation and restoration of iron and steel objects">Iron and steel objects</a></li>
|
|
946
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_ivory_objects" title="Conservation and restoration of ivory objects">Ivory objects</a></li>
|
|
947
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_Judaica" title="Conservation and restoration of Judaica">Judaica</a></li>
|
|
948
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_lacquerware" title="Conservation and restoration of lacquerware">Lacquerware</a></li>
|
|
949
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_leather_objects" title="Conservation and restoration of leather objects">Leather objects</a></li>
|
|
950
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_lighthouses" title="Conservation and restoration of lighthouses">Lighthouses</a></li>
|
|
951
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_metals" title="Conservation and restoration of metals">Metals</a></li>
|
|
952
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_musical_instruments" title="Conservation and restoration of musical instruments">Musical instruments</a></li>
|
|
953
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_neon_objects" title="Conservation and restoration of neon objects">Neon objects</a></li>
|
|
954
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_new_media_art" title="Conservation and restoration of new media art">New media art</a></li>
|
|
955
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_paintings" title="Conservation and restoration of paintings">Paintings</a></li>
|
|
956
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_painting_frames" title="Conservation and restoration of painting frames">Painting frames</a></li>
|
|
957
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_panel_paintings" title="Conservation and restoration of panel paintings">Panel paintings</a></li>
|
|
958
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_papyrus" title="Conservation and restoration of papyrus">Papyrus</a></li>
|
|
959
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_parchment" title="Conservation and restoration of parchment">Parchment</a></li>
|
|
960
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_performance_art" title="Conservation and restoration of performance art">Performance art</a></li>
|
|
961
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_photographs" title="Conservation and restoration of photographs">Photographs</a></li>
|
|
962
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_photographic_plates" title="Conservation and restoration of photographic plates">Photographic plates</a></li>
|
|
963
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_plastic_objects" title="Conservation and restoration of plastic objects">Plastic objects</a></li>
|
|
964
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_rail_vehicles" title="Conservation and restoration of rail vehicles">Rail vehicles</a></li>
|
|
965
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_road_vehicles" title="Conservation and restoration of road vehicles">Road vehicles</a></li>
|
|
966
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_shipwreck_artifacts" title="Conservation and restoration of shipwreck artifacts">Shipwreck artifacts</a></li>
|
|
967
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_silver_objects" title="Conservation and restoration of silver objects">Silver objects</a></li>
|
|
968
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_of_South_Asian_household_shrines" title="Conservation of South Asian household shrines">South Asian household shrines</a></li>
|
|
969
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_stained_glass" title="Conservation and restoration of stained glass">Stained glass</a></li>
|
|
970
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_taxidermy" title="Conservation and restoration of taxidermy">Taxidermy</a></li>
|
|
971
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_textiles" title="Conservation and restoration of textiles">Textiles</a></li>
|
|
972
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_Tibetan_thangkas" title="Conservation and restoration of Tibetan thangkas">Tibetan thangkas</a></li>
|
|
973
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_time-based_media_art" title="Conservation and restoration of time-based media art">Time-based media art</a></li>
|
|
974
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_totem_poles" title="Conservation and restoration of totem poles">Totem poles</a></li>
|
|
975
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_vinyl_discs" title="Conservation and restoration of vinyl discs">Vinyl discs</a></li>
|
|
976
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_woodblock_prints" title="Conservation and restoration of woodblock prints">Woodblock prints</a></li>
|
|
977
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_wooden_artifacts" title="Conservation and restoration of wooden artifacts">Wooden artifacts</a></li>
|
|
978
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_wooden_furniture" title="Conservation and restoration of wooden furniture">Wooden furniture</a></li></ul>
|
|
979
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Intangible_cultural_heritage" title="Intangible cultural heritage">Intangible<br/> cultural heritage</a><br/> preservation</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
980
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ancient_music" title="Ancient music">Ancient music</a></li>
|
|
981
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Applied_folklore" title="Applied folklore">Applied folklore</a></li>
|
|
982
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Dance_notation" title="Dance notation">Dance notation</a></li>
|
|
983
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Early_music" title="Early music">Early music</a></li>
|
|
984
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Endangered_language" title="Endangered language">Endangered language</a></li>
|
|
985
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ethnochoreology" title="Ethnochoreology">Ethnochoreology</a></li>
|
|
986
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ethnomusicology" title="Ethnomusicology">Ethnomusicology</a></li>
|
|
987
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ethnopoetics" title="Ethnopoetics">Ethnopoetics</a></li>
|
|
988
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Family_folklore" title="Family folklore">Family folklore</a></li>
|
|
989
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folklore" title="Folklore">Folklore</a></li>
|
|
990
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_art" title="Folk art">Folk art</a></li>
|
|
991
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_dance" title="Folk dance">Folk dance</a></li>
|
|
992
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_etymology" title="Folk etymology">Folk etymology</a></li>
|
|
993
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_instrument" title="Folk instrument">Folk instrument</a></li>
|
|
994
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_music" title="Folk music">Folk music</a></li>
|
|
995
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_process" title="Folk process">Folk process</a></li>
|
|
996
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folk_play" title="Folk play">Folk play</a></li>
|
|
997
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Foodways" title="Foodways">Foodways</a></li>
|
|
998
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Folklore_studies" title="Folklore studies">Folklore studies</a></li>
|
|
999
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritage_language" title="Heritage language">Heritage language</a></li>
|
|
1000
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Heritage_language_learning" title="Heritage language learning">Heritage language learning</a></li>
|
|
1001
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Indigenous_intellectual_property" title="Indigenous intellectual property">Indigenous intellectual property</a></li>
|
|
1002
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Indigenous_culture" class="mw-redirect" title="Indigenous culture">Indigenous culture</a></li>
|
|
1003
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Indigenous_language" title="Indigenous language">Indigenous language</a></li>
|
|
1004
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Language_death" title="Language death">Language death</a></li>
|
|
1005
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Language_preservation" title="Language preservation">Language preservation</a></li>
|
|
1006
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Language_revitalization" title="Language revitalization">Language revitalization</a></li>
|
|
1007
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Living_history" title="Living history">Living history</a></li>
|
|
1008
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Oral_history_preservation" title="Oral history preservation">Oral history preservation</a></li>
|
|
1009
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservation_of_meaning" title="Preservation of meaning">Preservation of meaning</a></li>
|
|
1010
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Prehistoric_music" title="Prehistoric music">Prehistoric music</a></li>
|
|
1011
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Tradition#Preservation" title="Tradition">Tradition preservation</a></li>
|
|
1012
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Traditional_knowledge" title="Traditional knowledge">Traditional knowledge</a></li>
|
|
1013
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Traditional_medicine" title="Traditional medicine">Traditional medicine</a></li></ul>
|
|
1014
|
+
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Notable<br/>projects</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
|
|
1015
|
+
<ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_issues_of_Pompeii_and_Herculaneum" title="Conservation issues of Pompeii and Herculaneum">Conservation issues of Pompeii and Herculaneum</a></li>
|
|
1016
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Ecce_Homo_(Garc%C3%ADa_Mart%C3%ADnez_and_Gim%C3%A9nez)" title="Ecce Homo (García Martínez and Giménez)">Conservation-restoration of <i>Ecce Homo</i> by Elías García Martínez</a></li>
|
|
1017
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation-restoration_of_Thomas_Eakins%27_The_Gross_Clinic" title="Conservation-restoration of Thomas Eakins' The Gross Clinic">Conservation-restoration of <i>The Gross Clinic</i> by Thomas Eakins</a></li>
|
|
1018
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation-restoration_of_Leonardo_da_Vinci%27s_The_Last_Supper" title="Conservation-restoration of Leonardo da Vinci's The Last Supper">Conservation-restoration of Leonardo da Vinci's <i>The Last Supper</i></a></li>
|
|
1019
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation_and_restoration_of_Pompeian_frescoes" title="Conservation and restoration of Pompeian frescoes">Pompeian frescoes</a></li>
|
|
1020
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation-restoration_of_the_Shroud_of_Turin" title="Conservation-restoration of the Shroud of Turin">Conservation-restoration of the Shroud of Turin</a></li>
|
|
1021
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Restoration_of_the_Sistine_Chapel_frescoes" title="Restoration of the Sistine Chapel frescoes">Conservation-restoration of the Sistine Chapel frescoes</a></li>
|
|
1022
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation-restoration_of_the_Statue_of_Liberty" title="Conservation-restoration of the Statue of Liberty">Conservation-restoration of the Statue of Liberty</a></li>
|
|
1023
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Conservation-restoration_of_the_H.L._Hunley" title="Conservation-restoration of the H.L. Hunley">Conservation-restoration of the <i>H.L. Hunley</i></a></li>
|
|
1024
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/1966_flood_of_the_Arno" title="1966 flood of the Arno">Conservation response to flood of Arno, Florence</a></li>
|
|
1025
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Modern_and_Contemporary_Art_Research_Initiative" title="Modern and Contemporary Art Research Initiative">Modern and Contemporary Art Research Initiative</a></li>
|
|
1026
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Preservation_Metadata:_Implementation_Strategies" title="Preservation Metadata: Implementation Strategies">Preservation Metadata: Implementation Strategies</a></li>
|
|
1027
|
+
<li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/World_Heritage_Site" title="World Heritage Site">World Heritage Site</a></li></ul>
|
|
1028
|
+
</div></td></tr></tbody></table></div>
|
|
1029
|
+
<div class="navbox-styles"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1129693374"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1236075235"><style data-mw-deduplicate="TemplateStyles:r1038841319">.mw-parser-output .tooltip-dotted{border-bottom:1px dotted;cursor:help}</style></div><div role="navigation" class="navbox authority-control" aria-labelledby="Authority_control_databases_frameless&#124;text-top&#124;10px&#124;alt=Edit_this_at_Wikidata&#124;link=https&#58;//www.wikidata.org/wiki/Q2062069#identifiers&#124;class=noprint&#124;Edit_this_at_Wikidata" style="padding:3px"><table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Authority_control_databases_frameless&#124;text-top&#124;10px&#124;alt=Edit_this_at_Wikidata&#124;link=https&#58;//www.wikidata.org/wiki/Q2062069#identifiers&#124;class=noprint&#124;Edit_this_at_Wikidata" style="font-size:114%;margin:0 4em"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Help:Authority_control" title="Help:Authority control">Authority control databases</a> <span class="mw-valign-text-top noprint" typeof="mw:File/Frameless"><a href="https://web.archive.org/web/20241227132135/https://www.wikidata.org/wiki/Q2062069#identifiers" title="Edit this at Wikidata"><img alt="Edit this at Wikidata" src="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png" decoding="async" width="10" height="10" class="mw-file-element" srcset="//web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/15px-OOjs_UI_icon_edit-ltr-progressive.svg.png 1.5x, //web.archive.org/web/20241227132135im_/https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/20px-OOjs_UI_icon_edit-ltr-progressive.svg.png 2x" data-file-width="20" data-file-height="20"/></a></span></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">International</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/http://id.worldcat.org/fast/1742386/">FAST</a></span></li></ul></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">National</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://id.ndl.go.jp/auth/ndlna/00981807">Japan</a></span></li><li><span class="uid"><span class="rt-commentedText tooltip tooltip-dotted" title="archivace webu"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://aleph.nkp.cz/F/?func=find-c&local_base=aut&ccl_term=ica=ph367688&CON_LNG=ENG">Czech Republic</a></span></span></li><li><span class="uid"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://www.nli.org.il/en/authorities/987007547103805171">Israel</a></span></li></ul></div></td></tr></tbody></table></div>
|
|
1030
|
+
<!--
|
|
1031
|
+
NewPP limit report
|
|
1032
|
+
Parsed by mw‐web.codfw.main‐78d9ddc6fb‐752bm
|
|
1033
|
+
Cached time: 20241226131942
|
|
1034
|
+
Cache expiry: 2592000
|
|
1035
|
+
Reduced expiry: false
|
|
1036
|
+
Complications: [vary‐revision‐sha1, show‐toc]
|
|
1037
|
+
CPU time usage: 0.524 seconds
|
|
1038
|
+
Real time usage: 0.668 seconds
|
|
1039
|
+
Preprocessor visited node count: 2277/1000000
|
|
1040
|
+
Post‐expand include size: 103137/2097152 bytes
|
|
1041
|
+
Template argument size: 1581/2097152 bytes
|
|
1042
|
+
Highest expansion depth: 14/100
|
|
1043
|
+
Expensive parser function count: 7/500
|
|
1044
|
+
Unstrip recursion depth: 1/20
|
|
1045
|
+
Unstrip post‐expand size: 107726/5000000 bytes
|
|
1046
|
+
Lua time usage: 0.333/10.000 seconds
|
|
1047
|
+
Lua memory usage: 6356040/52428800 bytes
|
|
1048
|
+
Number of Wikibase entities loaded: 1/400
|
|
1049
|
+
-->
|
|
1050
|
+
<!--
|
|
1051
|
+
Transclusion expansion time report (%,ms,calls,template)
|
|
1052
|
+
100.00% 572.975 1 -total
|
|
1053
|
+
18.75% 107.454 1 Template:Reflist
|
|
1054
|
+
17.68% 101.290 7 Template:Cite_book
|
|
1055
|
+
16.40% 93.980 2 Template:Navbox
|
|
1056
|
+
16.10% 92.265 1 Template:DigitalPreservation
|
|
1057
|
+
10.18% 58.313 1 Template:Short_description
|
|
1058
|
+
8.97% 51.392 1 Template:Authority_control
|
|
1059
|
+
8.42% 48.269 12 Template:Cite_web
|
|
1060
|
+
7.45% 42.708 7 Template:Cite_journal
|
|
1061
|
+
6.07% 34.773 2 Template:Pagetype
|
|
1062
|
+
-->
|
|
1063
|
+
|
|
1064
|
+
<!-- Saved in parser cache with key enwiki:pcache:6014932:|#|:idhash:canonical and timestamp 20241226131942 and revision id 1263947581. Rendering was triggered because: page-view
|
|
1065
|
+
-->
|
|
1066
|
+
</div><!--esi <esi:include src="/esitest-fa8a495983347898/content" /> --><noscript><img src="https://web.archive.org/web/20241227132135im_/https://login.wikimedia.org/wiki/Special:CentralAutoLogin/start?useformat=desktop&type=1x1&usesul3=0" alt="" width="1" height="1" style="border: none; position: absolute;"></noscript>
|
|
1067
|
+
<div class="printfooter" data-nosnippet="">Retrieved from "<a dir="ltr" href="https://web.archive.org/web/20241227132135/https://en.wikipedia.org/w/index.php?title=Web_archiving&oldid=1263947581">https://en.wikipedia.org/w/index.php?title=Web_archiving&oldid=1263947581</a>"</div></div>
|
|
1068
|
+
<div id="catlinks" class="catlinks" data-mw="interface"><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Web_archiving" title="Category:Web archiving">Web archiving</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Internet_Archive_projects" title="Category:Internet Archive projects">Internet Archive projects</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Collections_care" title="Category:Collections care">Collections care</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Internet_properties_established_in_1996" title="Category:Internet properties established in 1996">Internet properties established in 1996</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Conservation_and_restoration_of_cultural_heritage" title="Category:Conservation and restoration of cultural heritage">Conservation and restoration of cultural heritage</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Digital_preservation" title="Category:Digital preservation">Digital preservation</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Library_of_Congress" title="Category:Library of Congress">Library of Congress</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Museology" title="Category:Museology">Museology</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Articles_with_short_description" title="Category:Articles with short description">Articles with short description</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Short_description_is_different_from_Wikidata" title="Category:Short description is different from Wikidata">Short description is different from Wikidata</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Use_mdy_dates_from_May_2020" title="Category:Use mdy dates from May 2020">Use mdy dates from May 2020</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:All_articles_with_failed_verification" title="Category:All articles with failed verification">All articles with failed verification</a></li><li><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Category:Articles_with_failed_verification_from_July_2020" title="Category:Articles with failed verification from July 2020">Articles with failed verification from July 2020</a></li></ul></div></div>
|
|
1069
|
+
</div>
|
|
1070
|
+
</main>
|
|
1071
|
+
|
|
1072
|
+
</div>
|
|
1073
|
+
<div class="mw-footer-container">
|
|
1074
|
+
|
|
1075
|
+
<footer id="footer" class="mw-footer">
|
|
1076
|
+
<ul id="footer-info">
|
|
1077
|
+
<li id="footer-info-lastmod"> This page was last edited on 19 December 2024, at 14:56<span class="anonymous-show"> (UTC)</span>.</li>
|
|
1078
|
+
<li id="footer-info-copyright">Text is available under the <a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Text_of_the_Creative_Commons_Attribution-ShareAlike_4.0_International_License" title="Wikipedia:Text of the Creative Commons Attribution-ShareAlike 4.0 International License">Creative Commons Attribution-ShareAlike 4.0 License</a>;
|
|
1079
|
+
additional terms may apply. By using this site, you agree to the <a href="https://web.archive.org/web/20241227132135/https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Terms_of_Use" class="extiw" title="foundation:Special:MyLanguage/Policy:Terms of Use">Terms of Use</a> and <a href="https://web.archive.org/web/20241227132135/https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy" class="extiw" title="foundation:Special:MyLanguage/Policy:Privacy policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a rel="nofollow" class="external text" href="https://web.archive.org/web/20241227132135/https://wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
|
|
1080
|
+
</ul>
|
|
1081
|
+
|
|
1082
|
+
<ul id="footer-places">
|
|
1083
|
+
<li id="footer-places-privacy"><a href="https://web.archive.org/web/20241227132135/https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy">Privacy policy</a></li>
|
|
1084
|
+
<li id="footer-places-about"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:About">About Wikipedia</a></li>
|
|
1085
|
+
<li id="footer-places-disclaimers"><a href="/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:General_disclaimer">Disclaimers</a></li>
|
|
1086
|
+
<li id="footer-places-contact"><a href="//web.archive.org/web/20241227132135/https://en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
|
|
1087
|
+
<li id="footer-places-wm-codeofconduct"><a href="https://web.archive.org/web/20241227132135/https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct">Code of Conduct</a></li>
|
|
1088
|
+
<li id="footer-places-developers"><a href="https://web.archive.org/web/20241227132135/https://developer.wikimedia.org/">Developers</a></li>
|
|
1089
|
+
<li id="footer-places-statslink"><a href="https://web.archive.org/web/20241227132135/https://stats.wikimedia.org/#/en.wikipedia.org">Statistics</a></li>
|
|
1090
|
+
<li id="footer-places-cookiestatement"><a href="https://web.archive.org/web/20241227132135/https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement">Cookie statement</a></li>
|
|
1091
|
+
<li id="footer-places-mobileview"><a href="//web.archive.org/web/20241227132135/https://en.m.wikipedia.org/w/index.php?title=Web_archiving&mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
|
|
1092
|
+
</ul>
|
|
1093
|
+
|
|
1094
|
+
<ul id="footer-icons" class="noprint">
|
|
1095
|
+
<li id="footer-copyrightico"><a href="https://web.archive.org/web/20241227132135/https://wikimediafoundation.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><img src="/web/20241227132135im_/https://en.wikipedia.org/static/images/footer/wikimedia-button.svg" width="84" height="29" alt="Wikimedia Foundation" loading="lazy"></a></li>
|
|
1096
|
+
<li id="footer-poweredbyico"><a href="https://web.archive.org/web/20241227132135/https://www.mediawiki.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><img src="/web/20241227132135im_/https://en.wikipedia.org/w/resources/assets/poweredby_mediawiki.svg" alt="Powered by MediaWiki" width="88" height="31" loading="lazy"></a></li>
|
|
1097
|
+
</ul>
|
|
1098
|
+
|
|
1099
|
+
</footer>
|
|
1100
|
+
|
|
1101
|
+
</div>
|
|
1102
|
+
</div>
|
|
1103
|
+
</div>
|
|
1104
|
+
<div class="vector-settings" id="p-dock-bottom">
|
|
1105
|
+
<ul></ul>
|
|
1106
|
+
</div><script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgHostname":"mw-web.codfw.main-78d9ddc6fb-rs925","wgBackendResponseTime":205,"wgPageParseReport":{"limitreport":{"cputime":"0.524","walltime":"0.668","ppvisitednodes":{"value":2277,"limit":1000000},"postexpandincludesize":{"value":103137,"limit":2097152},"templateargumentsize":{"value":1581,"limit":2097152},"expansiondepth":{"value":14,"limit":100},"expensivefunctioncount":{"value":7,"limit":500},"unstrip-depth":{"value":1,"limit":20},"unstrip-size":{"value":107726,"limit":5000000},"entityaccesscount":{"value":1,"limit":400},"timingprofile":["100.00% 572.975 1 -total"," 18.75% 107.454 1 Template:Reflist"," 17.68% 101.290 7 Template:Cite_book"," 16.40% 93.980 2 Template:Navbox"," 16.10% 92.265 1 Template:DigitalPreservation"," 10.18% 58.313 1 Template:Short_description"," 8.97% 51.392 1 Template:Authority_control"," 8.42% 48.269 12 Template:Cite_web"," 7.45% 42.708 7 Template:Cite_journal"," 6.07% 34.773 2 Template:Pagetype"]},"scribunto":{"limitreport-timeusage":{"value":"0.333","limit":"10.000"},"limitreport-memusage":{"value":6356040,"limit":52428800}},"cachereport":{"origin":"mw-web.codfw.main-78d9ddc6fb-752bm","timestamp":"20241226131942","ttl":2592000,"transientcontent":false}}});});</script>
|
|
1107
|
+
<script type="application/ld+json">{"@context":"https:\/\/web.archive.org\/web\/20241227132135\/https:\/\/schema.org","@type":"Article","name":"Web archiving","url":"https:\/\/web.archive.org\/web\/20241227132135\/https:\/\/en.wikipedia.org\/wiki\/Web_archiving","sameAs":"https:\/\/web.archive.org\/web\/20241227132135\/http:\/\/www.wikidata.org\/entity\/Q2062069","mainEntity":"https:\/\/web.archive.org\/web\/20241227132135\/http:\/\/www.wikidata.org\/entity\/Q2062069","author":{"@type":"Organization","name":"Contributors to Wikimedia projects"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/web.archive.org\/web\/20241227132135\/https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2006-07-18T15:24:11Z","dateModified":"2024-12-19T14:56:40Z","headline":"process of data preservation done by collecting and saving web content"}</script>
|
|
1108
|
+
</body>
|
|
1109
|
+
</html><!--
|
|
1110
|
+
FILE ARCHIVED ON 13:21:35 Dec 27, 2024 AND RETRIEVED FROM THE
|
|
1111
|
+
INTERNET ARCHIVE ON 07:47:01 Aug 09, 2026.
|
|
1112
|
+
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
|
1113
|
+
|
|
1114
|
+
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
|
1115
|
+
SECTION 108(a)(3)).
|
|
1116
|
+
-->
|
|
1117
|
+
<!--
|
|
1118
|
+
playback timings (ms):
|
|
1119
|
+
captures_list: 0.392
|
|
1120
|
+
exclusion.robots: 0.027
|
|
1121
|
+
exclusion.robots.policy: 0.021
|
|
1122
|
+
esindex: 0.007
|
|
1123
|
+
cdx.remote: 8.425
|
|
1124
|
+
LoadShardBlock: 90.972 (3)
|
|
1125
|
+
PetaboxLoader3.datanode: 56.412 (4)
|
|
1126
|
+
load_resource: 148.17
|
|
1127
|
+
PetaboxLoader3.resolve: 36.542
|
|
1128
|
+
-->
|