我一直在为 Linux 和 Mac 编写一个打印机驱动程序后端,它显示一个允许用户选择打印机的窗口。该过程的一部分是让用户输入用户名和密码以进行身份验证。这一切都在 Linux 上运行良好。但是,我有一个奇怪的问题。当我以普通用户身份在 OSX Mountain Lion 上运行脚本时,它运行良好。但是,当我通过 CUPS 后端(作为用户 _lp)运行它时,用户名和密码框突然不会收到文本,尽管被选中。部分原因是应用程序也不会在所有窗口之上生成。
我已经搜索并阅读了有关 Mac 如何需要 .app 包的信息,但即使在尝试之后,它也没有解决我的问题。这是我的 LoginWindow 类:
class LoginDialog(wx.Dialog):
def __init__(self, parent, id=-1, title="Login",
pos=wx.DefaultPosition,
size=wx.Size(350, 150),
style=wx.STAY_ON_TOP | wx.DEFAULT_FRAME_STYLE ):
wx.Dialog.__init__(self, parent, id, title, pos, size, style)
wx.StaticText(self, -1, 'Please enter your CAEDM username and password.',
wx.Point(15,5))
wx.StaticText(self, -1, 'Username:', wx.Point(20, 32))
wx.StaticText(self, -1, 'Password: ', wx.Point(25, 57))
self.nameBox = wx.TextCtrl(self, 1, 'password', wx.Point(100, 30),
wx.Size(170, -1))
self.passwordBox = wx.TextCtrl(self, 2, '', wx.Point(100, 55),
wx.Size(170, -1), style=wx.TE_PASSWORD)
self.btnOK = wx.Button(self, wx.ID_OK, ' OK ', wx.Point(60, 90),
wx.DefaultSize)
self.btnOK.SetDefault()
self.btnCancel = wx.Button(self, wx.ID_CANCEL, ' Cancel ', wx.Point(160, 90),
wx.DefaultSize)
self.https_user = []
def https_bind(self):
val = self.ShowModal()
self.SetFocus()
if val == wx.ID_OK:
u = self.nameBox.GetValue()
p = self.passwordBox.GetValue()
#since the username passed by CUPS is trash, we have to re-invent it (authenticate against HTTPS)
try:
os.environ['REQUESTS_CA_BUNDLE'] = RESOURCE_DIR + '/cacert.pem'
cert = requests.get("https://lp.et.byu.edu/pa/submit.php", auth=(u, p) )
print cert.status_code
if ( cert.status_code == 200 ):
self.https_user.append(u)
self.https_user.append(p)
else:
d = ErrorDialog(self)
d.SetTitleText("Server Error")
d.SetLabelText(" Username or password incorrect.")
d.ShowModal()
self.https_bind()
except:
d = ErrorDialog(self)
d.SetTitleText("Server Error")
d.SetLabelText(" Username or password incorrect.")
d.ShowModal()
self.https_bind()
if val == wx.ID_CANCEL:
os._exit(0)
**编辑:这似乎是一个 python 范围的错误,因为我的整个应用程序没有捕获关键事件。但是,它可以很好地捕获鼠标。