https://github.com/midnightcommander/trac-archive
Archive of Trac-related content
https://github.com/midnightcommander/trac-archive
Last synced: 9 months ago
JSON representation
Archive of Trac-related content
- Host: GitHub
- URL: https://github.com/midnightcommander/trac-archive
- Owner: MidnightCommander
- Created: 2025-02-18T08:59:22.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-22T13:40:41.000Z (over 1 year ago)
- Last Synced: 2025-10-12T17:39:26.331Z (9 months ago)
- Language: C
- Homepage:
- Size: 46.8 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trac archive
Archive of Trac related content, mainly attachments.
## Wiki
See [repository wiki](../../wiki) for archived Trac wiki content.
## Provenance
### Sync from Trac server
```shell
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
```sql
SELECT COUNT(*)
FROM attachment;
SELECT CONCAT('attachments/', type, '/', id, '/', filename)
FROM attachment;
```