Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Weblate
gajim
Commits
41706acc
Commit
41706acc
authored
19 years ago
by
dkirov
Browse files
Options
Downloads
Patches
Plain Diff
the ONLY possible fix for dbus 0.34 __getitem__
nonsence
parent
220ef125
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/gajim-remote.py
+18
-1
18 additions, 1 deletion
scripts/gajim-remote.py
with
18 additions
and
1 deletion
scripts/gajim-remote.py
+
18
−
1
View file @
41706acc
...
...
@@ -213,7 +213,24 @@ Please specify account for sending the message.') % sys.argv[2])
else
:
send_error
(
_
(
'
Unknow dbus version: %s
'
)
%
_version
)
# get the function asked
self
.
method
=
eval
(
'
self.interface.
'
+
self
.
command
)
if
self
.
command
==
'
toggle_roster_appearance
'
:
self
.
method
=
self
.
interface
.
toggle_roster_appearance
elif
self
.
command
==
'
help
'
:
self
.
method
=
self
.
interface
.
help
elif
self
.
command
==
'
contact_info
'
:
self
.
method
=
self
.
interface
.
contact_info
elif
self
.
command
==
'
send_message
'
:
self
.
method
=
self
.
interface
.
send_message
elif
self
.
command
==
'
show_next_unread
'
:
self
.
method
=
self
.
interface
.
show_next_unread
elif
self
.
command
==
'
open_chat
'
:
self
.
method
=
self
.
interface
.
open_chat
elif
self
.
command
==
'
list_accounts
'
:
self
.
method
=
self
.
interface
.
list_accounts
elif
self
.
command
==
'
change_status
'
:
self
.
method
=
self
.
interface
.
change_status
elif
self
.
command
==
'
list_contacts
'
:
self
.
method
=
self
.
interface
.
list_contacts
def
make_arguments_row
(
self
,
args
):
'''
return arguments list. Mandatory arguments are enclosed with:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment