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 2017/05/01 06:11:14 UTC

[23/50] [abbrv] openmeetings git commit: no jira: red5sip documentation is updated

no jira: red5sip documentation is updated


Project: http://git-wip-us.apache.org/repos/asf/openmeetings/repo
Commit: http://git-wip-us.apache.org/repos/asf/openmeetings/commit/17366623
Tree: http://git-wip-us.apache.org/repos/asf/openmeetings/tree/17366623
Diff: http://git-wip-us.apache.org/repos/asf/openmeetings/diff/17366623

Branch: refs/heads/3.1.x
Commit: 1736662382e799f97c5442bea64f8b21e6f845fe
Parents: c81ce36
Author: Maxim Solodovnik <so...@apache.org>
Authored: Thu Jan 12 08:04:50 2017 +0000
Committer: Maxim Solodovnik <so...@apache.org>
Committed: Thu Jan 12 08:04:50 2017 +0000

----------------------------------------------------------------------
 .../src/site/xdoc/red5sip-integration_3.1.xml   | 66 +++++++++-----------
 1 file changed, 30 insertions(+), 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/openmeetings/blob/17366623/openmeetings-server/src/site/xdoc/red5sip-integration_3.1.xml
----------------------------------------------------------------------
diff --git a/openmeetings-server/src/site/xdoc/red5sip-integration_3.1.xml b/openmeetings-server/src/site/xdoc/red5sip-integration_3.1.xml
index d991bbb..bdc1b4d 100644
--- a/openmeetings-server/src/site/xdoc/red5sip-integration_3.1.xml
+++ b/openmeetings-server/src/site/xdoc/red5sip-integration_3.1.xml
@@ -21,7 +21,7 @@
 	</properties>
 	<body>
 		<section name="SIP-Transport Integration">
-			<p>You need Apache OpenMeetings <strong>version 3.0+</strong> to apply this guide!</p>
+			<p>You need Apache OpenMeetings <strong>version 3.1+</strong> to apply this guide!</p>
 			<p>You need Asterisk <strong>version 13+</strong> to apply this guide!</p>
 			<p>Here is instruction how-to set up red5sip transport integration with OpenMeetings on Ubuntu 12.10.</p>
 		</section>
@@ -220,7 +220,7 @@ write = all
 				</source>
 			</div><br />
 			<div>
-				Update Openmeetings with creadentials for Asterisk manager. 
+				Update OpenMeetings with credentials for Asterisk manager. 
 				Modify <tt>/opt/red5/webapps/openmeetings/WEB-INF/classes/openmeetings-applicationContext.xml</tt><br />
 				find <strong>&lt;bean id="sipDao" class="org.apache.openmeetings.db.dao.room.SipDao"&gt;</strong>
 				uncomment its parameters and set it to your custom values.
@@ -240,29 +240,25 @@ service asterisk restart
 		</section>
 
 		<section name="Setup red5sip transport">
-			<div>
-				Download red5sip from <tt>https://github.com/openmeetings/red5sip</tt>
-			</div>
-			<div>
-				<source>
+			<ul>
+				<li>Download red5sip from <tt>https://github.com/openmeetings/red5sip</tt>
+					<source>
 <![CDATA[
 git clone https://github.com/openmeetings/red5sip.git
 ]]>
-				</source>
-			</div>
-			<div>
-				Build with Apache Maven
-				<source>
+					</source>
+				</li>
+				<li>Build with Apache Maven
+					<source>
 <![CDATA[
+cd red5sip
 mvn clean package
 ]]>
-				</source>
-				All necessary files will be available in <tt>target</tt> folder, copy/move it to /opt/red5sip/
-			</div>
-			<div>
-				Insert proper values to the <tt>/opt/red5sip/settings.properties</tt>
-
-				<source>
+					</source>
+				</li>
+				<li>All necessary files will be available in <tt>target</tt> folder, copy/move it to /opt/red5sip/</li>
+				<li>Insert proper values to the <tt>/opt/red5sip/settings.properties</tt>
+					<source>
 <![CDATA[
 red5.host=127.0.0.1 # red5 server address
 om.context=openmeetings # Openmeetings context 
@@ -277,34 +273,32 @@ sip.proxy=127.0.0.1 # address of sip proxy
 rooms.forceStart=no # TBD
 rooms=1 # TBD (not in use)
 ]]>
-				</source>
-			</div>
-			<div>
-				Add red5sip to autostart:
-				<source>
+					</source>
+				</li>
+				<li>Add red5sip to autostart:
+					<source>
 <![CDATA[
 sudo cp /opt/red5sip/red5sip /etc/init.d/
 sudo chmod a+x /etc/init.d/red5sip
 sudo update-rc.d red5sip defaults
 ]]>
-				</source>
-			</div>
-			<div>
-				Start openmeetings
-				<source>
+					</source>
+				</li>
+				<li>Start openmeetings
+					<source>
 <![CDATA[
 service red5 start
 ]]>
-				</source>
-			</div>
-			<div>
-				Start red5sip
-				<source>
+					</source>
+				</li>
+				<li>Start red5sip
+					<source>
 <![CDATA[
 service red5sip start
 ]]>
-				</source>
-			</div>
+					</source>
+				</li>
+			</ul>
 		</section>
 	</body>
 </document>