Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: net/docs/README.txt

Issue 1859793002: Include class relationship diagrams in network stack documentation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put net_docs.py back for Cronet. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/gn_migration.gypi ('k') | net/docs/life-of-a-url-request.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 To generate the output HTML from an input markdown file on Unix
2 machines, execute the command:
3
4 PYTHONPATH=../../third_party python -m markdown -f <output>.html <input>.md
5
6 On Windows machines, execute:
7
8 set PYTHONPATH=..\..\third_party
9 python -m markdown -f <output>.html <input>.md
10
11 (This command line assumes that the net/docs directory is the current
12 directory; if that's not the case, adjust the path to src/third_party
13 to be accurate from whatever directory the command is executed from.)
14
15 The diagrams included in the network stack documentation were
16 generated with Graphviz, and both source (.dot) and output (.svg) are
17 included in the repository. If graphviz is installed, the output may
18 be regenerated from the source via:
19
20 dot dot -Tsvg <name>.dot > <name>.svg
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | net/docs/life-of-a-url-request.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698