当前位置: 首页>>代码示例>>Python>>正文


Python WikiPage.split方法代码示例

本文整理汇总了Python中trac.wiki.model.WikiPage.split方法的典型用法代码示例。如果您正苦于以下问题:Python WikiPage.split方法的具体用法?Python WikiPage.split怎么用?Python WikiPage.split使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在trac.wiki.model.WikiPage的用法示例。


在下文中一共展示了WikiPage.split方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: interwiki_map

# 需要导入模块: from trac.wiki.model import WikiPage [as 别名]
# 或者: from trac.wiki.model.WikiPage import split [as 别名]
 def interwiki_map(self):
     """Map from upper-cased namespaces to (namespace, prefix, title)
     values.
     """
     from trac.wiki.model import WikiPage
     map = {}
     content = WikiPage(self.env, InterWikiMap._page_name).text
     in_map = False
     for line in content.split('\n'):
         if in_map:
             if line.startswith('----'):
                 in_map = False
             else:
                 m = re.match(InterWikiMap._interwiki_re, line)
                 if m:
                     prefix, url, title = m.groups()
                     url = url.strip()
                     title = title.strip() if title else prefix
                     map[prefix.upper()] = (prefix, url, title)
         elif line.startswith('----'):
             in_map = True
     for prefix, value in self.interwiki_section.options():
         value = value.split(None, 1)
         if value:
             url = value[0].strip()
             title = value[1].strip() if len(value) > 1 else prefix
             map[prefix.upper()] = (prefix, url, title)
     return map
开发者ID:pkdevbox,项目名称:trac,代码行数:30,代码来源:interwiki.py

示例2: _get_interwiki_map

# 需要导入模块: from trac.wiki.model import WikiPage [as 别名]
# 或者: from trac.wiki.model.WikiPage import split [as 别名]
 def _get_interwiki_map(self):
     from trac.wiki.model import WikiPage
     if self._interwiki_map is None:
         self._interwiki_lock.acquire()
         try:
             if self._interwiki_map is None:
                 self._interwiki_map = {}
                 content = WikiPage(self.env, InterWikiMap._page_name).text
                 in_map = False
                 for line in content.split('\n'):
                     if in_map:
                         if line.startswith('----'):
                             in_map = False
                         else:
                             m = re.match(InterWikiMap._interwiki_re, line)
                             if m:
                                 prefix, url, title = m.groups()
                                 url = url.strip()
                                 title = title and title.strip() or prefix
                                 self[prefix] = (prefix, url, title)
                     elif line.startswith('----'):
                         in_map = True
         finally:
             self._interwiki_lock.release()
     return self._interwiki_map
开发者ID:gdgkyoto,项目名称:kyoto-gtug,代码行数:27,代码来源:interwiki.py

示例3: interwiki_map

# 需要导入模块: from trac.wiki.model import WikiPage [as 别名]
# 或者: from trac.wiki.model.WikiPage import split [as 别名]
 def interwiki_map(self, db):
     """Map from upper-cased namespaces to (namespace, prefix, title) 
     values.
     """
     from trac.wiki.model import WikiPage
     map = {}
     content = WikiPage(self.env, InterWikiMap._page_name, db=db).text
     in_map = False
     for line in content.split('\n'):
         if in_map:
             if line.startswith('----'):
                 in_map = False
             else:
                 m = re.match(InterWikiMap._interwiki_re, line)
                 if m:
                     prefix, url, title = m.groups()
                     url = url.strip()
                     title = title and title.strip() or prefix
                     map[prefix.upper()] = (prefix, url, title)
         elif line.startswith('----'):
             in_map = True
     return map
开发者ID:wiraqutra,项目名称:photrackjp,代码行数:24,代码来源:interwiki.py


注:本文中的trac.wiki.model.WikiPage.split方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。