Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
10eaf857
Commit
10eaf857
authored
Apr 19, 2011
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapted to the latest API changes in middleware
parent
a71c6f39
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
__init__.py
blink/__init__.py
+2
-2
accounts.py
blink/accounts.py
+1
-1
No files found.
blink/__init__.py
View file @
10eaf857
...
...
@@ -25,8 +25,8 @@ from zope.interface import implements
from
sipsimple.account
import
Account
,
AccountManager
,
BonjourAccount
from
sipsimple.application
import
SIPApplication
from
sipsimple.configuration.backend.file
import
FileBackend
from
sipsimple.configuration.settings
import
SIPSimpleSettings
from
sipsimple.storage
import
FileStorage
from
sipsimple.threading
import
run_in_twisted_thread
from
sipsimple.threading.green
import
run_in_green_thread
from
sipsimple.util
import
TimestampedNotificationData
,
makedirs
...
...
@@ -226,6 +226,6 @@ class Blink(QApplication):
self
.
first_run
=
True
notification_center
=
NotificationCenter
()
notification_center
.
add_observer
(
self
,
sender
=
self
.
application
)
self
.
application
.
start
(
File
Backend
(
ApplicationData
.
get
(
'config'
)
))
self
.
application
.
start
(
File
Storage
(
ApplicationData
.
directory
))
blink/accounts.py
View file @
10eaf857
...
...
@@ -568,7 +568,7 @@ class ServerToolsWebView(QWebView):
handler
(
notification
)
def
_NH_CFGSettingsObjectDidChange
(
self
,
notification
):
if
'
id
'
in
notification
.
data
.
modified
or
'auth.password'
in
notification
.
data
.
modified
:
if
'
__id__
'
in
notification
.
data
.
modified
or
'auth.password'
in
notification
.
data
.
modified
:
self
.
authenticated
=
False
self
.
reload
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment