svn commit: r1652359 - in /openmeetings/branches/3.0.x: .classpath build.xml

2015-01-16 Thread solomax
Author: solomax
Date: Fri Jan 16 08:27:15 2015
New Revision: 1652359

URL: http://svn.apache.org/r1652359
Log:
Redundant libraries are excluded from screensharing and classpath

Modified:
openmeetings/branches/3.0.x/.classpath
openmeetings/branches/3.0.x/build.xml

Modified: openmeetings/branches/3.0.x/.classpath
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/.classpath?rev=1652359r1=1652358r2=1652359view=diff
==
--- openmeetings/branches/3.0.x/.classpath (original)
+++ openmeetings/branches/3.0.x/.classpath Fri Jan 16 08:27:15 2015
@@ -61,7 +61,6 @@
classpathentry kind=lib 
path=build/red5/server/dist/plugins/tomcat-embed-core.jar/
classpathentry kind=lib 
path=build/red5/server/dist/lib/bcprov-jdk15on-1.51.jar/
classpathentry kind=lib 
path=build/red5/server/dist/lib/cglib-nodep-2.2.2.jar/
-   classpathentry kind=lib 
path=build/red5/client/dist/red5-client-jar-1.0.4-RELEASE.jar/
classpathentry kind=con 
path=org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7
attributes
attribute name=owner.project.facets value=java/

Modified: openmeetings/branches/3.0.x/build.xml
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/build.xml?rev=1652359r1=1652358r2=1652359view=diff
==
--- openmeetings/branches/3.0.x/build.xml (original)
+++ openmeetings/branches/3.0.x/build.xml Fri Jan 16 08:27:15 2015
@@ -332,7 +332,6 @@
fileset dir=${red5.server.lib} 
includes=mina-core*.jar /
fileset dir=${red5.server.lib} 
includes=red5-io*.jar /
fileset dir=${red5.server.lib} 
includes=red5-server-common*.jar /
-   fileset dir=${red5.lib} includes=red5-server.jar /
fileset dir=${red5.client.lib} includes=red5*.jar 
/
/copy
fileset id=screenshare.jars dir=${screenshare.out.dir} 
casesensitive=yes




svn commit: r1652366 - /openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java

2015-01-16 Thread vdegtyarev
Author: vdegtyarev
Date: Fri Jan 16 08:43:33 2015
New Revision: 1652366

URL: http://svn.apache.org/r1652366
Log:
openmeetings - 954 : Additional fix - Mobile video is displayed correctly in 
the interview room.

Modified:

openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java

Modified: 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java?rev=1652366r1=1652365r2=1652366view=diff
==
--- 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
 (original)
+++ 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
 Fri Jan 16 08:43:33 2015
@@ -134,6 +134,7 @@ public class MobileService {
add(map, login, c.getUsername());
add(map, email, c.getEmail());
add(map, avsettings, 
c.getAvsettings());
+   add(map, interviewPodId, 
c.getInterviewPodId());
result.add(map);
}
}
@@ -208,8 +209,9 @@ public class MobileService {
} else if (pods[1]  0) {
c.setInterviewPodId(2);
} else {
-   isInterview = true;
+   c.setInterviewPodId(-1);
}
+   isInterview = true;
}
 //TODO check if we need anything here
long broadcastId = scopeAdapter.getBroadCastId();
@@ -226,12 +228,15 @@ public class MobileService {
return result;
}
 
