Attachment 'UploadInfo-1.1.py'
Download 1 """
2 MoinMoin - UploadInfo Macro Version 1.1, 01.07.2014
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 History:
14
15 Version 1.1 - 01.07.2014: case sensitivity of option values removed.
16 Version 1.0 - 15.05.2011: initial version.
17
18 @copyright: 2011 Ian Riley <ian@riley.asia>
19 @license: GNU GPL, see COPYING for details.
20
21 Based on MoinMoin - AttachList Macro
22
23 @copyright: 2004 Jacob Cohen, Nigel Metheringham,
24 2006 MoinMoin:ReimarBauer
25 @license: GNU GPL, see COPYING for details.
26 """
27 from MoinMoin import wikiutil
28
29 def macro_UploadInfo(macro, pagename=None, mime_type=u'*', owners=u'*'):
30
31 _get_info = wikiutil.importWikiPlugin(macro.request.cfg, u'action', u'DropBox', u'_get_info')
32
33 # defaults if we don't get anything better
34 if not pagename:
35 pagename = macro.formatter.page.page_name
36
37 return _get_info(macro.request, pagename, mime_type=mime_type, owners=owners)
You are not allowed to attach a file to this page.