[jira] [Commented] (OPENMEETINGS-2652) Can´t send invitation from rooms or Calendar

2021-08-31 Thread ASF subversion and git services (Jira)


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

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

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

[OPENMEETINGS-2652] multi-select should work better


> Can´t send invitation from rooms or Calendar
> 
>
> Key: OPENMEETINGS-2652
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2652
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Calendar, Room
>Affects Versions: 7.0.0
> Environment: Server:  Ubuntu 18.04 - OM 700 #15
> Client:  OSx 11.5.2 - Firefox 91 - Safari 14.1.2
> Client:  Ubuntu 18.04 - Firefox 91
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 7.0.0
>
> Attachments: Calendar no show Attendees-1.png, Calendar without 
> vertical lines.png, Rooms no show Recipient-1.png, openmeetings.log
>
>
> # When try send an invitation from rooms and clic
> on Recipient box, not show any user (nothing happens).
> # When try send a meeting from Calendar and clic
> on Attendees box, not show any user (nothing happens).
> # Calendar page don´t show vertical lines.
> Attached captures and log.



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


[openmeetings] branch master updated: [OPENMEETINGS-2652] multi-select should work better

2021-08-31 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 c166be6  [OPENMEETINGS-2652] multi-select should work better
c166be6 is described below

commit c166be61fefdae66f7111de59dd0f4403164b9a8
Author: Maxim Solodovnik 
AuthorDate: Wed Sep 1 09:36:49 2021 +0700

[OPENMEETINGS-2652] multi-select should work better
---
 .../openmeetings/web/common/InvitationDialog.java |  1 +
 .../openmeetings/web/common/InvitationForm.java   |  8 +++-
 .../openmeetings/web/room/menu/ActionsSubMenu.java|  5 +++--
 .../web/room/menu/RoomInvitationForm.java | 19 +++
 .../openmeetings/web/room/menu/RoomMenuPanel.html |  2 +-
 .../apache/openmeetings/web/user/MessageDialog.java   |  5 -
 .../web/user/calendar/AppointmentDialog.java  |  3 +++
 .../openmeetings/web/user/calendar/CalendarPanel.html |  2 +-
 .../openmeetings/web/user/calendar/CalendarPanel.java |  2 +-
 .../web/user/record/RecordingInvitationForm.java  |  9 +++--
 .../openmeetings/web/user/record/RecordingsPanel.html |  2 +-
 .../openmeetings/web/user/record/RecordingsPanel.java |  5 +++--
 pom.xml   |  2 +-
 13 files changed, 44 insertions(+), 21 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationDialog.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationDialog.java
