Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Yann Leboulanger
gajim
Commits
e6641858
Commit
e6641858
authored
Oct 03, 2018
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add debug commandline options
To easier simulate connectivity loss
parent
8b7aae56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
4 deletions
+28
-4
gajim/application.py
gajim/application.py
+28
-4
No files found.
gajim/application.py
View file @
e6641858
...
...
@@ -138,6 +138,21 @@ class GajimApplication(Gtk.Application):
GLib
.
OptionArg
.
NONE
,
_
(
'Start a new chat'
))
self
.
add_main_option
(
'simulate-network-lost'
,
0
,
GLib
.
OptionFlags
.
NONE
,
GLib
.
OptionArg
.
NONE
,
_
(
'Simulate loss of connectivity'
))
self
.
add_main_option
(
'simulate-network-connected'
,
0
,
GLib
.
OptionFlags
.
NONE
,
GLib
.
OptionArg
.
NONE
,
_
(
'Simulate regaining connectivity'
))
self
.
add_main_option_entries
(
self
.
_get_remaining_entry
())
self
.
connect
(
'handle-local-options'
,
self
.
_handle_local_options
)
...
...
@@ -255,10 +270,11 @@ class GajimApplication(Gtk.Application):
# Parse all options that should be executed on a remote instance
options
=
command_line
.
get_options_dict
()
remote_commands
=
[
'ipython'
,
'show-next-pending-event'
,
'start-chat'
,
]
remote_commands
=
[
'ipython'
,
'show-next-pending-event'
,
'start-chat'
,
]
remaining
=
options
.
lookup_value
(
GLib
.
OPTION_REMAINING
,
GLib
.
VariantType
.
new
(
'as'
))
...
...
@@ -268,6 +284,14 @@ class GajimApplication(Gtk.Application):
self
.
activate_action
(
cmd
)
return
0
if
options
.
contains
(
'simulate-network-lost'
):
app
.
interface
.
network_status_changed
(
None
,
False
)
return
0
if
options
.
contains
(
'simulate-network-connected'
):
app
.
interface
.
network_status_changed
(
None
,
True
)
return
0
if
remaining
is
not
None
:
self
.
_open_uris
(
remaining
.
unpack
())
return
0
...
...
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