You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2012/04/12 12:42:49 UTC

svn commit: r1325198 [2/5] - in /incubator/openmeetings/trunk/singlewebapp: docs/ xdocs/ xdocs/stylesheets/

Modified: incubator/openmeetings/trunk/singlewebapp/docs/JVMPerformanceTuning.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/JVMPerformanceTuning.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/JVMPerformanceTuning.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/JVMPerformanceTuning.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Performance Tuning</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,43 +867,43 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>To use the optimum of performance from your server there is a
-				start-script for red5 available that does some basic settings in the
-				JVM. It is called red5-highperf.sh. It is recommended to use that
-				script for production and high-load scenarios.
+                                    <p>To use the optimum of performance from your server there is a
+				start-script for red5 available that does some basic settings in the
+				JVM. It is called red5-highperf.sh. It is recommended to use that
+				script for production and high-load scenarios.
 			</p>
-                                                <div class="xmlcode">
-				#!/bin/bash
-				<br />
-				<br />
-				if [ -z "$RED5_HOME" ]; then export RED5_HOME=.; fi
-				<br />
-				<br />
-				# Previous option set
-				<br />
-				export JAVA_OPTS="-Xrs -Xms512M -Xmx1024M -Xss128K -XX:NewSize=256m
-				-XX:SurvivorRatio=16 -XX:MinHeapFreeRatio=20
-				-XX:+ExplicitGCInvokesConcurrent -Djava.net.preferIPv4Stack=true
-				-Xverify:none"
-				<br />
-				<br />
-				# start Red5
-				<br />
-				echo "Setting Hi Performance Options"
-				<br />
-				exec $RED5_HOME/red5.sh &gt;&gt; $RED5_HOME/log/jvm.stdout 2&gt;&amp;1 &amp;
-				<br />
+                                                <div class="xmlcode">
+				#!/bin/bash
+				<br />
+				<br />
+				if [ -z "$RED5_HOME" ]; then export RED5_HOME=.; fi
+				<br />
+				<br />
+				# Previous option set
+				<br />
+				export JAVA_OPTS="-Xrs -Xms512M -Xmx1024M -Xss128K -XX:NewSize=256m
+				-XX:SurvivorRatio=16 -XX:MinHeapFreeRatio=20
+				-XX:+ExplicitGCInvokesConcurrent -Djava.net.preferIPv4Stack=true
+				-Xverify:none"
+				<br />
+				<br />
+				# start Red5
+				<br />
+				echo "Setting Hi Performance Options"
+				<br />
+				exec $RED5_HOME/red5.sh &gt;&gt; $RED5_HOME/log/jvm.stdout 2&gt;&amp;1 &amp;
+				<br />
 			</div>
-                                                <p>You have to exclude the "-XX:+UseConcMarkSweepGC" param from the
-				default red5-highperf.sh to make it functional! However if you are a
-				performance expert you might also play with the values to find
-				perfect matches for your use-case.
+                                                <p>You have to exclude the "-XX:+UseConcMarkSweepGC" param from the
+				default red5-highperf.sh to make it functional! However if you are a
+				performance expert you might also play with the values to find
+				perfect matches for your use-case.
 			</p>
-                                                <p>
-				For a complete overview about possible arguments and their meaning
-				see:
-				<a href="http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning" rel="nofollow">http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning
-				</a>
+                                                <p>
+				For a complete overview about possible arguments and their meaning
+				see:
+				<a href="http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning" rel="nofollow">http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning
+				</a>
 			</p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/LanguageEditor.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/LanguageEditor.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/LanguageEditor.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/LanguageEditor.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Language Editor</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -863,30 +868,30 @@ limitations under the License.
       <tr><td>
         <blockquote>
                                     <p>Features:</p>
-                                                <ul>
-				<li>edit the labels of any language, changes will take effect as
-					soon as you re-login
-				</li>
-				<li>add new languages (for example to fit your co-operative design
-					and language of your company)
-				</li>
-				<li>export the language-files to an XML File (these language Files
-					can be used for your next installation or as contribution to the
-					project)
-				</li>
-				<li>
-					import of language files (
-					<i>you should restart the server if you face problems, as the
-						database cache might be invalid
-					</i>
-					)
-				</li>
+                                                <ul>
+				<li>edit the labels of any language, changes will take effect as
+					soon as you re-login
+				</li>
+				<li>add new languages (for example to fit your co-operative design
+					and language of your company)
+				</li>
+				<li>export the language-files to an XML File (these language Files
+					can be used for your next installation or as contribution to the
+					project)
+				</li>
+				<li>
+					import of language files (
+					<i>you should restart the server if you face problems, as the
+						database cache might be invalid
+					</i>
+					)
+				</li>
 			</ul>
                                                 <p>Screen from the Administration Panel: </p>
