[openmeetings] branch master updated: [OPENMEETINGS-2359] check if data is available (#88)

2020-05-16 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
 new e63c565  [OPENMEETINGS-2359] check if data is available (#88)
e63c565 is described below

commit e63c565dcd851d092d89672bbd80e7a9401e39c2
Author: Konstantin Kuzov 
AuthorDate: Sun May 17 09:58:32 2020 +0300

[OPENMEETINGS-2359] check if data is available (#88)
---
 .../org/apache/openmeetings/web/room/raw-video-manager.js| 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-manager.js
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-manager.js
index 6ee6bf1..bb4edde 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-manager.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-video-manager.js
@@ -6,7 +6,7 @@ var VideoManager = (function() {
function _onVideoResponse(m) {
const w = $('#' + VideoUtil.getVid(m.uid))
, v = w.data()
-   , peer = v.getPeer();
+   , peer = v && v.getPeer();
 
if (peer) {
peer.processAnswer(m.sdpAnswer, function (error) {
@@ -47,7 +47,7 @@ var VideoManager = (function() {
, uid = sd.uid
, w = $('#' + VideoUtil.getVid(uid))
, v = w.data();
-   if (VideoUtil.isSharing(sd) || VideoUtil.isRecording(sd)) {
+   if (v && (VideoUtil.isSharing(sd) || 
VideoUtil.isRecording(sd))) {
// Update activities in the current data object
v.stream().activities = sd.activities;
}
@@ -83,7 +83,7 @@ var VideoManager = (function() {
{
const w = $('#' + 
VideoUtil.getVid(m.uid))
, v = w.data()
-   , peer = v.getPeer();
+   , peer = v && v.getPeer();
 
if (peer) {

peer.addIceCandidate(m.candidate, function (error) {
@@ -280,8 +280,10 @@ var VideoManager = (function() {
}
function _muteOthers(uid) {
$(VID_SEL).each(function() {
-   const w= $(this);
-   w.data().mute('room' + uid !== w.data('client-uid'));
+   const w= $(this), v = w.data(), v2 = 
w.data('client-uid');
+   if (v && v2) {
+   v.mute('room' + uid !== v2);
+   }
});
}
function _toggleActivity(activity) {



[jira] [Resolved] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner resolved OPENMEETINGS-2339.

Resolution: Fixed

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109354#comment-17109354
 ] 

Sebastian Wagner commented on OPENMEETINGS-2358:


Could we increase it to another value ? What does it really mean ? Is that the 
max upload size ? I don't think increasing this value higher would be a big 
problem if its similar to max-upload size.

 

And could we handle this error more gracefully ? Having the ability to crash a 
server by a user randomly triggering this method 2,3,4 times. That is not a 
good prospect.

> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: StackTrace-Crash-Room.rtf, 
> image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> !image-2020-05-17-09-13-26-975.png|width=353,height=220!
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.
>  
> There is a more complete stack trace attached. Above stack trace is when the 
> server is basically crashed. See: [^StackTrace-Crash-Room.rtf]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (OPENMEETINGS-2359) Occasional spam with unavailable getPeer

2020-05-16 Thread Konstantin Kuzov (Jira)
Konstantin Kuzov created OPENMEETINGS-2359:
--

 Summary: Occasional spam with unavailable getPeer
 Key: OPENMEETINGS-2359
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2359
 Project: Openmeetings
  Issue Type: Bug
  Components: Room
Affects Versions: 5.0.0-M5
Reporter: Konstantin Kuzov
Assignee: Maxim Solodovnik


Sometimes when client have reconnect or refreshing the room there are spam on 
other clients with:
{noformat}
Cannot read property of 'getPeer' of undefined
{noformat}

It seems pretty harmless so most likely it needs to be simply silenced by 
proper checking of element availability.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2353) unable to add User from SOAP API

2020-05-16 Thread Maxim Solodovnik (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2353?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109300#comment-17109300
 ] 

Maxim Solodovnik commented on OPENMEETINGS-2353:


Hello [~murali.botta],

it seems redundant to specify {{id, type}} (since you are creating user {{id}} 
will be assigned automatically, as well as type
{{rights}} should be array, and most probably it MUST contains at least 
{{LOGIN, ROOM}}, not sure why it has {{SOAP}}

I guess you are trying to implement:
# create user
# login with this user
# somehow add it to the room

What you **really** need:
# generate room secure hash
# open it for user in separate window (iframe)

here is REST example: https://openmeetings.apache.org/RestAPISample.html
here is PHP API you can use 
https://github.com/openmeetings/openmeetings-api-plugin/blob/master/src/main/scripts/OmGateway.php
 

> unable to add User from SOAP API
> 
>
> Key: OPENMEETINGS-2353
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2353
> Project: Openmeetings
>  Issue Type: Bug
>  Components: SOAP/REST API
>Affects Versions: 5.0.0-M4
>Reporter: Murali
>Assignee: Maxim Solodovnik
>Priority: Major
>
> Hi
> When i am trying to add a new user using SOAP, i am getting following error.
> local.ERROR: Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. {"exception":"[object] 
> (mongosoft\\soapclient\\Exception(code: 0): Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. at 
> C:\\xampp\\htdocs\\school\\vendor\\mongosoft\\yii2-soap-client\\Client.php:66,
>  SoapFault(code: 0): Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. at 
> C:\\xampp\\htdocs\\school\\vendor\\mongosoft\\yii2-soap-client\\Client.php:64)
>  
> Please help me.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Maxim Solodovnik (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109292#comment-17109292
 ] 

Maxim Solodovnik commented on OPENMEETINGS-2358:


As I wrote before in mailing lists (multiple times)
This limit have to be increased 
https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/webapp/WEB-INF/web.xml#L30

The whole WB concept need to be re-designed :(((
Current issues are:
# extremely huge memory consumption on client if multi-page document with 100%+ 
zoom is loaded
# multiple download issues

most probably will refactor this after 5.0.0 release


> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: StackTrace-Crash-Room.rtf, 
> image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> !image-2020-05-17-09-13-26-975.png|width=353,height=220!
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.
>  
> There is a more complete stack trace attached. Above stack trace is when the 
> server is basically crashed. See: [^StackTrace-Crash-Room.rtf]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Maxim Solodovnik (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109293#comment-17109293
 ] 

Maxim Solodovnik commented on OPENMEETINGS-2358:


same issue, same solution

> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: StackTrace-Crash-Room.rtf, 
> image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> !image-2020-05-17-09-13-26-975.png|width=353,height=220!
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.
>  
> There is a more complete stack trace attached. Above stack trace is when the 
> server is basically crashed. See: [^StackTrace-Crash-Room.rtf]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2356) Close icons on Android/Mobile view doesn't work - DOwnload as PNG window

2020-05-16 Thread Maxim Solodovnik (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2356?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109288#comment-17109288
 ] 

Maxim Solodovnik commented on OPENMEETINGS-2356:


created here 
https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/wb/raw-wb-area.js#L410

> Close icons on Android/Mobile view doesn't work - DOwnload as PNG window
> 
>
> Key: OPENMEETINGS-2356
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2356
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-08-58-00-720.png
>
>
> In the mobile/touch version following icons don't work:
>  * Download as PNG
>  
> !image-2020-05-17-08-58-00-720.png|width=337,height=332!
> Havn't found the dialog yet. But there is a fix that may work:
>  
> {code:java}
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // touch-events are broken and you won't be able to close the dialog
> $myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
> {code}
>  
> Android/Chrome.
> But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2357) Close icons on Android/Mobile view doesn't work - Math formula dialog

2020-05-16 Thread Maxim Solodovnik (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2357?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109286#comment-17109286
 ] 

Maxim Solodovnik commented on OPENMEETINGS-2357:


It is defined here 
https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/wb/WbPanel.html#L195

here close button click handler is added 
https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/wb/raw-wb-board.js#L329

I would create helper function for 
{{$myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());}}
 to reduce copy/paste

> Close icons on Android/Mobile view doesn't work - Math formula dialog
> -
>
> Key: OPENMEETINGS-2357
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2357
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-09-00-44-181.png
>
>
> In the mobile/touch version following icons don't work:
>  * Math formula
> !image-2020-05-17-09-00-44-181.png|width=470,height=248!
> Havn't found the dialog yet. But there is a fix that may work:
>  
> {code:java}
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // touch-events are broken and you won't be able to close the dialog
> $myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
> {code}
>  
> Android/Chrome.
> But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109224#comment-17109224
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 3a4f5c2eb5bc06d2b4559bbea816ed2d3a4ef663 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=3a4f5c2 ]

Merge pull request #87 from 
apache/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109221#comment-17109221
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit ddde9199a53cbf5415e99e368c932ed4e2daae55 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=ddde919 ]

OPENMEETINGS-2339 Simplify fix for moving button on top of draggable 
ui-titlebar.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109222#comment-17109222
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit e4f034aaf7917162c3d20227508a5912cee35adc in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=e4f034a ]

OPENMEETINGS-2339 Fix missing JS end semicolon


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109225#comment-17109225
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 3a4f5c2eb5bc06d2b4559bbea816ed2d3a4ef663 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=3a4f5c2 ]

Merge pull request #87 from 
apache/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109220#comment-17109220
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit fdf7feea0ff8452df91ef7220ac2dfaac6fe06eb in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=fdf7fee ]

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109223#comment-17109223
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 15fc0ac7cdd66835ff3ad793851eb4530a5902e8 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=15fc0ac ]

Merge branch 'master' into 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] 01/01: Merge pull request #87 from apache/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit 3a4f5c2eb5bc06d2b4559bbea816ed2d3a4ef663
Merge: f4809e5 15fc0ac
Author: Sebastian Wagner 
AuthorDate: Sun May 17 09:17:49 2020 +1200

Merge pull request #87 from 
apache/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.

 .../src/main/java/org/apache/openmeetings/web/room/raw-sharer.js   | 5 +
 openmeetings-web/src/main/webapp/css/raw-room.css  | 7 +--
 2 files changed, 10 insertions(+), 2 deletions(-)



[openmeetings] branch master updated (f4809e5 -> 3a4f5c2)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


from f4809e5  Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window
 add fdf7fee  OPENMEETINGS-2339 Fix sharer window for touch surface close 
icon clone.
 add ddde919  OPENMEETINGS-2339 Simplify fix for moving button on top of 
draggable ui-titlebar.
 add e4f034a  OPENMEETINGS-2339 Fix missing JS end semicolon
 add 15fc0ac  Merge branch 'master' into 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 new 3a4f5c2  Merge pull request #87 from 
apache/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/java/org/apache/openmeetings/web/room/raw-sharer.js   | 5 +
 openmeetings-web/src/main/webapp/css/raw-room.css  | 7 +--
 2 files changed, 10 insertions(+), 2 deletions(-)



[jira] [Updated] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2358:
---
Description: 
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
 at java.base/java.lang.Thread.run(Thread.java:834)
{code}
 

!image-2020-05-17-09-13-26-975.png|width=353,height=220!

And if you do this few times it will crash the OpenMeetings instance and you 
have to restart the server.

 

There is a more complete stack trace attached. Above stack trace is when the 
server is basically crashed. See: [^StackTrace-Crash-Room.rtf]

 

  was:
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.E

[jira] [Assigned] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner reassigned OPENMEETINGS-2358:
--

Assignee: (was: Maxim Solodovnik)

> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: StackTrace-Crash-Room.rtf, 
> image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> !image-2020-05-17-09-13-26-975.png|width=353,height=220!
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.
>  
> There is a more complete stack trace attached. Above stack trace is when the 
> server is basically crashed. See: [^StackTrace-Crash-Room.rtf]
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2358:
---
Attachment: StackTrace-Crash-Room.rtf

> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: StackTrace-Crash-Room.rtf, 
> image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2358:
---
Attachment: image-2020-05-17-09-13-26-975.png

> Download as PDF with 1 image in the whiteboard crashes the application
> --
>
> Key: OPENMEETINGS-2358
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
> Project: Openmeetings
>  Issue Type: Bug
>  Components: WhiteBoard
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-09-13-26-975.png
>
>
> Steps to reproduce:
>  * Open any conference room
>  * Upload a PNG/jpeg to the library
>  * Put it into the whiteboard
>  * Go via the menu bar > Download as PDF
> Results in:
> {code:java}
> ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - 
> An error occurred in web socket connection with id : 4
> org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
> [90791] exceeds maximum size [65536]
>  at 
> org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
>  at 
> org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
>  at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
>  at 
> org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
>  at 
> org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
>  at 
> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at 
> org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
>  at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
>  at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
>  at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
>  at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
>  at 
> org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
>  at 
> org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
>  at 
> org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
>  at java.base/java.lang.Thread.run(Thread.java:834)
> {code}
>  
> And if you do this few times it will crash the OpenMeetings instance and you 
> have to restart the server.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2358:
---
Description: 
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
 at java.base/java.lang.Thread.run(Thread.java:834)
{code}
 

And if you do this few times it will crash the OpenMeetings instance and you 
have to restart the server.

  was:
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.r

[jira] [Created] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)
Sebastian Wagner created OPENMEETINGS-2358:
--

 Summary: Download as PDF with 1 image in the whiteboard crashes 
the application
 Key: OPENMEETINGS-2358
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2358
 Project: Openmeetings
  Issue Type: Bug
  Components: WhiteBoard
Affects Versions: 5.0.0-M4
Reporter: Sebastian Wagner
Assignee: Maxim Solodovnik
 Fix For: 5.0.0-M5


Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:

 
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
 at java.base/java.lang.Thread.run(Thread.java:834)
{code}
 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2358) Download as PDF with 1 image in the whiteboard crashes the application

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2358:
---
Description: 
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:918)
 at java.base/java.lang.Thread.run(Thread.java:834)
{code}
 

 

  was:
Steps to reproduce:
 * Open any conference room
 * Upload a PNG/jpeg to the library
 * Put it into the whiteboard
 * Go via the menu bar > Download as PDF

Results in:

 
{code:java}
ERROR 05-17 09:02:57.783 o.a.w.p.w.j.WicketEndpoint:100 [tp467402189-196] - An 
error occurred in web socket connection with id : 4
org.eclipse.jetty.websocket.api.MessageTooLargeException: Text message size 
[90791] exceeds maximum size [65536]
 at 
org.eclipse.jetty.websocket.api.WebSocketPolicy.assertValidTextMessageSize(WebSocketPolicy.java:140)
 at 
org.eclipse.jetty.websocket.common.Parser.assertSanePayloadLength(Parser.java:131)
 at org.eclipse.jetty.websocket.common.Parser.parseFrame(Parser.java:499)
 at org.eclipse.jetty.websocket.common.Parser.parseSingleFrame(Parser.java:256)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.readParse(AbstractWebSocketConnection.java:582)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:441)
 at 
org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection.onFillable(AbstractWebSocketConnection.java:428)
 at 
org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at 
org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:426)
 at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:320)
 at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:158)
 at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103)
 at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)
 at 
org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)
 at 
org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:367)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:782)
 at 
org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(Queue

[jira] [Updated] (OPENMEETINGS-2357) Close icons on Android/Mobile view doesn't work - Math formula dialog

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2357:
---
Description: 
In the mobile/touch version following icons don't work:
 * Math formula

!image-2020-05-17-09-00-44-181.png|width=470,height=248!

Havn't found the dialog yet. But there is a fix that may work:

 
{code:java}
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// touch-events are broken and you won't be able to close the dialog
$myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
{code}
 

Android/Chrome.

But I could not find the relevant window that does this in the UI code yet.

  was:
In the mobile/touch version following icons don't work:
 * Download as PNG

 

!image-2020-05-17-08-58-00-720.png|width=337,height=332!

Havn't found the dialog yet. But there is a fix that may work:

 
{code:java}
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// touch-events are broken and you won't be able to close the dialog
$myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
{code}
 

Android/Chrome.

But I could not find the relevant window that does this in the UI code yet.


> Close icons on Android/Mobile view doesn't work - Math formula dialog
> -
>
> Key: OPENMEETINGS-2357
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2357
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-09-00-44-181.png
>
>
> In the mobile/touch version following icons don't work:
>  * Math formula
> !image-2020-05-17-09-00-44-181.png|width=470,height=248!
> Havn't found the dialog yet. But there is a fix that may work:
>  
> {code:java}
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // touch-events are broken and you won't be able to close the dialog
> $myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
> {code}
>  
> Android/Chrome.
> But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (OPENMEETINGS-2357) Close icons on Android/Mobile view doesn't work - Math formula dialog

2020-05-16 Thread Sebastian Wagner (Jira)
Sebastian Wagner created OPENMEETINGS-2357:
--

 Summary: Close icons on Android/Mobile view doesn't work - Math 
formula dialog
 Key: OPENMEETINGS-2357
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2357
 Project: Openmeetings
  Issue Type: Bug
  Components: UI
Affects Versions: 5.0.0-M4
Reporter: Sebastian Wagner
Assignee: Sebastian Wagner
 Fix For: 5.0.0-M5
 Attachments: image-2020-05-17-09-00-44-181.png

In the mobile/touch version following icons don't work:
 * Download as PNG

 

!image-2020-05-17-08-58-00-720.png|width=337,height=332!

Havn't found the dialog yet. But there is a fix that may work:

 
{code:java}
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// touch-events are broken and you won't be able to close the dialog
$myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
{code}
 

Android/Chrome.

But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2357) Close icons on Android/Mobile view doesn't work - Math formula dialog

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2357:
---
Attachment: image-2020-05-17-09-00-44-181.png

> Close icons on Android/Mobile view doesn't work - Math formula dialog
> -
>
> Key: OPENMEETINGS-2357
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2357
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-09-00-44-181.png
>
>
> In the mobile/touch version following icons don't work:
>  * Download as PNG
>  
> !image-2020-05-17-08-58-00-720.png|width=337,height=332!
> Havn't found the dialog yet. But there is a fix that may work:
>  
> {code:java}
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // touch-events are broken and you won't be able to close the dialog
> $myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
> {code}
>  
> Android/Chrome.
> But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2356) Close icons on Android/Mobile view doesn't work - DOwnload as PNG window

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2356?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2356:
---
Description: 
In the mobile/touch version following icons don't work:
 * Download as PNG

 

