Merge branch 'advanced_persistence' of code.communitydata.cc:/mediawiki_dump_tools into advanced_persistence
This commit is contained in:
commit
afd40c1a45
6
wikiq
6
wikiq
@ -373,11 +373,12 @@ parser.add_argument('-p', '--persistence', dest="persist", default=None, const='
|
|||||||
parser.add_argument('-u', '--url-encode', dest="urlencode", action="store_true",
|
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.")
|
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()
|
args = parser.parse_args()
|
||||||
|
print(args)
|
||||||
# set persistence method
|
# set persistence method
|
||||||
|
|
||||||
if args.persist is None:
|
if args.persist is None:
|
||||||
@ -412,7 +413,6 @@ if len(args.dumpfiles) > 0:
|
|||||||
persist=persist,
|
persist=persist,
|
||||||
urlencode=args.urlencode)
|
urlencode=args.urlencode)
|
||||||
|
|
||||||
|
|
||||||
wikiq.process()
|
wikiq.process()
|
||||||
|
|
||||||
# close things
|
# close things
|
||||||
|
Loading…
Reference in New Issue
Block a user