-                                                <p>
-				<a class="fancybox-buttons" data-fancybox-group="button" href="images/langeditor_screen_v2.png">
-					<img src="images/langeditor_screen_v2.png" alt="" width="475" height="324" />
-				</a>
+                                                <p>
+				<a class="fancybox-buttons" data-fancybox-group="button" href="images/langeditor_screen_v2.png">
+					<img src="images/langeditor_screen_v2.png" alt="" width="475" height="324" />
+				</a>
 			</p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/LdapAndADS.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/LdapAndADS.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/LdapAndADS.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/LdapAndADS.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Home</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,30 +867,30 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p> In: $RED5_HOME/webapps/openmeetings/conf<br />
-
-				you will find sample configurations for LDAP and Active Directory. The
-				nature of those Directory Servers are that they are individual for
-				every organization, so you have to modify of course at least the
-				path to your user-base et cetera.<br />
-				<br />
-				To activate any of those configurations you have to login into
-				OpenMeetings, goto Administration &gt; Ldap.
+                                    <p> In: $RED5_HOME/webapps/openmeetings/conf<br />
+
+				you will find sample configurations for LDAP and Active Directory. The
+				nature of those Directory Servers are that they are individual for
+				every organization, so you have to modify of course at least the
+				path to your user-base et cetera.<br />
+				<br />
+				To activate any of those configurations you have to login into
+				OpenMeetings, goto Administration &gt; Ldap.
 			</p>
-                                                <a class="fancybox-buttons" data-fancybox-group="button" href="images/ldap_screen.png">
-					<img src="images/ldap_screen.png" alt="" width="442" height="282" />
+                                                <a class="fancybox-buttons" data-fancybox-group="button" href="images/ldap_screen.png">
+					<img src="images/ldap_screen.png" alt="" width="442" height="282" />
 				</a>
-                                                <p>
-				Import is that you configure LDAP_SEARCH_PATH so that it points to the node of your directory server that contains the users
+                                                <p>
+				Import is that you configure LDAP_SEARCH_PATH so that it points to the node of your directory server that contains the users
 			</p>
-                                                <p>
-				If you have multiple search paths you can either try to define a search path that points to multiple nodes or define multiple ldap configurations.
+                                                <p>
+				If you have multiple search paths you can either try to define a search path that points to multiple nodes or define multiple ldap configurations.
 			</p>
-                                                <p>
-				Successful integration is also reported with Novell eDirectory
+                                                <p>
+				Successful integration is also reported with Novell eDirectory
 			</p>
-                                                <p>
-				You can configure multiple domains or different user-paths in the Administration of OpenMeetings. 
+                                                <p>
+				You can configure multiple domains or different user-paths in the Administration of OpenMeetings. 
 			</p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/MoodlePlugin.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/MoodlePlugin.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/MoodlePlugin.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/MoodlePlugin.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Moodle Plugin</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,21 +867,21 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-				You can get the latest Version of the Plugin for Moodle from the
-				<a href="downloads.html">downloads</a>
-				.
+                                    <p>
+				You can get the latest Version of the Plugin for Moodle from the
+				<a href="downloads.html">downloads</a>
+				.
 			</p>
-                                                <p>
-				You can find the OpenMeetings Plugin also in the
-				<a href="http://moodle.org/plugins/view.php?plugin=mod_openmeetings" target="_BLANK" rel="nofollow">Moodle Plugin database</a>
-				.
+                                                <p>
+				You can find the OpenMeetings Plugin also in the
+				<a href="http://moodle.org/plugins/view.php?plugin=mod_openmeetings" target="_BLANK" rel="nofollow">Moodle Plugin database</a>
+				.
 			</p>
-                                                <p>
-				A demo version of the Moodle plugin is available at
-				<a href="http://moodle.openmeetings.de" target="_BLANK" rel="nofollow">moodle.openmeetings.de
-				</a>
-				.
+                                                <p>
+				A demo version of the Moodle plugin is available at
+				<a href="http://moodle.openmeetings.de" target="_BLANK" rel="nofollow">moodle.openmeetings.de
+				</a>
+				.
 			</p>
                             </blockquote>
         </p>
@@ -892,18 +897,18 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-				You simply download the ZIP package and unzip it to Moodle's mod
-				directory.
-				<br />
-				The you visit the admin interface of Moodle, for example
-				<a href="http://$your_moodle_host/$MOODLE_WWW_ROOT/admin" target="_BLANK" rel="nofollow">http://$your_moodle_host/$MOODLE_WWW_ROOT/admin</a>
+                                    <p>
+				You simply download the ZIP package and unzip it to Moodle's mod
+				directory.
+				<br />
+				The you visit the admin interface of Moodle, for example
+				<a href="http://$your_moodle_host/$MOODLE_WWW_ROOT/admin" target="_BLANK" rel="nofollow">http://$your_moodle_host/$MOODLE_WWW_ROOT/admin</a>
 			</p>
-                                                <p>In Moodle's module configuration web-interface you will find the
-				Plugin's configuration
+                                                <p>In Moodle's module configuration web-interface you will find the
+				Plugin's configuration
 			</p>
-                                                <a class="fancybox-buttons" data-fancybox-group="button" href="images/moodle_plugin_conference.png">
-				<img src="images/moodle_plugin_conference.png" alt="" width="500" height="400" />
+                                                <a class="fancybox-buttons" data-fancybox-group="button" href="images/moodle_plugin_conference.png">
+				<img src="images/moodle_plugin_conference.png" alt="" width="500" height="400" />
 			</a>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/MySQLConfig.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/MySQLConfig.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/MySQLConfig.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/MySQLConfig.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@incubator.apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - MySQL Configuration</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -870,22 +875,22 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>Make sure that you have set utf8 as
-						default/server-character-set in your MySQL configuration (my.cnf)
-						before you start the installation process of OpenMeetings!
-					</li>
-					<li>
-						make sure MySQL is listening on TCP/IP connections!
-						<br />
-						To verify if MySQL connection is working: OpenMeetings will
-						automatically create all tables in the database and all tables
-						should have utf8 as encoding/collation!
-					</li>
-					<li>If you encounter issues, you can drop the db again and delete
-						the file $red5/webapps/openmeetings/conf/install.xml and then run
-						the web based installer again
-					</li>
+                                    <ul>
+					<li>Make sure that you have set utf8 as
+						default/server-character-set in your MySQL configuration (my.cnf)
+						before you start the installation process of OpenMeetings!
+					</li>
+					<li>
+						make sure MySQL is listening on TCP/IP connections!
+						<br />
+						To verify if MySQL connection is working: OpenMeetings will
+						automatically create all tables in the database and all tables
+						should have utf8 as encoding/collation!
+					</li>
+					<li>If you encounter issues, you can drop the db again and delete
+						the file $red5/webapps/openmeetings/conf/install.xml and then run
+						the web based installer again
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -899,27 +904,27 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>
-						Rename:
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/mysql_persistence.xml
-						<br />
-						to
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-					</li>
-					<li>
-						Prepare Database Settings - go to
-						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-						<br />
-						Alter config values in persistence.xml DB_HOST USER_NAME USER_PASS
-						with your values
-					</li>
-					<li>
-						Run red5-service and goto the web-based installer:
-						http://localhost:5080/openmeetings/install
-					</li>
+                                    <ul>
+					<li>
+						Rename:
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/mysql_persistence.xml
+						<br />
+						to
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+					</li>
+					<li>
+						Prepare Database Settings - go to
+						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+						<br />
+						Alter config values in persistence.xml DB_HOST USER_NAME USER_PASS
+						with your values
+					</li>
+					<li>
+						Run red5-service and goto the web-based installer:
+						http://localhost:5080/openmeetings/install
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -933,12 +938,12 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-					There is a sample configuration for MySQL that ships with
-					every
-					release in:
-					<br />
-					/webapps/openmeetings/WEB-INF/classes/META-INF/mysql_persistence.xml
+                                    <p>
+					There is a sample configuration for MySQL that ships with
+					every
+					release in:
+					<br />
+					/webapps/openmeetings/WEB-INF/classes/META-INF/mysql_persistence.xml
 				</p>
                             </blockquote>
       </td></tr>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/Navigation.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/Navigation.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/Navigation.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/Navigation.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Change main navigation</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,19 +867,19 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>To customize the main menu (for example remove entries or changing
+                                    <p>To customize the main menu (for example remove entries or changing
 				the order) you can edit the tables:  </p>
-                                                <ul>
-				<li>navimain </li>
-				<li>naviglobal </li>
-				<li>navisub (currently not in use) </li>
+                                                <ul>
+				<li>navimain </li>
+				<li>naviglobal </li>
+				<li>navisub (currently not in use) </li>
 			</ul>
                                                 <p />
-                                                <p>
-				You need to make sure that you
-				<strong>restart red5 after doing changes to the database</strong>
-				, there is a database cache, so changes might not take affect as
-				long as you did not restart.
+                                                <p>
+				You need to make sure that you
+				<strong>restart red5 after doing changes to the database</strong>
+				, there is a database cache, so changes might not take affect as
+				long as you did not restart.
 			</p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/OpenOfficeConverter.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/OpenOfficeConverter.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/OpenOfficeConverter.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/OpenOfficeConverter.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - OpenOffice converter for OpenMeetings</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,24 +867,24 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>To import .doc, .docx, .odp, .xls, .xlsx, .ppt, .pptx, ... [ all files that you can open with OpenOffice ] 
-            to OpenMeetings and use them in the whiteboard you need OpenOffice as Service running on 
-				the machine that runs OpenMeetings.<br />
+                                    <p>To import .doc, .docx, .odp, .xls, .xlsx, .ppt, .pptx, ... [ all files that you can open with OpenOffice ] 
+            to OpenMeetings and use them in the whiteboard you need OpenOffice as Service running on 
+				the machine that runs OpenMeetings.<br />
 			</p>
                                                 <p>Converter works with both: OpenOffice or LibreOffice.</p>
                                                 <p>You should use an OpenOffice version greater 3</p>
-                                                <ul>
-				<li>Linux (Debian, et cetera): You have to start OpenOffice in "headless" modus. This requires NO graphical user interface on the server! 
-                    So there is no need to install xvfb or anything like that. However you should install ALL OpenOffice packages, 
-					for example if you want to enable the .xls, .xlsx import you need to install the openoffice-calc package.<br />
-					You can start OpenOffice Service with this command: <br />
-					<tt>/path/to/openoffice/program/soffice.bin -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service" </tt>
-					<br />
-					It might makes sense to install ms-corefonts package on Linux machines to have MS fonts available.
-				</li>
-				<li>for Mac OS X: <tt>/path/to/openoffice.app/Contents/!MacOS/soffice.bin -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service"</tt> 
-				</li>
-				<li>for Windows: <tt>soffice.exe -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service"</tt> </li>
+                                                <ul>
+				<li>Linux (Debian, et cetera): You have to start OpenOffice in "headless" modus. This requires NO graphical user interface on the server! 
+                    So there is no need to install xvfb or anything like that. However you should install ALL OpenOffice packages, 
+					for example if you want to enable the .xls, .xlsx import you need to install the openoffice-calc package.<br />
+					You can start OpenOffice Service with this command: <br />
+					<tt>/path/to/openoffice/program/soffice.bin -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service" </tt>
+					<br />
+					It might makes sense to install ms-corefonts package on Linux machines to have MS fonts available.
+				</li>
+				<li>for Mac OS X: <tt>/path/to/openoffice.app/Contents/!MacOS/soffice.bin -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service"</tt> 
+				</li>
+				<li>for Windows: <tt>soffice.exe -headless -nofirststartwizard -accept="socket,host=localhost,port=8100;urp;StarOffice.Service"</tt> </li>
 			</ul>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/OracleConfig.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/OracleConfig.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/OracleConfig.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/OracleConfig.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@incubator.apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - IBM DB2 Configuration</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -870,15 +875,15 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>Download the latest JDBC Driver from Oracle for your database
-						version. Place those JARs into
-						$Red5/webapps/openmeetings/WEB-INF/lib
-					</li>
-					<li>If you encounter issues, you can drop the db again and delete
-						the file $red5/webapps/openmeetings/conf/install.xml and then run
-						the web based installer again
-					</li>
+                                    <ul>
+					<li>Download the latest JDBC Driver from Oracle for your database
+						version. Place those JARs into
+						$Red5/webapps/openmeetings/WEB-INF/lib
+					</li>
+					<li>If you encounter issues, you can drop the db again and delete
+						the file $red5/webapps/openmeetings/conf/install.xml and then run
+						the web based installer again
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -892,27 +897,27 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>
-						Rename:
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/oracle_persistence.xml
-						<br />
-						to
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-					</li>
-					<li>
-						Prepare Database Settings - go to
-						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-						<br />
-						Alter config values in persistence.xml connectionURL, username and
-						password with your values
-					</li>
-					<li>
-						Run red5-service and goto the web-based installer:
-						http://localhost:5080/openmeetings/install
-					</li>
+                                    <ul>
+					<li>
+						Rename:
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/oracle_persistence.xml
+						<br />
+						to
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+					</li>
+					<li>
+						Prepare Database Settings - go to
+						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+						<br />
+						Alter config values in persistence.xml connectionURL, username and
+						password with your values
+					</li>
+					<li>
+						Run red5-service and goto the web-based installer:
+						http://localhost:5080/openmeetings/install
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -926,11 +931,11 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-					There is a sample configuration for Oracle that ships with
-					every release in:
-					<br />
-					/webapps/openmeetings/WEB-INF/classes/META-INF/oracle_persistence.xml
+                                    <p>
+					There is a sample configuration for Oracle that ships with
+					every release in:
+					<br />
+					/webapps/openmeetings/WEB-INF/classes/META-INF/oracle_persistence.xml
 				</p>
                             </blockquote>
       </td></tr>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/PortSettings.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/PortSettings.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/PortSettings.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/PortSettings.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Port settings</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,13 +867,13 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-				<li>Port 5080: HTTP (For example for file upload and download) </li>
-				<li>Port 1935: RTMP (Flash Stream and Remoting/RPC) </li>
-				<li>Port 8088: RTMP over HTTP-Tunneling (rtmpT) </li>
+                                    <ul>
+				<li>Port 5080: HTTP (For example for file upload and download) </li>
+				<li>Port 1935: RTMP (Flash Stream and Remoting/RPC) </li>
+				<li>Port 8088: RTMP over HTTP-Tunneling (rtmpT) </li>
 			</ul>
-                                                <p>Additionally red5 uses some ports internally. However those ports
-				are not in use by OpenMeetings by default.
+                                                <p>Additionally red5 uses some ports internally. However those ports
+				are not in use by OpenMeetings by default.
 			</p>
                             </blockquote>
         </p>
@@ -885,17 +890,17 @@ limitations under the License.
       <tr><td>
         <blockquote>
                                     <p>You need to change two files: </p>
-                                                <ul>
-				<li>Server-Side configuration: $RED5_HOME/conf/red5.properties, you
-					need to restart the red5-service so that changes are online.
-				</li>
-				<li>Client-Side configuration:
-					$RED5_HOME/webapps/openmeetings/config.xml, you need to clear your
-					browser cache after changing the file.
-				</li>
-				<blockquote>Every server side configuration has a client side
-					representive
-				</blockquote>
+                                                <ul>
+				<li>Server-Side configuration: $RED5_HOME/conf/red5.properties, you
+					need to restart the red5-service so that changes are online.
+				</li>
+				<li>Client-Side configuration:
+					$RED5_HOME/webapps/openmeetings/config.xml, you need to clear your
+					browser cache after changing the file.
+				</li>
+				<blockquote>Every server side configuration has a client side
+					representive
+				</blockquote>
 			</ul>
                                                 <p />
                                                 <table>
@@ -1002,14 +1007,14 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>A common way of bypassing the firewall is to change HTTP port to
+                                    <p>A common way of bypassing the firewall is to change HTTP port to
 				80 and rtmpT to 443. </p>
-                                                <p>A short description about the connection mechanism: The
-				application first tries connecting to rtmp 3 times, because rtmp is
-				the protocol that is less performance hungry. If that fails the
+                                                <p>A short description about the connection mechanism: The
+				application first tries connecting to rtmp 3 times, because rtmp is
+				the protocol that is less performance hungry. If that fails the
 				application will fallback to rtmpT. </p>
-                                                <p>Most firewalls do allow traffic on port 443 and they normally do
-				not analyse the packets, because 443 is normally SSL encrypted, so
+                                                <p>Most firewalls do allow traffic on port 443 and they normally do
+				not analyse the packets, because 443 is normally SSL encrypted, so
 				the firewall should not be able to read the packets at all. </p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/PostgresConfig.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/PostgresConfig.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/PostgresConfig.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/PostgresConfig.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@incubator.apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Postgres Configuration</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -870,20 +875,20 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>Make sure that you have set utf8 as default/server-character-set 
-					</li>
-					<li>
-						make sure Postgres is listening on TCP/IP connections!
-						<br />
-						To verify if Postgres connection is working: OpenMeetings will
-						automatically create all tables in the database and all tables
-						should have utf8 as encoding/collation!
-					</li>
-					<li>If you encounter issues, you can drop the db again and delete
-						the file $red5/webapps/openmeetings/conf/install.xml and then run
-						the web based installer again
-					</li>
+                                    <ul>
+					<li>Make sure that you have set utf8 as default/server-character-set 
+					</li>
+					<li>
+						make sure Postgres is listening on TCP/IP connections!
+						<br />
+						To verify if Postgres connection is working: OpenMeetings will
+						automatically create all tables in the database and all tables
+						should have utf8 as encoding/collation!
+					</li>
+					<li>If you encounter issues, you can drop the db again and delete
+						the file $red5/webapps/openmeetings/conf/install.xml and then run
+						the web based installer again
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -897,27 +902,27 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <ul>
-					<li>
-						Rename:
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/postgres_persistence.xml
-						<br />
-						to
-						<br />
-						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-					</li>
-					<li>
-						Prepare Database Settings - go to
-						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
-						<br />
-						Alter config values in persistence.xml DB_HOST USER_NAME USER_PASS
-						with your values
-					</li>
-					<li>
-						Run red5-service and goto the web-based installer:
-						http://localhost:5080/openmeetings/install
-					</li>
+                                    <ul>
+					<li>
+						Rename:
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/postgres_persistence.xml
+						<br />
+						to
+						<br />
+						$red5/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+					</li>
+					<li>
+						Prepare Database Settings - go to
+						openmeetings_version_no_xx/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
+						<br />
+						Alter config values in persistence.xml DB_HOST USER_NAME USER_PASS
+						with your values
+					</li>
+					<li>
+						Run red5-service and goto the web-based installer:
+						http://localhost:5080/openmeetings/install
+					</li>
 				</ul>
                             </blockquote>
       </td></tr>
@@ -931,12 +936,12 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-					There is a sample configuration for Postgres that ships with
-					every
-					release in:
-					<br />
-					/webapps/openmeetings/WEB-INF/classes/META-INF/postgres_persistence.xml
+                                    <p>
+					There is a sample configuration for Postgres that ships with
+					every
+					release in:
+					<br />
+					/webapps/openmeetings/WEB-INF/classes/META-INF/postgres_persistence.xml
 				</p>
                             </blockquote>
       </td></tr>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/RTMPSAndHTTPS.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/RTMPSAndHTTPS.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/RTMPSAndHTTPS.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/RTMPSAndHTTPS.html Thu Apr 12 10:42:47 2012
@@ -267,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -508,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -790,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/RestAPISample.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/RestAPISample.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/RestAPISample.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/RestAPISample.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Home</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,7 +867,7 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p> For a detailed instruction which services, methods and params are available see the list in the SoapMethods. ALL methods that are implemented for the SOAP API are also available via REST. 
+                                    <p> For a detailed instruction which services, methods and params are available see the list in the SoapMethods. ALL methods that are implemented for the SOAP API are also available via REST. 
 			</p>
                             </blockquote>
         </p>
@@ -878,53 +883,53 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>For example for the method getSession in the UserService, you would use this URL via REST:
+                                    <p>For example for the method getSession in the UserService, you would use this URL via REST:
 			</p>
                                                 <p>Sample URL: </p>
                                                 <a href="http://demo.openmeetings.de/openmeetings/services/UserService/getSession">http://demo.openmeetings.de/openmeetings/services/UserService/getSession</a>
                                                 <p>Result: </p>
-                                                <div class="xmlcode">
-				&lt;ns:getSessionResponse/&gt;<br />
-				&lt;ns:return type="org.openmeetings.app.hibernate.beans.basic.Sessiondata"/&gt;<br />
-				<div style="margin-left:20px">
-					&lt;ax219:id&gt;156971&lt;/ax219:id/&gt;<br />
-					&lt;ax219:language_id xsi:nil="true"//&gt;<br />
-					&lt;ax219:organization_id xsi:nil="true"//&gt;<br />
-					&lt;ax219:refresh_time&gt;2011-07-03T14:40:44.000Z&lt;/ax219:refresh_time/&gt;<br />
-					&lt;ax219:sessionXml xsi:nil="true"//&gt;<br />
-					&lt;ax219:session_id&gt;26584705202d7c1de6cc8e7e28890e3d&lt;/ax219:session_id/&gt;<br />
-					&lt;ax219:starttermin_time&gt;2011-07-03T14:40:44.000Z&lt;/ax219:starttermin_time/&gt;<br />
-					&lt;ax219:storePermanent xsi:nil="true"//&gt;<br />
-					&lt;ax219:user_id xsi:nil="true"//&gt;<br />
-				</div>
-				&lt;/ns:return/&gt;<br />
-				&lt;/ns:getSessionResponse/&gt;<br />
+                                                <div class="xmlcode">
+				&lt;ns:getSessionResponse/&gt;<br />
+				&lt;ns:return type="org.openmeetings.app.hibernate.beans.basic.Sessiondata"/&gt;<br />
+				<div style="margin-left:20px">
+					&lt;ax219:id&gt;156971&lt;/ax219:id/&gt;<br />
+					&lt;ax219:language_id xsi:nil="true"//&gt;<br />
+					&lt;ax219:organization_id xsi:nil="true"//&gt;<br />
+					&lt;ax219:refresh_time&gt;2011-07-03T14:40:44.000Z&lt;/ax219:refresh_time/&gt;<br />
+					&lt;ax219:sessionXml xsi:nil="true"//&gt;<br />
+					&lt;ax219:session_id&gt;26584705202d7c1de6cc8e7e28890e3d&lt;/ax219:session_id/&gt;<br />
+					&lt;ax219:starttermin_time&gt;2011-07-03T14:40:44.000Z&lt;/ax219:starttermin_time/&gt;<br />
+					&lt;ax219:storePermanent xsi:nil="true"//&gt;<br />
+					&lt;ax219:user_id xsi:nil="true"//&gt;<br />
+				</div>
+				&lt;/ns:return/&gt;<br />
+				&lt;/ns:getSessionResponse/&gt;<br />
 			</div>
                                                 <p>To login a user the call to auth would be:</p>
                                                 <p>Sample URL: </p>
                                                 <a href="http://demo.openmeetings.de/openmeetings/services/UserService/loginUser?SID=26584705202d7c1de6cc8e7e28890e3d&amp;username=hans&amp;userpass=test">http://demo.openmeetings.de/openmeetings/services/UserService/loginUser?SID=26584705202d7c1de6cc8e7e28890e3d&amp;username=han&amp;userpass=test</a>
                                                 <p>Result: </p>
-                                                <div class="xmlcode">
-				&lt;ns:loginUserResponse/&gt;<br />
-				<div style="margin-left:20px">
-				    &lt;ns:return&gt;-11&lt;/ns:return/&gt;<br />
-				</div>
-				&lt;/ns:loginUserResponse/&gt;<br />
+                                                <div class="xmlcode">
+				&lt;ns:loginUserResponse/&gt;<br />
+				<div style="margin-left:20px">
+				    &lt;ns:return&gt;-11&lt;/ns:return/&gt;<br />
+				</div>
+				&lt;/ns:loginUserResponse/&gt;<br />
 			</div>
                                                 <p>=&gt; It does return -10, which is the error id cause we will not write down a SOAP login to our public server in this wiki. However the correct way to check this error would be to invoke the call to get the localized error message. So we invoke the method to get the error via REST:</p>
                                                 <p>Sample URL: </p>
                                                 <a href="http://demo.openmeetings.de/openmeetings/services/UserService/getErrorByCode?SID=26584705202d7c1de6cc8e7e28890e3d&amp;errorid=-10&amp;language_id=1">http://demo.openmeetings.de/openmeetings/services/UserService/getErrorByCode?SID=26584705202d7c1de6cc8e7e28890e3d&amp;errorid=-10&amp;language_id=1</a>
                                                 <p>Result:</p>
-                                                <div class="xmlcode">
-				&lt;ns:getErrorByCodeResponse/&gt;<br />
-				&lt;ns:return type="org.openmeetings.app.data.beans.basic.ErrorResult"/&gt;<br />
-				<div style="margin-left:20px">
-					&lt;ax218:errmessage&gt;Username not found&lt;/ax218:errmessage/&gt;<br />
-					&lt;ax218:errorId&gt;-10&lt;/ax218:errorId/&gt;<br />
-					&lt;ax218:errortype&gt;Error&lt;/ax218:errortype/&gt;<br />
-				</div>
-				&lt;/ns:return/&gt;<br />
-				&lt;/ns:getErrorByCodeResponse/&gt;<br />
+                                                <div class="xmlcode">
+				&lt;ns:getErrorByCodeResponse/&gt;<br />
+				&lt;ns:return type="org.openmeetings.app.data.beans.basic.ErrorResult"/&gt;<br />
+				<div style="margin-left:20px">
+					&lt;ax218:errmessage&gt;Username not found&lt;/ax218:errmessage/&gt;<br />
+					&lt;ax218:errorId&gt;-10&lt;/ax218:errorId/&gt;<br />
+					&lt;ax218:errortype&gt;Error&lt;/ax218:errortype/&gt;<br />
+				</div>
+				&lt;/ns:return/&gt;<br />
+				&lt;/ns:getErrorByCodeResponse/&gt;<br />
 			</div>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/RestrictedAccess.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/RestrictedAccess.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/RestrictedAccess.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/RestrictedAccess.html Thu Apr 12 10:42:47 2012
@@ -267,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -508,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -790,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/SakaiPlugin.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/SakaiPlugin.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/SakaiPlugin.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/SakaiPlugin.html Thu Apr 12 10:42:47 2012
@@ -34,11 +34,8 @@ limitations under the License.
             <meta name="email" value="sebawagner@apache.org">
             
            
-            
-            
-            
-            
-            
+                                    
+                        
             <title>Apache OpenMeetings - Sakai Plugin</title>
             <link rel="stylesheet" type="text/css" href="css/openmeetings.css">
             <link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
@@ -270,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -511,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -793,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>
@@ -862,36 +867,36 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-				In 2010,
-				<a rel="nofollow" href="http://www.samoo.es" target="_blank">Samoo company
-				</a>
-				has developed a plugin that integrates Sakai LMS and OpenMeetings
-				.
+                                    <p>
+				In 2010,
+				<a rel="nofollow" href="http://www.samoo.es" target="_blank">Samoo company
+				</a>
+				has developed a plugin that integrates Sakai LMS and OpenMeetings
+				.
 			</p>
-                                                <p>
-				The plugin was developed for some Spanish Universities that use
-				Sakai and belongs to
-				<a rel="nofollow" target="_blank" href="https://confluence.sakaiproject.org/display/SPANISH/S2G+-+Spanish+Sakai+Group">"Spanish Sakai Universities"</a>
-				group:
+                                                <p>
+				The plugin was developed for some Spanish Universities that use
+				Sakai and belongs to
+				<a rel="nofollow" target="_blank" href="https://confluence.sakaiproject.org/display/SPANISH/S2G+-+Spanish+Sakai+Group">"Spanish Sakai Universities"</a>
+				group:
 			</p>
-                                                <ul>
-				<li>
-					<a rel="nofollow" href="http://www.udl.es/" target="_blank">Universitat de Lleida </a>
-				</li>
-				<li>
-					<a rel="nofollow" href="http://www.upv.es/" target="_blank">Universidad Politécnica de Valencia </a>
-				</li>
-				<li>
-					<a rel="nofollow" href="http://www.um.es/" target="_blank">Universidad de Murcia</a>
-				</li>
-				<li>
-					<a rel="nofollow" href="http://www.unavarra.es/" target="_blank">Universidad Pública de Navarra</a>
-				</li>
-				<li>
-					<a rel="nofollow" href="http://www.ucam.edu/" target="_blank">Universidad Católica San Antonio de Murcia
-					</a>
-				</li>
+                                                <ul>
+				<li>
+					<a rel="nofollow" href="http://www.udl.es/" target="_blank">Universitat de Lleida </a>
+				</li>
+				<li>
+					<a rel="nofollow" href="http://www.upv.es/" target="_blank">Universidad Politécnica de Valencia </a>
+				</li>
+				<li>
+					<a rel="nofollow" href="http://www.um.es/" target="_blank">Universidad de Murcia</a>
+				</li>
+				<li>
+					<a rel="nofollow" href="http://www.unavarra.es/" target="_blank">Universidad Pública de Navarra</a>
+				</li>
+				<li>
+					<a rel="nofollow" href="http://www.ucam.edu/" target="_blank">Universidad Católica San Antonio de Murcia
+					</a>
+				</li>
 			</ul>
                             </blockquote>
         </p>
@@ -908,23 +913,23 @@ limitations under the License.
       <tr><td>
         <blockquote>
                                     <p>The plugin contains the following features: </p>
-                                                <ul>
-				<li>Create videoconference rooms through Sakai: </li>
-				<ol>
-					<li>Integrated with calendar </li>
-					<li>Integrated with announcements </li>
-					<li>Sends an email to all site participants </li>
-					<li>Rooms restricted to site groups </li>
-					<li>Configurable room type </li>
-				</ol>
+                                                <ul>
+				<li>Create videoconference rooms through Sakai: </li>
+				<ol>
+					<li>Integrated with calendar </li>
+					<li>Integrated with announcements </li>
+					<li>Sends an email to all site participants </li>
+					<li>Rooms restricted to site groups </li>
+					<li>Configurable room type </li>
+				</ol>
 			</ul>
                                                 <p />
-                                                <ul>
-				<li>Future requirements </li>
-				<ol>
-					<li>Publish room recordings to students </li>
-					<li>Room reservation </li>
-				</ol>
+                                                <ul>
+				<li>Future requirements </li>
+				<ol>
+					<li>Publish room recordings to students </li>
+					<li>Room reservation </li>
+				</ol>
 			</ul>
                             </blockquote>
         </p>
@@ -940,9 +945,9 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-				You can download and build the source code
-				<a rel="nofollow" target="_blank" href="https://source.sakaiproject.org/contrib/samoo/adobeconnectpro-openmeetings-integration/trunk/">here</a>
+                                    <p>
+				You can download and build the source code
+				<a rel="nofollow" target="_blank" href="https://source.sakaiproject.org/contrib/samoo/adobeconnectpro-openmeetings-integration/trunk/">here</a>
 			</p>
                             </blockquote>
         </p>
@@ -958,17 +963,17 @@ limitations under the License.
       </td></tr>
       <tr><td>
         <blockquote>
-                                    <p>
-				The documentation resides in the
-				<a rel="nofollow" target="_blank" href="https://confluence.sakaiproject.org/display/OPENMTG/Home">Sakai confluence space</a>
+                                    <p>
+				The documentation resides in the
+				<a rel="nofollow" target="_blank" href="https://confluence.sakaiproject.org/display/OPENMTG/Home">Sakai confluence space</a>
 			</p>
-                                                <p>
-				Please contact the mailing list for further information. For
-				commercial support you can also contact
-				<a rel="nofollow" href="http://www.samoo.es" target="_blank">Samoo company</a>
-				or other companies from the list of
-				<a href="commercial-support.html">commercial support</a>
-				.
+                                                <p>
+				Please contact the mailing list for further information. For
+				commercial support you can also contact
+				<a rel="nofollow" href="http://www.samoo.es" target="_blank">Samoo company</a>
+				or other companies from the list of
+				<a href="commercial-support.html">commercial support</a>
+				.
 			</p>
                             </blockquote>
         </p>

Modified: incubator/openmeetings/trunk/singlewebapp/docs/SoapRestAPI.html
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/docs/SoapRestAPI.html?rev=1325198&r1=1325197&r2=1325198&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/docs/SoapRestAPI.html (original)
+++ incubator/openmeetings/trunk/singlewebapp/docs/SoapRestAPI.html Thu Apr 12 10:42:47 2012
@@ -267,7 +267,11 @@ limitations under the License.
 				            				currentLocation = "Configuration";
 					            			currentLink = "/JVMPerformanceTuning.html".substr(1, "/JVMPerformanceTuning.html".length);
 						            	} 
