Attachment 'RandomText-1.0.py'

Download

   1 # -*- coding: iso-8859-1 -*-
   2 """
   3     MoinMoin - RandomText Version 1.0, 04.09.2017
   4     
   5     Syntax: 
   6        <<RandomText(text1|text2|...|textN)>>
   7        
   8     @copyright: 2017 Ian Riley <ian@riley.asia>
   9     license: GNU GPL, see COPYING for details.
  10 
  11 """
  12 
  13 from random import sample
  14 from MoinMoin import wikiutil
  15 
  16 def execute(macro, args):
  17     text = args
  18     if not text:
  19         result = ''
  20     else:
  21         subtexts = (text.split('|'))
  22         text = sample(subtexts, 1)[0]
  23         result = wikiutil.escape(text) # make sure nothing harmful
  24     return result

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