mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-02-18 14:04:25 -05:00
Merge branch 'master' into urwid_constants
This commit is contained in:
commit
a876c09b4c
@ -13,7 +13,7 @@ class ConfigFiller(urwid.WidgetWrap):
|
|||||||
def __init__(self, widget, app):
|
def __init__(self, widget, app):
|
||||||
self.app = app
|
self.app = app
|
||||||
self.filler = urwid.Filler(widget, urwid.TOP)
|
self.filler = urwid.Filler(widget, urwid.TOP)
|
||||||
urwid.WidgetWrap.__init__(self, self.filler)
|
super().__init__(self.filler)
|
||||||
|
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
@ -79,7 +79,7 @@ class EditorTerminal(urwid.WidgetWrap):
|
|||||||
|
|
||||||
urwid.connect_signal(self.term, 'closed', quit_term)
|
urwid.connect_signal(self.term, 'closed', quit_term)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.term)
|
super().__init__(self.term)
|
||||||
|
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
|
@ -931,7 +931,7 @@ class ConversationWidget(urwid.WidgetWrap):
|
|||||||
if source_hash == None:
|
if source_hash == None:
|
||||||
self.frame = None
|
self.frame = None
|
||||||
display_widget = urwid.LineBox(urwid.Filler(urwid.Text("\n No conversation selected"), "top"))
|
display_widget = urwid.LineBox(urwid.Filler(urwid.Text("\n No conversation selected"), "top"))
|
||||||
urwid.WidgetWrap.__init__(self, display_widget)
|
super().__init__(display_widget)
|
||||||
else:
|
else:
|
||||||
if source_hash in ConversationsDisplay.cached_conversation_widgets:
|
if source_hash in ConversationsDisplay.cached_conversation_widgets:
|
||||||
return ConversationsDisplay.cached_conversation_widgets[source_hash]
|
return ConversationsDisplay.cached_conversation_widgets[source_hash]
|
||||||
@ -999,7 +999,7 @@ class ConversationWidget(urwid.WidgetWrap):
|
|||||||
self.frame
|
self.frame
|
||||||
)
|
)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def clear_history_dialog(self):
|
def clear_history_dialog(self):
|
||||||
def dismiss_dialog(sender):
|
def dismiss_dialog(sender):
|
||||||
@ -1323,7 +1323,7 @@ class LXMessageWidget(urwid.WidgetWrap):
|
|||||||
urwid.Text("")
|
urwid.Text("")
|
||||||
])
|
])
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, display_widget)
|
super().__init__(display_widget)
|
||||||
|
|
||||||
class SyncProgressBar(urwid.ProgressBar):
|
class SyncProgressBar(urwid.ProgressBar):
|
||||||
def get_text(self):
|
def get_text(self):
|
||||||
|
@ -75,7 +75,7 @@ class GuideEntry(urwid.WidgetWrap):
|
|||||||
style = "topic_list_normal"
|
style = "topic_list_normal"
|
||||||
focus_style = "list_focus"
|
focus_style = "list_focus"
|
||||||
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def display_topic(self, event, topic):
|
def display_topic(self, event, topic):
|
||||||
markup = TOPICS[topic]
|
markup = TOPICS[topic]
|
||||||
@ -125,7 +125,7 @@ class TopicList(urwid.WidgetWrap):
|
|||||||
highlight_offFocus="list_off_focus"
|
highlight_offFocus="list_off_focus"
|
||||||
)
|
)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.ilb, title="Topics"))
|
super().__init__(urwid.LineBox(self.ilb, title="Topics"))
|
||||||
|
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
|
@ -39,7 +39,7 @@ class LogTerminal(urwid.WidgetWrap):
|
|||||||
escape_sequence="up",
|
escape_sequence="up",
|
||||||
main_loop=self.app.ui.loop,
|
main_loop=self.app.ui.loop,
|
||||||
)
|
)
|
||||||
urwid.WidgetWrap.__init__(self, self.log_term)
|
super().__init__(self.log_term)
|
||||||
|
|
||||||
def terminate(self):
|
def terminate(self):
|
||||||
self.log_term.terminate()
|
self.log_term.terminate()
|
||||||
|
@ -607,7 +607,7 @@ class LinkSpec(urwid.AttrSpec):
|
|||||||
self.link_target = link_target
|
self.link_target = link_target
|
||||||
self.link_fields = None
|
self.link_fields = None
|
||||||
|
|
||||||
urwid.AttrSpec.__init__(self, orig_spec.foreground, orig_spec.background)
|
super().__init__(orig_spec.foreground, orig_spec.background)
|
||||||
|
|
||||||
|
|
||||||
class LinkableText(urwid.Text):
|
class LinkableText(urwid.Text):
|
||||||
@ -617,7 +617,7 @@ class LinkableText(urwid.Text):
|
|||||||
signals = ["click", "change"]
|
signals = ["click", "change"]
|
||||||
|
|
||||||
def __init__(self, text, align=None, cursor_position=0, delegate=None):
|
def __init__(self, text, align=None, cursor_position=0, delegate=None):
|
||||||
self.__super.__init__(text, align=align)
|
super().__init__(text, align=align)
|
||||||
self.delegate = delegate
|
self.delegate = delegate
|
||||||
self._cursor_position = 0
|
self._cursor_position = 0
|
||||||
self.key_timeout = 3
|
self.key_timeout = 3
|
||||||
@ -728,7 +728,7 @@ class LinkableText(urwid.Text):
|
|||||||
|
|
||||||
def render(self, size, focus=False):
|
def render(self, size, focus=False):
|
||||||
now = time.time()
|
now = time.time()
|
||||||
c = self.__super.render(size, focus)
|
c = super().render(size, focus)
|
||||||
|
|
||||||
if focus and (self.delegate == None or now < self.delegate.last_keypress+self.key_timeout):
|
if focus and (self.delegate == None or now < self.delegate.last_keypress+self.key_timeout):
|
||||||
c = urwid.CompositeCanvas(c)
|
c = urwid.CompositeCanvas(c)
|
||||||
|
@ -246,7 +246,7 @@ class AnnounceInfo(urwid.WidgetWrap):
|
|||||||
|
|
||||||
self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK)
|
self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Info"))
|
super().__init__(urwid.LineBox(self.display_widget, title="Announce Info"))
|
||||||
|
|
||||||
|
|
||||||
class AnnounceStreamEntry(urwid.WidgetWrap):
|
class AnnounceStreamEntry(urwid.WidgetWrap):
|
||||||
@ -308,7 +308,7 @@ class AnnounceStreamEntry(urwid.WidgetWrap):
|
|||||||
urwid.connect_signal(widget, "click", self.display_announce, announce)
|
urwid.connect_signal(widget, "click", self.display_announce, announce)
|
||||||
|
|
||||||
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def display_announce(self, event, announce):
|
def display_announce(self, event, announce):
|
||||||
try:
|
try:
|
||||||
@ -390,7 +390,7 @@ class AnnounceStream(urwid.WidgetWrap):
|
|||||||
)
|
)
|
||||||
|
|
||||||
self.display_widget = self.ilb
|
self.display_widget = self.ilb
|
||||||
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Stream"))
|
super().__init__(urwid.LineBox(self.display_widget, title="Announce Stream"))
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
||||||
@ -706,7 +706,7 @@ class KnownNodeInfo(urwid.WidgetWrap):
|
|||||||
|
|
||||||
self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK)
|
self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Node Info"))
|
super().__init__(urwid.LineBox(self.display_widget, title="Node Info"))
|
||||||
|
|
||||||
|
|
||||||
# Yes, this is weird. There is a bug in Urwid/ILB that causes
|
# Yes, this is weird. There is a bug in Urwid/ILB that causes
|
||||||
@ -760,7 +760,7 @@ class KnownNodes(urwid.WidgetWrap):
|
|||||||
])
|
])
|
||||||
self.display_widget = urwid.Filler(self.pile, valign=urwid.TOP, height=urwid.PACK)
|
self.display_widget = urwid.Filler(self.pile, valign=urwid.TOP, height=urwid.PACK)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Saved Nodes"), widget_style))
|
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Saved Nodes"), widget_style))
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
||||||
@ -916,7 +916,7 @@ class NodeEntry(urwid.WidgetWrap):
|
|||||||
|
|
||||||
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
||||||
self.display_widget.source_hash = source_hash
|
self.display_widget.source_hash = source_hash
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
|
|
||||||
class AnnounceTime(urwid.WidgetWrap):
|
class AnnounceTime(urwid.WidgetWrap):
|
||||||
@ -927,7 +927,7 @@ class AnnounceTime(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_time()
|
self.update_time()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_time(self):
|
def update_time(self):
|
||||||
self.last_announce_string = "Never"
|
self.last_announce_string = "Never"
|
||||||
@ -959,7 +959,7 @@ class NodeAnnounceTime(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_time()
|
self.update_time()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_time(self):
|
def update_time(self):
|
||||||
self.last_announce_string = "Never"
|
self.last_announce_string = "Never"
|
||||||
@ -990,7 +990,7 @@ class NodeActiveConnections(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_stat()
|
self.update_stat()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_stat(self):
|
def update_stat(self):
|
||||||
self.stat_string = "None"
|
self.stat_string = "None"
|
||||||
@ -1021,7 +1021,7 @@ class NodeStorageStats(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_stat()
|
self.update_stat()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_stat(self):
|
def update_stat(self):
|
||||||
self.stat_string = "None"
|
self.stat_string = "None"
|
||||||
@ -1064,7 +1064,7 @@ class NodeTotalConnections(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_stat()
|
self.update_stat()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_stat(self):
|
def update_stat(self):
|
||||||
self.stat_string = "None"
|
self.stat_string = "None"
|
||||||
@ -1096,7 +1096,7 @@ class NodeTotalPages(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_stat()
|
self.update_stat()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_stat(self):
|
def update_stat(self):
|
||||||
self.stat_string = "None"
|
self.stat_string = "None"
|
||||||
@ -1128,7 +1128,7 @@ class NodeTotalFiles(urwid.WidgetWrap):
|
|||||||
self.display_widget = urwid.Text("")
|
self.display_widget = urwid.Text("")
|
||||||
self.update_stat()
|
self.update_stat()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update_stat(self):
|
def update_stat(self):
|
||||||
self.stat_string = "None"
|
self.stat_string = "None"
|
||||||
@ -1244,7 +1244,7 @@ class LocalPeer(urwid.WidgetWrap):
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Local Peer Info"))
|
super().__init__(urwid.LineBox(self.display_widget, title="Local Peer Info"))
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
self.t_last_announce.start()
|
self.t_last_announce.start()
|
||||||
@ -1420,7 +1420,7 @@ class NodeInfo(urwid.WidgetWrap):
|
|||||||
|
|
||||||
self.display_widget = pile
|
self.display_widget = pile
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style))
|
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style))
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
if self.app.node != None:
|
if self.app.node != None:
|
||||||
@ -1443,7 +1443,7 @@ class UpdatingText(urwid.WidgetWrap):
|
|||||||
self.append_text = append_text
|
self.append_text = append_text
|
||||||
self.update()
|
self.update()
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
self.value = self.value_method()
|
self.value = self.value_method()
|
||||||
@ -1485,7 +1485,7 @@ class NetworkStats(urwid.WidgetWrap):
|
|||||||
|
|
||||||
self.display_widget = urwid.LineBox(pile, title="Network Stats")
|
self.display_widget = urwid.LineBox(pile, title="Network Stats")
|
||||||
|
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
self.w_heard_peers.start()
|
self.w_heard_peers.start()
|
||||||
@ -1674,7 +1674,7 @@ class LXMFPeers(urwid.WidgetWrap):
|
|||||||
pl = len(self.peer_list)
|
pl = len(self.peer_list)
|
||||||
else:
|
else:
|
||||||
pl = 0
|
pl = 0
|
||||||
urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title=f"LXMF Propagation Peers ({pl})"), widget_style))
|
super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title=f"LXMF Propagation Peers ({pl})"), widget_style))
|
||||||
|
|
||||||
def keypress(self, size, key):
|
def keypress(self, size, key):
|
||||||
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
if key == "up" and (self.no_content or self.ilb.first_item_is_selected()):
|
||||||
@ -1800,7 +1800,7 @@ class LXMFPeerEntry(urwid.WidgetWrap):
|
|||||||
widget = ListEntry(sym+" "+display_str+"\n "+alive_string+", last heard "+pretty_date(int(peer.last_heard))+"\n "+str(len(peer.unhandled_messages))+" unhandled LXMs, "+RNS.prettysize(peer.link_establishment_rate/8, "b")+"/s LER")
|
widget = ListEntry(sym+" "+display_str+"\n "+alive_string+", last heard "+pretty_date(int(peer.last_heard))+"\n "+str(len(peer.unhandled_messages))+" unhandled LXMs, "+RNS.prettysize(peer.link_establishment_rate/8, "b")+"/s LER")
|
||||||
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
self.display_widget = urwid.AttrMap(widget, style, focus_style)
|
||||||
self.display_widget.destination_hash = destination_hash
|
self.display_widget.destination_hash = destination_hash
|
||||||
urwid.WidgetWrap.__init__(self, self.display_widget)
|
super().__init__(self.display_widget)
|
||||||
|
|
||||||
|
|
||||||
def pretty_date(time=False):
|
def pretty_date(time=False):
|
||||||
|
2
setup.py
2
setup.py
@ -30,6 +30,6 @@ setuptools.setup(
|
|||||||
entry_points= {
|
entry_points= {
|
||||||
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
||||||
},
|
},
|
||||||
install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid==2.4.2", "qrcode"],
|
install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid>=2.4.2,!=2.4.3", "qrcode"],
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.6",
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user