!image-2020-05-17-08-58-00-720.png|width=337,height=332!

Havn't found the dialog yet. But there is a fix that may work:

 
{code:java}
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// Fix to move the close icon on top of the .ui-dialog-titlebar cause otherwise 
// touch-events are broken and you won't be able to close the dialog
$myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
{code}
 

Android/Chrome.

But I could not find the relevant window that does this in the UI code yet.

  was:
In the mobile/touch version following icons don't work:
 * Audio/video pod, re-sync. Touch events don't work on button. Can't click it.
 * Sharer modal. Can't close it. Touch events don't work on close button. Can't 
click it.

More maybe, havn't tested any additional.

Android/Chrome.


> Close icons on Android/Mobile view doesn't work - DOwnload as PNG window
> 
>
> Key: OPENMEETINGS-2356
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2356
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-08-58-00-720.png
>
>
> In the mobile/touch version following icons don't work:
>  * Download as PNG
>  
> !image-2020-05-17-08-58-00-720.png|width=337,height=332!
> Havn't found the dialog yet. But there is a fix that may work:
>  
> {code:java}
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // Fix to move the close icon on top of the .ui-dialog-titlebar cause 
> otherwise 
> // touch-events are broken and you won't be able to close the dialog
> $myDiv.parent().find('.ui-dialog-titlebar-close').appendTo($myDiv.parent());
> {code}
>  
> Android/Chrome.
> But I could not find the relevant window that does this in the UI code yet.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (OPENMEETINGS-2356) Close icons on Android/Mobile view doesn't work - DOwnload as PNG window

