From: Nate E TeBlunthuis Date: Fri, 24 Aug 2018 01:23:36 +0000 (-0700) Subject: Merge branch 'advanced_persistence' of code.communitydata.cc:/mediawiki_dump_tools... X-Git-Url: https://code.communitydata.science/mediawiki_dump_tools.git/commitdiff_plain/afd40c1a45166602773aefe35e10a202e8dc47dd?hp=--cc Merge branch 'advanced_persistence' of code.communitydata.cc:/mediawiki_dump_tools into advanced_persistence --- afd40c1a45166602773aefe35e10a202e8dc47dd diff --cc wikiq index 47dd687,47dd687..a584390 --- a/wikiq +++ b/wikiq @@@ -373,11 -373,11 +373,12 @@@ parser.add_argument('-p', '--persistenc parser.add_argument('-u', '--url-encode', dest="urlencode", action="store_true", help="Output url encoded text strings. This works around some data issues like newlines in editor names. In the future it may be used to output other text data.") --parser.add_argument('-ns', '--namespace-filter', dest="namespace_filter", type=str, help="Comma-seperate list of namespaces numbers to include") ++parser.add_argument('-n', '--namespace-include', dest="namespace_filter", type=int, action='append', ++ help="Id number of namspace to include.") args = parser.parse_args() -- ++print(args) # set persistence method if args.persist is None: @@@ -412,7 -412,7 +413,6 @@@ if len(args.dumpfiles) > 0 persist=persist, urlencode=args.urlencode) -- wikiq.process() # close things