Ejemplo n.º 1
0
    def __init__(self):
        config = {'name' : N_('Statistics for main page'),
                  'deps' : ('base_view',)
                 }

        BasePlugin.__init__(self, 'statistics', config)
        AbstractHomeExtension.__init__(self, 'statistics')
Ejemplo n.º 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')
Ejemplo n.º 3
0
 def __init__(self):
     config = {'name' : N_('Search support (Obligatory)'),
               'deps' : ('base_view',)
              }
     BasePlugin.__init__(self, 'base_search', config)
Ejemplo n.º 4
0
 def __init__(self):
     config = {
         'name': N_('Maintenance'),
     }
     BasePlugin.__init__(self, 'maintenance', config)
Ejemplo n.º 5
0
 def __init__(self):
     config = {'name' : N_('Userspace invite generator'),
               'deps' : ('adminpanel', 'base_profile')
              }
     BasePlugin.__init__(self, 'invites', config)
Ejemplo n.º 6
0
 def __init__(self):
     config = {'name': 'Post deletion', 'deps': ('base_public', )}
     BasePlugin.__init__(self, 'postdelete', config)
Ejemplo n.º 7
0
 def __init__(self):
     config = {'name': N_('Invite request'), 'deps': ('base_public', )}
     BasePlugin.__init__(self, 'invrequest', config)
Ejemplo n.º 8
0
    def __init__(self):
        config = {'name' : N_('Flash player for music files'),
                  'deps' : ('base_view',)
                 }

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

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

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