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

Side by Side Diff: man/src/filter_demo_output.py

Issue 259863004: Move docs folder to man. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 7 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 | « man/src/depot_tools_tutorial.demo.walkthrough.sh ('k') | man/src/git-freeze.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import collections 6 import collections
7 import os 7 import os
8 import re 8 import re
9 import sys 9 import sys
10 10
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 for _ in xrange(callouts[i]): 130 for _ in xrange(callouts[i]):
131 ext += ' <emphasis role="strong">(%d)</emphasis>' % callout_counter 131 ext += ' <emphasis role="strong">(%d)</emphasis>' % callout_counter
132 callout_counter += 1 132 callout_counter += 1
133 w(line + ext + '\n') 133 w(line + ext + '\n')
134 if in_code: 134 if in_code:
135 w(postamble) 135 w(postamble)
136 136
137 137
138 if __name__ == '__main__': 138 if __name__ == '__main__':
139 main() 139 main()
OLDNEW
« no previous file with comments | « man/src/depot_tools_tutorial.demo.walkthrough.sh ('k') | man/src/git-freeze.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698