2020-05-16 Thread Sebastian Wagner (Jira)


 [ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2356?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebastian Wagner updated OPENMEETINGS-2356:
---
Attachment: image-2020-05-17-08-58-00-720.png

> Close icons on Android/Mobile view doesn't work - DOwnload as PNG window
> 
>
> Key: OPENMEETINGS-2356
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2356
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
> Attachments: image-2020-05-17-08-58-00-720.png
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (OPENMEETINGS-2356) Close icons on Android/Mobile view doesn't work - DOwnload as PNG window

2020-05-16 Thread Sebastian Wagner (Jira)
Sebastian Wagner created OPENMEETINGS-2356:
--

 Summary: Close icons on Android/Mobile view doesn't work - 
DOwnload as PNG window
 Key: OPENMEETINGS-2356
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2356
 Project: Openmeetings
  Issue Type: Bug
  Components: UI
Affects Versions: 5.0.0-M4
Reporter: Sebastian Wagner
Assignee: Sebastian Wagner
 Fix For: 5.0.0-M5


In the mobile/touch version following icons don't work:
 * Audio/video pod, re-sync. Touch events don't work on button. Can't click it.
 * Sharer modal. Can't close it. Touch events don't work on close button. Can't 
click it.

More maybe, havn't tested any additional.

Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109209#comment-17109209
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 15fc0ac7cdd66835ff3ad793851eb4530a5902e8 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=15fc0ac ]