-   public MapString, Object updateAvMode(String avMode, String width, 
String height) {
+   public MapString, Object updateAvMode(String avMode, String width, 
String height, Integer interviewPodId) {
IConnection current = Red5.getConnectionLocal();
Client c = 
sessionManager.getClientByStreamId(current.getClient().getId(), null);
c.setAvsettings(avMode);
c.setVWidth(Integer.parseInt(width));
c.setVHeight(Integer.parseInt(height));
+   if (interviewPodId  0) {
+   c.setInterviewPodId(interviewPodId);
+   }
sessionManager.updateClientByStreamId(c.getStreamid(), c, 
false, null);
HashMapString, Object hsm = new HashMapString, Object();
hsm.put(client, c);




svn commit: r1652367 - /openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java

2015-01-16 Thread vdegtyarev
Author: vdegtyarev
Date: Fri Jan 16 08:44:22 2015
New Revision: 1652367

URL: http://svn.apache.org/r1652367
Log:
Merge openmeetings - 954 : Additional fix - Mobile video is displayed correctly 
in the interview room.

Modified:

openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java

Modified: 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
URL: 
http://svn.apache.org/viewvc/openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java?rev=1652367r1=1652366r2=1652367view=diff
==
--- 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
 (original)
+++ 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
 Fri Jan 16 08:44:22 2015
@@ -133,6 +133,7 @@ public class MobileService {
add(map, login, c.getUsername());
add(map, email, c.getEmail());
add(map, avsettings, 
c.getAvsettings());
+   add(map, interviewPodId, 
c.getInterviewPodId());
result.add(map);
}
}
@@ -207,8 +208,9 @@ public class MobileService {
} else if (pods[1]  0) {
c.setInterviewPodId(2);
} else {
-   isInterview = true;
+   c.setInterviewPodId(-1);
}
+   isInterview = true;
}
 //TODO check if we need anything here
long broadcastId = scopeAdapter.getBroadCastId();
@@ -225,12 +227,15 @@ public class MobileService {
return result;
}
 
