Example #1
0
    def __init__(self):
        config = {'name' : N_('Statistics for main page'),
                  'deps' : ('base_view',)
                 }

        BasePlugin.__init__(self, 'statistics', config)
        AbstractHomeExtension.__init__(self, 'statistics')
Example #2
0
    def __init__(self):
        config = {
            'name': N_('News feed for main page'),
            'deps': ('base_view', )
        }

        BasePlugin.__init__(self, 'newsgenerator', config)
        AbstractHomeExtension.__init__(self, 'newsfeed')
Example #3
0
 def __init__(self):
     config = {'name' : N_('Search support (Obligatory)'),
               'deps' : ('base_view',)
              }
     BasePlugin.__init__(self, 'base_search', config)
Example #4
0
 def __init__(self):
     config = {
         'name': N_('Maintenance'),
     }
     BasePlugin.__init__(self, 'maintenance', config)
Example #5
0
 def __init__(self):
     config = {'name' : N_('Userspace invite generator'),
               'deps' : ('adminpanel', 'base_profile')
              }
     BasePlugin.__init__(self, 'invites', config)
Example #6
0
 def __init__(self):
     config = {'name': 'Post deletion', 'deps': ('base_public', )}
     BasePlugin.__init__(self, 'postdelete', config)
Example #7
0
 def __init__(self):
     config = {'name': N_('Invite request'), 'deps': ('base_public', )}
     BasePlugin.__init__(self, 'invrequest', config)
Example #8
0
    def __init__(self):
        config = {'name' : N_('Flash player for music files'),
                  'deps' : ('base_view',)
                 }

        BasePlugin.__init__(self, 'mediaplayer', config)
Example #9
0
 def __init__(self):
     config = {
         'name': N_('Search based on LIKE operator'),
         'deps': ('base_search', )
     }
     BasePlugin.__init__(self, 'search_like', config)
Example #10
0
 def __init__(self):
     config = {
         'name': N_('Search with Sphinx full-text search engine'),
         'deps': ('base_search', )
     }
     BasePlugin.__init__(self, 'search_sphinx', config)
Example #11
0
    def __init__(self):
        config = {'name': N_('RSS/Atom feeds'), 'deps': ('base_view', )}

        BasePlugin.__init__(self, 'rssfeed', config)
Example #12
0
 def __init__(self):
     config = {
         'name': N_('Automatic ban for download spiders'),
     }
     BasePlugin.__init__(self, 'bottrap', config)
Example #13
0
 def __init__(self):
     config = {
         'name': N_('Threads and boards (Obligatory)'),
         'deps': ('base_public', 'base_posting')
     }
     BasePlugin.__init__(self, 'base_view', config)
Example #14
0
 def __init__(self):
     config = {'name' : N_('Thread saving plugin'),
               'deps' : ('base_view',)
              }
     BasePlugin.__init__(self, 'threadsave', config)
Example #15
0
 def __init__(self):
     config = {
         'name': N_('User profile (Obligatory)'),
         'deps': ('base_view', )
     }
     BasePlugin.__init__(self, 'base_profile', config)
Example #16
0
 def __init__(self):
     config = {
         'name': N_('Administration panel'),
     }
     BasePlugin.__init__(self, 'adminpanel', config)
Example #17
0
 def __init__(self):
     config = {
         'name': N_('Multi-post operations (Obligatory)'),
         'deps': False
     }
     BasePlugin.__init__(self, 'base_multipost', config)
Example #18
0
 def __init__(self):
     config = {'name' : 'Post censoring',
               'deps' : ('base_public',)
              }
     BasePlugin.__init__(self, 'postspoiler', config)
Example #19
0
 def __init__(self):
     config = {'name': N_('Final anonymization'), 'deps': ('base_view', )}
     BasePlugin.__init__(self, 'anonymiztaion', config)
Example #20
0
 def __init__(self):
     config = {'name': N_('Personal tags module'), 'deps': ('base_view', )}
     BasePlugin.__init__(self, 'usertags', config)
Example #21
0
    def __init__(self):
        config = {'name' : N_('HTTP headers dumper and proxy judge'),
                 }

        BasePlugin.__init__(self, 'httpinfo', config)
Example #22
0
 def __init__(self):
     config = {
         'name': N_('Posting (Obligatory)'),
         'deps': ('base_public', )
     }
     BasePlugin.__init__(self, 'base_posting', config)
Example #23
0
 def __init__(self):
     config = {
         'name': N_('Public services (Obligatory)'),
     }
     BasePlugin.__init__(self, 'base_public', config)
Example #24
0
 def __init__(self):
     config = {
         'name': N_('Ajax helpers'),
         'deps': ('base_view', 'base_profile')
     }
     BasePlugin.__init__(self, 'ajaxhelpers', config)
Example #25
0
 def __init__(self):
     config = {'name' : N_('Show thread as graph plugin'),
               'deps' : ('base_view',)
              }
     BasePlugin.__init__(self, 'threadanalyse', config)