Merge branch 'master' into 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109206#comment-17109206
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 2c0e4df042888fd6609ea2644cbf8ab5b4119f91 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=2c0e4df ]

OPENMEETINGS-2339 Fix issue around icons hidden behind dragging element for 
video-pod.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109207#comment-17109207
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit f4809e591305e53c628bf0c088f10e23a92cead3 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=f4809e5 ]

Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

OPENMEETINGS-2339 Fix issue around icons hidden behind drag for video pod

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109208#comment-17109208
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit f4809e591305e53c628bf0c088f10e23a92cead3 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=f4809e5 ]

Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

OPENMEETINGS-2339 Fix issue around icons hidden behind drag for video pod

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] branch feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top updated (e4f034a -> 15fc0ac)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


from e4f034a  OPENMEETINGS-2339 Fix missing JS end semicolon
 add 2c0e4df  OPENMEETINGS-2339 Fix issue around icons hidden behind 
dragging element for video-pod.
 add f4809e5  Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window
 add 15fc0ac  Merge branch 'master' into 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top

No new revisions were added by this update.

Summary of changes:
 .../src/main/java/org/apache/openmeetings/web/room/raw-video.js | 2 +-
 openmeetings-web/src/main/webapp/css/raw-room.css   | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)



[openmeetings] branch feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top updated (ddde919 -> e4f034a)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