-   public MapString, Object updateAvMode(String avMode, String width, 
String height) {
+   public MapString, Object updateAvMode(String avMode, String width, 
String height, Integer interviewPodId) {
IConnection current = Red5.getConnectionLocal();
Client c = 
sessionManager.getClientByStreamId(current.getClient().getId(), null);
c.setAvsettings(avMode);
c.setVWidth(Integer.parseInt(width));
c.setVHeight(Integer.parseInt(height));
+   if (interviewPodId  0) {
+   c.setInterviewPodId(interviewPodId);
+   }
sessionManager.updateClientByStreamId(c.getStreamid(), c, 
false, null);
HashMapString, Object hsm = new HashMapString, Object();
hsm.put(client, c);




[jira] [Commented] (OPENMEETINGS-1145) Video got struck

2015-01-16 Thread Maxim Solodovnik (JIRA)

[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14280014#comment-14280014
 ] 

Maxim Solodovnik commented on OPENMEETINGS-1145:


It's not clear what do you mean by Demo server looks fine. But it doesn;t work 
for me either?
What error do you expecting on demo server? (detailed description, maybe video 
would be great)

 Video got struck
 

 Key: OPENMEETINGS-1145
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1145
 Project: Openmeetings
  Issue Type: Task
  Components: HTML5/Room
Affects Versions: 3.0.3
 Environment: Linux CentOs
Reporter: Peter Martin
Assignee: Maxim Solodovnik
Priority: Blocker
  Labels: meeting, video, videodisplay
 Attachments: OpenMeeting-VideoStuck.txt, OpenMeeting.log


 I have configured open meeting current release, but I am facing major 
 problems while video streaming. It is always getting struck after 1 or 2 
 mins. Please suggest me how to resolve this problem. which properties or 
 configuration file do I need to change? 



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


[jira] [Comment Edited] (OPENMEETINGS-1145) Video got struck

2015-01-16 Thread Maxim Solodovnik (JIRA)

[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14280014#comment-14280014
 ] 

Maxim Solodovnik edited comment on OPENMEETINGS-1145 at 1/16/15 9:20 AM:
-

It's not clear what do you mean by Demo server looks fine. But it doesn;t work 
for me either?
What error do you expecting on demo server? (detailed description, maybe video 
would be great)

port modification should affect nothing (in case changes in red5.properties are 
correctly reflected in config.xml)


was (Author: solomax):
It's not clear what do you mean by Demo server looks fine. But it doesn;t work 
for me either?
What error do you expecting on demo server? (detailed description, maybe video 
would be great)

 Video got struck
 

 Key: OPENMEETINGS-1145
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1145
 Project: Openmeetings
  Issue Type: Task
  Components: HTML5/Room
Affects Versions: 3.0.3
 Environment: Linux CentOs
Reporter: Peter Martin
Assignee: Maxim Solodovnik
Priority: Blocker
  Labels: meeting, video, videodisplay
 Attachments: OpenMeeting-VideoStuck.txt, OpenMeeting.log


 I have configured open meeting current release, but I am facing major 
 problems while video streaming. It is always getting struck after 1 or 2 
 mins. Please suggest me how to resolve this problem. which properties or 
 configuration file do I need to change? 



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


[jira] [Resolved] (OPENMEETINGS-1119) flash player and micro test problem

2015-01-16 Thread Maxim Solodovnik (JIRA)

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

Maxim Solodovnik resolved OPENMEETINGS-1119.

Resolution: Incomplete
  Assignee: Maxim Solodovnik

no steps to reproduce, no answer from user

 flash player and micro test problem
 ---

 Key: OPENMEETINGS-1119
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1119
 Project: Openmeetings
  Issue Type: Bug
  Components: Audio/Video
 Environment: flash player/ micro test
Reporter: poulain
Assignee: Maxim Solodovnik
 Attachments: capture 2.png, capture bug test micro.png


 I did go to flash player site to refuse /allow... and i still have those 
 problem: 
 = I cannot use my micro, because it is not possible for me to click on the 
 first window which appears that is a mico test. You can see it on the doc 
 attached (screen print) . so i made test with collegues, i can listen to them 
 but they cannot to me  



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


svn commit: r1652385 - /openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java

2015-01-16 Thread vdegtyarev
Author: vdegtyarev
Date: Fri Jan 16 10:57:59 2015
New Revision: 1652385

URL: http://svn.apache.org/r1652385
Log:
openmeetings - 954 : Additional fix - Mobile video is displayed correctly in 
the interview room.

Modified:

openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java

Modified: 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java?rev=1652385r1=1652384r2=1652385view=diff
==
--- 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
 (original)
+++ 
openmeetings/branches/3.0.x/src/main/java/org/apache/openmeetings/remote/MobileService.java
 Fri Jan 16 10:57:59 2015
@@ -147,6 +147,7 @@ public class MobileService {
room.put(id, r.getRooms_id());
room.put(name, r.getName());
room.put(type, type);
+   room.put(roomTypeId, r.getRoomtype().getRoomtypes_id());
if (org != null) {
room.put(org, org);
}
@@ -191,28 +192,8 @@ public class MobileService {

public MapString, Object roomConnect(String SID, Long userId) {
MapString, Object result = new HashtableString, Object();
-   boolean isInterview = false;
User u = userDao.get(userId);
Client c = scopeAdapter.setUsernameReconnect(SID, userId, 
u.getLogin(), u.getFirstname(), u.getLastname(), u.getPictureuri());
-   // TODO check interview room
-   Room r = roomDao.get(Long.parseLong(c.getScope()));
-   if (r.getRoomtype().getRoomtypes_id() == 4) {
-   int pods[] = {-1, -1};
-   for (Client rcl : 
sessionManager.getClientListByRoom(r.getRooms_id())) {
-   if (!rcl.getStreamid().equals(c.getStreamid()) 
-rcl.getInterviewPodId() != 
null) {
-   pods[rcl.getInterviewPodId() - 1] = 1;
-   }
-   }
-   if (pods[0]  0) { 
-   c.setInterviewPodId(1);
-   } else if (pods[1]  0) {
-   c.setInterviewPodId(2);
-   } else {
-   c.setInterviewPodId(-1);
-   }
-   isInterview = true;
-   }
 //TODO check if we need anything here
long broadcastId = scopeAdapter.getBroadCastId();
c.setSipTransport(true);
@@ -221,7 +202,6 @@ public class MobileService {
c.setBroadCastID(broadcastId);
c.setIsBroadcasting(true);
sessionManager.updateClientByStreamId(c.getStreamid(), c, 
false, null);
-   result.put(isInterview, isInterview);
result.put(broadcastId, broadcastId);
 
scopeAdapter.syncMessageToCurrentScope(addNewUser, c, false, 
false);




svn commit: r1652386 - /openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java

2015-01-16 Thread vdegtyarev
Author: vdegtyarev
Date: Fri Jan 16 10:58:48 2015
New Revision: 1652386

URL: http://svn.apache.org/r1652386
Log:
Merge openmeetings - 954 : Additional fix - Mobile video is displayed correctly 
in the interview room.

Modified:

openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java

Modified: 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
URL: 
http://svn.apache.org/viewvc/openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java?rev=1652386r1=1652385r2=1652386view=diff
==
--- 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
 (original)
+++ 
openmeetings/trunk/singlewebapp/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/MobileService.java
 Fri Jan 16 10:58:48 2015
@@ -146,6 +146,7 @@ public class MobileService {
room.put(id, r.getId());
room.put(name, r.getName());
room.put(type, type);
+   room.put(roomTypeId, r.getRoomtype().getId());
if (org != null) {
room.put(org, org);
}
@@ -190,28 +191,8 @@ public class MobileService {

public MapString, Object roomConnect(String SID, Long userId) {
MapString, Object result = new HashtableString, Object();
-   boolean isInterview = false;
User u = userDao.get(userId);
Client c = scopeAdapter.setUsernameReconnect(SID, userId, 
u.getLogin(), u.getFirstname(), u.getLastname(), u.getPictureuri());
-   // TODO check interview room
-   Room r = roomDao.get(Long.parseLong(c.getScope()));
-   if (r.getRoomtype().getId() == 4) {
-   int pods[] = {-1, -1};
-   for (Client rcl : 
sessionManager.getClientListByRoom(r.getId())) {
-   if (!rcl.getStreamid().equals(c.getStreamid()) 
-rcl.getInterviewPodId() != 
null) {
-   pods[rcl.getInterviewPodId() - 1] = 1;
-   }
-   }
-   if (pods[0]  0) { 
-   c.setInterviewPodId(1);
-   } else if (pods[1]  0) {
-   c.setInterviewPodId(2);
-   } else {
-   c.setInterviewPodId(-1);
-   }
-   isInterview = true;
-   }
 //TODO check if we need anything here
long broadcastId = scopeAdapter.getBroadCastId();
c.setSipTransport(true);
@@ -220,7 +201,6 @@ public class MobileService {
c.setBroadCastID(broadcastId);
c.setIsBroadcasting(true);
sessionManager.updateClientByStreamId(c.getStreamid(), c, 
false, null);
-   result.put(isInterview, isInterview);
result.put(broadcastId, broadcastId);
 
scopeAdapter.syncMessageToCurrentScope(addNewUser, c, false, 
false);




svn commit: r1652387 - in /openmeetings: branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/ope

2015-01-16 Thread solomax
Author: solomax
Date: Fri Jan 16 11:05:14 2015
New Revision: 1652387

URL: http://svn.apache.org/r1652387
Log:
Typo in ConverterProcessResult is corrected

Modified:

openmeetings/branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java

openmeetings/trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/openmeetings/util/process/ConverterProcessResult.java

Modified: 
openmeetings/branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
URL: 
http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java?rev=1652387r1=1652386r2=1652387view=diff
==
--- 
openmeetings/branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
 (original)
+++ 
openmeetings/branches/3.0.x/src/util/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
 Fri Jan 16 11:05:14 2015
@@ -99,13 +99,12 @@ public class ConverterProcessResult {
}
 
public String buildLogMessage() {
-   StringBuilder strBuilder = new StringBuilder();
-   strBuilder.append(process: 
).append(getProcess()).append(\r\n);
-   strBuilder.append(command: 
).append(getCommand()).append(\r\n);
-   strBuilder.append(exception: 
).append(getException()).append(\r\n);
-   strBuilder.append(error: ).append(getError()).append(\r\n);
-   strBuilder.append(exitValue: 
).append(getException()).append(\r\n);
-   strBuilder.append(out: ).append(getOut()).append(\r\n);
-   return strBuilder.toString();
+   return new StringBuilder()
+   .append(process: ).append(process).append(\r\n)
+   .append(command: ).append(command).append(\r\n)
+   .append(exception: ).append(exception).append(\r\n)
+   .append(error: ).append(error).append(\r\n)
+   .append(exitValue: ).append(exitValue).append(\r\n)
+   .append(out: ).append(out).append(\r\n).toString();
}
 }

Modified: 
openmeetings/trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
URL: 
http://svn.apache.org/viewvc/openmeetings/trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/openmeetings/util/process/ConverterProcessResult.java?rev=1652387r1=1652386r2=1652387view=diff
==
--- 
openmeetings/trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
 (original)
+++ 
openmeetings/trunk/singlewebapp/openmeetings-util/src/main/java/org/apache/openmeetings/util/process/ConverterProcessResult.java
 Fri Jan 16 11:05:14 2015
@@ -99,13 +99,12 @@ public class ConverterProcessResult {
}
 
public String buildLogMessage() {
-   StringBuilder strBuilder = new StringBuilder();
-   strBuilder.append(process: 
).append(getProcess()).append(\r\n);
-   strBuilder.append(command: 
).append(getCommand()).append(\r\n);
-   strBuilder.append(exception: 
).append(getException()).append(\r\n);
-   strBuilder.append(error: ).append(getError()).append(\r\n);
-   strBuilder.append(exitValue: 
).append(getException()).append(\r\n);
-   strBuilder.append(out: ).append(getOut()).append(\r\n);
-   return strBuilder.toString();
+   return new StringBuilder()
+   .append(process: ).append(process).append(\r\n)
+   .append(command: ).append(command).append(\r\n)
+   .append(exception: ).append(exception).append(\r\n)
+   .append(error: ).append(error).append(\r\n)
+   .append(exitValue: ).append(exitValue).append(\r\n)
+   .append(out: ).append(out).append(\r\n).toString();
}
 }




[jira] [Commented] (OPENMEETINGS-344) Screen Sharing with Dual Monitors - cutting screen down does not work

2015-01-16 Thread Maxim Solodovnik (JIRA)

[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14280122#comment-14280122
 ] 

Maxim Solodovnik commented on OPENMEETINGS-344:
---

I currently using 2 monitors and see no issues with screen-sharing app on 
Ubuntu.
Maybe you can provide screenshot(s) so I can understand the problem you are 
facing?

 Screen Sharing with Dual Monitors - cutting screen down does not work
 -

 Key: OPENMEETINGS-344
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-344
 Project: Openmeetings
  Issue Type: Bug
  Components: Audio/Video, Screen-sharing
Affects Versions: 2.1.0 Apache Release
 Environment: XUbuntu test conference with Windows 7 (running on my 
 machine under KVM) both machines running firefox
 Linux Firefox 13.01
 Windows Firefox 9.01
 Dual 1920x1080 Monitors 
 Windows and Linux both able to run full screen with 2 monitor setup mirrored 
 in both OS's
 i.e 2 QEMU windows both at 1920x1080 for windows that can be maximised to the 
 Display they are running on.
Reporter: Ronald Duncan
Priority: Minor
 Fix For: 3.1.0


 signed up as user on Ubuntu,  ( apacheopenmeet...@ronaldduncan.com) invited 
 windows vm to join.
 Windows Vm joined the meeting
 White board and audio worked
 Desktop sharing
 1st Try (with default settings)
 Got a recursion where the right hand screen which had windows on was picked 
 as the default screen and the got a screen within screen with in screen as 
 the windows screen in my right hand monitor was shared and then kept being 
 updated
 2nd Try (tried selecting other screen to share)
 Probably got this wrong and could not get to share
 3rd Try (reduced the size of the area to share to left hand half of screen)
 Got my windows screens but with a distortion so that the full screen was 
 shown in the left hand side and the right was blank.
 This may just be a bug that occures with KVM and QEMU where you are picking 
 up the QEMU screen rather than the linux screen.
 I have recorded a couple of videos of this happening.
 This is running the current version on 
 http://demo.openmeetings.de/openmeetings/
 PS Really like your project.



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


[jira] [Resolved] (OPENMEETINGS-623) OpenMeetings怎么修改发送邮件的格式

2015-01-16 Thread Maxim Solodovnik (JIRA)

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

Maxim Solodovnik resolved OPENMEETINGS-623.
---
   Resolution: Fixed
Fix Version/s: 3.0.4
 Assignee: Maxim Solodovnik

All emails being sent are now editable using email templates.
Please check if it works for you

 OpenMeetings怎么修改发送邮件的格式
 ---

 Key: OPENMEETINGS-623
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-623
 Project: Openmeetings
  Issue Type: Improvement
Affects Versions: 3.0.0
Reporter: Zeke Lin
Assignee: Maxim Solodovnik
 Fix For: 3.0.4, 3.1.0


 如题,本人英文不太好,请见谅;
 日常工作中使用OpenMeetings还是挺好用的,特别是邮件通知功能,可以让与会者直接进入会议室,这个功能必须赞一个;
 但是目前的邮件格式都是外国人用的,包括日期、标题等等,想请问怎样可以修改邮件的格式,谢谢。
 PS:领导都看不懂英文



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


[jira] [Commented] (OPENMEETINGS-547) Deferred recordings converting possibility.

2015-01-16 Thread Linas Redeckis (JIRA)

[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14280134#comment-14280134
 ] 

Linas Redeckis commented on OPENMEETINGS-547:
-

maybe not. but still, if i have slow computer, and there's few users recording 
1 hour long videos. so it would be hard to recompile all these concurent videos 
in 20min all at once.

I will try to measure how long does it take to do 1 hour video on 3GHz Pentium 
4.
does anyone else use old hardware? : )

 Deferred recordings converting possibility.
 ---

 Key: OPENMEETINGS-547
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-547
 Project: Openmeetings
  Issue Type: Improvement
  Components: Recordings, Screen-sharing
Affects Versions: 2.1.0 Apache Release
Reporter: Irina Arkhipets
Assignee: Maxim Solodovnik
Priority: Minor

 It would be nice to have deferred recordings converting possibility in 
 OpenMeetings.
 Right now recording processing and converting starts just after its stopping. 
 It can slow down the conferences whish are running at the same moment.
 So, my suggestion is to add a possibility to schedule the start of the 
 converting process later.



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


[jira] [Commented] (OPENMEETINGS-1146) RTMPS uses rtmpport

2015-01-16 Thread JIRA

[ 
https://issues.apache.org/jira/browse/OPENMEETINGS-1146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14280633#comment-14280633
 ] 

Hüber Erik commented on OPENMEETINGS-1146:
--

sorry for reopening, but the solution is not fully OK:
URL OK, but still can not connect

tested with 3.0.4-SNAPSHOT 1652390 16-January-2015
linux and windows7 as well

from report:
Port: : start test... rtmps://localhost:8443/openmeetings/hibernate
but still shows as red box means can not connect.

please advise what kind of log you need for further investigation
tnx

 RTMPS uses rtmpport
 ---

 Key: OPENMEETINGS-1146
 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-1146
 Project: Openmeetings
  Issue Type: Bug
  Components: SWF10Video
Affects Versions: 3.0.3
 Environment: 1st test
 linux: server(debian 7.7, mysql, red5), client iceweasel (everything on same 
 host)
 2nd test
 win 7: same bin+config, same DB mysql, only diff openmeetings startend on 
 windows, client chrome, firefox
Reporter: Hüber Erik
Assignee: Maxim Solodovnik
  Labels: patch
 Fix For: 3.0.4, 3.1.0


 fresh install binary from the repository (v 3.0.3)
 without ssl everything is fine
 I followed the description in.../RTMPSAndHTTPS.html (only RTMPS part)
 the connection test with iceweasel
 http://localhost:5080/openmeetings/swf?6swf=networktesting.swf10.swf
 output:
 ...
 Port: : start test... rtmps://localhost:1935/openmeetings/hibernate
 ...
 it seams that the variable rtmpport (from 
 webapps/openmeetings/public/config.xml) is used:
 rtmpport1935/rtmpport
 if I only change this value for dummy 1930, the URL changes as well
 if I change
 rtmpport=rtmpsport=8443
 it works neighter
 win7, linux same result.
 tnx in advance



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