You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2012/02/16 18:00:11 UTC

svn commit: r1245080 [4/4] - in /incubator/openmeetings/trunk/singlewebapp: ./ red5-1.0.0-r4297/ red5-1.0.0-r4315/ red5-1.0.0-r4315/dist/ red5-1.0.0-r4315/dist/conf/ red5-1.0.0-r4315/dist/lib/ red5-1.0.0-r4315/dist/log/ red5-1.0.0-r4315/dist/plugins/ r...

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.properties
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.properties?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.properties (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.properties Thu Feb 16 17:00:06 2012
@@ -0,0 +1,4 @@
+webapp.contextPath=/
+webapp.virtualHosts=*
+
+

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.xml
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.xml?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.xml (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/red5-web.xml Thu Feb 16 17:00:06 2012
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:lang="http://www.springframework.org/schema/lang"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd">
+	
+	<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
+	    <property name="location" value="/WEB-INF/red5-web.properties" />
+	</bean>
+	
+	<bean id="web.context" class="org.red5.server.Context" 
+		autowire="byType" />
+	
+	<bean id="web.scope" class="org.red5.server.WebScope"
+		 init-method="register">
+		<property name="server" ref="red5.server" />
+		<property name="parent" ref="global.scope" />
+		<property name="context" ref="web.context" />
+		<property name="handler" ref="global.handler" />
+		<property name="contextPath" value="${webapp.contextPath}" />
+		<property name="virtualHosts" value="${webapp.virtualHosts}" />
+	</bean>
+
+</beans>

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/web.xml?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/web.xml (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/WEB-INF/web.xml Thu Feb 16 17:00:06 2012
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+
+	<display-name>root</display-name>
+
+	<servlet>
+		<servlet-name>gateway</servlet-name>
+		<servlet-class>
+			org.red5.server.net.servlet.AMFGatewayServlet
+		</servlet-class>
+		<load-on-startup>1</load-on-startup>
+	</servlet>
+
+	<servlet>
+		<servlet-name>rtmpt</servlet-name>
+		<servlet-class>
+			org.red5.server.net.rtmpt.RTMPTServlet
+		</servlet-class>
+		<load-on-startup>2</load-on-startup>
+	</servlet>
+
+	<servlet-mapping>
+		<servlet-name>gateway</servlet-name>
+		<url-pattern>/gateway</url-pattern>
+	</servlet-mapping>
+
+	<servlet-mapping>
+		<servlet-name>rtmpt</servlet-name>
+		<url-pattern>/open/*</url-pattern>
+	</servlet-mapping>
+
+	<servlet-mapping>
+		<servlet-name>rtmpt</servlet-name>
+		<url-pattern>/idle/*</url-pattern>
+	</servlet-mapping>
+
+	<servlet-mapping>
+		<servlet-name>rtmpt</servlet-name>
+		<url-pattern>/send/*</url-pattern>
+	</servlet-mapping>
+ 
+	<servlet-mapping>
+		<servlet-name>rtmpt</servlet-name>
+		<url-pattern>/close/*</url-pattern>
+	</servlet-mapping>
+
+    <servlet-mapping>
+        <servlet-name>rtmpt</servlet-name>
+        <url-pattern>/fcs/*</url-pattern>
+    </servlet-mapping>
+
+	<welcome-file-list>
+		<welcome-file>index.jsp</welcome-file>
+		<welcome-file>index.html</welcome-file>
+		<welcome-file>index.htm</welcome-file>
+	</welcome-file-list>
+
+	<security-constraint>
+		<web-resource-collection>
+			<web-resource-name>Forbidden</web-resource-name>
+			<url-pattern>/WEB-INF/*</url-pattern>
+		</web-resource-collection>
+		<auth-constraint />
+	</security-constraint>
+
+	<security-constraint>
+		<web-resource-collection>
+			<web-resource-name>Forbidden</web-resource-name>
+			<url-pattern>/persistence/*</url-pattern>
+		</web-resource-collection>
+		<auth-constraint />
+	</security-constraint>
+
+	<security-constraint>
+		<web-resource-collection>
+			<web-resource-name>Forbidden</web-resource-name>
+			<url-pattern>/streams/*</url-pattern>
+		</web-resource-collection>
+		<auth-constraint />
+	</security-constraint>
+	
+</web-app>

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/biglogo.png
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/biglogo.png?rev=1245080&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/biglogo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/crossdomain.xml
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/crossdomain.xml?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/crossdomain.xml (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/crossdomain.xml Thu Feb 16 17:00:06 2012
@@ -0,0 +1,6 @@
+<?xml version="1.0"?>
+<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
+<cross-domain-policy>
+<site-control permitted-cross-domain-policies="all"/>
+<allow-access-from domain="*"/>
+</cross-domain-policy>
\ No newline at end of file

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.ico
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.ico?rev=1245080&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.ico
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.png
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.png?rev=1245080&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/favicon.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/flvdemo.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/flvdemo.html?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/flvdemo.html (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/flvdemo.html Thu Feb 16 17:00:06 2012
@@ -0,0 +1,16 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<title>FLV demos</title>
+<script type="text/javascript" src="demos/assets/swfobject.js"></script>
+<script type="text/javascript">
+swfobject.embedSWF("demos/ofla_demo.swf", "myContent", "640", "480", "8.0.0", "demos/assets/expressInstall.swf");
+</script>
+<body>
+	<div id="myContent">
+		<h1>You need the Adobe Flash Player for this demo, download it by clicking the image below.</h1>
+		<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
+	</div>
+</body>
+</html>

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/gc.jsp
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/gc.jsp?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/gc.jsp (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/gc.jsp Thu Feb 16 17:00:06 2012
@@ -0,0 +1,25 @@
+<%@page %>
+<html>
+<body>
+Requesting garbage collection...
+<%
+Runtime rt = Runtime.getRuntime();
+long total = rt.totalMemory();
+long free = rt.freeMemory();
+long diff = (total - free);
+out.print("<br />Memory - total: " + total + " free: " + free + " dif: " + diff);
+out.flush();
+System.gc();
+try {
+	out.print("<br />Sleep for a couple ticks...");
+	Thread.sleep(2000);
+} catch(Exception ex) {
+}
+total = rt.totalMemory();
+free = rt.freeMemory();
+diff = (total - free);
+out.print("<br />Memory - total: " + total + " free: " + free + " dif: " + diff);
+%>
+</body>
+</html>
+

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/index.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/index.html?rev=1245080&view=auto
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/index.html (added)
+++ incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/index.html Thu Feb 16 17:00:06 2012
@@ -0,0 +1,123 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8" />
+<meta name="viewport" content="width=device-width" />
+<link rel="apple-touch-icon" href="logo.png" />
+<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
+<link rel="icon" type="image/png" href="favicon.png">
+<title>Red5 - The open source media server</title>
+<style type="text/css">
+<!--
+body {
+    background-color:#680000;
+    font-family: sans-serif;
+    font-size: 0.9em;
+}
+.code {
+    font-family: monospace;
+    font-size: 130%;
+}
+a {
+    color: red;
+    background: white;
+    text-decoration: none;
+}
+#information {
+    padding-top: 1em;
+    padding-bottom: 1em;
+}
+.spiffy{display:block}
+.spiffy *{
+  display:block;
+  height:1px;
+  overflow:hidden;
+  font-size:.01em;
+  background:#fff}
+.spiffy1{
+  margin-left:3px;
+  margin-right:3px;
+  padding-left:1px;
+  padding-right:1px;
+  border-left:1px solid #b60600;
+  border-right:1px solid #b60600;
+  background:#df0b00}
+.spiffy2{
+  margin-left:1px;
+  margin-right:1px;
+  padding-right:1px;
+  padding-left:1px;
+  border-left:1px solid #8c0100;
+  border-right:1px solid #8c0100;
+  background:#e60c00}
+.spiffy3{
+  margin-left:1px;
+  margin-right:1px;
+  border-left:1px solid #e60c00;
+  border-right:1px solid #e60c00;}
+.spiffy4{
+  border-left:1px solid #b60600;
+  border-right:1px solid #b60600}
+.spiffy5{
+  border-left:1px solid #df0b00;
+  border-right:1px solid #df0b00}
+.spiffyfg{
+    padding:1em;
+    background-color:#fff;
+}
+  -->
+</style>
+</head>
+<body>
+<div>
+  <b class="spiffy">
+  <b class="spiffy1"><b></b></b>
+  <b class="spiffy2"><b></b></b>
+  <b class="spiffy3"></b>
+  <b class="spiffy4"></b>
+  <b class="spiffy5"></b></b>
+  
+<div class="spiffyfg">
+<img src="biglogo.png" alt="Red5"/>
+
+<p id="information">
+This page is used to test the proper operation of the Red5 server after it
+has been installed. If you can read this page it means that the Red5 server
+installed at this site is working properly.
+<br />
+<br />
+If you would like to watch an instructional video on Red5 and have access to YouTube, <a href="http://www.youtube.com/watch?v=969cmyGu1yw" target="_blank">click here</a>
+<br />
+<br />
+<center><iframe src="vod/index.html" width="320" height="240" border="0"></iframe></center>
+<br />
+<br />
+If you prefer to jump right in, follow these steps:
+<ul>
+<li><a href="installer" target="_blank">Install</a> a ready-made application</li>
+<li>Launch a <a href="demos">demo</a></li>
+</ul>
+</p>
+<br />
+<p>
+Further information about Red5 can be found at any of these links:
+<a href="http://red5.googlecode.com/" target="_blank">homepage</a> | 
+<a href="http://wiki.red5.org/" target="_blank">wiki</a>
+<br />
+<br />
+Be sure to subscribe <a href="http://groups.google.com/group/red5interest" target="_blank">the mailing list</a>
+to get help or to be notified about new versions. You can also use the mailing list to ask questions about Red5.
+</p>
+<br />
+</div>
+
+  <b class="spiffy">
+  <b class="spiffy5"></b>
+  <b class="spiffy4"></b>
+  <b class="spiffy3"></b>
+  <b class="spiffy2"><b></b></b>
+  <b class="spiffy1"><b></b></b></b>
+</div>
+</body>
+</html>

Added: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/logo.png
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/logo.png?rev=1245080&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/openmeetings/trunk/singlewebapp/red5-1.0.0-r4315/dist/webapps/root/logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream