Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New custom signatures #50

Merged
merged 3 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions custom_signatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,20 @@
puid: aca-fmt/23
signature: Microsoft Word XML Document
description: Microsoft Word allows exporting document as standalone XML files, which PRONOM incorrectly identifies as plain XML (fmt/101)
- bof: (?i)424547494E3A5643415244.*454E443A5643415244
plain_bof: |
BEGIN:VCARD
*
END:VCARD
extension: .vcf
puid: aca-fmt/24
signature: vCard (Unspecified version)
description: Only looks for BEGIN:VCARD and END:VCARD, as Pronom assumes VERSION declaration must come directly after BEGIN:VCARD, which is not always the case in the wild.
- bof: (?i)5B496E7465726E657453686F72746375745D0D0A55524C3D
plain_bof: |
[InternetShortcut]
URL=
extension: .url
puid: aca-fmt/25
signature: URL file
description: Internet shortcut file. Looks for the tag "[InternetShortcut]\nURL="
10 changes: 10 additions & 0 deletions fileformats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ aca-fmt/23:
converter_type: master
outputs:
- odt
aca-fmt/24:
name: vCard
action: ignore
ignore:
reason: Virtual business card. Not preservation-worthy
aca-fmt/25:
name: Microsoft Windows URL
action: ignore
ignore:
reason: Website shortcut file. Not preservation-worthy
fmt/3:
name: Graphics Interchange Format 87a
action: convert
Expand Down
Loading