aboutsummaryrefslogtreecommitdiff
path: root/dir-list-spec.txt
AgeCommit message (Collapse)Author
2023-10-12Move all text-only specifications into the OLD_TXT directory.Nick Mathewson
2021-10-25Fix typos and cleanupDimitris Apostolou
2021-09-22dir-list-spec: Add 'Table of contents'Oleh Franchuk
2020-03-13dir-list: Fix a version typoteor
2020-01-16Merge remote-tracking branch 'tor-github/pr/99'teor
2019-12-10convert text blocks into widely compatible "blockquote" syntaxHans-Christoph Steiner
This only adds newline characters to make the existing text blocks act like "blockquote" or "code block" syntax in Markdown, asciidoc, and others. This was accomplished by manually reviewing the output of this script: ```bash for f in *.txt; do cat $f | python -c "import sys,re;print(re.sub(r'(\n {0,3}[^ \n][^\n]*\n)( {4,}[^\n]*)', r'\1\n\2', sys.stdin.read()))" > ${f}.tmp mv ${f}.tmp $f done ```
2019-12-09dir-list-spec: Modify "source=" line formatteor
* Rename "whitelist" to "offer-list" for 32699. * Add "descriptor" for 24839. * Allow multiple values for the 24839 transition to signed offers in descriptors. Part of 32699 and 24839.
2019-12-09dir-list-spec: Fix a typoteor
2019-12-09dir-list-spec: Update for the tor 0.3.5 directory structureteor
2019-11-26fix erroneous header numbering punctuationHans-Christoph Steiner
The clear standard is trailing "." after each numeric section. This fixes the small handful of outliers. This makes it easy to convert these headers to common markup formats, for example: http://hyperpolyglot.org/lightweight-markup
2019-11-26standardize whitespace in the titlesHans-Christoph Steiner
This is one small step towards making these a standard, parsable format.
2019-06-23dir-list: Add a Future Plans sectionteor
Based on our plans in 24818 and 24839.
2019-06-23dir-list: explain semantic versioning in the Format Versions sectionteor
It's better to explain before we start talking about versions. Cleanup after 30949.
2019-06-23dir-list: add a source line to the dir-list headerteor
And create a new minor format version 2.1.0. Closes 30949.
2018-01-08Add dir-list-spec.txt, a description of Tor's fallback directory list formatteor
Incorporates changes based on atagar's review on #24742. Documents the contents of the manually modified initial fallback version 2.0.0 list, and future generated lists. Documents the format changes in the children of #22271. Closes #24742.