Beispiel #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()
Beispiel #2
0
 def __init__(self, path, title, parent, readonly=False):
     WikiPage.__init__(self, path, title, parent, readonly)
Beispiel #3
0
 def __init__(self, path, title, parent, readonly=False):
     WikiPage.__init__(self, path, title, parent, readonly)
Beispiel #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"
Beispiel #5
0
    def __init__(self, path, title, parent, readonly=False):
        WikiPage.__init__(self, path, title, parent, readonly)

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