"근원적인 정의 또는 설명"을 의미하는 접두사. "~의 가운데서, ~와 함께, 뒤에, 바꾸다"등의 의미를 갖는 그리스어에서 파생.
Meta 페이지들
으... 이거 RegularExpression 아시는분! Meta로 시작하고 다음에 대문자가 등장하는 페이지리스트를 출력하고자 [[PageList(^Meta[A-Z].*)]] 를 썼는데 자꾸, MetabolicPathway가 출력됩니다. Meta다음에 소문자잖아요 그래서 저건 나오면 안되거든요? 어찌해야하는지 아시는분 답좀... --yong27
제 생각으론 NoSmokeMoinMoin/wikimacro.py 의 PageList함수에 문제가 있는 거 같아요.
def _macro_PageList(self, args): try: needle_re = re.compile(args, re.IGNORECASE) except re.error, e: return "<b>%s: %s</b>" % ( user.current.text("ERROR in regex '%s'") % (args,), e) all_pages = wikiutil.getPageList(config.text_dir) hits = filter(needle_re.search, all_pages) hits.sort() result = self.formatter.bullet_list(1) for filename in hits: result = result + self.formatter.listitem(1) result = result + self.formatter.pagelink(filename) result = result + self.formatter.listitem(0) result = result + self.formatter.bullet_list(0) return result
위에서 re.IGNORECASE 부분에서 Case를 무시하게 만드는 것 같은데요. --destine
그렇군... re.IGNORECASE를 지워놓고 해보니깐 제대로 되네... 근데, 아무래도 이기능은 case무시가 맞는것 같다. 그래서 그냥 두기로함 --yong27/2003-01-10
regexp를 잘 쓰면 굳이 Case 무시를 함수에 정의안해도 될텐데.... 그럼.. Meta[A-Z] 같은 표현을 써서 페이지 리스트를 볼 수 있는 함수를 하나 만들어주세요. --destine/2003-01-10
굳이 그 기능이 필요할까 생각이 들더라고... Meta로 검색했을 때, Metabolic이 나온는건 여기 무수한 페이지pool에서의 관련성을 나타내는거니, 의미가 있다고 느껴짐... --yong27/2003-01-10
음.. Regular Expression에 맞는 페이지가 검색되도록 함수를 고쳐달란 얘기였어요. 지금 페이지야 [[PageList(^Meta)]] 라고 쓰면 만들수 있잖아요. (버그를 잡자는 관점에서) destine/2003-01-10