![]() | Quote Fortune Macro | UserPreferences |
QuoteFortune("<ÆäÀÌÁöÀ̸§>"[,"<Á¤±Ô½Ä>"]) <Á¤±Ô½Ä>À» »ý·«Çϸé ÇØ´ç ÆäÀÌÁö¿¡¼ {{| |}} ·Î Ç¥½ÃµÈ ºÎºÐµé Áß¿¡ Çϳª¸¦ °ñ¶óÁØ´Ù. ÃѾË(*)·Î ½ÃÀÛÇÏ´Â Àο빮µéÀÇ ÁýÇÕ¿¡¼ Çϳª¸¦ °í¸¦ °æ¿ì´Â ´ÙÀ½ Á¤±Ô½ÄÀ» »ç¿ëÇÒ ¼ö ÀÖ´Ù: "(?m)^\s*\*\s*(.*)$"
e.g.
|
#macro/QuoteFortune.py """ MoinMoin - QuoteFortune Macro Copyright (c) 2002 by Changjune Kim <juneaftn@orgio.net> All rights reserved Usage: [[QuoteFortune("AnyPageName","AnyRegEx")]] or [[QuoteFortune("AnyPageName")]] (in which case the default pattern is used) if you need to put a double quote(") in the regex, you should put it escaped as \" Notes: Since whrandom module is not thread-safe and uses the system clock as the seed, which is somewhat coarse-grained, it might be quite possible that the clients might get the same choice for a short time period(apprx. 4ms theoretically, but it might vary according to the system's time call precision). """ from MoinMoin import wikiutil, config from MoinMoin.Page import Page from MoinMoin.parser.wiki import Parser import re, whrandom, sys from cStringIO import StringIO p=r'''(?x) (?P<quote>['"])(?P<pagename>[^'"]+)(?P=quote) ( (?P<spacer>\s*,\s*) (?P=quote)(?P<regex>[^'"]+)(?P=quote) )?''' DEFAULT_PATTERN=r'(?s){{\|(.*?)\|}}' def execute(macro,args,args_p=re.compile(p)): m=args_p.match(args) if not m: return "Wrong arguments" m=m.groupdict() if not m['regex']: m['regex']=DEFAULT_PATTERN all_pages=wikiutil.getPageList(config.text_dir) if m['pagename'] not in all_pages: return "No such page exists" quoteString=getaQuoteFromaWikiPage(m['pagename'],m['regex']) parser=Parser(quoteString) stdout=sys.stdout sys.stdout=StringIO() parser.format(macro.formatter, None) result=sys.stdout.getvalue() sys.stdout=stdout return result def getQuoteList(aString,aPattern): found=re.findall(aPattern,aString) truncated=[] for each in found: if each.startswith('\n'): each=each[1:] if each.endswith('\n'): each=each[:-1] truncated.append(each) return truncated def getaQuote(aString,aPattern): return whrandom.choice(getQuoteList(aString,aPattern) ) def getaQuoteFromaWikiPage(aPageName,aPattern): return getaQuote(Page(aPageName).get_raw_body(),aPattern)