diff options
author | Thomas Ackermann <th.acker@arcor.de> | 2014-01-26 13:57:19 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-27 09:02:02 -0800 |
commit | 586aa7863141ad07fd6eb45349a3cb62fdcd28ea (patch) | |
tree | 7a1e341c422e66d68963df3e7aab298689fce680 /Documentation/Makefile | |
parent | b594c975c7e865be23477989d7f36157ad437dc7 (diff) | |
download | git-586aa7863141ad07fd6eb45349a3cb62fdcd28ea.tar.gz |
create HTML for http-protocol.txt
./Documentation/technical/http-protocol.txt was missing from TECH_DOCS in Makefile.
Add it and also improve HTML formatting while still retaining good readability of the ASCII text:
- Use monospace font instead of italicized or roman font for machine output and source text
- Use roman font for things which should be body text
- Use double quotes consistently for "want" and "have" commands
- Use uppercase "C" / "S" consistently for "client" / "server";
also use "C:" / "S:" instead of "(C)" / "(S)" for consistency and
to avoid having formatted "(C)" as copyright symbol in HTML
- Use only spaces and not a combination of tabs and spaces for whitespace
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 36c58fc646..b19d52acf0 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -60,7 +60,8 @@ SP_ARTICLES += howto/maintain-git API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technical/api-index.txt, $(wildcard technical/api-*.txt))) SP_ARTICLES += $(API_DOCS) -TECH_DOCS = technical/index-format +TECH_DOCS = technical/http-protocol +TECH_DOCS += technical/index-format TECH_DOCS += technical/pack-format TECH_DOCS += technical/pack-heuristics TECH_DOCS += technical/pack-protocol |