mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -06:00
Code: Delete unneeded code & fixed some typos
This commit is contained in:
parent
cfc8221825
commit
c278fba4c7
@ -350,7 +350,7 @@ class BaseBuffer(base.Buffer):
|
|||||||
|
|
||||||
def share_item(self, *args, **kwargs):
|
def share_item(self, *args, **kwargs):
|
||||||
if self.can_share() == False:
|
if self.can_share() == False:
|
||||||
return output.speak(_("This action is not supported on conversation posts."))
|
return output.speak(_("This action is not supported on conversations."))
|
||||||
post = self.get_item()
|
post = self.get_item()
|
||||||
id = post.id
|
id = post.id
|
||||||
if self.session.settings["general"]["boost_mode"] == "ask":
|
if self.session.settings["general"]["boost_mode"] == "ask":
|
||||||
|
@ -88,7 +88,7 @@ class Handler(object):
|
|||||||
pub.sendMessage("createBuffer", buffer_type="EmptyBuffer", session_type="base", buffer_title=_("Timelines"), parent_tab=root_position, start=False, kwargs=dict(parent=controller.view.nb, name="timelines", account=name))
|
pub.sendMessage("createBuffer", buffer_type="EmptyBuffer", session_type="base", buffer_title=_("Timelines"), parent_tab=root_position, start=False, kwargs=dict(parent=controller.view.nb, name="timelines", account=name))
|
||||||
timelines_position =controller.view.search("timelines", name)
|
timelines_position =controller.view.search("timelines", name)
|
||||||
for i in session.settings["other_buffers"]["timelines"]:
|
for i in session.settings["other_buffers"]["timelines"]:
|
||||||
pub.sendMessage("createBuffer", buffer_type="BaseBuffer", session_type=session.type, buffer_title=_("Timelines for {}").format(i), parent_tab=timelines_position, start=False, kwargs=dict(parent=controller.view.nb, function="account_statuses", name="{}-timeline".format(i), sessionObject=session, account=name, sound="tweet_timeline.ogg", id=i))
|
pub.sendMessage("createBuffer", buffer_type="BaseBuffer", session_type=session.type, buffer_title=_("Timeline for {}").format(i), parent_tab=timelines_position, start=False, kwargs=dict(parent=controller.view.nb, function="account_statuses", name="{}-timeline".format(i), sessionObject=session, account=name, sound="tweet_timeline.ogg", id=i))
|
||||||
for i in session.settings["other_buffers"]["followers_timelines"]:
|
for i in session.settings["other_buffers"]["followers_timelines"]:
|
||||||
pub.sendMessage("createBuffer", buffer_type="UserBuffer", session_type=session.type, buffer_title=_("Followers for {}").format(i), parent_tab=timelines_position, start=False, kwargs=dict(parent=controller.view.nb, compose_func="compose_user", function="account_followers", name="{}-followers".format(i,), sessionObject=session, account=name, sound="new_event.ogg", id=i))
|
pub.sendMessage("createBuffer", buffer_type="UserBuffer", session_type=session.type, buffer_title=_("Followers for {}").format(i), parent_tab=timelines_position, start=False, kwargs=dict(parent=controller.view.nb, compose_func="compose_user", function="account_followers", name="{}-followers".format(i,), sessionObject=session, account=name, sound="new_event.ogg", id=i))
|
||||||
for i in session.settings["other_buffers"]["following_timelines"]:
|
for i in session.settings["other_buffers"]["following_timelines"]:
|
||||||
|
@ -15,7 +15,6 @@ from pubsub import pub
|
|||||||
from mysc.thread_utils import call_threaded
|
from mysc.thread_utils import call_threaded
|
||||||
from sessions import base
|
from sessions import base
|
||||||
from sessions.mastodon import utils, streaming
|
from sessions.mastodon import utils, streaming
|
||||||
from .wxUI import authorisationDialog
|
|
||||||
|
|
||||||
log = logging.getLogger("sessions.mastodonSession")
|
log = logging.getLogger("sessions.mastodonSession")
|
||||||
|
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
import wx
|
|
||||||
|
|
||||||
class authorisationDialog(wx.Dialog):
|
|
||||||
def __init__(self):
|
|
||||||
super(authorisationDialog, self).__init__(parent=None, title=_(u"Authorising account..."))
|
|
||||||
panel = wx.Panel(self)
|
|
||||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
||||||
static1 = wx.StaticText(panel, wx.NewId(), _("URL of mastodon instance:"))
|
|
||||||
self.instance = wx.TextCtrl(panel, -1)
|
|
||||||
sizer1 = wx.BoxSizer(wx.HORIZONTAL)
|
|
||||||
sizer1.Add(static1, 0, wx.ALL, 5)
|
|
||||||
sizer1.Add(self.instance, 0, wx.ALL, 5)
|
|
||||||
sizer.Add(sizer1, 0, wx.ALL, 5)
|
|
||||||
static2 = wx.StaticText(panel, wx.NewId(), _("Email address:"))
|
|
||||||
self.email = wx.TextCtrl(panel, -1)
|
|
||||||
sizer2 = wx.BoxSizer(wx.HORIZONTAL)
|
|
||||||
sizer2.Add(static2, 0, wx.ALL, 5)
|
|
||||||
sizer2.Add(self.email, 0, wx.ALL, 5)
|
|
||||||
sizer.Add(sizer2, 0, wx.ALL, 5)
|
|
||||||
static3 = wx.StaticText(panel, wx.NewId(), _("Password:"))
|
|
||||||
self.password = wx.TextCtrl(panel, -1)
|
|
||||||
sizer3 = wx.BoxSizer(wx.HORIZONTAL)
|
|
||||||
sizer3.Add(static3, 0, wx.ALL, 5)
|
|
||||||
sizer3.Add(self.password, 0, wx.ALL, 5)
|
|
||||||
sizer.Add(sizer3, 0, wx.ALL, 5)
|
|
||||||
self.ok = wx.Button(panel, wx.ID_OK)
|
|
||||||
self.cancel = wx.Button(panel, wx.ID_CANCEL)
|
|
||||||
sizer4 = wx.BoxSizer(wx.HORIZONTAL)
|
|
||||||
sizer4.Add(self.ok, 0, wx.ALL, 5)
|
|
||||||
sizer4.Add(self.cancel, 0, wx.ALL, 5)
|
|
||||||
sizer.Add(sizer4, 0, wx.ALL, 5)
|
|
||||||
panel.SetSizer(sizer)
|
|
||||||
min = sizer.CalcMin()
|
|
||||||
self.SetClientSize(min)
|
|
Loading…
Reference in New Issue
Block a user