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

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik commented on OPENMEETINGS-2339:


I would implement option #2 due to:

#1 is too much work, it will be required to re-implement dialog - this is 
something I would avoid

#2 will not require any changes in jquery-ui internals
We actually adding 2 buttons to dialog titlebar what is necessary - to add some 
additional transparent div and declare it drag handler

There are some more dialogs
You can search using 
{code}
.dialog({
{code}
 pattern

> 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-2277) Can't listen any audio from OM on Mac-OSX

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik commented on OPENMEETINGS-2277:


Hello [~sebawagner],

just re-read JIRA and KMS issue report
both about issues with playback on Safari, so as far as I can see the 
connection between them is clear

same time JIRA report states "the local audio is dead": if it is about own 
audio stream - it is by design i.e. the sound from local microphone shouldn't 
go to local speakers

Could you please check using Safari on MacOsX?

> Can't listen any audio from OM on Mac-OSX 
> --
>
> Key: OPENMEETINGS-2277
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2277
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M3
> Environment: MacBook Air (13-inch, Early 2015)
> 10.15.3
> Browser:
>   * latest Safari
>   * latest Firefox (either audio or video is committed, not both)
>Reporter: Marcus
>Assignee: Sebastian Wagner
>Priority: Major
>  Labels: OSX, audio, mac-os-x
> Fix For: 5.0.0-M5
>
>
> Apple Mac doesn't play any audio coming from OM
> Although browser requests permission for Camera and Microphone and everything 
> looks fine (Audio/Video is transferred to the clients) the local audio is 
> dead. Only the tone for enter room and exit room  is beeing played on local 
> audio.
> Tested with loudspeakers as well as headphones and Apple-Play (personally I 
> don't know anything about Apple-Play, looks like something similar to Alexa?)



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


[openmeetings] branch master updated: OPENMEETINGS-2347 Fix rename of now common variable. (#83)

2020-05-12 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 696fb17  OPENMEETINGS-2347 Fix rename of now common variable. (#83)
696fb17 is described below

commit 696fb179e2381a340bbef68f1bd9db02361510ad
Author: Sebastian Wagner 
AuthorDate: Wed May 13 12:56:36 2020 +1200

OPENMEETINGS-2347 Fix rename of now common variable. (#83)
---
 .../org/apache/openmeetings/web/room/raw-room.js   |  2 +-
 openmeetings-web/src/main/webapp/css/raw-room.css  |  2 +-
 openmeetings-web/src/main/webapp/css/raw-tree.css  | 34 +++---
 .../src/main/webapp/css/raw-variables.css  |  5 ++--
 openmeetings-web/src/main/webapp/css/raw-wb.css|  6 ++--
 5 files changed, 24 insertions(+), 25 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
index 80c1281..75572e3 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
@@ -120,7 +120,7 @@ var Room = (function() {
function _setSize() {
const sbW = _sbWidth()
, holder = $('.room-block');
-   ($('.main.room')[0]).style.setProperty('--room-sidebar-width', 
sbW + 'px');
+   ($('.main.room')[0]).style.setProperty('--sidebar-width', sbW + 
'px');
if (sbW > 285) {
holder.addClass('big').removeClass('narrow');
} else {
diff --git a/openmeetings-web/src/main/webapp/css/raw-room.css 
b/openmeetings-web/src/main/webapp/css/raw-room.css
index 7f7f144..2aea7c6 100644
--- a/openmeetings-web/src/main/webapp/css/raw-room.css
+++ b/openmeetings-web/src/main/webapp/css/raw-room.css
@@ -24,7 +24,7 @@
 }
 .room-block .sb-wb .sidebar {
min-width: 155px;
-   width: var(--room-sidebar-width);
+   width: var(--sidebar-width);
position: absolute;
height: 100%;
top: 0;
diff --git a/openmeetings-web/src/main/webapp/css/raw-tree.css 
b/openmeetings-web/src/main/webapp/css/raw-tree.css
index b978f1d..d4eef5c 100644
--- a/openmeetings-web/src/main/webapp/css/raw-tree.css
+++ b/openmeetings-web/src/main/webapp/css/raw-tree.css
@@ -7,7 +7,7 @@
 }
 .file-tree .trees {
height: calc(100% - var(--tree-header-height) - 
var(--tree-footer-height));
-   width: var(--room-sidebar-width);
+   width: var(--sidebar-width);
overflow-x: auto;
overflow-y: auto;
 }
@@ -28,85 +28,85 @@
 .file-tree .file.item .name
, .file-tree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 26px);
+   max-width: calc(var(--sidebar-width) - 26px);
min-width: 60px;
 }
 .file-tree .tree-subtree .file.item .name
, .file-tree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 44px);
+   max-width: calc(var(--sidebar-width) - 44px);
 }
 .file-tree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 62px);
+   max-width: calc(var(--sidebar-width) - 62px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .file.item .name 
span
 {
-   max-width: calc(var(--room-sidebar-width) - 80px);
+   max-width: calc(var(--sidebar-width) - 80px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree .file.item 
.name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 98px);
+   max-width: calc(var(--sidebar-width) - 98px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 116px);
+   max-width: calc(var(--sidebar-width) - 116px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 134px);
+   max-width: calc(var(--sidebar-width) - 134px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .tree-subtree .file.item .nam

[jira] [Commented] (OPENMEETINGS-2347) Recording Page - File explorer - resize text - does not resize

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


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

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

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

OPENMEETINGS-2347 Fix rename of now common variable. (#83)



> Recording Page - File explorer - resize text - does not resize
> --
>
> Key: OPENMEETINGS-2347
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2347
> Project: Openmeetings
>  Issue Type: Improvement
>  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-07-08-26-32-566.png
>
>
> The fix for resizing text - in the recording section doesn't work cause this 
> section doesn't apply room-sidebar-width.
> But also its not resizable. So it will be very difficult for users to reach 
> any nested folders, cause you can't neither scroll nor resize.
> !image-2020-05-07-08-26-32-566.png|width=417,height=478!



--
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-12 Thread Sebastian Wagner (Jira)


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

Sebastian Wagner commented on OPENMEETINGS-2339:


Yeah that was my same idea. On 2nd. But it is very hard. Cause you not only 
need to apply draggable later but also need to find an element inside the 
UI-Dialog to attach it. But it seems that would require to change the HTML 
inside jquery-ui. 

And changing jquery-ui internals seems very hard.

 

Currently I only see 2 dialog not working. The Apache Wicket-Bootstrap modal 
works fine. (Can't be dragged anyway).

So at the moment its just those 2 windows:
 * Audio/video pod, re-sync. 
 * Sharer modal. Can't close it. 

I can do some further experiments and see if one of them works.

 

> 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-2277) Can't listen any audio from OM on Mac-OSX

2020-05-12 Thread Sebastian Wagner (Jira)


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

Sebastian Wagner commented on OPENMEETINGS-2277:


[~solomax] you link might be also an issue, we can see if we can link them 
somehow. Or not. I can also have a look again if Safari plays fine on my OSX. 
But I thought it did.

> Can't listen any audio from OM on Mac-OSX 
> --
>
> Key: OPENMEETINGS-2277
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2277
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M3
> Environment: MacBook Air (13-inch, Early 2015)
> 10.15.3
> Browser:
>   * latest Safari
>   * latest Firefox (either audio or video is committed, not both)
>Reporter: Marcus
>Assignee: Sebastian Wagner
>Priority: Major
>  Labels: OSX, audio, mac-os-x
> Fix For: 5.0.0-M5
>
>
> Apple Mac doesn't play any audio coming from OM
> Although browser requests permission for Camera and Microphone and everything 
> looks fine (Audio/Video is transferred to the clients) the local audio is 
> dead. Only the tone for enter room and exit room  is beeing played on local 
> audio.
> Tested with loudspeakers as well as headphones and Apple-Play (personally I 
> don't know anything about Apple-Play, looks like something similar to Alexa?)



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


[jira] [Commented] (OPENMEETINGS-2277) Can't listen any audio from OM on Mac-OSX

2020-05-12 Thread Sebastian Wagner (Jira)


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

Sebastian Wagner commented on OPENMEETINGS-2277:


Sounds a bit far fetched to be honest. Based on the Jira report I can't really 
connect it to the post you linked.

I think it could be that the post you linked IS and issue! But I don't think 
this ticket here has to do with it. [~Wellnitz] can you provide some more info:
 * What browser you are using ?
 * What version of OpenMeetings ? (can you update to M5-SNAPSHOT and reproduce 
?)
 * What version of Kurento ?

Cheers

Seb

> Can't listen any audio from OM on Mac-OSX 
> --
>
> Key: OPENMEETINGS-2277
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2277
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Audio/Video
>Affects Versions: 5.0.0-M3
> Environment: MacBook Air (13-inch, Early 2015)
> 10.15.3
> Browser:
>   * latest Safari
>   * latest Firefox (either audio or video is committed, not both)
>Reporter: Marcus
>Assignee: Sebastian Wagner
>Priority: Major
>  Labels: OSX, audio, mac-os-x
> Fix For: 5.0.0-M5
>
>
> Apple Mac doesn't play any audio coming from OM
> Although browser requests permission for Camera and Microphone and everything 
> looks fine (Audio/Video is transferred to the clients) the local audio is 
> dead. Only the tone for enter room and exit room  is beeing played on local 
> audio.
> Tested with loudspeakers as well as headphones and Apple-Play (personally I 
> don't know anything about Apple-Play, looks like something similar to Alexa?)



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


[jira] [Commented] (OPENMEETINGS-2347) Recording Page - File explorer - resize text - does not resize

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


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

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

Commit 9f7bd75010a1fc2e63501d09fa9c1123bdf0cc72 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2347-fix-recording-ui-cut-files-when-nested 
from Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=9f7bd75 ]

OPENMEETINGS-2347 Fix rename of now common variable.


> Recording Page - File explorer - resize text - does not resize
> --
>
> Key: OPENMEETINGS-2347
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2347
> Project: Openmeetings
>  Issue Type: Improvement
>  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-07-08-26-32-566.png
>
>
> The fix for resizing text - in the recording section doesn't work cause this 
> section doesn't apply room-sidebar-width.
> But also its not resizable. So it will be very difficult for users to reach 
> any nested folders, cause you can't neither scroll nor resize.
> !image-2020-05-07-08-26-32-566.png|width=417,height=478!



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


[openmeetings] branch feature/OPENMEETINGS-2347-fix-recording-ui-cut-files-when-nested updated: OPENMEETINGS-2347 Fix rename of now common variable.

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

sebawagner pushed a commit to branch 
feature/OPENMEETINGS-2347-fix-recording-ui-cut-files-when-nested
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to 
refs/heads/feature/OPENMEETINGS-2347-fix-recording-ui-cut-files-when-nested by 
this push:
 new 9f7bd75  OPENMEETINGS-2347 Fix rename of now common variable.
9f7bd75 is described below

commit 9f7bd75010a1fc2e63501d09fa9c1123bdf0cc72
Author: Sebastian Wagner 
AuthorDate: Wed May 13 08:13:42 2020 +1200

OPENMEETINGS-2347 Fix rename of now common variable.
---
 .../org/apache/openmeetings/web/room/raw-room.js   |  2 +-
 openmeetings-web/src/main/webapp/css/raw-room.css  |  2 +-
 openmeetings-web/src/main/webapp/css/raw-tree.css  | 34 +++---
 .../src/main/webapp/css/raw-variables.css  |  5 ++--
 openmeetings-web/src/main/webapp/css/raw-wb.css|  6 ++--
 5 files changed, 24 insertions(+), 25 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
index 80c1281..75572e3 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/raw-room.js
@@ -120,7 +120,7 @@ var Room = (function() {
function _setSize() {
const sbW = _sbWidth()
, holder = $('.room-block');
-   ($('.main.room')[0]).style.setProperty('--room-sidebar-width', 
sbW + 'px');
+   ($('.main.room')[0]).style.setProperty('--sidebar-width', sbW + 
'px');
if (sbW > 285) {
holder.addClass('big').removeClass('narrow');
} else {
diff --git a/openmeetings-web/src/main/webapp/css/raw-room.css 
b/openmeetings-web/src/main/webapp/css/raw-room.css
index 7f7f144..2aea7c6 100644
--- a/openmeetings-web/src/main/webapp/css/raw-room.css
+++ b/openmeetings-web/src/main/webapp/css/raw-room.css
@@ -24,7 +24,7 @@
 }
 .room-block .sb-wb .sidebar {
min-width: 155px;
-   width: var(--room-sidebar-width);
+   width: var(--sidebar-width);
position: absolute;
height: 100%;
top: 0;
diff --git a/openmeetings-web/src/main/webapp/css/raw-tree.css 
b/openmeetings-web/src/main/webapp/css/raw-tree.css
index b978f1d..d4eef5c 100644
--- a/openmeetings-web/src/main/webapp/css/raw-tree.css
+++ b/openmeetings-web/src/main/webapp/css/raw-tree.css
@@ -7,7 +7,7 @@
 }
 .file-tree .trees {
height: calc(100% - var(--tree-header-height) - 
var(--tree-footer-height));
-   width: var(--room-sidebar-width);
+   width: var(--sidebar-width);
overflow-x: auto;
overflow-y: auto;
 }
@@ -28,85 +28,85 @@
 .file-tree .file.item .name
, .file-tree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 26px);
+   max-width: calc(var(--sidebar-width) - 26px);
min-width: 60px;
 }
 .file-tree .tree-subtree .file.item .name
, .file-tree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 44px);
+   max-width: calc(var(--sidebar-width) - 44px);
 }
 .file-tree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 62px);
+   max-width: calc(var(--sidebar-width) - 62px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .file.item .name 
span
 {
-   max-width: calc(var(--room-sidebar-width) - 80px);
+   max-width: calc(var(--sidebar-width) - 80px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree .file.item 
.name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 98px);
+   max-width: calc(var(--sidebar-width) - 98px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 116px);
+   max-width: calc(var(--sidebar-width) - 116px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .file.item .name
, .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .file.item .name span
 {
-   max-width: calc(var(--room-sidebar-width) - 134px);
+   max-width: calc(var(--sidebar-width) - 134px);
 }
 .file-tree .tree-subtree .tree-subtree .tree-subtree .tree-subtree 
.tree-subtree .tree-subtree .tree-subtree .file.item .name
, .file-tree .tre

[jira] [Commented] (OPENMEETINGS-2296) Library versions need to be updated (5.0.0-M5)

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


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

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

Commit e112fb8baed9d263335b5605c076a6ab1f7be017 in openmeetings's branch 
refs/heads/master from Maxim Solodovnik
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=e112fb8 ]

[OPENMEETINGS-2296] tomcat is updated


> Library versions need to be updated (5.0.0-M5)
> --
>
> Key: OPENMEETINGS-2296
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2296
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.0.0-M5
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.0.0-M5
>
>
> Library versions need to be updated



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


[openmeetings] branch master updated: [OPENMEETINGS-2296] tomcat is updated

2020-05-12 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 e112fb8  [OPENMEETINGS-2296] tomcat is updated
e112fb8 is described below

commit e112fb8baed9d263335b5605c076a6ab1f7be017
Author: Maxim Solodovnik 
AuthorDate: Tue May 12 22:21:49 2020 +0700

[OPENMEETINGS-2296] tomcat is updated
---
 openmeetings-server/pom.xml | 2 +-
 pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/openmeetings-server/pom.xml b/openmeetings-server/pom.xml
index 73efd0a..b43289a 100644
--- a/openmeetings-server/pom.xml
+++ b/openmeetings-server/pom.xml
@@ -118,7 +118,7 @@
prepare-web-server


-   
web-server/apache-tomcat-9.0.34.tar.gz 
+   
web-server/apache-tomcat-9.0.35.tar.gz 



diff --git a/pom.xml b/pom.xml
index a02bb53..4f39c3d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -81,7 +81,7 @@
9.0.0-M5.1
5.0.0-M2
5.2.6.RELEASE
-   9.0.34
+   9.0.35
3.0.14
3.3.6
2.7.1



[jira] [Resolved] (OPENMEETINGS-2348) Every web page starts with a blank line.

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik resolved OPENMEETINGS-2348.

Resolution: Not A Problem

> Every web page starts with a blank line.
> 
>
> Key: OPENMEETINGS-2348
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2348
> Project: Openmeetings
>  Issue Type: Bug
>  Components: UI
>Affects Versions: 5.0.0-M4
>Reporter: Jeff McDonald
>Assignee: Maxim Solodovnik
>Priority: Major
>
> Every web page seems to be missing the first line of text, which should read:
> 
> Instead, I get a blank line, followed by the comments section.
> This is very easy to see, simply "view page source" in any browser.
> So, most web browsers will guess it's an xHTML document, and everything works 
> as expected. But my NGINX load balancer is going bonkers trying to decipher 
> the content.
> Surfing the web, I see there are different theories on whether the  tag 
> is actually required, but since it's in all the 'html' templates, I naturally 
> assume it's supposed to be there. A blank line is definitely not the norm!
> Could this be a bug with "wicket"? I don't know enough about it to to be sure.
> Thanks!
> --Jeff
>  
>  
>  



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


[jira] [Resolved] (OPENMEETINGS-2318) send.email.at.register true and send.email.with.verfication true

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik resolved OPENMEETINGS-2318.

Resolution: Cannot Reproduce

> send.email.at.register  true and send.email.with.verfication true
> -
>
> Key: OPENMEETINGS-2318
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2318
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 5.0.0-M4
> Environment: Ubuntu 18.04, no NAT 32GB RM, 2TB HD 8 Core processor 
>Reporter: Horace Miles
>Assignee: Maxim Solodovnik
>Priority: Major
> Attachments: logs.txt
>
>
> When both send.email.at.register = true
> and send.emai.with.vertification = true
> Email detail email sent but not an account vertification email with link see :
> Your account details
> Login hormiles
> Email yahsgkm@



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


[jira] [Resolved] (OPENMEETINGS-2341) invitation hash not generate on public room - openmeeting 5.0.0-M4

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik resolved OPENMEETINGS-2341.

Resolution: Cannot Reproduce

> invitation hash not generate on public room - openmeeting 5.0.0-M4
> --
>
> Key: OPENMEETINGS-2341
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2341
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Admin, Invitation
>Affects Versions: 5.0.0-M4
> Environment: Demo https://om.alteametasoft.com:8443/next/#room/2 or 
> my own installation on ubuntu
>Reporter: David
>Assignee: Maxim Solodovnik
>Priority: Trivial
>  Labels: invitationhash
>
> Hello,
> I have a fresh install of Open Meetings 5.0.0-M4. Thanks for your great work, 
> and for the quick setup.
> I have already try older version in the past.
> In the web panel, I create a Public Conference Room (for example : 
> [https://om.alteametasoft.com:8443/next/#room/2] ).
> After I go to actions > Send invitation, when I click on generate URL, the 
> invitation hash or invitationhash is not generated, on older version it work 
> well.
> The function not working or is removed ?
> How can we invite unregistered people on a conference ?
> It is the same on the demo website, and my own installation.
>  
> Thanks in advance
> Have a good day.
> David



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


[openmeetings] branch master updated: Travis is not being used

2020-05-12 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 4e0556f  Travis is not being used
4e0556f is described below

commit 4e0556f6d3b9fa23f9dab8580aefd34303248bd9
Author: Maxim Solodovnik 
AuthorDate: Tue May 12 22:05:08 2020 +0700

Travis is not being used
---
 .travis.yml | 33 -
 1 file changed, 33 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 842c0b9..000
--- a/.travis.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-dist: bionic
-language: java
-sudo: false
-
-notifications:
-  email:
-  - d...@openmeetings.apache.org
-
-jdk:
-  - openjdk11
-
-cache:
-  directories:
-  - "$HOME/.m2"
-
-script:
-  - mvn clean install -PallModules,Jenkins
-



[jira] [Commented] (OPENMEETINGS-2351) Does not allow to deselect the option "Include uploaded files and recordings in the backup"

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


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

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

Commit 5e2643bedbb4a23ce26c9a66bc39dd27021edad0 in openmeetings's branch 
refs/heads/master from Maxim Solodovnik
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=5e2643b ]

[OPENMEETINGS-2351] checkbox should work


> Does not allow to deselect the option "Include uploaded files and recordings 
> in the backup"
> ---
>
> Key: OPENMEETINGS-2351
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2351
> Project: Openmeetings
>  Issue Type: Test
>  Components: Import/Export
>Affects Versions: 5.0.0-M4
> Environment: AWS Lightsail Ubuntu 18.04-8 GB RAM, 2 vCPU, 160 GB SSD
>Reporter: Jorge Alberto Londoño Giraldo
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: backups
> Attachments: Captura de pantalla 2020-05-12 a la(s) 1.09.13 a. m..png
>
>
> In the create a backup part, the checkbox does not allow to deselect the 
> option "Include uploaded files and recordings in the backup" I tried it in 3 
> browsers from Macosx Mojave and it doesn't allow it



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


[jira] [Resolved] (OPENMEETINGS-2351) Does not allow to deselect the option "Include uploaded files and recordings in the backup"

2020-05-12 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik resolved OPENMEETINGS-2351.

Fix Version/s: 5.0.0-M5
   Resolution: Fixed

> Does not allow to deselect the option "Include uploaded files and recordings 
> in the backup"
> ---
>
> Key: OPENMEETINGS-2351
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2351
> Project: Openmeetings
>  Issue Type: Test
>  Components: Import/Export
>Affects Versions: 5.0.0-M4
> Environment: AWS Lightsail Ubuntu 18.04-8 GB RAM, 2 vCPU, 160 GB SSD
>Reporter: Jorge Alberto Londoño Giraldo
>Assignee: Maxim Solodovnik
>Priority: Major
>  Labels: backups
> Fix For: 5.0.0-M5
>
> Attachments: Captura de pantalla 2020-05-12 a la(s) 1.09.13 a. m..png
>
>
> In the create a backup part, the checkbox does not allow to deselect the 
> option "Include uploaded files and recordings in the backup" I tried it in 3 
> browsers from Macosx Mojave and it doesn't allow it



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


[openmeetings] branch master updated: [OPENMEETINGS-2351] checkbox should work

2020-05-12 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 5e2643b  [OPENMEETINGS-2351] checkbox should work
5e2643b is described below

commit 5e2643bedbb4a23ce26c9a66bc39dd27021edad0
Author: Maxim Solodovnik 
AuthorDate: Tue May 12 15:06:45 2020 +0700

[OPENMEETINGS-2351] checkbox should work
---
 .../main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
index 4dc1b3b..7885201 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/admin/backup/BackupPanel.java
@@ -130,7 +130,7 @@ public class BackupPanel extends AdminBasePanel {
DecimalFormat formatter = new DecimalFormat("#,###.00");
add(new Label("MaxUploadSize", 
formatter.format(megaBytes)));
 
-   add(new CheckBox("includeFilesInBackup", 
includeFilesInBackup));
+   add(new CheckBox("includeFilesInBackup", 
includeFilesInBackup).setOutputMarkupId(true));
 
// Set maximum size controlled by configuration
setMaxSize(Bytes.bytes(maxBytes));