-				            							        				        							            				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
+				            							        				        							            				            						            			else if (document.location.href.indexOf("/themes-and-branding.html") > 0) {
+				            				currentLocation = "Configuration";
+					            			currentLink = "/themes-and-branding.html".substr(1, "/themes-and-branding.html".length);
+						            	} 
+				            						            			else if (document.location.href.indexOf("/BrandingAndColors.html") > 0) {
 				            				currentLocation = "Configuration";
 					            			currentLink = "/BrandingAndColors.html".substr(1, "/BrandingAndColors.html".length);
 						            	} 
@@ -508,6 +512,8 @@ limitations under the License.
 	            			            			    <a href="./JVMPerformanceTuning.html">JVM performance tuning</a>
 <br/>
 	            			        		        	            	            	<b>User Interface</b><br/>
+	            			            			    <a href="./themes-and-branding.html">Themes</a>
+<br/>
 	            			            			    <a href="./BrandingAndColors.html">Branding and Colors</a>
 <br/>
 	            			            			    <a href="./Dashboard.html">Dashboard</a>
@@ -790,6 +796,8 @@ limitations under the License.
 		            	</li>
 		        			        		            		            	<li><font color="#000000" face="arial,helvetica,sanserif" size="2pt">User Interface</font>
 		            		<ul>
+		            				            			<li>    <a href="./themes-and-branding.html">Themes</a>
+</li>
 		            				            			<li>    <a href="./BrandingAndColors.html">Branding and Colors</a>
 </li>
 		            				            			<li>    <a href="./Dashboard.html">Dashboard</a>