svn commit: r1772000 - /openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java

2016-11-30 Thread vdegtyarev
Author: vdegtyarev
Date: Wed Nov 30 08:09:00 2016
New Revision: 1772000

URL: http://svn.apache.org/viewvc?rev=1772000&view=rev
Log:
OPENMEETINGS-1513 minor changes. Build error for 3.1.x is fixed

Modified:

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java

Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java?rev=1772000&r1=1771999&r2=1772000&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java
 Wed Nov 30 08:09:00 2016
@@ -551,10 +551,10 @@ public class InstallWizard extends Abstr

private boolean checkToolPath(TextField path, String[] 
args) {
ConverterProcessResult result = 
ProcessHelper.executeScript(path.getInputName() + " path:: '" + path.getValue() 
+ "'", args);
-   if (!result.isOk()) {
+   if (!result.getExitValue().equals("0")) {
path.error(result.getError().replaceAll(regex, 
""));
}
-   return result.isOk();
+   return result.getExitValue().equals("0");
}

private boolean checkOfficePath() {




[jira] [Commented] (OPENMEETINGS-1513) The Installer Converters page should be improved

2016-11-30 Thread ASF subversion and git services (JIRA)

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

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

Commit 1772000 from [~vdegtyarev] in branch 'application/branches/3.1.x'
[ https://svn.apache.org/r1772000 ]

OPENMEETINGS-1513 minor changes. Build error for 3.1.x is fixed

> The Installer Converters page should be improved
> 
>
> Key: OPENMEETINGS-1513
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1513
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Installer
>Affects Versions: 3.2.0
>Reporter: Vasiliy Degtyarev
>Assignee: Vasiliy Degtyarev
> Fix For: 3.1.4, 3.2.0, 4.0.0
>
>
> To improve the installer you need to add a check that install the required 
> tool on the server or not.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OPENMEETINGS-1513) The Installer Converters page should be improved

2016-11-30 Thread ASF subversion and git services (JIRA)

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

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

Commit 1772001 from [~vdegtyarev] in branch 'application/trunk'
[ https://svn.apache.org/r1772001 ]

Merged revision(s) 1771997 from openmeetings/application/branches/3.2.x:
OPENMEETINGS-1513 is fixed. Installer Converters page is improved to check that 
installed converter tools or not.

> The Installer Converters page should be improved
> 
>
> Key: OPENMEETINGS-1513
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1513
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Installer
>Affects Versions: 3.2.0
>Reporter: Vasiliy Degtyarev
>Assignee: Vasiliy Degtyarev
> Fix For: 3.1.4, 3.2.0, 4.0.0
>
>
> To improve the installer you need to add a check that install the required 
> tool on the server or not.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772001 - in /openmeetings/application/trunk/openmeetings-web/src/main: java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html java/org/apache/openmeetings/web/page

2016-11-30 Thread vdegtyarev
Author: vdegtyarev
Date: Wed Nov 30 08:15:21 2016
New Revision: 1772001

URL: http://svn.apache.org/viewvc?rev=1772001&view=rev
Log:
Merged revision(s) 1771997 from openmeetings/application/branches/3.2.x:
OPENMEETINGS-1513 is fixed. Installer Converters page is improved to check that 
installed converter tools or not.

Modified:

openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html

openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java

openmeetings/application/trunk/openmeetings-web/src/main/webapp/css/theme.css

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard%24ParamsStep3.html?rev=1772001&r1=1772000&r2=1772001&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
 Wed Nov 30 08:15:21 2016
@@ -23,66 +23,45 @@



-   
+   
+   
+   

-   
-   
-   
-http://openmeetings.apache.org/installation.html";
-   target="_blank">
-   
-   

-   
+   
+   
+   

-   
-   
-   
-http://openmeetings.apache.org/installation.html";
-   target="_blank">
-   
-   

-   
+   
+   
+   
+   

-   
-   
-   
-http://openmeetings.apache.org/installation.html";
-   target="_blank">
-   
-   
+   



+   



-http://openmeetings.apache.org/installation.html";
-   target="_blank">





+   



-http://openmeetings.apache.org/installation.html";
-   target="_blank">



@@ -90,22 +69,24 @@

+   



-http://openmeetings.apache.org/installation.html";
-   target="_blank">



-   
+   
+   
+   

+   
+   
+   


-   
   

[jira] [Resolved] (OPENMEETINGS-1513) The Installer Converters page should be improved

2016-11-30 Thread Vasiliy Degtyarev (JIRA)

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

Vasiliy Degtyarev resolved OPENMEETINGS-1513.
-
Resolution: Fixed

> The Installer Converters page should be improved
> 
>
> Key: OPENMEETINGS-1513
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1513
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Installer
>Affects Versions: 3.2.0
>Reporter: Vasiliy Degtyarev
>Assignee: Vasiliy Degtyarev
> Fix For: 3.1.4, 3.2.0, 4.0.0
>
>
> To improve the installer you need to add a check that install the required 
> tool on the server or not.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772002 - /openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java

2016-11-30 Thread vdegtyarev
Author: vdegtyarev
Date: Wed Nov 30 08:42:17 2016
New Revision: 1772002

URL: http://svn.apache.org/viewvc?rev=1772002&view=rev
Log:
OOPENMEETINGS-1366 minor changes. Build error for trunk is fixed

Modified:

openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java

Modified: 
openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java?rev=1772002&r1=1772001&r2=1772002&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java
 (original)
+++ 
openmeetings/application/trunk/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/WhiteBoardService.java
 Wed Nov 30 08:42:17 2016
@@ -43,6 +43,7 @@ import org.apache.openmeetings.db.dto.ro
 import org.apache.openmeetings.db.dto.room.WhiteboardObjectList;
 import org.apache.openmeetings.db.dto.room.WhiteboardSyncLockObject;
 import org.apache.openmeetings.db.entity.room.Client;
+import org.apache.openmeetings.db.entity.server.Sessiondata;
 import org.apache.openmeetings.db.util.AuthLevelUtil;
 import org.apache.openmeetings.util.OmFileHelper;
 import org.red5.logging.Red5LoggerFactory;




[jira] [Created] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)
Alvaro created OPENMEETINGS-1514:


 Summary: No show whiteboard after send invitation-meeting from 
Calendar
 Key: OPENMEETINGS-1514
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
 Project: Openmeetings
  Issue Type: Bug
Affects Versions: 3.1.3
 Environment: Debian 8
Reporter: Alvaro
Assignee: Maxim Solodovnik



This is in OM 3.1.4 #466

Connected or not to Internet, when send an invitation-meeting
to an OM user or not OM user, an d clic on the email inviattion
link, don't show the whiteboard.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)

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

Alvaro updated OPENMEETINGS-1514:
-
Attachment: In Lan without Internet connection.png
With Internet connection.png
In Lan without Internet connection.png

> No show whiteboard after send invitation-meeting from Calendar
> --
>
> Key: OPENMEETINGS-1514
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 3.1.3
> Environment: Debian 8
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
> Attachments: In Lan without Internet connection.png, With Internet 
> connection.png
>
>
> This is in OM 3.1.4 #466
> Connected or not to Internet, when send an invitation-meeting
> to an OM user or not OM user, an d clic on the email inviattion
> link, don't show the whiteboard.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)

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

Alvaro updated OPENMEETINGS-1514:
-
Description: 
This is in OM 3.1.4 #466

Connected or not to Internet, when send an invitation-meeting
to an OM user or not OM user, an d clic on the email inviattion
link, don't show the whiteboard (

  was:

This is in OM 3.1.4 #466

Connected or not to Internet, when send an invitation-meeting
to an OM user or not OM user, an d clic on the email inviattion
link, don't show the whiteboard.


> No show whiteboard after send invitation-meeting from Calendar
> --
>
> Key: OPENMEETINGS-1514
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 3.1.3
> Environment: Debian 8
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
> Attachments: In Lan without Internet connection.png, With Internet 
> connection.png
>
>
> This is in OM 3.1.4 #466
> Connected or not to Internet, when send an invitation-meeting
> to an OM user or not OM user, an d clic on the email inviattion
> link, don't show the whiteboard (



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)

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

Alvaro updated OPENMEETINGS-1514:
-
Attachment: (was: In Lan without Internet connection.png)

> No show whiteboard after send invitation-meeting from Calendar
> --
>
> Key: OPENMEETINGS-1514
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 3.1.3
> Environment: Debian 8
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
> Attachments: In Lan without Internet connection.png, With Internet 
> connection.png
>
>
> This is in OM 3.1.4 #466
> Connected or not to Internet, when send an invitation-meeting
> to an OM user or not OM user, an d clic on the email inviattion
> link, don't show the whiteboard (



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)

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

Alvaro updated OPENMEETINGS-1514:
-
Attachment: without whiteboard.png

> No show whiteboard after send invitation-meeting from Calendar
> --
>
> Key: OPENMEETINGS-1514
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 3.1.3
> Environment: Debian 8
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
> Attachments: In Lan without Internet connection.png, With Internet 
> connection.png, without whiteboard.png
>
>
> This is in OM 3.1.4 #466
> Connected or not to Internet, when send an invitation-meeting
> to an OM user or not OM user, an d clic on the email inviattion
> link, don't show the whiteboard (



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (OPENMEETINGS-1514) No show whiteboard after send invitation-meeting from Calendar

2016-11-30 Thread Alvaro (JIRA)

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

Alvaro updated OPENMEETINGS-1514:
-
Description: 
This is in OM 3.1.4 #466

Connected or not to Internet, when send an invitation-meeting
to an OM user or not OM user, an d clic on the email inviattion
link, don't show the whiteboard:
 (without whiteboard.png).

When is not connection to Internet, the window to send it s
 not structred:
 (In Lan without Internet connection.png).

When is Internet connection the window to send it is right:
(With Internet connection.png).

  was:
This is in OM 3.1.4 #466

Connected or not to Internet, when send an invitation-meeting
to an OM user or not OM user, an d clic on the email inviattion
link, don't show the whiteboard (


> No show whiteboard after send invitation-meeting from Calendar
> --
>
> Key: OPENMEETINGS-1514
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1514
> Project: Openmeetings
>  Issue Type: Bug
>Affects Versions: 3.1.3
> Environment: Debian 8
>Reporter: Alvaro
>Assignee: Maxim Solodovnik
> Attachments: In Lan without Internet connection.png, With Internet 
> connection.png, without whiteboard.png
>
>
> This is in OM 3.1.4 #466
> Connected or not to Internet, when send an invitation-meeting
> to an OM user or not OM user, an d clic on the email inviattion
> link, don't show the whiteboard:
>  (without whiteboard.png).
> When is not connection to Internet, the window to send it s
>  not structred:
>  (In Lan without Internet connection.png).
> When is Internet connection the window to send it is right:
> (With Internet connection.png).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772141 [6/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fr.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fr.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fr.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fr.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,20 +1616,6 @@

Chemin vers 
FFMPEG
Indiquez le 
chemin vers FFMPEG dans le cas où FFMPEG ne se trouve pas dans le chemin 
système.
-   
+   
Chemin vers SoX
Indiquez le 
chemin vers SoX dans le cas où SoX ne se trouve pas dans le chemin 
système.
-   
+   
Chemin vers 
OpenOffice-/LibreOffice pour jodconverter
Chemin vers 
OpenOffice/LibreOffice (optionnel). Indiquez le chemin réel dans le cas où 
jodconverter ne pourrait pas trouver l'installation de OpenOffice-/LibreOffice 
automatiquement.
Chemin vers 
OpenOffice/LibreOffice (optionnel). Indiquez le chemin réel dans le cas où 
jodconverter ne pourrait pas trouver l'installation de OpenOffice-/LibreOffice 
automatiquement.

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_gl.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_gl.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_gl.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_gl.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,21 +1616,6 @@

FFMPEG 
útvonala
Adja meg az 
FFMPEG alérési útvonalát, hagyja üresen, ha az FFMPEG elérhető a 
rendszer útvonalak közt
-   
+   
SoX útvonala
Adja meg a SoX 
elérési útvonalát, hagyja üresen, ha a SoX elérhető a rendszer 
útvonalak közt
-   
+   
OpenOffice/LibreOffice útvonala a 
jodconverterhez
Adja meg az 
OpenOffice/LibreOffice (optional) valós útvonalát, a OpenOffice/LibreOffice 
nem keresi automatikusan a jodconverter
-   
-   Az OpenOffice/LibreOffice (optional) útvonalát a jodconverter 
nem találja autómatikusan, az abszolút elérési útvonal szükséges
-   
+   Az 
OpenOffice/LibreOffice (optional) útvonalát a jodconverter nem találja 
autómatikusan, az abszolút elérési útvonal szükséges
 
Titkosítás 
típusa
Titkosító 
osztály

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/o

svn commit: r1772141 [5/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_bg.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_bg.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_bg.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_bg.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in 

svn commit: r1772141 [9/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_cs.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_cs.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_cs.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_cs.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_da.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_da.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_da.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_da.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 

svn commit: r1772141 [3/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ko.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ko.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ko.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ko.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1618,25 +1618,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_nl.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_nl.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_nl.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_nl.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pl.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pl.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pl.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pl.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in 

svn commit: r1772141 [12/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard%24ParamsStep3.html?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html
 Thu Dec  1 04:09:12 2016
@@ -9,7 +9,7 @@
   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
@@ -24,64 +24,44 @@



-   
+   

-   
+   


-   
+   

-   
+   



-   
+   

-   
+   


-   
-   
+   
+   
+   
+   

-   
-   
-   
-   
-   
-   
-   
-   
+   
+   
+   
+   
+   

-   
-   
-   
-   
-   
-   
-   
-   
+   
+   
+   
+   
+   

-   
-   
-   
-   
-   


- 

svn commit: r1772141 [11/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG 
Путь
Укажите путь к 
FFMPEG, или не заполняйте данное поле если FFMPEG 
установлен в путях Вашей системы
-   
+   
SoX Путь
Укажите 
путь к SoX, или не заполняйте данное поле 
если SoX установлен в путях Вашей 
системы
-   
+   
OpenOffice/LibreOffice Путь 
для jodconverter
Путь к 
OpenOffice/LibreOffice (не обязательный) пожалуйста 
установите этот путь в случае когда jodconverter 
не в состоянии найти автоматически путь к  
установленному OpenOffice/LibreOffice
-   
-   Путь к OpenOffice/LibreOffice (не 
обязательный) пожалуйста установите этот 
путь
-   в случае когда jodconverter не в 
состоянии найти
-   путь к установленному OpenOffice/LibreOffice
-   
+   Путь к 
OpenOffice/LibreOffice (не обязательный) пожалуйста 
установите этот путь в случае когда jodconverter 
не в состоянии найти путь к установленному 
OpenOffice/LibreOffice
 
Тип 
шифрования
Класс 
шифрования

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sk.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sk.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sk.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sk.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sv.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sv.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sv.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sv.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 

svn commit: r1772141 [7/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt_BR.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt_BR.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt_BR.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt_BR.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG 
Путь
Укажите путь к 
FFMPEG, или не заполняйте данное поле если FFMPEG 
установлен в путях Вашей системы
-   
+   
SoX Путь
Укажите 
путь к SoX, или не заполняйте данное поле 
если SoX установлен в путях Вашей 
системы
-   
+   
OpenOffice/LibreOffice Путь 
для jodconverter
Путь к 
OpenOffice/LibreOffice (не обязательный) пожалуйста 
установите этот путь в случае когда jodconverter 
не в состоянии найти автоматически путь к  
установленному OpenOffice/LibreOf

svn commit: r1772141 [2/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_es.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_es.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_es.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_es.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1,4 +1,4 @@
-
+
 

[jira] [Commented] (OPENMEETINGS-1513) The Installer Converters page should be improved

2016-11-30 Thread ASF subversion and git services (JIRA)

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

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

Commit 1772141 from [~solomax] in branch 'application/trunk'
[ https://svn.apache.org/r1772141 ]

[OPENMEETINGS-1513] minor wizard fixes

> The Installer Converters page should be improved
> 
>
> Key: OPENMEETINGS-1513
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1513
> Project: Openmeetings
>  Issue Type: Bug
>  Components: HTML5/Installer
>Affects Versions: 3.2.0
>Reporter: Vasiliy Degtyarev
>Assignee: Vasiliy Degtyarev
> Fix For: 3.1.4, 3.2.0, 4.0.0
>
>
> To improve the installer you need to add a check that install the required 
> tool on the server or not.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772141 [1/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Author: solomax
Date: Thu Dec  1 04:09:12 2016
New Revision: 1772141

URL: http://svn.apache.org/viewvc?rev=1772141&view=rev
Log:
[OPENMEETINGS-1513] minor wizard fixes

Modified:

openmeetings/application/branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/MailHandler.java

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ar.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_bg.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ca.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_cs.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_da.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_de.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_el.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_es.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fa.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fi.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_fr.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_gl.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_id.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_it.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ja.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ko.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_nl.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pl.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_pt_BR.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_ru.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sk.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_sv.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_th.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_tr.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_CN.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard$ParamsStep3.html

openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/install/InstallWizard.java

openmeetings/application/branches/3.2.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/MailHandler.java

openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.properties.

svn commit: r1772141 [10/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_hu.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,21 +1616,6 @@

FFMPEG 
útvonala
Adja meg az 
FFMPEG alérési útvonalát, hagyja üresen, ha az FFMPEG elérhető a 
rendszer útvonalak közt
-   
+   
SoX útvonala
Adja meg a SoX 
elérési útvonalát, hagyja üresen, ha a SoX elérhető a rendszer 
útvonalak közt
-   
+   
OpenOffice/LibreOffice útvonala a 
jodconverterhez
Adja meg az 
OpenOffice/LibreOffice (optional) valós útvonalát, a OpenOffice/LibreOffice 
nem keresi automatikusan a jodconverter
-   
-   Az OpenOffice/LibreOffice (optional) útvonalát a jodconverter 
nem találja autómatikusan, az abszolút elérési útvonal szükséges
-   
+   Az 
OpenOffice/LibreOffice (optional) útvonalát a jodconverter nem találja 
autómatikusan, az abszolút elérési útvonal szükséges
 
Titkosítás 
típusa
Titkosító 
osztály

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_id.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_id.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_id.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_id.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_it.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_it.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_it.properties.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_it.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@
   
Percorso 
FFMPEG
Specifica il 
percorso di  FFMPEG, lascia vuoto se FFMPEG è già presente nel percorso di 
sistema
-   
+   
Percorso SoX
Specifica il 
percorso di SoX, lascia vuoto se SoX è già presente nel percorso di 
sistema
-   
+   
Percorso 
OpenOffice/LibreOffice per jodconverter
Percorsoath 
di OpenOffice/LibreOffice (opzionale) impostalo al percorso reale nel caso 
jodconverter non riesca a trovare automaticamente l'installazione  di 
OpenOffice/LibreOffice
-   Percorso di 
OpenOffice/LibreOffice (opzionale) impostalo 
-   al percorso reale nel caso jodconverter non riesca a 
trovare
-   l'installazione di OpenOffice/LibreOffice
-   
+   Percorso di 
OpenOffice/LibreOffice (opzionale) impostalo al percorso reale nel caso 
jodconverter non riesca a trovare l'installazione di 
OpenOffice/LibreOffice
 
 

svn commit: r1772141 [4/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_th.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_th.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_th.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_th.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_tr.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_tr.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_tr.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_tr.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path for 
jodconverter
The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation 
automatically
-   The path to 
OpenOffice/LibreOffice (optional) please set this
-   to the real path in case jodconverter is unable to find
-   OpenOffice/LibreOffice installation
-   
+   The path to 
OpenOffice/LibreOffice (optional) please set this to the real path in case 
jodconverter is unable to find OpenOffice/LibreOffice installation
 
Crypt Type
Crypt 
Class

Modified: 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1617,25 +1617,6 @@

FFMPEG Шлях

Вкажіть шлях до 
FFMPEG, або не заповнюйте це поле якщо FFMPEG 
встановлений в шляхах Вашої системи
-   
+   
SoX Шлях
Вкажіть 
шлях до SoX, або не заповнюйте це поле якщо SoX 
встановлений в шляхах Вашої системи
-   
+   
OpenOffice/LibreOffice Шлях 
для jodconverter
Шлях до 
OpenOffice/LibreOffice (не обов'язковий) будь ласка, 
встановіть цей шлях, у разі коли jodconverter не в 
змозі знайти автоматично шлях до 
встановленого OpenOffice/LibreOffice
-   
-   

svn commit: r1772141 [8/12] - in /openmeetings/application: branches/3.1.x/openmeetings-core/src/main/java/org/apache/openmeetings/core/mail/ branches/3.1.x/openmeetings-web/src/main/java/org/apache/o

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_uk.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1617,25 +1617,6 @@

FFMPEG Шлях

Вкажіть шлях до 
FFMPEG, або не заповнюйте це поле якщо FFMPEG 
встановлений в шляхах Вашої системи
-   
+   
SoX Шлях
Вкажіть 
шлях до SoX, або не заповнюйте це поле якщо SoX 
встановлений в шляхах Вашої системи
-   
+   
OpenOffice/LibreOffice Шлях 
для jodconverter
Шлях до 
OpenOffice/LibreOffice (не обов'язковий) будь ласка, 
встановіть цей шлях, у разі коли jodconverter не в 
змозі знайти автоматично шлях до 
встановленого OpenOffice/LibreOffice
-   
-   Шлях до OpenOffice/LibreOffice (не 
обов'язковий) будь ласка, встановіть цей 
шлях
-   у разі коли jodconverter не в змозі 
знайти
-   шлях до встановленого 
OpenOffice/LibreOffice
-   
+   Шлях до 
OpenOffice/LibreOffice (не обов'язковий) будь ласка, 
встановіть цей шлях у разі коли jodconverter не в 
змозі знайти шлях до встановленого 
OpenOffice/LibreOffice
 
Тип 
шифрування
Клас 
шифрування

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_CN.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_CN.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_CN.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_CN.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,21 +1616,6 @@

FFMPEG 
路径
输å…
¥FFMPEG的路径, 如果FFMPEG成功安装
到系统路径,就不用填写这个字段
-   
+   
SoX 路径
输å…
¥SoX的路径, 如果SoX成功安装
到系统路径,就不用填写这个字段
-   
+   
OpenOffice和LibreOffice使用jodconverter的路径
OpenOffice和LibreOffice的路径(可选),请把它指向真实路径,以防
 jodconverter不能自动找到OpenOffice/LibreOffice 安装
-   OpenOffice和LibreOffice的路径(可选),请把它指向真实路径,以防
 jodconverter不能自动找到OpenOffice/LibreOffice 安装
-   
+   OpenOffice和LibreOffice的路径(可选),请把它指向真实路径,以防
 jodconverter不能自动找到OpenOffice/LibreOffice 安装
 
加密类型
加
密类

Modified: 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml?rev=1772141&r1=1772140&r2=1772141&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application_zh_TW.properties.xml
 Thu Dec  1 04:09:12 2016
@@ -1616,25 +1616,6 @@

FFMPEG Path
Enter the 
path to FFMPEG, leave blank if FFMPEG is successfully installed to 
system-path
-   
+   
SoX Path
Enter the path 
to SoX, leave blank if SoX is successfully installed to system-path
-   
+   
OpenOffice/LibreOffice Path 

[jira] [Created] (OPENMEETINGS-1515) Fluido skin for the site should be replaced with reflow

2016-11-30 Thread Maxim Solodovnik (JIRA)
Maxim Solodovnik created OPENMEETINGS-1515:
--

 Summary: Fluido skin for the site should be replaced with reflow
 Key: OPENMEETINGS-1515
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1515
 Project: Openmeetings
  Issue Type: Task
  Components: BuildsAndReleases
Affects Versions: 3.1.3
Reporter: Maxim Solodovnik
Assignee: Maxim Solodovnik
 Fix For: 3.1.4, 3.2.0, 4.0.0


Fluido skin for the site should be replaced with reflow to have better mobile 
support



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772144 [6/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/jquery-ui.css
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/jquery-ui.css?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/jquery-ui.css
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/jquery-ui.css
 Thu Dec  1 04:22:52 2016
@@ -1,8 +1,8 @@
-/*! jQuery UI - v1.11.2 - 2014-10-16
+/*! jQuery UI - v1.12.1 - 2016-11-29
 * http://jqueryui.com
-* Includes: core.css, accordion.css, autocomplete.css, button.css, 
datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, 
resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, 
spinner.css, tabs.css, tooltip.css, theme.css
-* To view and modify this theme, visit 
http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ff&iconColorHeader=ff&bgColorContent=ee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dd&fcContent=33&iconColorContent=22&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighl
 
ight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ff&iconColorError=ffd27a&bgColorOverlay=66&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=00&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
-* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
+* Includes: core.css, slider.css, theme.css
+* To view and modify this theme, visit 
http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=66&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aa&iconColorError=cc&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ff&fcActive=ff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=55&fcHover=2b2b2b&borderColorHover=cc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=77&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=44&fcContent=33&borderColorContent=dd&bgTextureContent=flat&bgColorContent=ff&ico
 
nColorHeader=44&fcHeader=33&borderColorHeader=dd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
 
 /* Layout helpers
 --*/
@@ -38,9 +38,6 @@
 .ui-helper-clearfix:after {
clear: both;
 }
-.ui-helper-clearfix {
-   min-height: 0; /* support: IE7 */
-}
 .ui-helper-zfix {
width: 100%;
height: 100%;
@@ -60,20 +57,27 @@
 --*/
 .ui-state-disabled {
cursor: default !important;
+   pointer-events: none;
 }
 
 
 /* Icons
 --*/
-
-/* states and images */
 .ui-icon {
-   display: block;
+   display: inline-block;
+   vertical-align: middle;
+   margin-top: -.25em;
+   position: relative;
text-indent: -9px;
overflow: hidden;
background-repeat: no-repeat;
 }
 
+.ui-widget-icon-block {
+   left: 50%;
+   margin-left: -8px;
+   display: block;
+}
 
 /* Misc visuals
 --*/
@@ -86,570 +90,6 @@
width: 100%;
height: 100%;
 }
-.ui-accordion .ui-accordion-header {
-   display: block;
-   cursor: pointer;
-   position: relative;
-   margin: 2px 0 0 0;
-   padding: .5em .5em .5em .7em;
-   min-height: 0; /* support: IE7 */
-   font-size: 100%;
-}
-.ui-acco

svn commit: r1772144 [4/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Added: 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery.min.js?rev=1772144&view=auto
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery.min.js
 (added)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery.min.js
 Thu Dec  1 04:22:52 2016
@@ -0,0 +1,7 @@
+/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+//@ sourceMappingURL=jquery.min.map
+*/(function(e,t){var n,r,i=typeof 
t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return
 new 
b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return
 
t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var
 i,a;if(!e)return this;if("string"==typeof e)
 
{if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n
 instanceof 
b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i
 in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return 
this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return 
r.find(e);this.length=1,this[0]=a}return 
this.context=o,this.selector=e,this}return 
e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return
 this.length},toArray:function(){return h.call(this)},get:function(e){return 
null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var
 t=b.merge(this.constructor(),e);return 
t.prevObject=this,t.context=this.context,t},each:funct
 ion(e,t){return b.each(this,e,t)},ready:function(e){return 
b.ready.promise().done(e),this},slice:function(){return 
this.pushStack(h.apply(this,arguments))},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var 
t=this.length,n=+e+(0>e?t:0);return 
this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return 
this.pushStack(b.map(this,function(t,n){return 
e.call(t,n,t)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var
 
e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof
 s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof 
s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i
 in 
o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return
 s},b.extend({noConflict:fun
 ction(t){return 
e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return
 
setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return
 
null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return
 null==e?e+"":"object"==typeof e||"function"==typeof 
e?l[m.call(e)]||"object":typeof 
e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var
 r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t 
in e)return!1;r
 eturn!0},error:function(e){throw 
Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return 
null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e

svn commit: r1772144 [5/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/CallForLogo.xml?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
 Thu Dec  1 04:22:52 2016
@@ -49,7 +49,7 @@
var ib = 
e.closest('table').find('.logo-big');
var bi = $('#bannerLeft img');
bi.attr('src', ib.attr('src'));
-   bi[0].scrollIntoView();
+   $('.subhead')[0].scrollIntoView()
}
function applyLogoSmall(e) {
var pp = $('.powered-preview');
@@ -60,7 +60,7 @@
}
var ib = 
e.closest('table').find('.logo-square');
l.css('background-image', 'url(' + 
ib.attr('src') + ')');
-   l[0].scrollIntoView();
+   $('#Preview')[0].scrollIntoView();
}
//]]>

@@ -70,7 +70,7 @@



-   Apply
+   Apply


Author
@@ -82,7 +82,7 @@



-   Apply
+   Apply


Author
@@ -94,7 +94,7 @@



-   Apply
+   Apply


Author
@@ -106,7 +106,7 @@



-   Apply
+   Apply


Author
@@ -121,7 +121,7 @@



-   Apply
+   Apply


Author
@@ -133,7 +133,7 @@



-   Apply
+   Apply


Author
@@ -145,7 +145,7 @@



-   Apply
+   Apply


Author
@@ -157,7 +157,7 @@



-   Apply
+   

[jira] [Commented] (OPENMEETINGS-1515) Fluido skin for the site should be replaced with reflow

2016-11-30 Thread ASF subversion and git services (JIRA)

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

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

Commit 1772144 from [~solomax] in branch 'application/branches/3.1.x'
[ https://svn.apache.org/r1772144 ]

[OPENMEETINGS-1515] site is now generated using reflow skin

> Fluido skin for the site should be replaced with reflow
> ---
>
> Key: OPENMEETINGS-1515
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1515
> Project: Openmeetings
>  Issue Type: Task
>  Components: BuildsAndReleases
>Affects Versions: 3.1.3
>Reporter: Maxim Solodovnik
>Assignee: Maxim Solodovnik
> Fix For: 3.1.4, 3.2.0, 4.0.0
>
>
> Fluido skin for the site should be replaced with reflow to have better mobile 
> support



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1772144 [11/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/open

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery-ui.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery-ui.min.js?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 (original)
+++ 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 Thu Dec  1 04:22:52 2016
@@ -1,13 +1,6 @@
-/*! jQuery UI - v1.11.2 - 2014-10-16
+/*! jQuery UI - v1.12.1 - 2016-11-29
 * http://jqueryui.com
-* Includes: core.js, widget.js, mouse.js, position.js, accordion.js, 
autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, 
droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, 
effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, 
effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, 
effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js, menu.js, 
progressbar.js, resizable.js, selectable.js, selectmenu.js, slider.js, 
sortable.js, spinner.js, tabs.js, tooltip.js
-* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
+* Includes: widget.js, keycode.js, widgets/mouse.js, widgets/slider.js
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
 
-(function(e){"function"==typeof 
define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function 
t(t,s){var 
n,a,o,r=t.nodeName.toLowerCase();return"area"===r?(n=t.parentNode,a=n.name,t.href&&a&&"map"===n.nodeName.toLowerCase()?(o=e("img[usemap='#"+a+"']")[0],!!o&&i(o)):!1):(/input|select|textarea|button|object/.test(r)?!t.disabled:"a"===r?t.href||s:s)&&i(t)}function
 i(t){return 
e.expr.filters.visible(t)&&!e(t).parents().addBack().filter(function(){return"hidden"===e.css(this,"visibility")}).length}function
 s(e){for(var 
t,i;e.length&&e[0]!==document;){if(t=e.css("position"),("absolute"===t||"relative"===t||"fixed"===t)&&(i=parseInt(e.css("zIndex"),10),!isNaN(i)&&0!==i))return
 i;e=e.parent()}return 0}function 
n(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",t
 
his._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNex
 
t:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},e.extend(this._defaults,this.regional[""]),this.regional.en=e.extend(!0,{},this.regional[""]),this.regional["en-US"]=e.extend(!0,{},this.regional.en),this.dpDiv=a(e(""))}function a(t){var i="button, 
.ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return 
t.delegate(i,"mouseout",function(){e(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-pr
 
ev")&&e(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).removeClass("ui-datepicker-next-hover")}).delegate(i,"mouseover",o)}function
 
o(){e.datepicker._isDisabledDatepicker(v.inline?v.dpDiv.parent()[0]:v.input[0])||(e(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),e(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&e(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).addClass("ui-datepicker-next-hover"))}function
 r(t,i){e.extend(t,i);for(var s in i)null=

svn commit: r1772144 [8/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Added: 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery.min.js?rev=1772144&view=auto
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery.min.js
 (added)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery.min.js
 Thu Dec  1 04:22:52 2016
@@ -0,0 +1,7 @@
+/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+//@ sourceMappingURL=jquery.min.map
+*/(function(e,t){var n,r,i=typeof 
t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return
 new 
b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return
 
t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var
 i,a;if(!e)return this;if("string"==typeof e)
 
{if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n
 instanceof 
b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i
 in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return 
this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return 
r.find(e);this.length=1,this[0]=a}return 
this.context=o,this.selector=e,this}return 
e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return
 this.length},toArray:function(){return h.call(this)},get:function(e){return 
null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var
 t=b.merge(this.constructor(),e);return 
t.prevObject=this,t.context=this.context,t},each:funct
 ion(e,t){return b.each(this,e,t)},ready:function(e){return 
b.ready.promise().done(e),this},slice:function(){return 
this.pushStack(h.apply(this,arguments))},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var 
t=this.length,n=+e+(0>e?t:0);return 
this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return 
this.pushStack(b.map(this,function(t,n){return 
e.call(t,n,t)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var
 
e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof
 s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof 
s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i
 in 
o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return
 s},b.extend({noConflict:fun
 ction(t){return 
e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return
 
setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return
 
null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return
 null==e?e+"":"object"==typeof e||"function"==typeof 
e?l[m.call(e)]||"object":typeof 
e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var
 r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t 
in e)return!1;r
 eturn!0},error:function(e){throw 
Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return 
null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e

svn commit: r1772144 [3/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 (original)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 Thu Dec  1 04:22:52 2016
@@ -1,13 +1,6 @@
-/*! jQuery UI - v1.11.2 - 2014-10-16
+/*! jQuery UI - v1.12.1 - 2016-11-29
 * http://jqueryui.com
-* Includes: core.js, widget.js, mouse.js, position.js, accordion.js, 
autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, 
droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, 
effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, 
effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, 
effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js, menu.js, 
progressbar.js, resizable.js, selectable.js, selectmenu.js, slider.js, 
sortable.js, spinner.js, tabs.js, tooltip.js
-* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
+* Includes: widget.js, keycode.js, widgets/mouse.js, widgets/slider.js
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
 
-(function(e){"function"==typeof 
define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function 
t(t,s){var 
n,a,o,r=t.nodeName.toLowerCase();return"area"===r?(n=t.parentNode,a=n.name,t.href&&a&&"map"===n.nodeName.toLowerCase()?(o=e("img[usemap='#"+a+"']")[0],!!o&&i(o)):!1):(/input|select|textarea|button|object/.test(r)?!t.disabled:"a"===r?t.href||s:s)&&i(t)}function
 i(t){return 
e.expr.filters.visible(t)&&!e(t).parents().addBack().filter(function(){return"hidden"===e.css(this,"visibility")}).length}function
 s(e){for(var 
t,i;e.length&&e[0]!==document;){if(t=e.css("position"),("absolute"===t||"relative"===t||"fixed"===t)&&(i=parseInt(e.css("zIndex"),10),!isNaN(i)&&0!==i))return
 i;e=e.parent()}return 0}function 
n(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",t
 
his._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNex
 
t:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},e.extend(this._defaults,this.regional[""]),this.regional.en=e.extend(!0,{},this.regional[""]),this.regional["en-US"]=e.extend(!0,{},this.regional.en),this.dpDiv=a(e(""))}function a(t){var i="button, 
.ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return 
t.delegate(i,"mouseout",function(){e(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-pr
 
ev")&&e(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).removeClass("ui-datepicker-next-hover")}).delegate(i,"mouseover",o)}function
 
o(){e.datepicker._isDisabledDatepicker(v.inline?v.dpDiv.parent()[0]:v.input[0])||(e(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),e(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&e(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).addClass("ui-datepicker-next-hover"))}function
 r(t,i

svn commit: r1772144 [13/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/open

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-server/src/site/xdoc/CallForLogo.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-server/src/site/xdoc/CallForLogo.xml?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-server/src/site/xdoc/CallForLogo.xml
 (original)
+++ 
openmeetings/application/trunk/openmeetings-server/src/site/xdoc/CallForLogo.xml
 Thu Dec  1 04:22:52 2016
@@ -49,7 +49,7 @@
var ib = 
e.closest('table').find('.logo-big');
var bi = $('#bannerLeft img');
bi.attr('src', ib.attr('src'));
-   bi[0].scrollIntoView();
+   $('.subhead')[0].scrollIntoView()
}
function applyLogoSmall(e) {
var pp = $('.powered-preview');
@@ -60,7 +60,7 @@
}
var ib = 
e.closest('table').find('.logo-square');
l.css('background-image', 'url(' + 
ib.attr('src') + ')');
-   l[0].scrollIntoView();
+   $('#Preview')[0].scrollIntoView();
}
//]]>

@@ -70,7 +70,7 @@



-   Apply
+   Apply


Author
@@ -82,7 +82,7 @@



-   Apply
+   Apply


Author
@@ -94,7 +94,7 @@



-   Apply
+   Apply


Author
@@ -106,7 +106,7 @@



-   Apply
+   Apply


Author
@@ -121,7 +121,7 @@



-   Apply
+   Apply


Author
@@ -133,7 +133,7 @@



-   Apply
+   Apply


Author
@@ -145,7 +145,7 @@



-   Apply
+   Apply


Author
@@ -157,7 +157,7 @@



-   Apply
+   

svn commit: r1772144 [2/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Added: 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/bootstrap.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/bootstrap.min.js?rev=1772144&view=auto
==
--- 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/bootstrap.min.js
 (added)
+++ 
openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/bootstrap.min.js
 Thu Dec  1 04:22:52 2016
@@ -0,0 +1,6 @@
+/*!
+* Bootstrap.js by @fat & @mdo
+* Copyright 2013 Twitter, Inc.
+* http://www.apache.org/licenses/LICENSE-2.0.txt
+*/
+!function(e){"use strict";e(function(){e.support.transition=function(){var 
e=function(){var 
e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"},n;for(n in 
t)if(e.style[n]!==undefined)return t[n]}();return 
e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var 
t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function
 s(){i.trigger("closed").remove()}var 
n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var
 r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var 
r=e(this),i=r.data("alert");i||r.data("alert",i=
 new n(this)),typeof 
t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return
 
e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use
 strict";var 
t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var
 
t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var
 
e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var
 n=e.fn.button;e.fn.button=function(n){return this.each(function(){var 
r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new 
t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.de
 
faults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return
 
e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var
 
n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use
 strict";var 
t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return
 
t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return
 
this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var
 n=this.getActiveIndex(),r=this;if(t>thi
 s.$items.length-1||t<0)return;return 
this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return
 t||(this.paused=!0),this.$element.find(".next, 
.prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return
 this.slide("next")},prev:function(){if(this.sliding)return;return 
this.slide("prev")},slide:function(t,n){var 
r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var
 t=e(a.$indicators.children(
 
)[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$elemen

svn commit: r1772144 [9/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/CallForLogo.xml?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/CallForLogo.xml
 Thu Dec  1 04:22:52 2016
@@ -49,7 +49,7 @@
var ib = 
e.closest('table').find('.logo-big');
var bi = $('#bannerLeft img');
bi.attr('src', ib.attr('src'));
-   bi[0].scrollIntoView();
+   $('.subhead')[0].scrollIntoView()
}
function applyLogoSmall(e) {
var pp = $('.powered-preview');
@@ -60,7 +60,7 @@
}
var ib = 
e.closest('table').find('.logo-square');
l.css('background-image', 'url(' + 
ib.attr('src') + ')');
-   l[0].scrollIntoView();
+   $('#Preview')[0].scrollIntoView();
}
//]]>

@@ -70,7 +70,7 @@



-   Apply
+   Apply


Author
@@ -82,7 +82,7 @@



-   Apply
+   Apply


Author
@@ -94,7 +94,7 @@



-   Apply
+   Apply


Author
@@ -106,7 +106,7 @@



-   Apply
+   Apply


Author
@@ -121,7 +121,7 @@



-   Apply
+   Apply


Author
@@ -133,7 +133,7 @@



-   Apply
+   Apply


Author
@@ -145,7 +145,7 @@



-   Apply
+   Apply


Author
@@ -157,7 +157,7 @@



-   Apply
+   

svn commit: r1772144 [7/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Modified: 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 (original)
+++ 
openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js
 Thu Dec  1 04:22:52 2016
@@ -1,13 +1,6 @@
-/*! jQuery UI - v1.11.2 - 2014-10-16
+/*! jQuery UI - v1.12.1 - 2016-11-29
 * http://jqueryui.com
-* Includes: core.js, widget.js, mouse.js, position.js, accordion.js, 
autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, 
droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, 
effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, 
effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, 
effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js, menu.js, 
progressbar.js, resizable.js, selectable.js, selectmenu.js, slider.js, 
sortable.js, spinner.js, tabs.js, tooltip.js
-* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
+* Includes: widget.js, keycode.js, widgets/mouse.js, widgets/slider.js
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
 
-(function(e){"function"==typeof 
define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function 
t(t,s){var 
n,a,o,r=t.nodeName.toLowerCase();return"area"===r?(n=t.parentNode,a=n.name,t.href&&a&&"map"===n.nodeName.toLowerCase()?(o=e("img[usemap='#"+a+"']")[0],!!o&&i(o)):!1):(/input|select|textarea|button|object/.test(r)?!t.disabled:"a"===r?t.href||s:s)&&i(t)}function
 i(t){return 
e.expr.filters.visible(t)&&!e(t).parents().addBack().filter(function(){return"hidden"===e.css(this,"visibility")}).length}function
 s(e){for(var 
t,i;e.length&&e[0]!==document;){if(t=e.css("position"),("absolute"===t||"relative"===t||"fixed"===t)&&(i=parseInt(e.css("zIndex"),10),!isNaN(i)&&0!==i))return
 i;e=e.parent()}return 0}function 
n(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",t
 
his._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNex
 
t:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},e.extend(this._defaults,this.regional[""]),this.regional.en=e.extend(!0,{},this.regional[""]),this.regional["en-US"]=e.extend(!0,{},this.regional.en),this.dpDiv=a(e(""))}function a(t){var i="button, 
.ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return 
t.delegate(i,"mouseout",function(){e(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-pr
 
ev")&&e(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).removeClass("ui-datepicker-next-hover")}).delegate(i,"mouseover",o)}function
 
o(){e.datepicker._isDisabledDatepicker(v.inline?v.dpDiv.parent()[0]:v.input[0])||(e(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),e(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&e(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).addClass("ui-datepicker-next-hover"))}function
 r(t,i

svn commit: r1772144 [12/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/open

2016-11-30 Thread solomax
Added: 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery.min.js
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery.min.js?rev=1772144&view=auto
==
--- 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery.min.js
 (added)
+++ 
openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery.min.js
 Thu Dec  1 04:22:52 2016
@@ -0,0 +1,7 @@
+/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+//@ sourceMappingURL=jquery.min.map
+*/(function(e,t){var n,r,i=typeof 
t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return
 new 
b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return
 
t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var
 i,a;if(!e)return this;if("string"==typeof e)
 
{if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n
 instanceof 
b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i
 in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return 
this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return 
r.find(e);this.length=1,this[0]=a}return 
this.context=o,this.selector=e,this}return 
e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return
 this.length},toArray:function(){return h.call(this)},get:function(e){return 
null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var
 t=b.merge(this.constructor(),e);return 
t.prevObject=this,t.context=this.context,t},each:funct
 ion(e,t){return b.each(this,e,t)},ready:function(e){return 
b.ready.promise().done(e),this},slice:function(){return 
this.pushStack(h.apply(this,arguments))},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var 
t=this.length,n=+e+(0>e?t:0);return 
this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return 
this.pushStack(b.map(this,function(t,n){return 
e.call(t,n,t)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var
 
e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof
 s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof 
s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i
 in 
o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return
 s},b.extend({noConflict:fun
 ction(t){return 
e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return
 
setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return
 
null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return
 null==e?e+"":"object"==typeof e||"function"==typeof 
e?l[m.call(e)]||"object":typeof 
e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var
 r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t 
in e)return!1;r
 eturn!0},error:function(e){throw 
Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return 
null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return 
r?[t.createElemen

svn commit: r1772144 [1/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/openm

2016-11-30 Thread solomax
Author: solomax
Date: Thu Dec  1 04:22:52 2016
New Revision: 1772144

URL: http://svn.apache.org/viewvc?rev=1772144&view=rev
Log:
[OPENMEETINGS-1515] site is now generated using reflow skin

Added:

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/css/bootstrap-responsive.min.css

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/css/bootstrap.min.css

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/bootstrap.min.js

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/html5.js

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery.min.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/bootstrap-responsive.min.css

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/bootstrap.min.css

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/bootstrap.min.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/html5.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery.min.js

openmeetings/application/trunk/openmeetings-server/src/site/resources/css/bootstrap-responsive.min.css

openmeetings/application/trunk/openmeetings-server/src/site/resources/css/bootstrap.min.css

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/bootstrap.min.js

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/html5.js

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery.min.js
Modified:

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/css/jquery-ui.css

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/css/netcalc.css

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/css/site.css

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/netcalc.js

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/resources/js/site.js

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/site.xml

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/CallForLogo.xml

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/NetworkCalculator.xml

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/OpenOfficeConverter.xml

openmeetings/application/branches/3.1.x/openmeetings-server/src/site/xdoc/index.xml
openmeetings/application/branches/3.1.x/pom.xml
openmeetings/application/branches/3.1.x/src/site/resources/site.xml
openmeetings/application/branches/3.1.x/src/site/site.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/jquery-ui.css

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/netcalc.css

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/css/site.css

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/jquery-ui.min.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/netcalc.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/resources/js/site.js

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/site.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/CallForLogo.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/ConferenceRoomLayoutOptions.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/NetworkCalculator.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/OpenOfficeConverter.xml

openmeetings/application/branches/3.2.x/openmeetings-server/src/site/xdoc/index.xml
openmeetings/application/branches/3.2.x/pom.xml
openmeetings/application/branches/3.2.x/src/site/resources/site.xml
openmeetings/application/branches/3.2.x/src/site/site.xml

openmeetings/application/trunk/openmeetings-server/src/site/resources/css/jquery-ui.css

openmeetings/application/trunk/openmeetings-server/src/site/resources/css/netcalc.css

openmeetings/application/trunk/openmeetings-server/src/site/resources/css/site.css

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/jquery-ui.min.js

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/netcalc.js

openmeetings/application/trunk/openmeetings-server/src/site/resources/js/site.js
openmeetings/application/trunk/openmeetings-server/src/site/site.xml

openmeetings/application/tr

svn commit: r1772144 [10/13] - in /openmeetings/application: branches/3.1.x/ branches/3.1.x/openmeetings-server/src/site/ branches/3.1.x/openmeetings-server/src/site/resources/css/ branches/3.1.x/open

2016-11-30 Thread solomax
Modified: 
openmeetings/application/trunk/openmeetings-server/src/site/resources/css/jquery-ui.css
URL: 
http://svn.apache.org/viewvc/openmeetings/application/trunk/openmeetings-server/src/site/resources/css/jquery-ui.css?rev=1772144&r1=1772143&r2=1772144&view=diff
==
--- 
openmeetings/application/trunk/openmeetings-server/src/site/resources/css/jquery-ui.css
 (original)
+++ 
openmeetings/application/trunk/openmeetings-server/src/site/resources/css/jquery-ui.css
 Thu Dec  1 04:22:52 2016
@@ -1,8 +1,8 @@
-/*! jQuery UI - v1.11.2 - 2014-10-16
+/*! jQuery UI - v1.12.1 - 2016-11-29
 * http://jqueryui.com
-* Includes: core.css, accordion.css, autocomplete.css, button.css, 
datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, 
resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, 
spinner.css, tabs.css, tooltip.css, theme.css
-* To view and modify this theme, visit 
http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ff&iconColorHeader=ff&bgColorContent=ee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dd&fcContent=33&iconColorContent=22&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighl
 
ight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ff&iconColorError=ffd27a&bgColorOverlay=66&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=00&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
-* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
+* Includes: core.css, slider.css, theme.css
+* To view and modify this theme, visit 
http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=66&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aa&iconColorError=cc&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ff&fcActive=ff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=55&fcHover=2b2b2b&borderColorHover=cc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=77&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=44&fcContent=33&borderColorContent=dd&bgTextureContent=flat&bgColorContent=ff&ico
 
nColorHeader=44&fcHeader=33&borderColorHeader=dd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
 
 /* Layout helpers
 --*/
@@ -38,9 +38,6 @@
 .ui-helper-clearfix:after {
clear: both;
 }
-.ui-helper-clearfix {
-   min-height: 0; /* support: IE7 */
-}
 .ui-helper-zfix {
width: 100%;
height: 100%;
@@ -60,20 +57,27 @@
 --*/
 .ui-state-disabled {
cursor: default !important;
+   pointer-events: none;
 }
 
 
 /* Icons
 --*/
-
-/* states and images */
 .ui-icon {
-   display: block;
+   display: inline-block;
+   vertical-align: middle;
+   margin-top: -.25em;
+   position: relative;
text-indent: -9px;
overflow: hidden;
background-repeat: no-repeat;
 }
 
+.ui-widget-icon-block {
+   left: 50%;
+   margin-left: -8px;
+   display: block;
+}
 
 /* Misc visuals
 --*/
@@ -86,570 +90,6 @@
width: 100%;
height: 100%;
 }
-.ui-accordion .ui-accordion-header {
-   display: block;
-   cursor: pointer;
-   position: relative;
-   margin: 2px 0 0 0;
-   padding: .5em .5em .5em .7em;
-   min-height: 0; /* support: IE7 */
-   font-size: 100%;
-}
-.ui-accordion .ui-accordion-icons {
-