Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
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
Administrator
Openfire
Commits
99b88228
Commit
99b88228
authored
Dec 03, 2014
by
deleolajide
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work-in-progress
parent
aceb7499
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
Config.class
...B-INF/classes/org/jitsi/videobridge/openfire/Config.class
+0
-0
JigasiPlugin.java
...meet/src/java/org/jitsi/jigasi/openfire/JigasiPlugin.java
+1
-1
Config.java
...fmeet/src/java/org/jitsi/videobridge/openfire/Config.java
+3
-3
PluginImpl.java
...t/src/java/org/jitsi/videobridge/openfire/PluginImpl.java
+1
-1
No files found.
src/plugins/ofmeet/src/WEB-INF/classes/org/jitsi/videobridge/openfire/Config.class
View file @
99b88228
No preview for this file type
src/plugins/ofmeet/src/java/org/jitsi/jigasi/openfire/JigasiPlugin.java
View file @
99b88228
...
...
@@ -44,7 +44,7 @@ public class JigasiPlugin
this
.
pluginDirectory
=
pluginDirectory
;
ComponentManager
componentManager
=
ComponentManagerFactory
.
getComponentManager
();
String
subdomain
=
"call-control"
;
String
subdomain
=
"
ofmeet-
call-control"
;
CallControlComponent
component
=
new
CallControlComponent
(
pluginDirectory
);
boolean
added
=
false
;
...
...
src/plugins/ofmeet/src/java/org/jitsi/videobridge/openfire/Config.java
View file @
99b88228
...
...
@@ -59,7 +59,7 @@ public class Config extends HttpServlet
{
String
type
=
photo
.
element
(
"TYPE"
).
getText
();
String
binval
=
photo
.
element
(
"BINVAL"
).
getText
();
userAvatar
=
"data:"
+
type
+
";base64,"
+
binval
;
userAvatar
=
"data:"
+
type
+
";base64,"
+
binval
.
replace
(
"\n"
,
""
).
replace
(
"\r"
,
""
);
;
}
}
}
...
...
@@ -98,8 +98,8 @@ public class Config extends HttpServlet
out
.
println
(
" hosts: {"
);
out
.
println
(
" domain: '"
+
domain
+
"',"
);
out
.
println
(
" muc: 'conference."
+
domain
+
"',"
);
out
.
println
(
" bridge: 'jitsi-videobridge."
+
domain
+
"',"
);
out
.
println
(
" call_control: 'call-control."
+
domain
+
"',"
);
out
.
println
(
" bridge: '
ofmeet-
jitsi-videobridge."
+
domain
+
"',"
);
out
.
println
(
" call_control: '
ofmeet-
call-control."
+
domain
+
"',"
);
out
.
println
(
" },"
);
out
.
println
(
" getroomnode: function (path)"
);
out
.
println
(
" {"
);
...
...
src/plugins/ofmeet/src/java/org/jitsi/videobridge/openfire/PluginImpl.java
View file @
99b88228
...
...
@@ -186,7 +186,7 @@ public class PluginImpl
ComponentManager
componentManager
=
ComponentManagerFactory
.
getComponentManager
();
String
subdomain
=
ComponentImpl
.
SUBDOMAIN
;
String
subdomain
=
"ofmeet-jitsi-videobridge"
;
//
ComponentImpl.SUBDOMAIN;
PluginImpl
.
component
=
new
ComponentImpl
();
boolean
added
=
false
;
...
...
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