コード例 #1
0
ファイル: markup.py プロジェクト: e2pluginss/plexnet
 def _init_filters(self):
     Template._init_filters(self)
     # Make sure the include filter comes after the match filter
     if self.loader:
         self.filters.remove(self._include)
     self.filters += [self._match]
     if self.loader:
         self.filters.append(self._include)
コード例 #2
0
 def _init_filters(self):
     Template._init_filters(self)
     # Make sure the include filter comes after the match filter
     self.filters.remove(self._include)
     self.filters += [self._match, self._include]
コード例 #3
0
 def _init_filters(self):
     Template._init_filters(self)
     # Make sure the include filter comes after the match filter
     self.filters.remove(self._include)
     self.filters += [self._match, self._include]