index 88435fc..95385cb 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationDialog.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationDialog.java
@@ -34,6 +34,7 @@ public class InvitationDialog extends Modal {
 
public InvitationDialog(String id, final InvitationForm form) {
super(id, form.getModel());
+   setMarkupId(id);
this.form = form;
}
 
diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationForm.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationForm.java
index 55b0514..39365a6 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationForm.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/InvitationForm.java
@@ -81,6 +81,8 @@ public abstract class InvitationForm extends Form 
{
protected final TextField url = new TextField<>("url", 
Model.of((String)null));
protected final UserMultiChoice recipients = new 
UserMultiChoice("recipients", new CollectionModel<>(new ArrayList<>()));
protected InvitationDialog dialog;
+   protected String dropDownParentId;
+
@SpringBean
private InvitationDao inviteDao;
@SpringBean
@@ -93,8 +95,9 @@ public abstract class InvitationForm extends Form 
{
, SEND
}
 
-   protected InvitationForm(String id) {
+   protected InvitationForm(String id, String dropDownParentId) {
super(id, new CompoundPropertyModel<>(new Invitation()));
+   this.dropDownParentId = dropDownParentId;
setOutputMarkupId(true);
}
 
@@ -105,6 +108,9 @@ public abstract class InvitationForm extends 
Form {
url.setModelObject(null);
updateButtons(target);
})).setOutputMarkupId(true);
+   if (dropDownParentId != null) {
+   
recipients.getSettings().setDropdownParent(dropDownParentId);
+   }
add(new AjaxCheckBox("passwordProtected") {
private static final long serialVersionUID = 1L;
 
diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/menu/ActionsSubMenu.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/menu/ActionsSubMenu.java
index 8ec7507..7655214 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/menu/ActionsSubMenu.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/menu/ActionsSubMenu.java
@@ -67,8 +67,9 @@ public class ActionsSubMenu implements Serializable {
}
 
public void init() {
-   RoomInvitationForm rif = new RoomInvitationForm("form", 
room.getRoom().getId());
-   mp.add(invite = new InvitationDialog("invite", rif));
+   final String roomInviteDialogId = "roomInviteDialog";
+   RoomInvitationForm rif = new RoomInvitationForm("form", 
room.getRoom().getId(), roomInviteDialogId);
+   mp.add(invite = new InvitationDialog(roomInviteDialogId, rif));
rif.setDialog(invite);
mp.add(sipDialer = new SipDialerDialog("sipDialer", room));
actionsMenu 

[jira] [Resolved] (OPENMEETINGS-2657) config list link broken

2021-08-31 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik resolved OPENMEETINGS-2657.

Resolution: Fixed

The new "nightly" site is here: https://nightlies.apache.org/openmeetings/
Please report any further issues :)

> config list link broken
> ---
>
> Key: OPENMEETINGS-2657
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2657
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Minor
>
> The link [Apache OpenMeetings Project – List of general configuration 
> options|https://ci-builds.apache.org/job/OpenMeetings/job/openmeetings/site/openmeetings-server/GeneralConfiguration.html]
>  is broken 
> [https://ci-builds.apache.org/job/OpenMeetings/job/openmeetings/site/openmeetings-server/GeneralConfiguration.html]



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


[jira] [Updated] (OPENMEETINGS-2657) config list link broken

2021-08-31 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik updated OPENMEETINGS-2657:
---
Component/s: (was: Installer)

> config list link broken
> ---
>
> Key: OPENMEETINGS-2657
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2657
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 7.0.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Minor
>
> The link [Apache OpenMeetings Project – List of general configuration 
> options|https://ci-builds.apache.org/job/OpenMeetings/job/openmeetings/site/openmeetings-server/GeneralConfiguration.html]
>  is broken 
> [https://ci-builds.apache.org/job/OpenMeetings/job/openmeetings/site/openmeetings-server/GeneralConfiguration.html]



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


[jira] [Commented] (OPENMEETINGS-2652) Can´t send invitation from rooms or Calendar

2021-08-31 Thread Alvaro (Jira)


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

Alvaro commented on OPENMEETINGS-2652:
--

..the same issues continue in OM 7.0.0 #18
and Logout link does´nt work.

> Can´t send invitation from rooms or Calendar
> 
>
> Key: OPENMEETINGS-2652
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2652
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Calendar, Room
>Affects Versions: 7.0.0
> Environment: Server:  Ubuntu 18.04 - OM 700 #15
> Client:  OSx 11.5.2 - Firefox 91 - Safari 14.1.2
> Client:  Ubuntu 18.04 - Firefox 91
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 7.0.0
>
> Attachments: Calendar no show Attendees-1.png, Calendar without 
> vertical lines.png, Rooms no show Recipient-1.png, openmeetings.log
>
>
> # When try send an invitation from rooms and clic
> on Recipient box, not show any user (nothing happens).
> # When try send a meeting from Calendar and clic
> on Attendees box, not show any user (nothing happens).
> # Calendar page don´t show vertical lines.
> Attached captures and log.



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


[jira] [Updated] (OPENMEETINGS-2652) Can´t send invitation from rooms or Calendar

2021-08-31 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik updated OPENMEETINGS-2652:
---
Fix Version/s: 7.0.0

> Can´t send invitation from rooms or Calendar
> 
>
> Key: OPENMEETINGS-2652
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2652
> Project: Openmeetings
>  Issue Type: Bug
>  Components: Calendar, Room
>Affects Versions: 7.0.0
> Environment: Server:  Ubuntu 18.04 - OM 700 #15
> Client:  OSx 11.5.2 - Firefox 91 - Safari 14.1.2
> Client:  Ubuntu 18.04 - Firefox 91
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 7.0.0
>
> Attachments: Calendar no show Attendees-1.png, Calendar without 
> vertical lines.png, Rooms no show Recipient-1.png, openmeetings.log
>
>
> # When try send an invitation from rooms and clic
> on Recipient box, not show any user (nothing happens).
> # When try send a meeting from Calendar and clic
> on Attendees box, not show any user (nothing happens).
> # Calendar page don´t show vertical lines.
> Attached captures and log.



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