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

Proposed changes for 1.0 #17

Closed
wants to merge 57 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
480c5f6
first cut at bagit 1.0 spec
johnscancella Nov 23, 2016
8b266fa
updated ed summers, and justin littman addresses
johnscancella Dec 6, 2016
988036b
Remove legacy comment about old DNS results for xml.resource.org
acdha Dec 9, 2016
5b1cc87
Trim trailing whitespace
acdha Dec 9, 2016
d74ef0e
Remove long-commented “other file metadata” section
acdha Dec 9, 2016
16258e7
Strengthen guidance on UTF-8 BOMs in tag files
acdha Dec 9, 2016
cd901f1
Recommend modern hash algorithms
acdha Dec 9, 2016
6673683
Update recommendations related to Windows filenaming
acdha Dec 9, 2016
1da8da7
Update interoperability disclaimer
acdha Dec 9, 2016
766324f
Discourage the use of manual bag creation
acdha Dec 9, 2016
f898aff
Add filename-related normalization discussion
acdha Dec 10, 2016
67c81c8
Update "Payload-Oxum" documentation
acdha Dec 12, 2016
0361e96
Consistent number of spaces after a period
acdha Dec 13, 2016
185eb6b
Upgrade must/must-not text to entity references
acdha Dec 13, 2016
a8dc5df
Strengthen wording: all manifests MUST list all files
acdha Dec 13, 2016
8edbef1
Better references syntax
acdha Dec 13, 2016
5e0f3c1
Update transfer recommendations
acdha Dec 13, 2016
c8ef7c6
Consistent indentation in Terminology
acdha Dec 14, 2016
900ce0c
Clarify the format for tag manifest algorithm names
acdha Dec 14, 2016
e87dda8
Update interoperability reference
acdha Jan 5, 2017
2f2ca4b
Update terminology for bag checksum algorithms
acdha Jan 5, 2017
b975a0e
Consistent indentation for terminology list
acdha Jan 5, 2017
37926c0
Terminology: simplify “tag file” definition
acdha Jan 5, 2017
5fbfdf6
Terminology: simplify “valid” definition
acdha Jan 5, 2017
8236209
Convert numbered list in Structure section to <list>
acdha Jan 5, 2017
94bcdaa
Remove Serialization section
acdha Jan 5, 2017
cd5d6fe
Cherry pick: first cut at changes from recommendations by Dave Crocker
johnscancella Jan 5, 2017
545e072
Use <figure><artwork type="abnf"> for ABNF diagrams
acdha Jan 5, 2017
35c3272
Minor <figure> consistency cleanup
acdha Jan 5, 2017
4407055
Terminology: whitespace cleanup
acdha Jan 5, 2017
b07d6c0
Convert tabs to spaces
acdha Jan 5, 2017
ce06c32
Terminology: update definition of “complete”
acdha Jan 5, 2017
757f68a
fixed some wording of sentences and removed section on Disk and netwo…
johnscancella Jan 6, 2017
e304db4
Remove stale references
acdha Jan 6, 2017
318fe5c
Remove trailing whitespace
acdha Jan 6, 2017
5815284
Remove stale inline TODO items
acdha Jan 6, 2017
2f6d466
Normalize XML declarations against current IETF template
acdha Jan 6, 2017
c6f0a08
Prose review for section 1
acdha Jan 6, 2017
b6413fd
Fix formatting for Section 2 (“Structure”)
acdha Jan 6, 2017
b35ceb5
Fix formatting for “Bag Declaration”
acdha Jan 6, 2017
45685bc
Copy-editing for “Payload Directory”
acdha Jan 6, 2017
272e6ce
Copy editing for “Payload Manifest”
acdha Jan 6, 2017
3bbebd5
Remove injunction against reusing payload manifest algorithms
acdha Jan 6, 2017
d9ceeee
Copy-editing for “Payload-Oxum”
acdha Jan 6, 2017
38b8b59
Simplify “Other Tag Files” text
acdha Jan 6, 2017
00eb4ab
Spelling
acdha Jan 6, 2017
8c9d621
Copy-editing for “Complete, Incomplete, and Valid bags”
acdha Jan 6, 2017
ef7f6df
Update version number in example bag
acdha Jan 6, 2017
a60e644
Update authors
acdha Jan 17, 2017
169a094
Clarify wording about directories in manifests
acdha Jan 23, 2017
3d3bb73
Remove duplicate wording
acdha Jan 23, 2017
0257f7b
Update “filesystem” reference in “complete” requirements
acdha Jan 23, 2017
e677092
Update “special directory characters” prose
acdha Jan 23, 2017
1f97d39
Note that bag-info.txt fields are intended for human consumption
acdha Jan 23, 2017
aaffd0a
Update Makefile and add a format target
acdha Jan 23, 2017
bc862cf
XML formatting
acdha Jan 23, 2017
56c069e
Remove `Bag-Size` from example bag-info.txt
acdha Feb 28, 2017
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
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
default: html text

html:
xml2rfc bagit.xml

text:
xml2rfc --html bagit.xml

format:
# We can't enable c14n because that triggers external DTD fetching and
# libxml2 currently does not support HTTPS, which is a problem now that all
# of the xml.resource.org URLs redirect:
xmllint --format --output bagit.xml bagit.xml
Loading