""" MoinMoin - FileList Macro Written by Jacob Cohen. Last name at rafb.net will reach me. A macro to produce the file listing that appears on the AttachFile action Usage: [[FileList]] """ from MoinMoin.action.AttachFile import _get_filelist def execute(macro, args): result = _get_filelist(macro.request, macro.formatter.page.page_name); return result