from ddde919  OPENMEETINGS-2339 Simplify fix for moving button on top of 
draggable ui-titlebar.
 add e4f034a  OPENMEETINGS-2339 Fix missing JS end semicolon

No new revisions were added by this update.

Summary of changes:
 .../src/main/java/org/apache/openmeetings/web/room/raw-sharer.js| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109205#comment-17109205
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit e4f034aaf7917162c3d20227508a5912cee35adc in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=e4f034a ]

OPENMEETINGS-2339 Fix missing JS end semicolon


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] branch feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top updated (fdf7fee -> ddde919)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


from fdf7fee  OPENMEETINGS-2339 Fix sharer window for touch surface close 
icon clone.
 add ddde919  OPENMEETINGS-2339 Simplify fix for moving button on top of 
draggable ui-titlebar.

No new revisions were added by this update.

Summary of changes:
 .../src/main/java/org/apache/openmeetings/web/room/raw-sharer.js   | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)



[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109204#comment-17109204
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit ddde9199a53cbf5415e99e368c932ed4e2daae55 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=ddde919 ]

OPENMEETINGS-2339 Simplify fix for moving button on top of draggable 
ui-titlebar.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109197#comment-17109197
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit 2c0e4df042888fd6609ea2644cbf8ab5b4119f91 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=2c0e4df ]

