Skip to content

MidnightCommander/trac-archive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d9ecf24 · Mar 22, 2025

History

7 Commits
Feb 27, 2025
Mar 22, 2025
Feb 27, 2025

Repository files navigation

Trac archive

Archive of Trac related content, mainly attachments.

Wiki

See repository wiki for archived Trac wiki content.

Provenance

Sync from Trac server

rsync -av --delete \
  midnight-commander.org:/var/www/trac/attachments/ \
  attachments

python unquote-filenames.py

find attachments -type f | \
  sort > attachments-fs.csv

Compare with the state of the database

SELECT COUNT(*)
FROM attachment;

SELECT CONCAT('attachments/', type, '/', id, '/', filename)
FROM attachment;