예제 #1
0
    def __init__ (self, path, title, parent, readonly = False):
        WikiPage.__init__ (self, path, title, parent, readonly)

        self.paramsSection = u"Search"
        phraseOption = StringOption (self.params, self.paramsSection, u"phrase", u"")

        # Искомая фраза
        self._phrase = phraseOption.value

        # Теги, по которым осуществляется поиск (не путать с тегами, установленными для данной страницы)
        self._searchTags = self._getSearchTags()

        # Стратегия для поиска
        self._strategy = self._getStrategy()
예제 #2
0
 def __init__(self, path, title, parent, readonly=False):
     WikiPage.__init__(self, path, title, parent, readonly)
예제 #3
0
 def __init__(self, path, title, parent, readonly=False):
     WikiPage.__init__(self, path, title, parent, readonly)
예제 #4
0
    def __init__ (self, path, title, parent, readonly=False):
        WikiPage.__init__ (self, path, title, parent, readonly)

        self.__autoLineWrapSection = u"General"
        self.__autoLineWrapParam = u"LineWrap"
예제 #5
0
파일: htmlpage.py 프로젝트: Jenyay/outwiker
    def __init__(self, path, title, parent, readonly=False):
        WikiPage.__init__(self, path, title, parent, readonly)

        self.__autoLineWrapSection = "General"
        self.__autoLineWrapParam = "LineWrap"