Attachment 'UploadInfo-1.0.py'
Download 1 """
2 MoinMoin - UploadInfo Macro Version 1.0, 15.05.2011
3
4 A macro to provide info about uploaded (attached) files
5
6 Usage: <<UploadInfo([pagename,mime_type,owners])>>
7
8 If pagename isn't set, the current pagename is used.
9 If mime_type isn't given, all files are listed.
10 If owners isn't given, the list is not divided into self and other.
11 Owners can be 'Self' 'Other' or 'All'
12
13 @copyright: 2011 Ian Riley <ian.riley@adelaide.edu.au>
14 @license: GNU GPL, see COPYING for details.
15
16 Based on MoinMoin - AttachList Macro
17
18 @copyright: 2004 Jacob Cohen, Nigel Metheringham,
19 2006 MoinMoin:ReimarBauer
20 @license: GNU GPL, see COPYING for details.
21 """
22 from MoinMoin import wikiutil
23
24 def macro_UploadInfo(macro, pagename=None, mime_type=u'*', owners=u'All'):
25
26 _get_info = wikiutil.importWikiPlugin(macro.request.cfg, u'action', u'DropBox', u'_get_info')
27
28 # defaults if we don't get anything better
29 if not pagename:
30 pagename = macro.formatter.page.page_name
31
32 return _get_info(macro.request, pagename, mime_type=mime_type, owners=owners)
You are not allowed to attach a file to this page.