Commit Graph

14 Commits

Author SHA1 Message Date
Dimitris Apostolou
29245fd50d Fix typos and cleanup 2021-10-25 16:35:13 -04:00
Oleh Franchuk
da38430e3d dir-list-spec: Add 'Table of contents' 2021-09-22 16:13:32 +03:00
teor
f81b1e6cc5
dir-list: Fix a version typo 2020-03-13 11:22:41 +10:00
teor
e99deb888e
Merge remote-tracking branch 'tor-github/pr/99' 2020-01-16 00:14:40 +10:00
Hans-Christoph Steiner
9c86f54ba0 convert text blocks into widely compatible "blockquote" syntax
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-10 16:06:53 +01:00
teor
33c70fcd2e
dir-list-spec: Modify "source=" line format
* 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-09 16:31:22 +10:00
teor
68437951a3
dir-list-spec: Fix a typo 2019-12-09 16:30:24 +10:00
teor
43ede8c6fd
dir-list-spec: Update for the tor 0.3.5 directory structure 2019-12-09 16:30:15 +10:00
Hans-Christoph Steiner
a3fd193023 fix erroneous header numbering punctuation
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-26 21:03:19 +01:00
Hans-Christoph Steiner
c15cc8a5a8 standardize whitespace in the titles
This is one small step towards making these a standard, parsable format.
2019-11-26 20:29:12 +01:00
teor
b940965ea5
dir-list: Add a Future Plans section
Based on our plans in 24818 and 24839.
2019-06-23 16:54:36 +10:00
teor
284c6ca0e5
dir-list: explain semantic versioning in the Format Versions section
It's better to explain before we start talking about versions.

Cleanup after 30949.
2019-06-23 16:50:51 +10:00
teor
e9627a9e53
dir-list: add a source line to the dir-list header
And create a new minor format version 2.1.0.

Closes 30949.
2019-06-23 16:47:56 +10:00
teor
2b2ad532ec
Add dir-list-spec.txt, a description of Tor's fallback directory list format
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.
2018-01-08 01:27:22 +11:00