[PR #403] [MERGED] #399 Singlefile support #1155

Closed
opened 2026-03-01 14:48:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/403
Author: @cdvv7788
Created: 7/30/2020
Status: Merged
Merged: 8/7/2020
Merged by: @pirate

Base: masterHead: single-file


📝 Commits (10+)

  • 8536856 feat: Add initial support for singlefile extractor
  • 787a5ad fix: Commit code review suggestions
  • 3d22da3 Update archivebox/config/init.py
  • 42b0c80 feat: Add singlefile to link_details
  • a40e337 feat: Add link to admin list of files
  • b325c0d feat: Add singlefile to latest outputs
  • 91f6363 feat: Add singlefile in a couple more places
  • 37df00a tests: Add basic singlefile test
  • 5b6eb5e make filenames consistent with program name
  • 06d0e9d feat: Add support for singlefile in docker

📊 Changes

16 files changed (+236 additions, -47 deletions)

View changed files

📝 .github/workflows/test.yml (+24 -0)
📝 Dockerfile (+30 -17)
📝 archivebox/config/__init__.py (+14 -0)
📝 archivebox/core/admin.py (+2 -0)
📝 archivebox/extractors/__init__.py (+2 -0)
archivebox/extractors/singlefile.py (+84 -0)
📝 archivebox/index/schema.py (+4 -3)
📝 archivebox/logging_util.py (+1 -0)
📝 archivebox/themes/legacy/link_details.html (+13 -0)
📝 tests/fixtures.py (+16 -1)
📝 tests/test_args.py (+14 -9)
📝 tests/test_extractors.py (+13 -3)
📝 tests/test_init.py (+9 -6)
📝 tests/test_oneshot.py (+5 -4)
📝 tests/test_remove.py (+2 -2)
📝 tests/test_title.py (+3 -2)

📄 Description

Summary

Add https://github.com/gildas-lormeau/SingleFile as an extractor

**Related issues: #399

Changes these areas

  • Bugfixes
  • Feature behavior
  • Command line interface
  • Configuration options
  • Internal architecture
  • Archived data layout on disk

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArchiveBox/ArchiveBox/pull/403 **Author:** [@cdvv7788](https://github.com/cdvv7788) **Created:** 7/30/2020 **Status:** ✅ Merged **Merged:** 8/7/2020 **Merged by:** [@pirate](https://github.com/pirate) **Base:** `master` ← **Head:** `single-file` --- ### 📝 Commits (10+) - [`8536856`](https://github.com/ArchiveBox/ArchiveBox/commit/853685668cae5d3257923838ff462aaf0e75a7aa) feat: Add initial support for singlefile extractor - [`787a5ad`](https://github.com/ArchiveBox/ArchiveBox/commit/787a5ad43eb909da83cb189f4153e7e71fc9175b) fix: Commit code review suggestions - [`3d22da3`](https://github.com/ArchiveBox/ArchiveBox/commit/3d22da39fef4d4205502ff0224db4e9da7f62981) Update archivebox/config/__init__.py - [`42b0c80`](https://github.com/ArchiveBox/ArchiveBox/commit/42b0c804659006a227a7215f97826e326687c399) feat: Add singlefile to link_details - [`a40e337`](https://github.com/ArchiveBox/ArchiveBox/commit/a40e3372806e97bb8dce3975dd3eccfc32685a3c) feat: Add link to admin list of files - [`b325c0d`](https://github.com/ArchiveBox/ArchiveBox/commit/b325c0dd9ffbae21a0542321975224412e769bed) feat: Add singlefile to latest outputs - [`91f6363`](https://github.com/ArchiveBox/ArchiveBox/commit/91f63635e8a6e20ab07f26dac5c3c62eeaf07e2b) feat: Add singlefile in a couple more places - [`37df00a`](https://github.com/ArchiveBox/ArchiveBox/commit/37df00a08b486b247de0bd43af45125fcedcf2c8) tests: Add basic singlefile test - [`5b6eb5e`](https://github.com/ArchiveBox/ArchiveBox/commit/5b6eb5e4ad8944ac4b0d936ffa18e04123c6b61c) make filenames consistent with program name - [`06d0e9d`](https://github.com/ArchiveBox/ArchiveBox/commit/06d0e9de6cdf1e64a16cc679a153e4a367bd6445) feat: Add support for singlefile in docker ### 📊 Changes **16 files changed** (+236 additions, -47 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+24 -0) 📝 `Dockerfile` (+30 -17) 📝 `archivebox/config/__init__.py` (+14 -0) 📝 `archivebox/core/admin.py` (+2 -0) 📝 `archivebox/extractors/__init__.py` (+2 -0) ➕ `archivebox/extractors/singlefile.py` (+84 -0) 📝 `archivebox/index/schema.py` (+4 -3) 📝 `archivebox/logging_util.py` (+1 -0) 📝 `archivebox/themes/legacy/link_details.html` (+13 -0) 📝 `tests/fixtures.py` (+16 -1) 📝 `tests/test_args.py` (+14 -9) 📝 `tests/test_extractors.py` (+13 -3) 📝 `tests/test_init.py` (+9 -6) 📝 `tests/test_oneshot.py` (+5 -4) 📝 `tests/test_remove.py` (+2 -2) 📝 `tests/test_title.py` (+3 -2) </details> ### 📄 Description # Summary Add https://github.com/gildas-lormeau/SingleFile as an extractor **Related issues: #399 # Changes these areas - [ ] Bugfixes - [X] Feature behavior - [ ] Command line interface - [ ] Configuration options - [ ] Internal architecture - [ ] Archived data layout on disk --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 14:48:39 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ArchiveBox#1155
No description provided.