Example #1
0
 def defhost(self, icon):
     sabnzbd.cfg.cherryhost.set('127.0.0.1')
     sabnzbd.cfg.enable_https.set(False)
     sabnzbd.config.save_config()
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #2
0
 def nologin(self, icon):
     sabnzbd.cfg.username.set('')
     sabnzbd.cfg.password.set('')
     sabnzbd.config.save_config()
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #3
0
 def defhost(self, icon):
     sabnzbd.cfg.cherryhost.set('127.0.0.1')
     sabnzbd.cfg.enable_https.set(False)
     sabnzbd.config.save_config()
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #4
0
 def exit(self, **kwargs):
     """ Stop SABnzbd """
     yield "Initiating shutdown..."
     sabnzbd.halt()
     yield "<br>SABnzbd-%s shutdown finished" % sabnzbd.__version__
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
Example #5
0
 def nologin(self, icon):
     sabnzbd.cfg.username.set('')
     sabnzbd.cfg.password.set('')
     sabnzbd.config.save_config()
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #6
0
 def exit(self, **kwargs):
     """ Stop SABnzbd """
     yield "Initiating shutdown..."
     sabnzbd.halt()
     yield "<br>SABnzbd-%s shutdown finished" % sabnzbd.__version__
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
Example #7
0
 def restartNoLogin_(self, sender):
     sabnzbd.cfg.username.set('')
     sabnzbd.cfg.password.set('')
     sabnzbd.config.save_config()
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
Example #8
0
 def restartNoLogin_(self, sender):
     sabnzbd.cfg.username.set('')
     sabnzbd.cfg.password.set('')
     sabnzbd.config.save_config()
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
Example #9
0
 def restartSafeHost_(self, sender):
     sabnzbd.cfg.cherryhost.set('127.0.0.1')
     sabnzbd.cfg.cherryport.set('8080')
     sabnzbd.cfg.https_port.set('8090')
     sabnzbd.cfg.enable_https.set(False)
     sabnzbd.config.save_config()
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
Example #10
0
 def restartSafeHost_(self, sender):
     sabnzbd.cfg.cherryhost.set('127.0.0.1')
     sabnzbd.cfg.cherryport.set('8080')
     sabnzbd.cfg.https_port.set('8090')
     sabnzbd.cfg.enable_https.set(False)
     sabnzbd.config.save_config()
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
Example #11
0
    def exit(self, **kwargs):
        """ Stop SABnzbd """
        if cfg.configlock() or not sabnzbd.interface.check_access():
            return sabnzbd.interface.Protected()
        if not sabnzbd.interface.check_login():
            raise sabnzbd.interface.NeedLogin()

        logging.info('Shutdown requested by wizard')
        sabnzbd.halt()
        cherrypy.engine.exit()
        sabnzbd.SABSTOP = True
        return T('SABnzbd shutdown finished')
Example #12
0
 def applicationShouldTerminate_(self, sender):
     logging.info('[osx] application terminating')
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     self.status_item.setHighlightMode_(NO)
     sabnzbd.OSX_ICON = 0
     logging.info('[osx] application stopping daemon')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
     osx.sendGrowlMsg('SABnzbd',T('SABnzbd shutdown finished'),osx.NOTIFICATION['other'])
     logging.info('Leaving SABnzbd')
     sys.stderr.flush()
     sys.stdout.flush()
     return NSTerminateNow
Example #13
0
 def applicationShouldTerminate_(self, sender):
     logging.info('[osx] application terminating')
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
     self.status_item.setHighlightMode_(NO)
     sabnzbd.OSX_ICON = 0
     logging.info('[osx] application stopping daemon')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
     osx.sendGrowlMsg('SABnzbd', T('SABnzbd shutdown finished'),
                      osx.NOTIFICATION['other'])
     logging.info('Leaving SABnzbd')
     sys.stderr.flush()
     sys.stdout.flush()
     return NSTerminateNow
Example #14
0
 def applicationShouldTerminate_(self, sender):
     logging.info('[osx] application terminating')
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     self.status_item.setHighlightMode_(NO)
     self.osx_icon = False
     logging.info('[osx] application stopping daemon')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
     try:
         growler.send_notification('SABnzbd', T('SABnzbd shutdown finished'), growler.NOTIFICATION['other'])
     except AttributeError:
         # Fails for the OSX binary
         pass
     logging.info('Leaving SABnzbd')
     sys.stderr.flush()
     sys.stdout.flush()
     return NSTerminateNow
Example #15
0
 def applicationShouldTerminate_(self, sender):
     logging.info('[osx] application terminating')
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     self.status_item.setHighlightMode_(NO)
     self.osx_icon = False
     logging.info('[osx] application stopping daemon')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
     try:
         growler.send_notification('SABnzbd', T('SABnzbd shutdown finished'), growler.NOTIFICATION['other'])
     except AttributeError:
         # Fails for the OSX binary
         pass
     logging.info('Leaving SABnzbd')
     sys.stderr.flush()
     sys.stdout.flush()
     return NSTerminateNow
Example #16
0
 def restart(self, icon):
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #17
0
 def restart(self, icon):
     self.hover_text = T('Restart')
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #18
0
 def restartAction_(self, sender):
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n" % (T('Stopping...')))
Example #19
0
 def restartAction_(self, sender):
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
     sabnzbd.halt()
     cherrypy.engine.restart()
     self.setMenuTitle("\n\n%s\n"% (T('Stopping...')))
Example #20
0
 def restart(self, icon):
     self.hover_text = self.txt_restart
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #21
0
 def restart(self, icon):
     self.hover_text = self.txt_restart
     sabnzbd.halt()
     cherrypy.engine.restart()
Example #22
0
 def shutdown(self, icon):
     self.hover_text = self.txt_shutdown
     logging.info('Shutdown requested by tray')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
Example #23
0
 def shutdown(self, icon):
     self.hover_text = T('Shutdown')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
Example #24
0
 def shutdown(self, icon):
     self.hover_text = T('Shutdown')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True
Example #25
0
 def shutdown(self, icon):
     self.hover_text = self.txt_shutdown
     logging.info('Shutdown requested by tray')
     sabnzbd.halt()
     cherrypy.engine.exit()
     sabnzbd.SABSTOP = True