Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: sitescripts/urlfixer/bin/forceDomains.py

Issue 8943045: Implemented extraction of URL Fixer data (Closed)
Left Patch Set: Created Nov. 23, 2012, 4:36 p.m.
Right Patch Set: Larger blacklist Created Nov. 28, 2012, 11:29 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « sitescripts/urlfixer/bin/__init__.py ('k') | sitescripts/urlfixer/bin/topDomains.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # coding: utf-8 1 # coding: utf-8
2 2
3 # This file is part of the Adblock Plus web scripts, 3 # This file is part of the Adblock Plus web scripts,
4 # Copyright (C) 2006-2012 Eyeo GmbH 4 # Copyright (C) 2006-2012 Eyeo GmbH
5 # 5 #
6 # Adblock Plus is free software: you can redistribute it and/or modify 6 # Adblock Plus is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 3 as 7 # it under the terms of the GNU General Public License version 3 as
8 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
9 # 9 #
10 # Adblock Plus is distributed in the hope that it will be useful, 10 # Adblock Plus is distributed in the hope that it will be useful,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 use_unicode=True, charset="utf8") 44 use_unicode=True, charset="utf8")
45 45
46 if __name__ == '__main__': 46 if __name__ == '__main__':
47 setupStderr() 47 setupStderr()
48 48
49 if len(sys.argv) <= 1: 49 if len(sys.argv) <= 1:
50 print >>sys.stderr, "Please specify the domain names as command line paramet ers" 50 print >>sys.stderr, "Please specify the domain names as command line paramet ers"
51 sys.exit(1) 51 sys.exit(1)
52 52
53 forceDomains(sys.argv[1:]) 53 forceDomains(sys.argv[1:])
LEFTRIGHT

Powered by Google App Engine
This is Rietveld