Forking what is left of ZeroNet and hopefully adding an AT Proto Frontend/Proxy
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rev4536, Fix Cors permission request for connecting site

+2 -2
+1 -1
plugins/Cors/CorsPlugin.py
··· 76 76 def actionCorsPermission(self, to, address): 77 77 site = self.server.sites.get(address) 78 78 if site: 79 - site_name = site.content_manager.contents.get("content.json", {}).get("title") 79 + site_name = site.content_manager.contents.get("content.json", {}).get("title", address) 80 80 button_title = _["Grant"] 81 81 else: 82 82 site_name = address
+1 -1
src/Config.py
··· 14 14 15 15 def __init__(self, argv): 16 16 self.version = "0.7.2" 17 - self.rev = 4533 17 + self.rev = 4536 18 18 self.argv = argv 19 19 self.action = None 20 20 self.test_parser = None