Mercurial > moin > 1.9
view MoinMoin/macro/AbandonedPages.py @ 0:77665d8e2254
tag of nonpublic@localhost--archive/moin--enterprise--1.5--base-0
(automatically generated log message)
imported from: moin--main--1.5--base-0
author | Thomas Waldmann <tw-public@gmx.de> |
---|---|
date | Thu, 22 Sep 2005 15:09:50 +0000 |
parents | |
children | bb2e053067fb |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - AbandonedPages Macro This is a list of pages that were not edited for a long time according to the edit log; if you shortened the log, the displayed information may not be what you expect. @copyright: 2001 by Jürgen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ from MoinMoin.macro import RecentChanges def execute(macro, args): return RecentChanges.execute(macro, args, abandoned=1)