Modified: openmeetings/trunk/site/openmeetings-flash/project-summary.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-flash/project-summary.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-flash/project-summary.html (original) +++ openmeetings/trunk/site/openmeetings-flash/project-summary.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li>
Modified: openmeetings/trunk/site/openmeetings-flash/rat-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-flash/rat-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-flash/rat-report.html (original) +++ openmeetings/trunk/site/openmeetings-flash/rat-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Rat (Release Audit Tool) results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -181,11 +181,11 @@ ***************************************************** Summary ------- -Generated at: 2014-09-17T19:25:15+07:00 +Generated at: 2014-10-16T11:46:10+07:00 Notes: 0 Binaries: 6 Archives: 0 -Standards: 15 +Standards: 16 Apache Licensed: 14 Generated Documents: 0 @@ -193,13 +193,14 @@ Generated Documents: 0 JavaDocs are generated and so license header is optional Generated files do not required license headers -0 Unknown Licenses +1 Unknown Licenses ******************************* Unapproved licenses: /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/test/flex/org/test/TestApp.as + /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/flex/org/apache/openmeetings/OmVideo.as ******************************* @@ -229,13 +230,68 @@ Archives: AL /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/swf10/networkTesting/tests/PingTest.lzx AL /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/swf10/networkTesting/tests/NetworkTest.lzx AL /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/swf10/networkTesting/tests/BaseURLLoadTest.lzx + !????? /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/flex/org/apache/openmeetings/OmVideo.as AL /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/flex/main.mxml AL /home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/openlaszlo.xml ***************************************************** Printing headers for files without AL header... - </pre></div></div> + +======================================================================= +==/home/solomax/work/openmeetings/trunk/singlewebapp/openmeetings-flash/src/main/flex/org/apache/openmeetings/OmVideo.as +======================================================================= +/** + * Created by solomax on 9/17/2014. + */ +package org.apache.openmeetings { +import flash.events.AsyncErrorEvent; +import flash.events.NetStatusEvent; +import flash.media.Camera; +import flash.media.H264Level; +import flash.media.H264Profile; +import flash.media.H264VideoStreamSettings; +import flash.media.Microphone; +import flash.media.Video; +import flash.media.VideoStreamSettings; +import flash.net.NetConnection; +import flash.net.NetStream; +import mx.core.UIComponent; + +public class OmVideo { + public static const CODEC_H264:String = "h264"; + public static const PLAY:String = "play"; + public static const BROADCAST:String = "broadcast"; + public static const RECORD:String = "record"; + public static const LIVE:String = "live"; + private var vid:Video; + private var ui:UIComponent; + private var nc:NetConnection; + private var ns:NetStream; + public var width:int; + public var height:int; + private var mode:String; + private var codec:String; + private var url:String; + + public function OmVideo(ui:UIComponent, codec:String, url:String) { + this.ui = ui; + this.codec = codec; + this.url = url; + } + + private function getVideo():Video { + if (vid == null) { + vid = new Video(); + vid.width = width; + vid.height = height; + ui.addChild(vid); + } + return vid; + } + + public function resize(width:int, height:int):void { +</pre></div></div> </div> </div> </div> Modified: openmeetings/trunk/site/openmeetings-flash/source-repository.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-flash/source-repository.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-flash/source-repository.html (original) +++ openmeetings/trunk/site/openmeetings-flash/source-repository.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Source Repository</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-flash/surefire-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-flash/surefire-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-flash/surefire-report.html (original) +++ openmeetings/trunk/site/openmeetings-flash/surefire-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Surefire Report</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-flash/team-list.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-flash/team-list.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-flash/team-list.html (original) +++ openmeetings/trunk/site/openmeetings-flash/team-list.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Team list</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/dependencies.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/dependencies.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/dependencies.html (original) +++ openmeetings/trunk/site/openmeetings-install/dependencies.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/dependency-convergence.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/dependency-convergence.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/dependency-convergence.html (original) +++ openmeetings/trunk/site/openmeetings-install/dependency-convergence.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -452,7 +452,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -464,7 +464,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -476,7 +476,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -524,7 +524,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">1.0.0-M23</td> +<td width="25%">1.0.0-M24</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-core">org.apache.openmeetings:openmeetings-core</a></li></ol></td></tr></table></td></tr></table></div> Modified: openmeetings/trunk/site/openmeetings-install/dependency-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/dependency-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/dependency-management.html (original) +++ openmeetings/trunk/site/openmeetings-install/dependency-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -195,19 +195,19 @@ <tr class="a"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-frontend-jaxrs</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="b"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-frontend-jaxws</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="a"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-rs-extension-providers</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="b"> Modified: openmeetings/trunk/site/openmeetings-install/distribution-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/distribution-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/distribution-management.html (original) +++ openmeetings/trunk/site/openmeetings-install/distribution-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Distribution Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/index.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/index.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/index.html (original) +++ openmeetings/trunk/site/openmeetings-install/index.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/integration.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/integration.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/integration.html (original) +++ openmeetings/trunk/site/openmeetings-install/integration.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Continuous Integration</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/issue-tracking.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/issue-tracking.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/issue-tracking.html (original) +++ openmeetings/trunk/site/openmeetings-install/issue-tracking.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Issue Tracking</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/license.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/license.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/license.html (original) +++ openmeetings/trunk/site/openmeetings-install/license.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project License</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/mail-lists.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/mail-lists.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/mail-lists.html (original) +++ openmeetings/trunk/site/openmeetings-install/mail-lists.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/plugin-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/plugin-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/plugin-management.html (original) +++ openmeetings/trunk/site/openmeetings-install/plugin-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -200,15 +200,15 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td> -<td>2.5</td></tr> +<td>2.6</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td> -<td>2.5.1</td></tr> +<td>3.2</td></tr> <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-dependency-plugin/">maven-dependency-plugin</a></td> -<td>2.8</td></tr> +<td>2.9</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td> @@ -248,7 +248,7 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-javadoc-plugin/">maven-javadoc-plugin</a></td> -<td>2.9.1</td></tr> +<td>2.10.1</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin/">maven-plugin-plugin</a></td> @@ -288,7 +288,7 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-war-plugin/">maven-war-plugin</a></td> -<td>2.4</td></tr> +<td>2.5</td></tr> <tr class="a"> <td>org.apache.rat</td> <td><a class="externalLink" href="http://creadur.apache.org/rat/apache-rat-plugin/">apache-rat-plugin</a></td> Modified: openmeetings/trunk/site/openmeetings-install/plugins.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/plugins.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/plugins.html (original) +++ openmeetings/trunk/site/openmeetings-install/plugins.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Build Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -188,11 +188,11 @@ <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td> -<td>2.5</td></tr> +<td>2.6</td></tr> <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td> -<td>2.5.1</td></tr> +<td>3.2</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td> Modified: openmeetings/trunk/site/openmeetings-install/project-info.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/project-info.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/project-info.html (original) +++ openmeetings/trunk/site/openmeetings-install/project-info.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/project-reports.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/project-reports.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/project-reports.html (original) +++ openmeetings/trunk/site/openmeetings-install/project-reports.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/project-summary.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/project-summary.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/project-summary.html (original) +++ openmeetings/trunk/site/openmeetings-install/project-summary.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/rat-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/rat-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/rat-report.html (original) +++ openmeetings/trunk/site/openmeetings-install/rat-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Rat (Release Audit Tool) results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -181,7 +181,7 @@ ***************************************************** Summary ------- -Generated at: 2014-09-17T19:24:39+07:00 +Generated at: 2014-10-16T11:45:33+07:00 Notes: 0 Binaries: 0 Archives: 0 Modified: openmeetings/trunk/site/openmeetings-install/source-repository.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/source-repository.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/source-repository.html (original) +++ openmeetings/trunk/site/openmeetings-install/source-repository.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Source Repository</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/surefire-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/surefire-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/surefire-report.html (original) +++ openmeetings/trunk/site/openmeetings-install/surefire-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Surefire Report</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-install/team-list.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-install/team-list.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-install/team-list.html (original) +++ openmeetings/trunk/site/openmeetings-install/team-list.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Team list</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/dependencies.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/dependencies.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/dependencies.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/dependencies.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -196,7 +196,13 @@ <td><a class="externalLink" href="https://code.google.com/p/red5/">red5-client</a></td> <td>1.0.3-RELEASE</td> <td>jar</td> -<td>-</td></tr></table></div><a name="Project_Dependencies_test"></a> +<td>-</td></tr> +<tr class="b"> +<td>org.springframework</td> +<td><a class="externalLink" href="https://github.com/spring-projects/spring-framework">spring-core</a></td> +<td>4.0.6.RELEASE</td> +<td>jar</td> +<td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr></table></div><a name="Project_Dependencies_test"></a> <div class="section"> <h3><a name="test"></a>test</h3> <p>The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:</p> @@ -215,12 +221,6 @@ <td><a class="externalLink" href="http://www.opensource.org/licenses/cpl1.0.txt">Common Public License Version 1.0</a></td></tr> <tr class="a"> <td>org.springframework</td> -<td><a class="externalLink" href="https://github.com/spring-projects/spring-framework">spring-core</a></td> -<td>4.0.6.RELEASE</td> -<td>jar</td> -<td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> -<tr class="b"> -<td>org.springframework</td> <td><a class="externalLink" href="https://github.com/spring-projects/spring-framework">spring-test</a></td> <td>4.0.6.RELEASE</td> <td>jar</td> @@ -1166,7 +1166,16 @@ There are currently about 600 StringTemp <p><b>Description: </b>Apache MINA is a network application framework which helps users develop high performance and highly scalable network applications easily. It provides an abstract event-driven asynchronous API over various transports such as TCP/IP and UDP/IP via Java NIO.</p> <p><b>URL: </b><a class="externalLink" href="http://mina.apache.org/mina-core/">http://mina.apache.org/mina-core/</a></p> <p><b>Project License: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a></p></td></tr></table></div></li> -<li>junit:junit:jar:4.11 (test) <img id="_img109" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep108', '_img109' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep108" style="display:none"> +<li>org.springframework:spring-core:jar:4.0.6.RELEASE (compile) <img id="_img109" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep108', '_img109' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep108" style="display:none"> +<table border="0" class="table table-striped"> +<tr class="a"> +<th>Spring Core</th></tr> +<tr class="b"> +<td> +<p><b>Description: </b>Spring Core</p> +<p><b>URL: </b><a class="externalLink" href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> +<p><b>Project License: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li> +<li>junit:junit:jar:4.11 (test) <img id="_img111" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep110', '_img111' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep110" style="display:none"> <table border="0" class="table table-striped"> <tr class="a"> <th>JUnit</th></tr> @@ -1177,7 +1186,7 @@ There are currently about 600 StringTemp <p><b>URL: </b><a class="externalLink" href="http://junit.org">http://junit.org</a></p> <p><b>Project License: </b><a class="externalLink" href="http://www.opensource.org/licenses/cpl1.0.txt">Common Public License Version 1.0</a></p></td></tr></table></div> <ul> -<li>org.hamcrest:hamcrest-core:jar:1.3 (test) <img id="_img111" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep110', '_img111' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep110" style="display:none"> +<li>org.hamcrest:hamcrest-core:jar:1.3 (test) <img id="_img113" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep112', '_img113' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep112" style="display:none"> <table border="0" class="table table-striped"> <tr class="a"> <th>Hamcrest Core</th></tr> @@ -1186,15 +1195,6 @@ There are currently about 600 StringTemp <p><b>Description: </b>This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.</p> <p><b>URL: </b><a class="externalLink" href="https://github.com/hamcrest/JavaHamcrest/hamcrest-core">https://github.com/hamcrest/JavaHamcrest/hamcrest-core</a></p> <p><b>Project License: </b><a class="externalLink" href="http://www.opensource.org/licenses/bsd-license.php">New BSD License</a></p></td></tr></table></div></li></ul></li> -<li>org.springframework:spring-core:jar:4.0.6.RELEASE (test) <img id="_img113" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep112', '_img113' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep112" style="display:none"> -<table border="0" class="table table-striped"> -<tr class="a"> -<th>Spring Core</th></tr> -<tr class="b"> -<td> -<p><b>Description: </b>Spring Core</p> -<p><b>URL: </b><a class="externalLink" href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> -<p><b>Project License: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li> <li>org.springframework:spring-test:jar:4.0.6.RELEASE (test) <img id="_img115" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep114', '_img115' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep114" style="display:none"> <table border="0" class="table table-striped"> <tr class="a"> @@ -1713,21 +1713,21 @@ There are currently about 600 StringTemp <td>1.6</td> <td>47</td></tr> <tr class="a"> -<td>compile: 53</td> -<td>compile: 42.30 MB</td> -<td>compile: 30,737</td> -<td>compile: 27,814</td> -<td>compile: 1,172</td> +<td>compile: 54</td> +<td>compile: 43.23 MB</td> +<td>compile: 31,473</td> +<td>compile: 28,506</td> +<td>compile: 1,210</td> <td>-</td> -<td>compile: 43</td></tr> +<td>compile: 44</td></tr> <tr class="b"> -<td>test: 4</td> -<td>test: 1.64 MB</td> -<td>test: 1,414</td> -<td>test: 1,298</td> -<td>test: 94</td> +<td>test: 3</td> +<td>test: 721.88 kB</td> +<td>test: 678</td> +<td>test: 606</td> +<td>test: 56</td> <td>-</td> -<td>test: 4</td></tr></table></div> +<td>test: 3</td></tr></table></div> </div> </div> </div> Modified: openmeetings/trunk/site/openmeetings-screenshare/dependency-convergence.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/dependency-convergence.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/dependency-convergence.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/dependency-convergence.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -452,7 +452,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -464,7 +464,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -476,7 +476,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -524,7 +524,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">1.0.0-M23</td> +<td width="25%">1.0.0-M24</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-core">org.apache.openmeetings:openmeetings-core</a></li></ol></td></tr></table></td></tr></table></div> Modified: openmeetings/trunk/site/openmeetings-screenshare/dependency-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/dependency-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/dependency-management.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/dependency-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -195,19 +195,19 @@ <tr class="a"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-frontend-jaxrs</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="b"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-frontend-jaxws</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="a"> <td>org.apache.cxf</td> <td><a class="externalLink" href="http://cxf.apache.org">cxf-rt-rs-extension-providers</a></td> -<td>3.0.0</td> +<td>3.0.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr> <tr class="b"> Modified: openmeetings/trunk/site/openmeetings-screenshare/distribution-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/distribution-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/distribution-management.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/distribution-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Distribution Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/index.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/index.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/index.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/index.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/integration.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/integration.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/integration.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/integration.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Continuous Integration</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/issue-tracking.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/issue-tracking.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/issue-tracking.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/issue-tracking.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Issue Tracking</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/license.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/license.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/license.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/license.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project License</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/mail-lists.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/mail-lists.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/mail-lists.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/mail-lists.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/plugin-management.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/plugin-management.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/plugin-management.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/plugin-management.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -200,15 +200,15 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td> -<td>2.5</td></tr> +<td>2.6</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td> -<td>2.5.1</td></tr> +<td>3.2</td></tr> <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-dependency-plugin/">maven-dependency-plugin</a></td> -<td>2.8</td></tr> +<td>2.9</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td> @@ -248,7 +248,7 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-javadoc-plugin/">maven-javadoc-plugin</a></td> -<td>2.9.1</td></tr> +<td>2.10.1</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin/">maven-plugin-plugin</a></td> @@ -288,7 +288,7 @@ <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-war-plugin/">maven-war-plugin</a></td> -<td>2.4</td></tr> +<td>2.5</td></tr> <tr class="a"> <td>org.apache.rat</td> <td><a class="externalLink" href="http://creadur.apache.org/rat/apache-rat-plugin/">apache-rat-plugin</a></td> Modified: openmeetings/trunk/site/openmeetings-screenshare/plugins.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/plugins.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/plugins.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/plugins.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Build Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -188,15 +188,15 @@ <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td> -<td>2.5</td></tr> +<td>2.6</td></tr> <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td> -<td>2.5.1</td></tr> +<td>3.2</td></tr> <tr class="a"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-dependency-plugin/">maven-dependency-plugin</a></td> -<td>2.8</td></tr> +<td>2.9</td></tr> <tr class="b"> <td>org.apache.maven.plugins</td> <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td> Modified: openmeetings/trunk/site/openmeetings-screenshare/project-info.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/project-info.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/project-info.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/project-info.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/project-reports.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/project-reports.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/project-reports.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/project-reports.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/project-summary.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/project-summary.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/project-summary.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/project-summary.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/rat-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/rat-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/rat-report.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/rat-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Rat (Release Audit Tool) results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -181,7 +181,7 @@ ***************************************************** Summary ------- -Generated at: 2014-09-17T19:25:44+07:00 +Generated at: 2014-10-16T11:46:39+07:00 Notes: 0 Binaries: 8 Archives: 0 Modified: openmeetings/trunk/site/openmeetings-screenshare/source-repository.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/source-repository.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/source-repository.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/source-repository.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Source Repository</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/surefire-report.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/surefire-report.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/surefire-report.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/surefire-report.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Surefire Report</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-screenshare/team-list.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-screenshare/team-list.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-screenshare/team-list.html (original) +++ openmeetings/trunk/site/openmeetings-screenshare/team-list.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Team list</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> Modified: openmeetings/trunk/site/openmeetings-service/dependencies.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-service/dependencies.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-service/dependencies.html (original) +++ openmeetings/trunk/site/openmeetings-service/dependencies.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -389,7 +389,7 @@ <tr class="a"> <td>org.apache.directory.api</td> <td><a class="externalLink" href="http://directory.apache.org/api-parent/api-all/">api-all</a></td> -<td>1.0.0-M23</td> +<td>1.0.0-M24</td> <td>jar</td> <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td> <td>No</td></tr> @@ -1966,7 +1966,7 @@ There are currently about 600 StringTemp <td> <p><b>Description: </b>There is currently no description associated with this project.</p> <p><b>Project License: </b>No license is defined for this project.</p></td></tr></table></div></li> -<li>org.apache.directory.api:api-all:jar:1.0.0-M23 (compile) <img id="_img197" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep196', '_img197' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep196" style="display:none"> +<li>org.apache.directory.api:api-all:jar:1.0.0-M24 (compile) <img id="_img197" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep196', '_img197' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep196" style="display:none"> <table border="0" class="table table-striped"> <tr class="a"> <th>Apache Directory API All</th></tr> Modified: openmeetings/trunk/site/openmeetings-service/dependency-convergence.html URL: http://svn.apache.org/viewvc/openmeetings/trunk/site/openmeetings-service/dependency-convergence.html?rev=1632215&r1=1632214&r2=1632215&view=diff ============================================================================== --- openmeetings/trunk/site/openmeetings-service/dependency-convergence.html (original) +++ openmeetings/trunk/site/openmeetings-service/dependency-convergence.html Thu Oct 16 05:29:59 2014 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 2014-09-17 + | Generated by Apache Maven Doxia at 2014-10-16 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20140917" /> + <meta name="Date-Revision-yyyymmdd" content="20141016" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache OpenMeetings Project – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> @@ -45,7 +45,7 @@ <ul class="breadcrumb"> - <li id="publishDate">Last Published: 2014-09-17 + <li id="publishDate">Last Published: 2014-10-16 </li> @@ -452,7 +452,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -464,7 +464,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -476,7 +476,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">3.0.0</td> +<td width="25%">3.0.1</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-webservice">org.apache.openmeetings:openmeetings-webservice</a></li></ol></td></tr></table></td></tr></table></div> @@ -524,7 +524,7 @@ <td> <table border="0" class="table table-striped"> <tr class="b"> -<td width="25%">1.0.0-M23</td> +<td width="25%">1.0.0-M24</td> <td> <ol style="list-style-type: lower-alpha"> <li><a class="externalLink" href="http://openmeetings.apache.org/openmeetings-core">org.apache.openmeetings:openmeetings-core</a></li></ol></td></tr></table></td></tr></table></div>