OPENMEETINGS-2339 Fix issue around icons hidden behind dragging element for 
video-pod.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109199#comment-17109199
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit f4809e591305e53c628bf0c088f10e23a92cead3 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=f4809e5 ]

Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

OPENMEETINGS-2339 Fix issue around icons hidden behind drag for video pod

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109198#comment-17109198
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit f4809e591305e53c628bf0c088f10e23a92cead3 in openmeetings's branch 
refs/heads/master from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=f4809e5 ]

Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

OPENMEETINGS-2339 Fix issue around icons hidden behind drag for video pod

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] 01/01: Merge pull request #86 from apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit f4809e591305e53c628bf0c088f10e23a92cead3
Merge: 5b48b7c 2c0e4df
Author: Sebastian Wagner 
AuthorDate: Sun May 17 08:01:25 2020 +1200

Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

OPENMEETINGS-2339 Fix issue around icons hidden behind drag for video pod

 .../src/main/java/org/apache/openmeetings/web/room/raw-video.js   | 2 +-
 openmeetings-web/src/main/webapp/css/raw-room.css | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



[openmeetings] branch master updated (5b48b7c -> f4809e5)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


from 5b48b7c  [OPENMEETINGS-2349] new chromium-edge detection method and 
fixes (#85)
 add 2c0e4df  OPENMEETINGS-2339 Fix issue around icons hidden behind 
dragging element for video-pod.
 new f4809e5  Merge pull request #86 from 
apache/feature/OPENMEETINGS-2339-cannot-click-close-icon-on-touch-surface-for-jquery-ui-draggable-window

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/java/org/apache/openmeetings/web/room/raw-video.js   | 2 +-
 openmeetings-web/src/main/webapp/css/raw-room.css | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



[jira] [Commented] (OPENMEETINGS-2353) unable to add User from SOAP API

2020-05-16 Thread Murali (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2353?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17109156#comment-17109156
 ] 

Murali commented on OPENMEETINGS-2353:
--

Here is the code i have tried.

$client = new OpenMeetingsSoap('admin','Admin@123');

$user =  [

       
'address'=>['additionalname'=>'additionalname','comment'=>'comment','fax'=>'2327337','country'=>'IT','street'=>'test','town'=>'test','zip'=>'2234234','mail'=>'[padma...@gmail.com|mailto:padma...@gmail.com]','phone'=>'2343434334'],

    'externalId'=>'1',

    'externalType'=>'School',

    'firstname'=>'padma',

  'id'=>"25",

   'languageId'=>"1",

   'lastname'=>'priya',

   'login'=>'padma123',

   'password'=>'Padma@123',

      'pictureUri'=>'picture',

      'rights'=>'SOAP',

      'timeZoneId'=>'Asia/Kolkata',

      'type'=>'EXTERNAL'

 ];

$client->addUser($user,'false');

public function addUser($user = null, $confirm= null)

{

       $client = new \mongosoft\soapclient\Client([

 'url' => 
'[http://216.158.233.60:5080/openmeetings/services/UserService?wsdl]',

  ]);

    return 
$client->add(['sid'=>$this->sid,'user'=>$user,'confirm'=>$confirm]);

  }

 

i am using 
[apache-openmeetings-5.0.0-M4|https://www.apache.org/dyn/closer.lua/openmeetings/5.0.0-M4/bin/apache-openmeetings-5.0.0-M4.zip]

i am trying to implement from laravel.

 

regards

Murali

> unable to add User from SOAP API
> 
>
> Key: OPENMEETINGS-2353
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2353
> Project: Openmeetings
>  Issue Type: Bug
>  Components: SOAP/REST API
>Affects Versions: 5.0.0-M4
>Reporter: Murali
>Assignee: Maxim Solodovnik
>Priority: Major
>
> Hi
> When i am trying to add a new user using SOAP, i am getting following error.
> local.ERROR: Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. {"exception":"[object] 
> (mongosoft\\soapclient\\Exception(code: 0): Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. at 
> C:\\xampp\\htdocs\\school\\vendor\\mongosoft\\yii2-soap-client\\Client.php:66,
>  SoapFault(code: 0): Marshalling Error: class 
> org.apache.openmeetings.webservice.error.ServiceException nor any of its 
> super class is known to this context. at 
> C:\\xampp\\htdocs\\school\\vendor\\mongosoft\\yii2-soap-client\\Client.php:64)
>  
> Please help me.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17108981#comment-17108981
 ] 

ASF subversion and git services commented on OPENMEETINGS-2339:
---

Commit fdf7feea0ff8452df91ef7220ac2dfaac6fe06eb in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
 from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=fdf7fee ]

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.


> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[openmeetings] 01/01: OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit fdf7feea0ff8452df91ef7220ac2dfaac6fe06eb
Author: Sebastian Wagner 
AuthorDate: Sat May 16 22:19:39 2020 +1200

OPENMEETINGS-2339 Fix sharer window for touch surface close icon clone.
---
 .../main/java/org/apache/openmeetings/web/room/raw-sharer.js   | 10 ++
 openmeetings-web/src/main/webapp/css/raw-room.css  |  4 
 2 files changed, 14 insertions(+)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-sharer.js 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-sharer.js
index ce89b6d..4ae4334 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-sharer.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-sharer.js
@@ -26,6 +26,16 @@ var Sharer = (function() {
, autoOpen: false
, resizable: false
});
+   
+   // Fix to move the close icon on top of the .ui-dialog-titlebar 
cause otherwise 
+   // touch-events are broken and you won't be able to close the 
dialog
+   var closeIcon = 
sharer.parent().find('.ui-dialog-titlebar-close').clone();
+   sharer.parent().append(closeIcon);
+   
sharer.parent().find('.ui-dialog-titlebar-close').first().remove();
+   
sharer.parent().find('.ui-dialog-titlebar-close').click(function() {
+   sharer.dialog('close');
+   });
+   
if (!VideoUtil.sharingSupported()) {
sharer.find('.container').remove();
sharer.find('.alert').show();
diff --git a/openmeetings-web/src/main/webapp/css/raw-room.css 
b/openmeetings-web/src/main/webapp/css/raw-room.css
index 2aea7c6..7d2596c 100644
--- a/openmeetings-web/src/main/webapp/css/raw-room.css
+++ b/openmeetings-web/src/main/webapp/css/raw-room.css
@@ -429,6 +429,10 @@ html[dir="rtl"] .room-block .sb-wb .sidebar {
 {
background-color: var(--white);
 }
+.sharer .ui-dialog-titlebar-close {
+   position: absolute;
+   top: 20px
+}
 .user-video .ui-dialog-titlebar .buttonpane {
position: absolute;
right: 2px;



[openmeetings] branch feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top created (now fdf7fee)

2020-05-16 Thread sebawagner
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a change to branch 
feature/OPENMEETINGS-2339-update-sharer-dialog-move-close-button-on-top
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


  at fdf7fee  OPENMEETINGS-2339 Fix sharer window for touch surface close 
icon clone.

This branch includes the following new commits:

 new fdf7fee  OPENMEETINGS-2339 Fix sharer window for touch surface close 
icon clone.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[jira] [Comment Edited] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread Sebastian Wagner (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17108962#comment-17108962
 ] 

Sebastian Wagner edited comment on OPENMEETINGS-2339 at 5/16/20, 9:40 AM:
--

That might be some other Jira to change this dialog in the future.

=> What I meant is: the sharer dialog: There is not real reason to keep this 
dialog open and on top of the whiteboard of the entire session. Starting 
sharing or recording (And stopping each) could be maybe a different UI/UX. 
Doesn't necessarily need a popup.

But yeah that could be solved in another Jira/discussion.


was (Author: sebawagner):
That might be some other Jira to change this dialog in the future.

=> What I meant is: the sharer dialog: There is not real reason to keep this 
dialog open and on top of the whiteboard of the entire session. Starting 
sharing or recording (And stopping each) could be maybe a different UI/UX. 
Doesn't necessarily need a popup.

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread Sebastian Wagner (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17108962#comment-17108962
 ] 

Sebastian Wagner commented on OPENMEETINGS-2339:


That might be some other Jira to change this dialog in the future.

=> What I meant is: the sharer dialog: There is not real reason to keep this 
dialog open and on top of the whiteboard of the entire session. Starting 
sharing or recording (And stopping each) could be maybe a different UI/UX. 
Doesn't necessarily need a popup.

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Comment Edited] (OPENMEETINGS-2339) Close icons on Android/Mobile view doesn't work

2020-05-16 Thread Sebastian Wagner (Jira)


[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17108962#comment-17108962
 ] 

Sebastian Wagner edited comment on OPENMEETINGS-2339 at 5/16/20, 9:40 AM:
--

That might be some other Jira to change this dialog in the future.

=> What I meant is: the sharer dialog: There is not real reason to keep this 
dialog open and on top of the whiteboard of the entire session. Starting 
sharing or recording (And stopping each) could be maybe a different UI/UX. 
Doesn't necessarily need a popup.

But yeah that could be solved in another Jira/discussion. Thats what I meant.


was (Author: sebawagner):
That might be some other Jira to change this dialog in the future.

=> What I meant is: the sharer dialog: There is not real reason to keep this 
dialog open and on top of the whiteboard of the entire session. Starting 
sharing or recording (And stopping each) could be maybe a different UI/UX. 
Doesn't necessarily need a popup.

But yeah that could be solved in another Jira/discussion.

> Close icons on Android/Mobile view doesn't work
> ---
>
> Key: OPENMEETINGS-2339
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2339
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> In the mobile/touch version following icons don't work:
>  * Audio/video pod, re-sync. Touch events don't work on button. Can't click 
> it.
>  * Sharer modal. Can't close it. Touch events don't work on close button. 
> Can't click it.
> More maybe, havn't tested any additional.
> Android/Chrome.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)