'old-pages',help="Returns pages before a certain date.",
description="Returns list of pages, last changed before the given date. For each page the name, timestamp of last change, and amount of characters are given.")
parser_old.add_argument("timedelta",
type=lambdas:datetime.datetime.strptime(
s,'%Y-%m-%d-%H-%M'),
help="Date in the format year-month-day-hour-minute.")
parser_old.add_argument("-n",dest="namespace",
help="Namespace in which to search",default=None,metavar="namespace")
parser_old.set_defaults(func=find_old_pages)
# parser for single page moving #
parser_move=subparsers.add_parser(
'move',help="Moves a page and updates backlinks.",description="Moves a page to a new name(space). Links to the old page are updated. The old page can be deleted.")