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
ac8d74a6
Commit
ac8d74a6
authored
Jan 04, 2015
by
Dele Olajide
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented PDF presentation pointer/cursor sharing
parent
8a0af61c
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1795 additions
and
11 deletions
+1795
-11
changelog.html
src/plugins/ofmeet/changelog.html
+6
-0
plugin.xml
src/plugins/ofmeet/plugin.xml
+2
-2
ofmuc.js
src/plugins/ofmeet/src/ofmuc.js
+30
-9
cursor.css
src/plugins/ofmeet/src/pdf/cursor.css
+121
-0
cursor.js
src/plugins/ofmeet/src/pdf/cursor.js
+758
-0
index.html
src/plugins/ofmeet/src/pdf/index.html
+4
-0
jquery-1.10.2.min.js
src/plugins/ofmeet/src/pdf/jquery-1.10.2.min.js
+5
-0
tinycolor.js
src/plugins/ofmeet/src/pdf/tinycolor.js
+869
-0
No files found.
src/plugins/ofmeet/changelog.html
View file @
ac8d74a6
...
...
@@ -49,6 +49,12 @@
Openfire Meetings Plugin Changelog
</h1>
<p><b>
0.0.7
</b>
-- Jan 5th, 2015
</p>
<ul>
<li>
Implemented PDF cursor sharing
</li>
</ul>
<p><b>
0.0.6
</b>
-- Dec 29th, 2014
</p>
<ul>
...
...
src/plugins/ofmeet/plugin.xml
View file @
ac8d74a6
...
...
@@ -5,8 +5,8 @@
<name>
Openfire Meetings
</name>
<description>
Provides high quality, scalable video conferences using Jitsi Meet and Jitsi Videobridge
</description>
<author>
Ignite Realtime
</author>
<version>
0.0.
6
</version>
<date>
12/29
/2014
</date>
<version>
0.0.
7
</version>
<date>
01/05
/2014
</date>
<minServerVersion>
3.9.9
</minServerVersion>
<adminconsole>
...
...
src/plugins/ofmeet/src/ofmuc.js
View file @
ac8d74a6
...
...
@@ -5,7 +5,7 @@ $(document).ready(function ()
for
(
var
i
=
0
;
i
<
config
.
conferences
.
length
;
i
++
)
{
conferenceList
=
conferenceList
+
'
<option value="
'
+
Strophe
.
getNodeFromJid
(
config
.
conferences
[
i
].
jid
)
+
'
"
/
>
'
conferenceList
=
conferenceList
+
'
<option value="
'
+
Strophe
.
getNodeFromJid
(
config
.
conferences
[
i
].
jid
)
+
'
"
>
'
+
config
.
conferences
[
i
].
name
+
'
</option
>
'
}
conferenceList
=
conferenceList
+
'
</datalist>
'
...
...
@@ -183,10 +183,15 @@ Strophe.addConnectionPlugin('ofmuc', {
$
(
msg
).
find
(
'
pdfshare
'
).
each
(
function
()
{
var
action
=
$
(
this
).
attr
(
'
action
'
);
var
url
=
$
(
this
).
attr
(
'
url
'
);
var
url
=
$
(
this
).
attr
(
'
url
'
);
that
.
roomJid
=
Strophe
.
getBareJidFromJid
(
from
);
that
.
roomJid
=
Strophe
.
getBareJidFromJid
(
from
)
that
.
handlePdfShare
(
action
,
url
);
if
(
Strophe
.
getResourceFromJid
(
from
)
!=
Strophe
.
getResourceFromJid
(
that
.
connection
.
jid
))
{
var
farparty
=
SettingsMenu
.
getDisplayName
();
if
(
!
farparty
)
farparty
=
Strophe
.
getResourceFromJid
(
from
);
that
.
handlePdfShare
(
action
,
url
,
farparty
);
}
});
$
(
msg
).
find
(
'
avatarshare
'
).
each
(
function
()
...
...
@@ -282,9 +287,9 @@ Strophe.addConnectionPlugin('ofmuc', {
//console.log("handleAppShare", url, action);
},
handlePdfShare
:
function
(
action
,
url
)
handlePdfShare
:
function
(
action
,
url
,
from
)
{
//console.log("
handlePdfShare", url, action
);
//console.log("
local handlePdfShare", url, action, from
);
if
(
this
.
sharePDF
==
null
)
{
...
...
@@ -293,11 +298,17 @@ Strophe.addConnectionPlugin('ofmuc', {
if
(
action
==
"
create
"
)
this
.
pdfStart
(
url
);
}
else
{
if
(
action
==
"
destroy
"
)
this
.
pdfStop
(
url
);
if
(
action
==
"
goto
"
)
this
.
appFrame
.
contentWindow
.
location
.
href
=
"
/ofmeet/pdf/index.html?pdf=
"
+
url
;
}
}
}
if
(
this
.
appFrame
&&
this
.
appFrame
.
contentWindow
.
handlePdfShare
&&
action
==
"
message
"
)
{
this
.
appFrame
.
contentWindow
.
handlePdfShare
(
url
,
from
);
}
},
pdfReady
:
function
()
{
...
...
@@ -370,6 +381,16 @@ Strophe.addConnectionPlugin('ofmuc', {
}
},
pfdMessage
:
function
(
msg
)
{
//console.log("pfdMessage", msg);
if
(
this
.
appFrame
)
{
this
.
pdfShare
(
"
message
"
,
JSON
.
stringify
(
msg
));
}
},
openPDFDialog
:
function
()
{
//console.log("openPDFDialog");
var
that
=
this
;
...
...
@@ -427,7 +448,7 @@ Strophe.addConnectionPlugin('ofmuc', {
for
(
var
i
=
0
;
i
<
that
.
urls
.
length
;
i
++
)
{
urlsList
=
urlsList
+
'
<option value="
'
+
that
.
urls
[
i
].
url
+
'
"
/
>
'
urlsList
=
urlsList
+
'
<option value="
'
+
that
.
urls
[
i
].
url
+
'
"
>
'
+
that
.
urls
[
i
].
name
+
'
</option
>
'
}
urlsList
=
urlsList
+
'
</datalist>
'
...
...
src/plugins/ofmeet/src/pdf/cursor.css
0 → 100644
View file @
ac8d74a6
.togetherjs
*
{
-webkit-box-sizing
:
content-box
!important
;
-moz-box-sizing
:
content-box
!important
;
box-sizing
:
content-box
!important
;
}
.togetherjs-cursor
svg
{
-webkit-filter
:
drop-shadow
(
1px
3px
2px
rgba
(
0
,
0
,
0
,
0.3
));
-webkit-transform
:
rotate
(
-10deg
);
}
.togetherjs-cursor-img
{
position
:
relative
;
top
:
0
;
}
.togetherjs-cursor
img
{
width
:
20px
;
-webkit-filter
:
drop-shadow
(
0px
2px
1px
rgba
(
0
,
0
,
0
,
0.2
));
/*FIX ME, moz filter not working...*/
-moz-filter
:
drop-shadow
(
0px
2px
1px
rgba
(
0
,
0
,
0
,
0.2
));
filter
:
drop-shadow
(
0px
2px
1px
rgba
(
0
,
0
,
0
,
0.2
));
}
.togetherjs-cursor
{
position
:
absolute
;
z-index
:
9999
;
font-size
:
28px
;
font-weight
:
bolder
;
/* This magic CSS rule makes this element basically invisible to clicks/etc:
(good on all but IE: http://caniuse.com/pointer-events */
pointer-events
:
none
;
/*FIXME: maybe these should use position: fixed so the cursor
stays stuck to the top of the screen until the appropriate time
(when .togetherjs-scrolled-above/below is removed)?*/
}
.togetherjs-cursor
:hover
{
cursor
:
pointer
;
}
.togetherjs-cursor.togetherjs-scrolled-above
{
position
:
fixed
;
}
.togetherjs-cursor.togetherjs-scrolled-above
svg
{
-webkit-transition-duration
:
0.8s
;
-webkit-transition-property
:
-webkit-transform
;
-webkit-transform
:
rotate
(
20deg
);
transition-duration
:
0.8s
;
transition-property
:
transform
;
transform
:
rotate
(
20deg
);
}
.togetherjs-cursor.togetherjs-scrolled-above
.togetherjs-cursor-down
{
display
:
none
;
}
.togetherjs-cursor.togetherjs-scrolled-below
{
position
:
fixed
;
}
.togetherjs-cursor.togetherjs-scrolled-below
svg
{
-webkit-transition-duration
:
0.8s
;
-webkit-transition-property
:
-webkit-transform
;
-webkit-transform
:
rotate
(
-150deg
);
transition-duration
:
0.8s
;
transition-property
:
transform
;
transform
:
rotate
(
-150deg
);
}
.togetherjs-cursor.togetherjs-scrolled-below
.togetherjs-cursor-up
{
display
:
none
;
}
.togetherjs-cursor.togetherjs-scrolled-normal
svg
{
-webkit-transition-duration
:
0.8s
;
-webkit-transition-property
:
-webkit-transform
;
-webkit-transform
:
rotate
(
-10deg
);
transition-duration
:
0.8s
;
transition-property
:
transform
;
transform
:
rotate
(
-10deg
);
}
.togetherjs-cursor.togetherjs-scrolled-normal
.togetherjs-cursor-up
,
.togetherjs-cursor.togetherjs-scrolled-normal
.togetherjs-cursor-down
{
display
:
none
;
}
.togetherjs-cursor
.togetherjs-cursor-container
{
opacity
:
0.9
;
white-space
:
nowrap
;
font-family
:
openSansLight
,
Helvetica
,
'Helvetica Neue'
,
Arial
,
sans-serif
;
font-size
:
40%
;
position
:
relative
;
top
:
5px
;
left
:
15px
;
padding
:
8px
;
border-radius
:
4px
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0.2
);
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
-moz-box-shadow
:
0px
2px
4px
0px
rgba
(
0
,
0
,
0
,
0.5
);
-webkit-box-shadow
:
0px
2px
4px
0px
rgba
(
0
,
0
,
0
,
0.5
);
box-shadow
:
0px
2px
4px
0px
rgba
(
0
,
0
,
0
,
0.5
);
}
.togetherjs-click
{
position
:
absolute
;
z-index
:
9998
;
pointer-events
:
none
;
width
:
10px
;
height
:
10px
;
margin
:
-5px
0
0
-5px
;
border-radius
:
5px
;
border
:
3px
solid
#ff3a29
;
/* Note, you must call this like:
.transition(~"value, value, value")*/
transition
:
width
2s
,
height
2s
,
margin
2s
,
border
2s
;
-moz-transition
:
width
2s
,
height
2s
,
margin
2s
,
border
2s
;
-webkit-transition
:
width
2s
,
height
2s
,
margin
2s
,
border
2s
;
-o-transition
:
width
2s
,
height
2s
,
margin
2s
,
border
2s
;
}
.togetherjs-click.togetherjs-clicking
{
width
:
40px
;
height
:
40px
;
margin
:
-20px
0
0
-20px
;
border-radius
:
20px
;
border
:
3px
solid
rgba
(
0
,
0
,
0
,
0
);
}
src/plugins/ofmeet/src/pdf/cursor.js
0 → 100644
View file @
ac8d74a6
This diff is collapsed.
Click to expand it.
src/plugins/ofmeet/src/pdf/index.html
View file @
ac8d74a6
...
...
@@ -4,7 +4,11 @@
<head>
<!-- In production, only one script (pdf.js) is necessary -->
<!-- In production, change the content of PDFJS.workerSrc below -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"cursor.css"
/>
<script
type=
"text/javascript"
src=
"pdf.js"
></script>
<script
type=
"text/javascript"
src=
"jquery-1.10.2.min.js"
></script>
<script
type=
"text/javascript"
src=
"tinycolor.js"
></script>
<script
type=
"text/javascript"
src=
"cursor.js"
></script>
</head>
<body
onload=
"start();"
>
...
...
src/plugins/ofmeet/src/pdf/jquery-1.10.2.min.js
0 → 100644
View file @
ac8d74a6
This diff is collapsed.
Click to expand it.
src/plugins/ofmeet/src/pdf/tinycolor.js
0 → 100644
View file @
ac8d74a6
This diff is collapsed.
Click to expand it.
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