Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gajim-plugins
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
gajim
gajim-plugins
Commits
b1cbd612
Commit
b1cbd612
authored
12 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
make whiteboard plugin work with gajim > 0.15. Fixes #22
parent
6fa92ab8
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
whiteboard/manifest.ini
+1
-1
1 addition, 1 deletion
whiteboard/manifest.ini
whiteboard/plugin.py
+5
-2
5 additions, 2 deletions
whiteboard/plugin.py
with
6 additions
and
3 deletions
whiteboard/manifest.ini
+
1
−
1
View file @
b1cbd612
[info]
[info]
name:
Whiteboard
name:
Whiteboard
short_name:
whiteboard
short_name:
whiteboard
version:
0.
1
version:
0.
2
description:
Shows
a
whiteboard
in
chat.
python-pygoocanvas
is
required.
description:
Shows
a
whiteboard
in
chat.
python-pygoocanvas
is
required.
authors
=
Yann Leboulanger <asterix@lagaule.org>
authors
=
Yann Leboulanger <asterix@lagaule.org>
homepage
=
www.gajim.org
homepage
=
www.gajim.org
This diff is collapsed.
Click to expand it.
whiteboard/plugin.py
+
5
−
2
View file @
b1cbd612
...
@@ -471,8 +471,11 @@ def get_content(desc):
...
@@ -471,8 +471,11 @@ def get_content(desc):
common
.
jingle_content
.
contents
[
NS_JINGLE_XHTML
]
=
get_content
common
.
jingle_content
.
contents
[
NS_JINGLE_XHTML
]
=
get_content
class
JingleTransportSXE
(
JingleTransport
):
class
JingleTransportSXE
(
JingleTransport
):
def
__init__
(
self
):
def
__init__
(
self
,
node
=
None
):
JingleTransport
.
__init__
(
self
,
TransportType
.
streaming
)
if
gajim
.
config
.
get
(
'
version
'
)
==
'
0.15
'
:
JingleTransport
.
__init__
(
self
,
TransportType
.
streaming
)
else
:
JingleTransport
.
__init__
(
self
,
TransportType
.
SOCKS5
)
def
make_transport
(
self
,
candidates
=
None
):
def
make_transport
(
self
,
candidates
=
None
):
transport
=
JingleTransport
.
make_transport
(
self
,
candidates
)
transport
=
JingleTransport
.
make_transport
(
self
,
candidates
)
...
...
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