°³¹Ì°³¹Ì   Quote Fortune Macro UserPreferences
 
Help Info Print View Search Diffs Edit
 Á¦¸ñ   µµ¿ò¸»   Ã£±â   ´ë¹®   ¹Ù²ï±Û 

Àο빮µéÀÌ ÀúÀåµÈ ÆäÀÌÁö¿¡¼­ ÀÓÀÇÀÇ ÇÑ Àο빮À» ¼±ÅÃÇؼ­ º¸¿©ÁÖ´Â ¸ÅÅ©·Î
QuoteFortune("<ÆäÀÌÁöÀ̸§>"[,"<Á¤±Ô½Ä>"])

<Á¤±Ô½Ä>À» »ý·«Çϸé ÇØ´ç ÆäÀÌÁö¿¡¼­ {{| |}} ·Î Ç¥½ÃµÈ ºÎºÐµé Áß¿¡ Çϳª¸¦ °ñ¶óÁØ´Ù. ÃѾË(*)·Î ½ÃÀÛÇÏ´Â Àο빮µéÀÇ ÁýÇÕ¿¡¼­ Çϳª¸¦ °í¸¦ °æ¿ì´Â ´ÙÀ½ Á¤±Ô½ÄÀ» »ç¿ëÇÒ ¼ö ÀÖ´Ù: "(?m)^\s*\*\s*(.*)$"

e.g.

  • ´Ïü´Â ´ç½ÅÀÇ ¹®Á¦¿¡ ´ëÇØ "[[QuoteFortune("´Ïü¾î·Ï")]]"¶ó°í ¸»ÇØÁÝ´Ï´Ù.
  • ÁÖ¿ªÀÇ 64±¥ Áß ´ç½ÅÀÌ »ÌÀº ±¥´Â "[[QuoteFortune("ÁÖ¿ª64±¥")]]"ÀÔ´Ï´Ù.
  • ÃàÇϵ帳´Ï´Ù. [[QuoteFortune("Á÷¿ø¸ñ·Ï","(?m)^\s*\*\s*(.*)$")]]´Ô²² ÇÇÀÚ¿Í ¼ø´ë¸¦ »ç¿À½Ç ¼ö Àִ Ư±ÇÀ» µå¸³´Ï´Ù.

#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) 

¸ÅÅ©·ÎºÐ·ù


PythonPowered EditText of this page (last modified 2002-12-25 23:57:42)
FindPage by browsing, searching, or an index
Or try one of these actions: DeletePage, DeleteUploadedFile, LikePages, SpellCheck, UploadFile