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
eta
gajim
Commits
fcf31413
Commit
fcf31413
authored
18 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
fix hawke patch
parent
d0f77586
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/config.py
+3
-3
3 additions, 3 deletions
src/common/config.py
src/gajim.py
+2
-2
2 additions, 2 deletions
src/gajim.py
with
5 additions
and
5 deletions
src/common/config.py
+
3
−
3
View file @
fcf31413
...
...
@@ -227,13 +227,13 @@ class Config:
# try for 2 minutes before giving up (aka. timeout after those seconds)
'
try_connecting_for_foo_secs
'
:
[
opt_int
,
60
],
'
http_auth
'
:
[
opt_str
,
'
ask
'
],
# yes, no, ask
'
dont_ack_s
10
n
'
:
[
opt_bool
,
False
],
'
dont_ack_s
ubscriptio
n
'
:
[
opt_bool
,
False
,
_
(
'
Jabberd2 workaround
'
)
],
# proxy65 for FT
'
file_transfer_proxies
'
:
[
opt_str
,
'
proxy.jabber.org, proxy.netlab.cz, transfer.jabber.freenet.de
'
],
'
use_ft_proxies
'
:
[
opt_bool
,
True
,
_
(
'
If checked, Gajim will use your IP and proxies defined in file_transfer_proxies option for file transfer.
'
),
True
],
'
msgwin-x-position
'
:
[
opt_int
,
-
1
],
# Default is to let the w
indow manager
decide
'
msgwin-y-position
'
:
[
opt_int
,
-
1
],
# Default is to let the w
indow manager
decide
'
msgwin-x-position
'
:
[
opt_int
,
-
1
],
# Default is to let the w
m
decide
'
msgwin-y-position
'
:
[
opt_int
,
-
1
],
# Default is to let the w
m
decide
'
msgwin-width
'
:
[
opt_int
,
480
],
'
msgwin-height
'
:
[
opt_int
,
440
],
},
{}),
...
...
This diff is collapsed.
Click to expand it.
src/gajim.py
+
2
−
2
View file @
fcf31413
...
...
@@ -650,7 +650,7 @@ class Interface:
dialogs
.
InformationDialog
(
_
(
'
Authorization accepted
'
),
_
(
'
The contact
"
%s
"
has authorized you to see his or her status.
'
)
%
jid
)
if
not
gajim
.
config
.
get_per
(
'
accounts
'
,
account
,
'
dont_ack_s
10
n
'
):
if
not
gajim
.
config
.
get_per
(
'
accounts
'
,
account
,
'
dont_ack_s
ubscriptio
n
'
):
gajim
.
connections
[
account
].
ack_subscribed
(
jid
)
if
self
.
remote_ctrl
:
self
.
remote_ctrl
.
raise_signal
(
'
Subscribed
'
,
(
account
,
array
))
...
...
@@ -1444,7 +1444,7 @@ class Interface:
if
not
os
.
path
.
exists
(
path
):
# It's maybe a user theme
path
=
os
.
path
.
join
(
gajim
.
MY_EMOTS_PATH
,
emot_theme
)
if
not
os
.
path
.
exists
(
path
):
# theme doesn't exist
s
if
not
os
.
path
.
exists
(
path
):
# theme doesn't exist
return
sys
.
path
.
append
(
path
)
from
emoticons
import
emoticons
as
emots
...
...
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