Attachment 'UploadList-1.1.py'

Download

   1 """
   2     MoinMoin - UploadList Macro Version 1.1, 01.07.2014
   3 
   4     A macro to produce a list of uploaded (attached) files
   5 
   6     Usage: <<UploadList([pagename,mime_type,owners,sort])>>
   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     If sort is not specified the list is sorted by file name.
  13     Sort can be 'Date' 'Owner' 'Size' or 'Type'
  14 
  15     History:
  16     
  17     Version 1.1 - 01.07.2014: added sort option; case sensitivity of option
  18                               values removed.
  19     Version 1.0 - 15.05.2011: initial version.
  20 
  21     @copyright: 2011, 2014 Ian Riley <ian@riley.asia>
  22     @license: GNU GPL, see COPYING for details.
  23 
  24     Based on MoinMoin - AttachList Macro
  25 
  26     @copyright: 2004 Jacob Cohen, Nigel Metheringham,
  27                 2006 MoinMoin:ReimarBauer
  28     @license: GNU GPL, see COPYING for details.
  29 """
  30 from MoinMoin import wikiutil
  31 
  32 def macro_UploadList(macro, pagename=None, mime_type=u'*', owners=u'*', sort=u'*'):
  33 
  34     _get_filelist = wikiutil.importWikiPlugin(macro.request.cfg, u'action', u'DropBox', u'_get_filelist')
  35 
  36     # defaults if we don't get anything better
  37     if not pagename:
  38         pagename = macro.formatter.page.page_name
  39 
  40     return _get_filelist(macro.request, pagename, mime_type=mime_type, owners=owners, sort=sort)

You are not allowed to attach a file to this page.