[jira] [Commented] (OPENMEETINGS-2470) Unable to use WebService interface when running via Jetty

2020-10-01 Thread ASF subversion and git services (Jira)


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

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

Commit 0dae53e41c89e20721d13fa152ffe231685c6961 in openmeetings's branch 
refs/heads/feature/OPENMEETINGS-2470-supply-jetty-with-test-web-xml from 
Sebastian Wagner
[ https://gitbox.apache.org/repos/asf?p=openmeetings.git;h=0dae53e ]

OPENMEETINGS-2470 Fix and remove filters while running in dev version.


> Unable to use WebService interface when running via Jetty
> -
>
> Key: OPENMEETINGS-2470
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2470
> Project: Openmeetings
>  Issue Type: Bug
>  Components: SOAP/REST API
>Affects Versions: 5.0.1
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Minor
> Fix For: 5.1.0
>
>
> There is some issue with the filters when running via Jetty. This is not a 
> major issue but quite annoying if you run in development mode.



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


[openmeetings] branch feature/OPENMEETINGS-2470-supply-jetty-with-test-web-xml created (now 0dae53e)

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

sebawagner pushed a change to branch 
feature/OPENMEETINGS-2470-supply-jetty-with-test-web-xml
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


  at 0dae53e  OPENMEETINGS-2470 Fix and remove filters while running in dev 
version.

This branch includes the following new commits:

 new 0dae53e  OPENMEETINGS-2470 Fix and remove filters while running in dev 
version.

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.




[openmeetings] 01/01: OPENMEETINGS-2470 Fix and remove filters while running in dev version.

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

sebawagner pushed a commit to branch 
feature/OPENMEETINGS-2470-supply-jetty-with-test-web-xml
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit 0dae53e41c89e20721d13fa152ffe231685c6961
Author: Sebastian Wagner 
AuthorDate: Fri Oct 2 16:29:43 2020 +1300

OPENMEETINGS-2470 Fix and remove filters while running in dev version.
---
 openmeetings-web/pom.xml|  1 +
 openmeetings-web/src/test/jetty/web.xml | 86 +
 2 files changed, 87 insertions(+)

diff --git a/openmeetings-web/pom.xml b/openmeetings-web/pom.xml
index 7b4b326..8734b46 100644
--- a/openmeetings-web/pom.xml
+++ b/openmeetings-web/pom.xml
@@ -554,6 +554,7 @@



/openmeetings
+   
${project.basedir}/src/test/jetty/web.xml


${project.basedir}/src/test/jetty/jetty.xml,${project.basedir}/src/test/jetty/jetty-ssl.xml,${project.basedir}/src/test/jetty/jetty-http.xml,${project.basedir}/src/test/jetty/jetty-https.xml

diff --git a/openmeetings-web/src/test/jetty/web.xml 
b/openmeetings-web/src/test/jetty/web.xml
new file mode 100644
index 000..1922c43
--- /dev/null
+++ b/openmeetings-web/src/test/jetty/web.xml
@@ -0,0 +1,86 @@
+
+
+http://xmlns.jcp.org/xml/ns/javaee";
+   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+   xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd";>
+   
+   contextConfigLocation
+   
/WEB-INF/classes/applicationContext.xml
+   
+   
+   
org.apache.tomcat.websocket.textBufferSize
+   1048576 
+   
+   
+   
org.apache.openmeetings.util.OMContextListener
+   
+
+   
+   OpenmeetingsApplication
+   
org.apache.wicket.protocol.ws.javax.JavaxWebSocketFilter
+   true
+   
+   applicationClassName
+   
org.apache.openmeetings.web.app.Application
+   
+   
+   applicationFactoryClassName
+   
org.apache.wicket.spring.SpringWebApplicationFactory
+   
+   
+   configuration
+   ${wicket.configuration}
+   
+   
+   ignorePaths
+   
css,docs,images,js,persistence,public,screenshare,data,services
+   
+   
+   
+   OpenmeetingsApplication
+   /*
+   
+
+   
+   
org.springframework.web.context.ContextLoaderListener
+   
+
+   
+   CXFServlet
+   
org.apache.cxf.transport.servlet.CXFServlet
+   
+   config-location
+   classpath:cxf-servlet.xml
+   
+   1
+   true
+   
+   
+   CXFServlet
+   /services/*
+   
+
+   
+   inc
+   text/plain
+   
+
+



[jira] [Commented] (OPENMEETINGS-2470) Unable to use WebService interface when running via Jetty

2020-10-01 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik commented on OPENMEETINGS-2470:


this is known Jetty bug
this is the major reason why i'm not using it

> Unable to use WebService interface when running via Jetty
> -
>
> Key: OPENMEETINGS-2470
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2470
> Project: Openmeetings
>  Issue Type: Bug
>  Components: SOAP/REST API
>Affects Versions: 5.0.1
>Reporter: Sebastian Wagner
>Assignee: Sebastian Wagner
>Priority: Minor
> Fix For: 5.1.0
>
>
> There is some issue with the filters when running via Jetty. This is not a 
> major issue but quite annoying if you run in development mode.



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


[jira] [Created] (OPENMEETINGS-2470) Unable to use WebService interface when running via Jetty

2020-10-01 Thread Sebastian Wagner (Jira)
Sebastian Wagner created OPENMEETINGS-2470:
--

 Summary: Unable to use WebService interface when running via Jetty
 Key: OPENMEETINGS-2470
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2470
 Project: Openmeetings
  Issue Type: Bug
  Components: SOAP/REST API
Affects Versions: 5.0.1
Reporter: Sebastian Wagner
Assignee: Sebastian Wagner
 Fix For: 5.1.0


There is some issue with the filters when running via Jetty. This is not a 
major issue but quite annoying if you run in development mode.



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


[jira] [Commented] (OPENMEETINGS-2469) Startup warnings need to be elimitated

2020-10-01 Thread ASF subversion and git services (Jira)


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

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

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

[OPENMEETINGS-2469] java11 modules for hazelcast are added


> Startup warnings need to be elimitated
> --
>
> Key: OPENMEETINGS-2469
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2469
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: Builds
>Affects Versions: 5.0.1
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> * com.hazelcast.instance.impl.HazelcastInstanceFactory.null Hazelcast is
> starting in a Java modular environment (Java 9 and newer) but without
> proper access to required Java packages. Use additional Java arguments
> to provide Hazelcast access to Java internal API. The internal API
> access is used to get the best performance results. Arguments to be used:



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


[jira] [Created] (OPENMEETINGS-2469) Startup warnings need to be elimitated

2020-10-01 Thread Maxim Solodovnik (Jira)
Maxim Solodovnik created OPENMEETINGS-2469:
--

 Summary: Startup warnings need to be elimitated
 Key: OPENMEETINGS-2469
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2469
 Project: Openmeetings
  Issue Type: Improvement
  Components: Builds
Affects Versions: 5.0.1
Reporter: Maxim Solodovnik
Assignee: Maxim Solodovnik
 Fix For: 5.1.0


* com.hazelcast.instance.impl.HazelcastInstanceFactory.null Hazelcast is
starting in a Java modular environment (Java 9 and newer) but without
proper access to required Java packages. Use additional Java arguments
to provide Hazelcast access to Java internal API. The internal API
access is used to get the best performance results. Arguments to be used:



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


[openmeetings] branch master updated: [OPENMEETINGS-2469] java11 modules for hazelcast are added

2020-10-01 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 b24cc0c  [OPENMEETINGS-2469] java11 modules for hazelcast are added
b24cc0c is described below

commit b24cc0cef6a7cf8e849b5a88ca760825543d167b
Author: Maxim Solodovnik 
AuthorDate: Fri Oct 2 09:23:47 2020 +0700

[OPENMEETINGS-2469] java11 modules for hazelcast are added
---
 openmeetings-server/src/main/assembly/scripts/openmeetings.service | 1 +
 1 file changed, 1 insertion(+)

diff --git a/openmeetings-server/src/main/assembly/scripts/openmeetings.service 
b/openmeetings-server/src/main/assembly/scripts/openmeetings.service
index f76d3b7..d7758a6 100644
--- a/openmeetings-server/src/main/assembly/scripts/openmeetings.service
+++ b/openmeetings-server/src/main/assembly/scripts/openmeetings.service
@@ -28,6 +28,7 @@ Environment=CATALINA_PID=/var/run/openmeetings.pid
 WorkingDirectory=/opt/openmeetings
 Environment=CATALINA_HOME=/opt/openmeetings
 Environment=CATALINA_BASE=/opt/openmeetings
+Environment='JDK_JAVA_OPTIONS=--add-modules java.se --add-exports 
java.base/jdk.internal.ref=ALL-UNNAMED --add-opens 
java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.nio=ALL-UNNAMED 
--add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens 
java.management/sun.management=ALL-UNNAMED --add-opens 
jdk.management/com.sun.management.internal=ALL-UNNAMED'
 Environment='CATALINA_OPTS=-Xms1G -Xmx4G -server -XX:+UseParallelGC'
 Environment='JAVA_OPTS=-Djava.awt.headless=true 
-Djava.security.egd=file:/dev/./urandom'
 



[jira] [Commented] (OPENMEETINGS-2463) Arabic Translation & Placeholder checking

2020-10-01 Thread Ali Alhaidary (Jira)


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

Ali Alhaidary commented on OPENMEETINGS-2463:
-

so many thanks, we are continuously updating Arabic so that RTL screens 
on mobile and desktops are acceptable in the 4 RTL languages, so it 
takes some time


> Arabic Translation & Placeholder checking
> -
>
> Key: OPENMEETINGS-2463
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2463
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: RTL, UI
>Affects Versions: 5.0.1, 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> 1. Arabic translation was reviewed and corrected.
> 2. Checking the proper placeholders position (available on POEditor and 
> attached)



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


[jira] [Commented] (OPENMEETINGS-2462) (5.1.0) Label contributions from https://poeditor.com should be merged back

2020-10-01 Thread ASF subversion and git services (Jira)


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

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

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

[OPENMEETINGS-2462] arabic


> (5.1.0) Label contributions from https://poeditor.com should be merged back
> ---
>
> Key: OPENMEETINGS-2462
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2462
> Project: Openmeetings
>  Issue Type: Task
>  Components: Builds
>Affects Versions: 5.1.0
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> Label contributions from https://poeditor.com should be merged back



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


[jira] [Commented] (OPENMEETINGS-2463) Arabic Translation & Placeholder checking

2020-10-01 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik commented on OPENMEETINGS-2463:


done,
build should start in ~15-20 minutes

> Arabic Translation & Placeholder checking
> -
>
> Key: OPENMEETINGS-2463
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2463
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: RTL, UI
>Affects Versions: 5.0.1, 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> 1. Arabic translation was reviewed and corrected.
> 2. Checking the proper placeholders position (available on POEditor and 
> attached)



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


[openmeetings] branch master updated: [OPENMEETINGS-2462] arabic

2020-10-01 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 f65b336  [OPENMEETINGS-2462] arabic
f65b336 is described below

commit f65b3369a4c522dcf1aa63fc3773277a9d5c8900
Author: Maxim Solodovnik 
AuthorDate: Thu Oct 1 15:15:00 2020 +0700

[OPENMEETINGS-2462] arabic
---
 .../openmeetings/web/app/Application_ar.properties.xml   | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
index 5329135..2cf9aa0 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
@@ -143,13 +143,13 @@ see https://openmeetings.apache.org/LanguageEditor.html 
for Details



-   
+   





-   
+   



@@ -161,7 +161,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   



@@ -243,7 +243,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   



@@ -335,7 +335,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   



@@ -539,7 +539,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   



@@ -635,7 +635,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   



@@ -649,7 +649,7 @@ see https://openmeetings.apache.org/LanguageEditor.html for 
Details



-   
+   






[jira] [Commented] (OPENMEETINGS-2468) Moving keys 282, 283, 286 and 287 from translation table to configuration

2020-10-01 Thread Ali Alhaidary (Jira)


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

Ali Alhaidary commented on OPENMEETINGS-2468:
-

The way I see it that it can localize and personalize :-)
Well, we can live with it as we did a small script executed each time we 
change the build, but that is something not all up graders can do.

And most important, I do not want to consume any of your time for minor 
things.



> Moving keys 282, 283, 286 and 287 from translation table to configuration
> -
>
> Key: OPENMEETINGS-2468
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2468
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: Dashboard
>Affects Versions: 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Minor
>
> Keys 282, 283, 286 and 287 in language table have the same site specific 
> characteristics as some other configuration keys like site name, google 
> analytics and mail parameters
> When upgrading to a new build or version, these keys need to be configured 
> each and every time, so moving them to the database makes it more practical.



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


[jira] [Commented] (OPENMEETINGS-2463) Arabic Translation & Placeholder checking

2020-10-01 Thread Ali Alhaidary (Jira)


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

Ali Alhaidary commented on OPENMEETINGS-2463:
-

Yes
Just include Arabic translation in your next build please, we did some 
RTL adjustment and rephrasing...


> Arabic Translation & Placeholder checking
> -
>
> Key: OPENMEETINGS-2463
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2463
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: RTL, UI
>Affects Versions: 5.0.1, 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> 1. Arabic translation was reviewed and corrected.
> 2. Checking the proper placeholders position (available on POEditor and 
> attached)



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


[jira] [Commented] (OPENMEETINGS-2463) Arabic Translation & Placeholder checking

2020-10-01 Thread Maxim Solodovnik (Jira)


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

Maxim Solodovnik commented on OPENMEETINGS-2463:


Are you pinging me?
what do I need to do?

> Arabic Translation & Placeholder checking
> -
>
> Key: OPENMEETINGS-2463
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2463
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: RTL, UI
>Affects Versions: 5.0.1, 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> 1. Arabic translation was reviewed and corrected.
> 2. Checking the proper placeholders position (available on POEditor and 
> attached)



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


[jira] [Commented] (OPENMEETINGS-2463) Arabic Translation & Placeholder checking

2020-10-01 Thread Ali Alhaidary (Jira)


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

Ali Alhaidary commented on OPENMEETINGS-2463:
-

ping

> Arabic Translation & Placeholder checking
> -
>
> Key: OPENMEETINGS-2463
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2463
> Project: Openmeetings
>  Issue Type: Improvement
>  Components: RTL, UI
>Affects Versions: 5.0.1, 5.1.0
>Reporter: Ali Alhaidary
>Assignee: Maxim Solodovnik
>Priority: Major
> Fix For: 5.1.0
>
>
> 1. Arabic translation was reviewed and corrected.
> 2. Checking the proper placeholders position (available on POEditor and 
> attached)



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