http://git-wip-us.apache.org/repos/asf/openmeetings-site/blob/99bdb151/js/reflow-scroll.js
----------------------------------------------------------------------
diff --git a/js/reflow-scroll.js b/js/reflow-scroll.js
index 9acba34..8334de9 100644
--- a/js/reflow-scroll.js
+++ b/js/reflow-scroll.js
@@ -1,23 +1,37 @@
-// Support for smooth scrolling
-// (simplified version, taken from http://stackoverflow.com/a/14805098/1173184)
+
 $(window).load(function(){
   
$('a[href^="#"]:not([href^="#carousel"]):not([data-toggle="dropdown"])').on('click',
 function(e) {
 
+    function scrollTo(el, offset, clbck) {
+      var pos = (el && el.length > 0) ? el.offset().top : 0;
+      pos = pos + (offset ? offset : 0);
+
+      $('html,body').animate({
+          scrollTop: pos
+      }, 300, clbck);
+    };
+
      // prevent default anchor click behavior
      e.preventDefault();
 
      // store hash
      var hash = this.hash;
 
-     // animate
-     $('html, body').animate({
-         scrollTop: $(this.hash).offset().top
-       }, 300, function(){
-
-         // when done, add hash to url
-         // (default click behaviour)
-         window.location.hash = hash;
-       });
+    if (hash === "") {
+      // other
+      scrollTo();
+    } else {
+      // heading click
+      scrollTo(
+        $(this.hash),
+        undefined,
+        function(){
+          // when done, add hash to url
+          // (default click behaviour)
+          window.location.hash = hash;
+        }
+      );
+    }
 
   });
 });

http://git-wip-us.apache.org/repos/asf/openmeetings-site/blob/99bdb151/js/site.js
----------------------------------------------------------------------
diff --git a/js/site.js b/js/site.js
index 88fcece..0791c1f 100644
--- a/js/site.js
+++ b/js/site.js
@@ -23,4 +23,14 @@ $(document).ready(function() {
        for (var i = 0; i < topics.length; ++i) {
                $('ul.nav li a[title="' + topics[i] + 
'"').append('&nbsp;&nbsp;<span class="label label-success">New</span>')
        }
+       var toc = $('#toc-sidebar'), row = toc.parents('.row');
+       $(document).on('scroll', function() {
+               if (!toc.is(":visible")) {
+                       return;
+               }
+               var tv = Math.min(Math.max(0, 60 + $(document).scrollTop() - 
row.position().top)
+                               , row.height() - toc.height() - 20);
+               //console.log("top -> " + tv);
+               toc.css('top', tv + "px");
+       });
 })

http://git-wip-us.apache.org/repos/asf/openmeetings-site/blob/99bdb151/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index 3f56503..d5860db 100644
--- a/license.html
+++ b/license.html
@@ -1,248 +1,232 @@
 
-<!DOCTYPE html>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <!--
- Generated by Apache Maven Doxia at 2017-10-30
- Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
+ Generated by Apache Maven Doxia at 2017-12-06
+ Rendered using Reflow Maven Skin 1.3.3 
(http://devacfr.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
 
-       <head>
-               <meta charset="UTF-8" />
-               <title>Apache OpenMeetings Project - Project Licenses</title>
-               <meta name="viewport" content="width=device-width, 
initial-scale=1.0" />
-               <meta name="description" content="" />
-               <meta http-equiv="content-language" content="en" />
- 
-               <link href=".//css/bootstrap.min.css" rel="stylesheet" />
-               <link href=".//css/bootstrap-responsive.min.css" 
rel="stylesheet" />
-               <link href=".//css/docs.css" rel="stylesheet" />
-               <link href=".//css/reflow-skin.css" rel="stylesheet" />
-
-
-               <link href=".//css/lightbox.css" rel="stylesheet" />
-
-               <link href=".//css/site.css" rel="stylesheet" />
-               <link href=".//css/print.css" rel="stylesheet" media="print" />
-
-               <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
-               <!--[if lt IE 9]>
-                       <script src=".//js/html5.js"></script>
-               <![endif]-->
-
-
-               
-       </head>
-
-       <body class="page-license project-openmeetings-server" 
data-spy="scroll" data-offset="60" data-target="#toc-scroll-target">
-
-               <div class="navbar navbar-fixed-top">
-                       <div class="navbar-inner">
-                               <div class="container">
-                                       <a class="btn btn-navbar" 
data-toggle="collapse" data-target="#top-nav-collapse">
-                                               <span class="icon-bar"></span>
-                                               <span class="icon-bar"></span>
-                                               <span class="icon-bar"></span>
-                                       </a>
-                                       <div class="brand"><span 
class="color-highlight">Apache</span> OpenMeetings</div>
-                                       <div class="nav-collapse collapse" 
id="top-nav-collapse">
-                                               <ul class="nav pull-right">
-                                                       <li ><a 
href="demo.html" title="Demo">Demo</a></li>
-                                                       <li ><a 
href="downloads.html" title="Download">Download</a></li>
-                                                       <li ><a 
href="https://cwiki.apache.org/confluence/display/OPENMEETINGS"; title="Wiki" 
class="externalLink">Wiki</a></li>
-                                                       <li class="dropdown">
-                                                               <a href="#" 
class="dropdown-toggle" data-toggle="dropdown">General <b class="caret"></b></a>
-                                                               <ul 
class="dropdown-menu">
-                                                                       <li ><a 
href="index.html" title="Home">Home</a></li>
-                                                                       <li ><a 
href="http://www.apache.org/licenses/"; title="License" 
class="externalLink">License</a></li>
-                                                                       <li ><a 
href="http://www.apache.org/"; title="ASF" class="externalLink">ASF</a></li>
-                                                                       <li ><a 
href="https://www.apache.org/foundation/sponsorship"; title="Sponsorship" 
class="externalLink">Sponsorship</a></li>
-                                                                       <li ><a 
href="https://www.apache.org/foundation/thanks"; title="Thanks" 
class="externalLink">Thanks</a></li>
-                                                                       <li ><a 
href="CallForLogo.html" title="Call For Logo">Call For Logo</a></li>
-                                                                       <li ><a 
href="NewsArchive.html" title="News archive">News archive</a></li>
-                                                                       <li ><a 
href="security.html" title="Security">Security</a></li>
-                                                                       <li ><a 
href="commercial-support.html" title="Commercial Support">Commercial 
Support</a></li>
-                                                               </ul>
-                                                       </li>
-                                                       <li class="dropdown">
-                                                               <a href="#" 
class="dropdown-toggle" data-toggle="dropdown">Installation <b 
class="caret"></b></a>
-                                                               <ul 
class="dropdown-menu">
-                                                                       <li ><a 
href="installation.html" title="Installation">Installation</a></li>
-                                                                       <li ><a 
href="Upgrade.html" title="Upgrade">Upgrade</a></li>
-                                                                       <li ><a 
href="https://cwiki.apache.org/confluence/display/OPENMEETINGS/Tutorials+for+installing+OpenMeetings+and+Tools";
 title="Tutorials" class="externalLink">Tutorials</a></li>
-                                                                       <li ><a 
href="CommandLineAdmin.html" title="Command Line Admin">Command Line 
Admin</a></li>
-                                                               </ul>
-                                                       </li>
-                                                       <li class="dropdown">
-                                                               <a href="#" 
class="dropdown-toggle" data-toggle="dropdown">Community <b 
class="caret"></b></a>
-                                                               <ul 
class="dropdown-menu">
-                                                                       <li ><a 
href="get-involved.html" title="Get Involved">Get Involved</a></li>
-                                                                       <li ><a 
href="team-list.html" title="Committers">Committers</a></li>
-                                                                       <li ><a 
href="OurUsers.html" title="Our Users">Our Users</a></li>
-                                                                       <li ><a 
href="mail-lists.html" title="Mailing Lists">Mailing Lists</a></li>
-                                                                       <li ><a 
href="http://cwiki.apache.org/confluence/display/OPENMEETINGS/"; title="Wiki" 
class="externalLink">Wiki</a></li>
-                                                               </ul>
-                                                       </li>
-                                                       <li class="dropdown">
-                                                               <a href="#" 
class="dropdown-toggle" data-toggle="dropdown">Development <b 
class="caret"></b></a>
-                                                               <ul 
class="dropdown-menu">
-                                                                       <li ><a 
href="source-repository.html" title="Source Code">Source Code</a></li>
-                                                                       <li ><a 
href="issue-tracking.html" title="Bugs / Issues">Bugs / Issues</a></li>
-                                                                       <li ><a 
href="dependencies.html" title="Dependencies">Dependencies</a></li>
-                                                                       <li ><a 
href="integration.html" title="Continuous Integration">Continuous 
Integration</a></li>
-                                                                       <li ><a 
href="BuildInstructions_3.0.x.html" title="Build Instructions 3.0.x">Build 
Instructions 3.0.x</a></li>
-                                                                       <li ><a 
href="BuildInstructions.html" title="Build Instructions">Build 
Instructions</a></li>
-                                                                       <li ><a 
href="JUnitTesting.html" title="JUnit Testing">JUnit Testing</a></li>
-                                                                       <li ><a 
href="ManualTesting.html" title="Manual Testing">Manual Testing</a></li>
-                                                                       <li ><a 
href="ReleaseGuide.html" title="Release Guide">Release Guide</a></li>
-                                                                       <li ><a 
href="WebsiteGuide.html" title="Website Guide">Website Guide</a></li>
-                                                               </ul>
-                                                       </li>
-                                                       <li class="dropdown">
-                                                               <a href="#" 
class="dropdown-toggle" data-toggle="dropdown">Configuration <b 
class="caret"></b></a>
-                                                               <ul 
class="dropdown-menu">
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#integration" title="Integration">Integration</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="openmeetings-webservice/apidocs/index.html" 
title="SOAP/REST API" target="_blank">SOAP/REST API</a></li>
-                                                                               
        <li ><a href="RestAPISample.html" title="REST API Sample">REST API 
Sample</a></li>
-                                                                               
        <li ><a href="LdapAndADS.html" title="Ldap and ADS">Ldap and 
ADS</a></li>
-                                                                               
        <li ><a href="oauth2.html" title="OAuth2">OAuth2</a></li>
-                                                                               
        <li ><a href="voip-sip-integration.html" title="VoIP and SIP">VoIP and 
SIP</a></li>
-                                                                               
        <li ><a href="errorvalues.html" title="Errors table">Errors 
table</a></li>
-                                                                               
        <li ><a href="CalDAVandGCal.html" title="CalDAV and Google Calendar 
integration">CalDAV and Google Calendar integration</a></li>
-                                                                               
        <li ><a href="ExternalVideo.html" title="External 
Video/Camera">External Video/Camera</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#plugins" title="Plugins">Plugins</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="MoodlePlugin.html" title="Moodle Plugin">Moodle 
Plugin</a></li>
-                                                                               
        <li ><a href="SakaiPlugin.html" title="Sakai Plugin">Sakai 
Plugin</a></li>
-                                                                               
        <li ><a href="JiraPlugin.html" title="Jira Plugin">Jira Plugin</a></li>
-                                                                               
        <li ><a href="JoomlaPlugin.html" title="Joomla Plugin">Joomla 
Plugin</a></li>
-                                                                               
        <li ><a href="DrupalPlugin.html" title="Drupal Plugin">Drupal 
Plugin</a></li>
-                                                                               
        <li ><a href="BitrixPlugin.html" title="Bitrix Plugin">Bitrix 
Plugin</a></li>
-                                                                               
        <li ><a href="ConfluencePlugin.html" title="Confluence 
Plugin">Confluence Plugin</a></li>
-                                                                               
        <li ><a href="SugarCRMPlugin.html" title="SugarCRM Plugin">SugarCRM 
Plugin</a></li>
-                                                                               
        <li ><a href="RedminePlugin.html" title="Redmine Plugin">Redmine 
Plugin</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#db" title="DB Sample Configurations">DB Sample 
Configurations</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="ApacheDerbyConfig.html" title="Apache Derby">Apache 
Derby</a></li>
-                                                                               
        <li ><a href="IBMDB2Config.html" title="IBM DB2">IBM DB2</a></li>
-                                                                               
        <li ><a href="OracleConfig.html" title="Oracle">Oracle</a></li>
-                                                                               
        <li ><a href="MySQLConfig.html" title="MySQL">MySQL</a></li>
-                                                                               
        <li ><a href="PostgresConfig.html" title="Postgres">Postgres</a></li>
-                                                                               
        <li ><a href="MSSQLConfig.html" title="MSSQL">MSSQL</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#localization" title="Localization and 
languages">Localization and languages</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="Internationalisation.html" 
title="Internationalisation">Internationalisation</a></li>
-                                                                               
        <li ><a href="LanguageEditor.html" 
title="LanguageEditor">LanguageEditor</a></li>
-                                                                               
        <li ><a href="TimeZoneHandling.html" 
title="TimeZoneHandling">TimeZoneHandling</a></li>
-                                                                               
        <li ><a href="EditTemplates.html" 
title="EditTemplates">EditTemplates</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#port" title="NAT Port Settings">NAT Port Settings</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="PortSettings.html" title="Port settings">Port 
settings</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#performance" title="Performance">Performance</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="JVMPerformanceTuning.html" title="JVM performance 
tuning">JVM performance tuning</a></li>
-                                                                               
        <li ><a href="NetworkCalculator.html" title="Network bandwidth 
calculator">Network bandwidth calculator</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#interface" title="User Interface">User Interface</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="themes-and-branding.html" title="Themes">Themes</a></li>
-                                                                               
        <li ><a href="Dashboard.html" title="Dashboard">Dashboard</a></li>
-                                                                               
        <li ><a href="WebcamResolutions.html" title="Webcam resolutions">Webcam 
resolutions</a></li>
-                                                                               
        <li ><a href="ConferenceRoomLayoutOptions.html" title="Room layout 
options">Room layout options</a></li>
-                                                                               
        <li ><a href="HotKeys.html" title="Hot Keys">Hot Keys</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#customize" title="Customization">Customization</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="WebappNamePath.html" title="Webapp name/path">Webapp 
name/path</a></li>
-                                                                               
        <li ><a href="Navigation.html" title="Navigation">Navigation</a></li>
-                                                                               
        <li ><a href="CalendarAndTimezone.html" title="Calendar and 
timezone">Calendar and timezone</a></li>
-                                                                               
        <li ><a href="CustomRoomTypeHowTo.html" title="Custom room type">Custom 
room type</a></li>
-                                                                               
        <li ><a href="CustomCryptMechanism.html" title="Custom crypt 
mechanism">Custom crypt mechanism</a></li>
-                                                                               
        <li ><a href="GeneralConfiguration.html" title="General 
Configuration">General Configuration</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#security" title="Security">Security</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="RestrictedAccess.html" title="Restricted 
Access">Restricted Access</a></li>
-                                                                               
        <li ><a href="RTMPSAndHTTPS.html" title="RTMPS and HTTPS">RTMPS and 
HTTPS</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#convert" title="Converters">Converters</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="OpenOfficeConverter.html" title="OpenOffice 
Converter">OpenOffice Converter</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#cluster" title="Clustering">Clustering</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="Clustering.html" title="Clustering">Clustering</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                                       <li 
class="dropdown-submenu ">
-                                                                               
<a href="license.html#misc" title="Misc">Misc</a>
-                                                                               
<ul class="dropdown-menu">
-                                                                               
        <li ><a href="GetVersionInfo.html" title="Get version info">Get version 
info</a></li>
-                                                                               
</ul>
-                                                                       </li>
-                                                               </ul>
-                                                       </li>
-                                               </ul>
-                                       </div><!--/.nav-collapse -->
-                               </div>
-                       </div>
-               </div>
-
-       <div class="container">
+        <head>
+    <meta charset="UTF-8" />
+    <title>Apache OpenMeetings Project &#x2013; Project Licenses</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="description" content="" />
+      <meta http-equiv="content-language" content="en" />
+                    <link href=".//css/bootstrap.min.css" rel="stylesheet" />
+    <link href=".//css/bootstrap-responsive.min.css" rel="stylesheet" />
+    <link href=".//css/docs.css" rel="stylesheet" />
+    <link href=".//css/reflow-skin.css" rel="stylesheet" />
+      
+    <link href=".//css/lightbox.css" rel="stylesheet" />
+    <link href=".//css/site.css" rel="stylesheet" />
+    <link href=".//css/print.css" rel="stylesheet" media="print" />
+<link rel="stylesheet" href=".//css/site.css"/>
+        </head>
+    <body class="page-license project-openmeetings-server" data-spy="scroll" 
data-offset="70" data-target="#toc-scroll-target">
 
-       <!-- Masthead
-       ================================================== -->
+    <div class="navbar  navbar-default navbar-fixed-top">
+      <div class="container">
+        <!-- Brand and toggle get grouped for better mobile display -->
+                <div class="navbar-header">
+                    <button type="button" class="navbar-toggle collapsed" 
data-toggle="collapse" data-target="#top-navbar-collapse-1" 
aria-expanded="false">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    </button>
+                        <a class="navbar-brand" href="index.html"><span 
class="color-highlight">Apache</span> OpenMeetings</a>
+        </div> <!-- .navbar-header -->
+      <div class="collapse navbar-collapse" id="top-navbar-collapse-1">
+         <ul class="nav navbar-nav navbar-right">
+<li ><a  href="demo.html"  title="Demo" >Demo</a></li>
+<li ><a  href="downloads.html"  title="Download" >Download</a></li>
+<li ><a  href="https://cwiki.apache.org/confluence/display/OPENMEETINGS";  
title="Wiki"  class="externalLink" >Wiki</a></li>
+            <li class="dropdown">
+                <a href="#" class="dropdown-toggle" 
data-toggle="dropdown">General <b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                    <li ><a  href="index.html"  title="Home" >Home</a></li>
+                    <li ><a  href="http://www.apache.org/licenses/";  
title="License"  class="externalLink" >License</a></li>
+                    <li ><a  href="http://www.apache.org/";  title="ASF"  
class="externalLink" >ASF</a></li>
+                    <li ><a  
href="https://www.apache.org/foundation/sponsorship";  title="Sponsorship"  
class="externalLink" >Sponsorship</a></li>
+                    <li ><a  href="https://www.apache.org/foundation/thanks";  
title="Thanks"  class="externalLink" >Thanks</a></li>
+                    <li ><a  href="CallForLogo.html"  title="Call For Logo" 
>Call For Logo</a></li>
+                    <li ><a  href="NewsArchive.html"  title="News archive" 
>News archive</a></li>
+                    <li ><a  href="security.html"  title="Security" 
>Security</a></li>
+                    <li ><a  href="commercial-support.html"  title="Commercial 
Support" >Commercial Support</a></li>
+            </ul>
+        </li>
+            <li class="dropdown">
+                <a href="#" class="dropdown-toggle" 
data-toggle="dropdown">Installation <b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                    <li ><a  href="installation.html"  title="Installation" 
>Installation</a></li>
+                    <li ><a  href="Upgrade.html"  title="Upgrade" 
>Upgrade</a></li>
+                    <li ><a  
href="https://cwiki.apache.org/confluence/display/OPENMEETINGS/Tutorials+for+installing+OpenMeetings+and+Tools";
  title="Tutorials"  class="externalLink" >Tutorials</a></li>
+                    <li ><a  href="CommandLineAdmin.html"  title="Command Line 
Admin" >Command Line Admin</a></li>
+            </ul>
+        </li>
+            <li class="dropdown">
+                <a href="#" class="dropdown-toggle" 
data-toggle="dropdown">Community <b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                    <li ><a  href="get-involved.html"  title="Get Involved" 
>Get Involved</a></li>
+                    <li ><a  href="team-list.html"  title="Committers" 
>Committers</a></li>
+                    <li ><a  href="OurUsers.html"  title="Our Users" >Our 
Users</a></li>
+                    <li ><a  href="mail-lists.html"  title="Mailing Lists" 
>Mailing Lists</a></li>
+                    <li ><a  
href="http://cwiki.apache.org/confluence/display/OPENMEETINGS/";  title="Wiki"  
class="externalLink" >Wiki</a></li>
+            </ul>
+        </li>
+            <li class="dropdown">
+                <a href="#" class="dropdown-toggle" 
data-toggle="dropdown">Configuration <b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                    <li class="dropdown-submenu ">
+<a  href="license.html#integration"  title="Integration" >Integration</a>      
              <ul class="dropdown-menu">
+                        <li ><a  
href="openmeetings-webservice/apidocs/index.html"  title="SOAP/REST API"  
target="_blank" >SOAP/REST API</a></li>
+                        <li ><a  href="RestAPISample.html"  title="REST API 
Sample" >REST API Sample</a></li>
+                        <li ><a  href="LdapAndADS.html"  title="Ldap and ADS" 
>Ldap and ADS</a></li>
+                        <li ><a  href="oauth2.html"  title="OAuth2" 
>OAuth2</a></li>
+                        <li ><a  href="voip-sip-integration.html"  title="VoIP 
and SIP" >VoIP and SIP</a></li>
+                        <li ><a  href="errorvalues.html"  title="Errors table" 
>Errors table</a></li>
+                        <li ><a  href="CalDAVandGCal.html"  title="CalDAV and 
Google Calendar integration" >CalDAV and Google Calendar integration</a></li>
+                        <li ><a  href="ExternalVideo.html"  title="External 
Video/Camera" >External Video/Camera</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#plugins"  title="Plugins" >Plugins</a>                  
  <ul class="dropdown-menu">
+                        <li ><a  href="MoodlePlugin.html"  title="Moodle 
Plugin" >Moodle Plugin</a></li>
+                        <li ><a  href="SakaiPlugin.html"  title="Sakai Plugin" 
>Sakai Plugin</a></li>
+                        <li ><a  href="JiraPlugin.html"  title="Jira Plugin" 
>Jira Plugin</a></li>
+                        <li ><a  href="JoomlaPlugin.html"  title="Joomla 
Plugin" >Joomla Plugin</a></li>
+                        <li ><a  href="DrupalPlugin.html"  title="Drupal 
Plugin" >Drupal Plugin</a></li>
+                        <li ><a  href="BitrixPlugin.html"  title="Bitrix 
Plugin" >Bitrix Plugin</a></li>
+                        <li ><a  href="ConfluencePlugin.html"  
title="Confluence Plugin" >Confluence Plugin</a></li>
+                        <li ><a  href="SugarCRMPlugin.html"  title="SugarCRM 
Plugin" >SugarCRM Plugin</a></li>
+                        <li ><a  href="RedminePlugin.html"  title="Redmine 
Plugin" >Redmine Plugin</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#db"  title="DB Sample Configurations" >DB Sample 
Configurations</a>                    <ul class="dropdown-menu">
+                        <li ><a  href="ApacheDerbyConfig.html"  title="Apache 
Derby" >Apache Derby</a></li>
+                        <li ><a  href="IBMDB2Config.html"  title="IBM DB2" 
>IBM DB2</a></li>
+                        <li ><a  href="OracleConfig.html"  title="Oracle" 
>Oracle</a></li>
+                        <li ><a  href="MySQLConfig.html"  title="MySQL" 
>MySQL</a></li>
+                        <li ><a  href="PostgresConfig.html"  title="Postgres" 
>Postgres</a></li>
+                        <li ><a  href="MSSQLConfig.html"  title="MSSQL" 
>MSSQL</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#localization"  title="Localization and languages" 
>Localization and languages</a>                    <ul class="dropdown-menu">
+                        <li ><a  href="Internationalisation.html"  
title="Internationalisation" >Internationalisation</a></li>
+                        <li ><a  href="LanguageEditor.html"  
title="LanguageEditor" >LanguageEditor</a></li>
+                        <li ><a  href="TimeZoneHandling.html"  
title="TimeZoneHandling" >TimeZoneHandling</a></li>
+                        <li ><a  href="EditTemplates.html"  
title="EditTemplates" >EditTemplates</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#port"  title="NAT Port Settings" >NAT Port Settings</a> 
                   <ul class="dropdown-menu">
+                        <li ><a  href="PortSettings.html"  title="Port 
settings" >Port settings</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#performance"  title="Performance" >Performance</a>      
              <ul class="dropdown-menu">
+                        <li ><a  href="JVMPerformanceTuning.html"  title="JVM 
performance tuning" >JVM performance tuning</a></li>
+                        <li ><a  href="NetworkCalculator.html"  title="Network 
bandwidth calculator" >Network bandwidth calculator</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#interface"  title="User Interface" >User Interface</a>  
                  <ul class="dropdown-menu">
+                        <li ><a  href="themes-and-branding.html"  
title="Themes" >Themes</a></li>
+                        <li ><a  href="Dashboard.html"  title="Dashboard" 
>Dashboard</a></li>
+                        <li ><a  href="WebcamResolutions.html"  title="Webcam 
resolutions" >Webcam resolutions</a></li>
+                        <li ><a  href="ConferenceRoomLayoutOptions.html"  
title="Room layout options" >Room layout options</a></li>
+                        <li ><a  href="HotKeys.html"  title="Hot Keys" >Hot 
Keys</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#customize"  title="Customization" >Customization</a>    
                <ul class="dropdown-menu">
+                        <li ><a  href="WebappNamePath.html"  title="Webapp 
name/path" >Webapp name/path</a></li>
+                        <li ><a  href="Navigation.html"  title="Navigation" 
>Navigation</a></li>
+                        <li ><a  href="CalendarAndTimezone.html"  
title="Calendar and timezone" >Calendar and timezone</a></li>
+                        <li ><a  href="CustomRoomTypeHowTo.html"  
title="Custom room type" >Custom room type</a></li>
+                        <li ><a  href="CustomCryptMechanism.html"  
title="Custom crypt mechanism" >Custom crypt mechanism</a></li>
+                        <li ><a  href="GeneralConfiguration.html"  
title="General Configuration" >General Configuration</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#security"  title="Security" >Security</a>               
     <ul class="dropdown-menu">
+                        <li ><a  href="RestrictedAccess.html"  
title="Restricted Access" >Restricted Access</a></li>
+                        <li ><a  href="RTMPSAndHTTPS.html"  title="RTMPS and 
HTTPS" >RTMPS and HTTPS</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#convert"  title="Converters" >Converters</a>            
        <ul class="dropdown-menu">
+                        <li ><a  href="OpenOfficeConverter.html"  
title="OpenOffice Converter" >OpenOffice Converter</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#cluster"  title="Clustering" >Clustering</a>            
        <ul class="dropdown-menu">
+                        <li ><a  href="Clustering.html"  title="Clustering" 
>Clustering</a></li>
+                    </ul>
+                </li>
+                    <li class="dropdown-submenu ">
+<a  href="license.html#misc"  title="Misc" >Misc</a>                    <ul 
class="dropdown-menu">
+                        <li ><a  href="GetVersionInfo.html"  title="Get 
version info" >Get version info</a></li>
+                    </ul>
+                </li>
+            </ul>
+        </li>
+            <li class="dropdown">
+                <a href="#" class="dropdown-toggle" 
data-toggle="dropdown">Development <b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                    <li ><a  href="source-repository.html"  title="Source 
Code" >Source Code</a></li>
+                    <li ><a  href="issue-tracking.html"  title="Bugs / Issues" 
>Bugs / Issues</a></li>
+                    <li ><a  href="dependencies.html"  title="Dependencies" 
>Dependencies</a></li>
+                    <li ><a  href="integration.html"  title="Continuous 
Integration" >Continuous Integration</a></li>
+                    <li ><a  href="BuildInstructions_3.0.x.html"  title="Build 
Instructions 3.0.x" >Build Instructions 3.0.x</a></li>
+                    <li ><a  href="BuildInstructions.html"  title="Build 
Instructions" >Build Instructions</a></li>
+                    <li ><a  href="JUnitTesting.html"  title="JUnit Testing" 
>JUnit Testing</a></li>
+                    <li ><a  href="ManualTesting.html"  title="Manual Testing" 
>Manual Testing</a></li>
+                    <li ><a  href="ReleaseGuide.html"  title="Release Guide" 
>Release Guide</a></li>
+                    <li ><a  href="WebsiteGuide.html"  title="Website Guide" 
>Website Guide</a></li>
+            </ul>
+        </li>
+          </ul>
+        </div><!--/.nav-collapse -->
+      </div> <!--/.container -->
+    </div> <!--/.container -->
+  <div class="container">
+  <!-- Masthead -->
+  <!-- ================================================== -->  <header>
+  <div class="jumbotron subhead">
+    <div class="row" id="banner">
+      <div class="col-md-12">
+        <div class="pull-left">
+                                      <a href="index.html" id="bannerLeft">
+                    <img src="images/logo.png"
+                 alt='"'Apache OpenMeetings'"'
+ />            </a>
+        </div>
+        <div class="pull-right">
+                                      <a href="https://apache.org"; 
id="bannerRight">
+                    <img src="https://apache.org/img/asf_logo.png";
+                 alt='"'Apache'"'
+ />            </a>
+        </div>
+      </div>
+    </div>
+  </div>
+    <div>
+      <ol class="breadcrumb">
+      <li class="publishDate version-date">
+    Last Published: 2017-12-06
+</li>
+      </ol>
+    </div>
+  </header>
+  <div class="main-body">
 
-       <header>
-       <div class="jumbotron subhead">
-               <div class="row" id="banner">
-                       <div class="span12">
-                               <div class="pull-left">
-                                       <a href="index.html" 
id="bannerLeft"><img src="images/logo.png" alt='"'Apache OpenMeetings'"' /></a>
-                               </div>
-                               <div class="pull-right">
-                                       <a href="http://apache.org"; 
id="bannerRight"><img src="http://apache.org/img/asf_logo.png"; alt='"'Apache'"' 
/></a>
-                               </div>
-                       </div>
-               </div>
-       </div>
-               <div>
-                       <ul class="breadcrumb">
-                               <li class="publishDate version-date">Last 
Published: 2017-10-30</li>
-                       </ul>
-               </div>
-       </header>
-
-       <div class="main-body">
-       <div class="row">
-               <div class="span8">
-                       <div class="body-content">
+  <div class="row">
+    <div class="col-md-8">
+      <div class="body-content">
 <div class="section"> 
  <h2 id="Overview">Overview</h2> 
  <a name="Overview"></a> 
@@ -266,7 +250,7 @@
      </div> 
      <div class="collapse navbar-collapse" id="mainnav-collapse"> 
       <div style="line-height:20px; padding-top:5px; float:left"> 
-       <a href="http://www.apache.org/";>Home</a>&nbsp;&raquo;&nbsp; 
+       <a href="http://www.apache.org/";>Home</a>&nbsp;»&nbsp; 
        <a href="http://www.apache.org/licenses/";>Licenses</a> 
       </div> 
       <ul class="nav navbar-nav navbar-right"> 
@@ -316,10 +300,10 @@
   <div class="container"> 
    <div class="row"> 
     <div class="col-md-6 col-sm-5 col-xs-12"> 
-     <img src="http://www.apache.org/img/asf_logo.png"; alt="Apache Logo" 
style="max-width: 100%;" /> 
+     <img src="http://www.apache.org/img/asf_logo.png"; alt="Apache Logo" 
style="max-width: 100%;" class="img-responsive"> 
     </div> 
     <div class="col-md-3 col-sm-3 col-xs-6"> 
-     <a href="http://apache.org/foundation/contributing.html"; title="Support 
Apache"> <img src="http://www.apache.org/images/SupportApache-small.png"; 
style="height: 150px; width: 150px; margin-top: 5px; margin-bottom: 5px;" /> 
</a> 
+     <a href="http://apache.org/foundation/contributing.html"; title="Support 
Apache"> <img src="http://www.apache.org/images/SupportApache-small.png"; 
style="height: 150px; width: 150px; margin-top: 5px; margin-bottom: 5px;" 
class="img-responsive"> </a> 
     </div> 
     <div class="col-md-3 col-sm-4 col-xs-6"> 
      <div class="input-group" style="margin-bottom: 5px;"> 
@@ -355,19 +339,19 @@
   visibility: hidden;
 }
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, 
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, 
dt:hover > .elementid-permalink { visibility: visible }</style> 
-   <p>Apache License<br /><br />Version 2.0, January 2004<br /><br /> <a 
href="http://www.apache.org/licenses/";>http://www.apache.org/licenses/</a> </p> 
+   <p>Apache License<br><br>Version 2.0, January 2004<br><br> <a 
href="http://www.apache.org/licenses/";>http://www.apache.org/licenses/</a> </p> 
    <p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p> 
    <p><strong><a name="definitions">1. Definitions</a></strong>.</p> 
-   <p>&quot;License&quot; shall mean the terms and conditions for use, 
reproduction, and distribution as defined by Sections 1 through 9 of this 
document.</p> 
-   <p>&quot;Licensor&quot; shall mean the copyright owner or entity authorized 
by the copyright owner that is granting the License.</p> 
-   <p>&quot;Legal Entity&quot; shall mean the union of the acting entity and 
all other entities that control, are controlled by, or are under common control 
with that entity. For the purposes of this definition, &quot;control&quot; 
means (i) the power, direct or indirect, to cause the direction or management 
of such entity, whether by contract or otherwise, or (ii) ownership of fifty 
percent (50%) or more of the outstanding shares, or (iii) beneficial ownership 
of such entity.</p> 
-   <p>&quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal 
Entity exercising permissions granted by this License.</p> 
-   <p>&quot;Source&quot; form shall mean the preferred form for making 
modifications, including but not limited to software source code, documentation 
source, and configuration files.</p> 
-   <p>&quot;Object&quot; form shall mean any form resulting from mechanical 
transformation or translation of a Source form, including but not limited to 
compiled object code, generated documentation, and conversions to other media 
types.</p> 
-   <p>&quot;Work&quot; shall mean the work of authorship, whether in Source or 
Object form, made available under the License, as indicated by a copyright 
notice that is included in or attached to the work (an example is provided in 
the Appendix below).</p> 
-   <p>&quot;Derivative Works&quot; shall mean any work, whether in Source or 
Object form, that is based on (or derived from) the Work and for which the 
editorial revisions, annotations, elaborations, or other modifications 
represent, as a whole, an original work of authorship. For the purposes of this 
License, Derivative Works shall not include works that remain separable from, 
or merely link (or bind by name) to the interfaces of, the Work and Derivative 
Works thereof.</p> 
-   <p>&quot;Contribution&quot; shall mean any work of authorship, including 
the original version of the Work and any modifications or additions to that 
Work or Derivative Works thereof, that is intentionally submitted to Licensor 
for inclusion in the Work by the copyright owner or by an individual or Legal 
Entity authorized to submit on behalf of the copyright owner. For the purposes 
of this definition, &quot;submitted&quot; means any form of electronic, verbal, 
or written communication sent to the Licensor or its representatives, including 
but not limited to communication on electronic mailing lists, source code 
control systems, and issue tracking systems that are managed by, or on behalf 
of, the Licensor for the purpose of discussing and improving the Work, but 
excluding communication that is conspicuously marked or otherwise designated in 
writing by the copyright owner as &quot;Not a Contribution.&quot;</p> 
-   <p>&quot;Contributor&quot; shall mean Licensor and any individual or Legal 
Entity on behalf of whom a Contribution has been received by Licensor and 
subsequently incorporated within the Work.</p> 
+   <p>"License" shall mean the terms and conditions for use, reproduction, and 
distribution as defined by Sections 1 through 9 of this document.</p> 
+   <p>"Licensor" shall mean the copyright owner or entity authorized by the 
copyright owner that is granting the License.</p> 
+   <p>"Legal Entity" shall mean the union of the acting entity and all other 
entities that control, are controlled by, or are under common control with that 
entity. For the purposes of this definition, "control" means (i) the power, 
direct or indirect, to cause the direction or management of such entity, 
whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or 
more of the outstanding shares, or (iii) beneficial ownership of such 
entity.</p> 
+   <p>"You" (or "Your") shall mean an individual or Legal Entity exercising 
permissions granted by this License.</p> 
+   <p>"Source" form shall mean the preferred form for making modifications, 
including but not limited to software source code, documentation source, and 
configuration files.</p> 
+   <p>"Object" form shall mean any form resulting from mechanical 
transformation or translation of a Source form, including but not limited to 
compiled object code, generated documentation, and conversions to other media 
types.</p> 
+   <p>"Work" shall mean the work of authorship, whether in Source or Object 
form, made available under the License, as indicated by a copyright notice that 
is included in or attached to the work (an example is provided in the Appendix 
below).</p> 
+   <p>"Derivative Works" shall mean any work, whether in Source or Object 
form, that is based on (or derived from) the Work and for which the editorial 
revisions, annotations, elaborations, or other modifications represent, as a 
whole, an original work of authorship. For the purposes of this License, 
Derivative Works shall not include works that remain separable from, or merely 
link (or bind by name) to the interfaces of, the Work and Derivative Works 
thereof.</p> 
+   <p>"Contribution" shall mean any work of authorship, including the original 
version of the Work and any modifications or additions to that Work or 
Derivative Works thereof, that is intentionally submitted to Licensor for 
inclusion in the Work by the copyright owner or by an individual or Legal 
Entity authorized to submit on behalf of the copyright owner. For the purposes 
of this definition, "submitted" means any form of electronic, verbal, or 
written communication sent to the Licensor or its representatives, including 
but not limited to communication on electronic mailing lists, source code 
control systems, and issue tracking systems that are managed by, or on behalf 
of, the Licensor for the purpose of discussing and improving the Work, but 
excluding communication that is conspicuously marked or otherwise designated in 
writing by the copyright owner as "Not a Contribution."</p> 
+   <p>"Contributor" shall mean Licensor and any individual or Legal Entity on 
behalf of whom a Contribution has been received by Licensor and subsequently 
incorporated within the Work.</p> 
    <p><strong><a name="copyright">2. Grant of Copyright License</a></strong>. 
Subject to the terms and conditions of this License, each Contributor hereby 
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, 
irrevocable copyright license to reproduce, prepare Derivative Works of, 
publicly display, publicly perform, sublicense, and distribute the Work and 
such Derivative Works in Source or Object form.</p> 
    <p><strong><a name="patent">3. Grant of Patent License</a></strong>. 
Subject to the terms and conditions of this License, each Contributor hereby 
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, 
irrevocable (except as stated in this section) patent license to make, have 
made, use, offer to sell, sell, import, and otherwise transfer the Work, where 
such license applies only to those patent claims licensable by such Contributor 
that are necessarily infringed by their Contribution(s) alone or by combination 
of their Contribution(s) with the Work to which such Contribution(s) was 
submitted. If You institute patent litigation against any entity (including a 
cross-claim or counterclaim in a lawsuit) alleging that the Work or a 
Contribution incorporated within the Work constitutes direct or contributory 
patent infringement, then any patent licenses granted to You under this License 
for that Work shall terminate as of the date such litigation is filed.</p> 
    <p><strong><a name="redistribution">4. Redistribution</a></strong>. You may 
reproduce and distribute copies of the Work or Derivative Works thereof in any 
medium, with or without modifications, and in Source or Object form, provided 
that You meet the following conditions:</p> 
@@ -375,29 +359,29 @@ h2:hover > .headerlink, h3:hover > .headerlink, h1:hover 
> .headerlink, h6:hover
     <li>You must give any other recipients of the Work or Derivative Works a 
copy of this License; and</li> 
     <li>You must cause any modified files to carry prominent notices stating 
that You changed the files; and</li> 
     <li>You must retain, in the Source form of any Derivative Works that You 
distribute, all copyright, patent, trademark, and attribution notices from the 
Source form of the Work, excluding those notices that do not pertain to any 
part of the Derivative Works; and</li> 
-    <li>If the Work includes a &quot;NOTICE&quot; text file as part of its 
distribution, then any Derivative Works that You distribute must include a 
readable copy of the attribution notices contained within such NOTICE file, 
excluding those notices that do not pertain to any part of the Derivative 
Works, in at least one of the following places: within a NOTICE text file 
distributed as part of the Derivative Works; within the Source form or 
documentation, if provided along with the Derivative Works; or, within a 
display generated by the Derivative Works, if and wherever such third-party 
notices normally appear. The contents of the NOTICE file are for informational 
purposes only and do not modify the License. You may add Your own attribution 
notices within Derivative Works that You distribute, alongside or as an 
addendum to the NOTICE text from the Work, provided that such additional 
attribution notices cannot be construed as modifying the License. <br /> <br /> 
You may add Your own 
 copyright statement to Your modifications and may provide additional or 
different license terms and conditions for use, reproduction, or distribution 
of Your modifications, or for any such Derivative Works as a whole, provided 
Your use, reproduction, and distribution of the Work otherwise complies with 
the conditions stated in this License. </li> 
+    <li>If the Work includes a "NOTICE" text file as part of its distribution, 
then any Derivative Works that You distribute must include a readable copy of 
the attribution notices contained within such NOTICE file, excluding those 
notices that do not pertain to any part of the Derivative Works, in at least 
one of the following places: within a NOTICE text file distributed as part of 
the Derivative Works; within the Source form or documentation, if provided 
along with the Derivative Works; or, within a display generated by the 
Derivative Works, if and wherever such third-party notices normally appear. The 
contents of the NOTICE file are for informational purposes only and do not 
modify the License. You may add Your own attribution notices within Derivative 
Works that You distribute, alongside or as an addendum to the NOTICE text from 
the Work, provided that such additional attribution notices cannot be construed 
as modifying the License. <br> <br> You may add Your own copyright stat
 ement to Your modifications and may provide additional or different license 
terms and conditions for use, reproduction, or distribution of Your 
modifications, or for any such Derivative Works as a whole, provided Your use, 
reproduction, and distribution of the Work otherwise complies with the 
conditions stated in this License. </li> 
    </ol> 
    <p><strong><a name="contributions">5. Submission of 
Contributions</a></strong>. Unless You explicitly state otherwise, any 
Contribution intentionally submitted for inclusion in the Work by You to the 
Licensor shall be under the terms and conditions of this License, without any 
additional terms or conditions. Notwithstanding the above, nothing herein shall 
supersede or modify the terms of any separate license agreement you may have 
executed with Licensor regarding such Contributions.</p> 
    <p><strong><a name="trademarks">6. Trademarks</a></strong>. This License 
does not grant permission to use the trade names, trademarks, service marks, or 
product names of the Licensor, except as required for reasonable and customary 
use in describing the origin of the Work and reproducing the content of the 
NOTICE file.</p> 
-   <p><strong><a name="no-warranty">7. Disclaimer of Warranty</a></strong>. 
Unless required by applicable law or agreed to in writing, Licensor provides 
the Work (and each Contributor provides its Contributions) on an &quot;AS 
IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
implied, including, without limitation, any warranties or conditions of TITLE, 
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are 
solely responsible for determining the appropriateness of using or 
redistributing the Work and assume any risks associated with Your exercise of 
permissions under this License.</p> 
+   <p><strong><a name="no-warranty">7. Disclaimer of Warranty</a></strong>. 
Unless required by applicable law or agreed to in writing, Licensor provides 
the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, 
including, without limitation, any warranties or conditions of TITLE, 
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are 
solely responsible for determining the appropriateness of using or 
redistributing the Work and assume any risks associated with Your exercise of 
permissions under this License.</p> 
    <p><strong><a name="no-liability">8. Limitation of Liability</a></strong>. 
In no event and under no legal theory, whether in tort (including negligence), 
contract, or otherwise, unless required by applicable law (such as deliberate 
and grossly negligent acts) or agreed to in writing, shall any Contributor be 
liable to You for damages, including any direct, indirect, special, incidental, 
or consequential damages of any character arising as a result of this License 
or out of the use or inability to use the Work (including but not limited to 
damages for loss of goodwill, work stoppage, computer failure or malfunction, 
or any and all other commercial damages or losses), even if such Contributor 
has been advised of the possibility of such damages.</p> 
    <p><strong><a name="additional">9. Accepting Warranty or Additional 
Liability</a></strong>. While redistributing the Work or Derivative Works 
thereof, You may choose to offer, and charge a fee for, acceptance of support, 
warranty, indemnity, or other liability obligations and/or rights consistent 
with this License. However, in accepting such obligations, You may act only on 
Your own behalf and on Your sole responsibility, not on behalf of any other 
Contributor, and only if You agree to indemnify, defend, and hold each 
Contributor harmless for any liability incurred by, or claims asserted against, 
such Contributor by reason of your accepting any such warranty or additional 
liability.</p> 
    <p>END OF TERMS AND CONDITIONS</p> 
    <div class="page-header">
-    <h1 id="apply">APPENDIX: How to apply the Apache License to your work<a 
class="headerlink" href="http://www.apache.org/licenses/#apply"; 
title="Permanent link">&para;</a></h1>
+    <h1 id="apply">APPENDIX: How to apply the Apache License to your work<a 
class="headerlink" href="http://www.apache.org/licenses/#apply"; 
title="Permanent link">¶</a></h1>
    </div> 
-   <p>To apply the Apache License to your work, attach the following 
boilerplate notice, with the fields enclosed by brackets &quot;[]&quot; 
replaced with your own identifying information. (Don't include the brackets!) 
The text should be enclosed in the appropriate comment syntax for the file 
format. We also recommend that a file or class name and description of purpose 
be included on the same &quot;printed page&quot; as the copyright notice for 
easier identification within third-party archives.</p> 
+   <p>To apply the Apache License to your work, attach the following 
boilerplate notice, with the fields enclosed by brackets "[]" replaced with 
your own identifying information. (Don't include the brackets!) The text should 
be enclosed in the appropriate comment syntax for the file format. We also 
recommend that a file or class name and description of purpose be included on 
the same "printed page" as the copyright notice for easier identification 
within third-party archives.</p> 
    <div class="codehilite"> 
     <pre>Copyright [yyyy] [name of copyright owner]
 
-Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 
     http://www.apache.org/licenses/LICENSE-2.0
 
 Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
@@ -408,7 +392,7 @@ limitations under the License.
   <footer class="bg-primary"> 
    <div class="container"> 
     <div class="row"> 
-     <br /> 
+     <br> 
      <div class="col-sm-1"> 
      </div> 
      <div class="col-sm-2"> 
@@ -474,10 +458,10 @@ limitations under the License.
      <div class="col-sm-1"> 
      </div> 
     </div> 
-    <hr class="col-lg-12 hr-white" /> 
+    <hr class="col-lg-12 hr-white"> 
     <div class="row"> 
      <div class="col-lg-12"> 
-      <p class="text-center">Copyright &copy; 2017 The Apache Software 
Foundation, Licensed under the <a class="white" 
href="http://www.apache.org/licenses/LICENSE-2.0";>Apache License, Version 
2.0</a>.</p> 
+      <p class="text-center">Copyright © 2017 The Apache Software Foundation, 
Licensed under the <a class="white" 
href="http://www.apache.org/licenses/LICENSE-2.0";>Apache License, Version 
2.0</a>.</p> 
       <p class="text-center">Apache and the Apache feather logo are trademarks 
of The Apache Software Foundation.</p> 
      </div> 
     </div> 
@@ -487,176 +471,138 @@ limitations under the License.
   <script src="/js/jquery-2.1.1.min.js"></script> 
   <script src="/js/bootstrap.js"></script> 
  </div> 
-</div>
-                       </div>
-               </div>
-               <div class="span4">
-                       <div id="toc-sidebar">
-                               <div class="well">
-                                       <ul class="nav nav-list">
-                                               <li class="nav-header">Table of 
Contents</li>
-               <li><a href="#Overview" title="Overview">Overview</a>
-               <li class="dropdown"><a href="#Project_Licenses" title="Project 
Licenses">Project Licenses <b class="caret"></b></a>
-                       <ul class="nav nav-list">
-               <li><a href="#The_Apache_Software_License_Version_20" 
title="The Apache Software License, Version 2.0">The Apache Software License, 
Version 2.0</a>
-                               <li class="divider"></li>
-                       </ul>
-               </li>
-               <li class="dropdown"><a href="#apply" title="APPENDIX: How to 
apply the Apache License to your work¶">APPENDIX: How to apply the Apache 
License to your work¶ <b class="caret"></b></a>
-                       <ul class="nav nav-list">
-               <li><a href="#community" title="Community">Community</a>
-               <li><a href="#innovation" title="Innovation">Innovation</a>
-               <li><a href="#tech_operations" title="Tech Operations">Tech 
Operations</a>
-               <li><a href="#press" title="Press">Press</a>
-               <li><a href="#legal" title="Legal">Legal</a>
-                               <li class="divider"></li>
-                       </ul>
-               </li>
-                                       </ul>
-                               </div>
-                       </div>
-               </div>
-       </div>
-       </div>
+</div>      </div>
+    </div>
+        <div class="col-md-4">
+            <div id="toc-sidebar" class="hidden-print hidden-xs hidden-sm">
+
+                <div id="toc-scroll-target">
+                <div class="well">
+                <ul class="nav nav-list">
+                    <li class="nav-header">Table of Contents</li>
+        <li><a href="#Overview" title="Overview">Overview</a>
+        <li class="dropdown"><a href="#Project_Licenses" title="Project 
Licenses">Project Licenses <b class="caret"></b></a>
+            <ul class="nav nav-list">
+                        <li><a href="#The_Apache_Software_License_Version_20" 
title="The Apache Software License, Version 2.0">The Apache Software License, 
Version 2.0</a>
+                <li class="divider"></li>
+            </ul>
+</li>
+        <li class="dropdown"><a href="#apply" title="APPENDIX: How to apply 
the Apache License to your work¶">APPENDIX: How to apply the Apache License to 
your work¶ <b class="caret"></b></a>
+            <ul class="nav nav-list">
+                        <li><a href="#community" 
title="Community">Community</a>
+                        <li><a href="#innovation" 
title="Innovation">Innovation</a>
+                        <li><a href="#tech_operations" title="Tech 
Operations">Tech Operations</a>
+                        <li><a href="#press" title="Press">Press</a>
+                        <li><a href="#legal" title="Legal">Legal</a>
+                <li class="divider"></li>
+            </ul>
+</li>
+                </ul>
+
+                </div>
+            </div>
+
+        </div>
+  </div>
+  </div>
+  </div><!-- /container -->
+  <!-- Footer
+  ================================================== -->
+  <footer class="well">
+    <div class="container">
+      <div class="row">
+            <div class="col-md-3 bottom-nav">
+
+                <ul class="nav nav-list">
+                    <li class="nav-header">General</li>
+                    <li ><a  href="index.html"  title="Home" >Home</a></li>
+                    <li ><a  href="http://www.apache.org/licenses/";  
title="License"  class="externalLink" >License</a></li>
+                    <li ><a  href="http://www.apache.org/";  title="ASF"  
class="externalLink" >ASF</a></li>
+                    <li ><a  
href="https://www.apache.org/foundation/sponsorship";  title="Sponsorship"  
class="externalLink" >Sponsorship</a></li>
+                    <li ><a  href="https://www.apache.org/foundation/thanks";  
title="Thanks"  class="externalLink" >Thanks</a></li>
+                    <li ><a  href="CallForLogo.html"  title="Call For Logo" 
>Call For Logo</a></li>
+                    <li ><a  href="NewsArchive.html"  title="News archive" 
>News archive</a></li>
+                    <li ><a  href="security.html"  title="Security" 
>Security</a></li>
+                    <li ><a  href="commercial-support.html"  title="Commercial 
Support" >Commercial Support</a></li>
+                </ul>
 
-       </div><!-- /container -->
+            </div>
+            <div class="col-md-3 bottom-nav">
 
-       <!-- Footer
-       ================================================== -->
-       <footer class="well">
-               <div class="container">
-                       <div class="row">
-                               <div class="span3 bottom-nav">
-                                       <ul class="nav nav-list">
-                                               <li 
class="nav-header">General</li>
-                                               <li >
-                                                       <a href="index.html" 
title="Home">Home</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="http://www.apache.org/licenses/"; title="License" 
class="externalLink">License</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="http://www.apache.org/"; title="ASF" class="externalLink">ASF</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="https://www.apache.org/foundation/sponsorship"; title="Sponsorship" 
class="externalLink">Sponsorship</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="https://www.apache.org/foundation/thanks"; title="Thanks" 
class="externalLink">Thanks</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="CallForLogo.html" title="Call For Logo">Call For Logo</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="NewsArchive.html" title="News archive">News archive</a>
-                                               </li>
-                                               <li >
-                                                       <a href="security.html" 
title="Security">Security</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="commercial-support.html" title="Commercial Support">Commercial Support</a>
-                                               </li>
-                                       </ul>
-                               </div>
-                               <div class="span3 bottom-nav">
-                                       <ul class="nav nav-list">
-                                               <li 
class="nav-header">Installation</li>
-                                               <li >
-                                                       <a 
href="installation.html" title="Installation">Installation</a>
-                                               </li>
-                                               <li >
-                                                       <a href="Upgrade.html" 
title="Upgrade">Upgrade</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="https://cwiki.apache.org/confluence/display/OPENMEETINGS/Tutorials+for+installing+OpenMeetings+and+Tools";
 title="Tutorials" class="externalLink">Tutorials</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="CommandLineAdmin.html" title="Command Line Admin">Command Line Admin</a>
-                                               </li>
-                                       </ul>
-                               </div>
-                               <div class="span3 bottom-nav">
-                                       <ul class="nav nav-list">
-                                               <li 
class="nav-header">Community</li>
-                                               <li >
-                                                       <a 
href="get-involved.html" title="Get Involved">Get Involved</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="team-list.html" title="Committers">Committers</a>
-                                               </li>
-                                               <li >
-                                                       <a href="OurUsers.html" 
title="Our Users">Our Users</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="mail-lists.html" title="Mailing Lists">Mailing Lists</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="http://cwiki.apache.org/confluence/display/OPENMEETINGS/"; title="Wiki" 
class="externalLink">Wiki</a>
-                                               </li>
-                                       </ul>
-                               </div>
-                               <div class="span3 bottom-nav">
-                                       <ul class="nav nav-list">
-                                               <li 
class="nav-header">Development</li>
-                                               <li >
-                                                       <a 
href="source-repository.html" title="Source Code">Source Code</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="issue-tracking.html" title="Bugs / Issues">Bugs / Issues</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="dependencies.html" title="Dependencies">Dependencies</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="integration.html" title="Continuous Integration">Continuous 
Integration</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="BuildInstructions_3.0.x.html" title="Build Instructions 3.0.x">Build 
Instructions 3.0.x</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="BuildInstructions.html" title="Build Instructions">Build Instructions</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="JUnitTesting.html" title="JUnit Testing">JUnit Testing</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="ManualTesting.html" title="Manual Testing">Manual Testing</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="ReleaseGuide.html" title="Release Guide">Release Guide</a>
-                                               </li>
-                                               <li >
-                                                       <a 
href="WebsiteGuide.html" title="Website Guide">Website Guide</a>
-                                               </li>
-                                       </ul>
-                               </div>
-                       </div>
-               </div>
-       </footer>
+                <ul class="nav nav-list">
+                    <li class="nav-header">Installation</li>
+                    <li ><a  href="installation.html"  title="Installation" 
>Installation</a></li>
+                    <li ><a  href="Upgrade.html"  title="Upgrade" 
>Upgrade</a></li>
+                    <li ><a  
href="https://cwiki.apache.org/confluence/display/OPENMEETINGS/Tutorials+for+installing+OpenMeetings+and+Tools";
  title="Tutorials"  class="externalLink" >Tutorials</a></li>
+                    <li ><a  href="CommandLineAdmin.html"  title="Command Line 
Admin" >Command Line Admin</a></li>
+                </ul>
 
-       <div class="container subfooter">
-               <div class="row">
-                       <div class="span12">
-                               <p class="pull-right"><a href="#">Back to 
top</a></p>
-                               <p class="copyright">Copyright &copy;2012-2017 
<a href="http://apache.org";>Apache Software Foundation</a>. All Rights 
Reserved.</p>
-               
+            </div>
+            <div class="col-md-3 bottom-nav">
+
+                <ul class="nav nav-list">
+                    <li class="nav-header">Community</li>
+                    <li ><a  href="get-involved.html"  title="Get Involved" 
>Get Involved</a></li>
+                    <li ><a  href="team-list.html"  title="Committers" 
>Committers</a></li>
+                    <li ><a  href="OurUsers.html"  title="Our Users" >Our 
Users</a></li>
+                    <li ><a  href="mail-lists.html"  title="Mailing Lists" 
>Mailing Lists</a></li>
+                    <li ><a  
href="http://cwiki.apache.org/confluence/display/OPENMEETINGS/";  title="Wiki"  
class="externalLink" >Wiki</a></li>
+                </ul>
+
+            </div>
+            <div class="col-md-3 bottom-nav">
+
+                <ul class="nav nav-list">
+                    <li class="nav-header">Development</li>
+                    <li ><a  href="source-repository.html"  title="Source 
Code" >Source Code</a></li>
+                    <li ><a  href="issue-tracking.html"  title="Bugs / Issues" 
>Bugs / Issues</a></li>
+                    <li ><a  href="dependencies.html"  title="Dependencies" 
>Dependencies</a></li>
+                    <li ><a  href="integration.html"  title="Continuous 
Integration" >Continuous Integration</a></li>
+                    <li ><a  href="BuildInstructions_3.0.x.html"  title="Build 
Instructions 3.0.x" >Build Instructions 3.0.x</a></li>
+                    <li ><a  href="BuildInstructions.html"  title="Build 
Instructions" >Build Instructions</a></li>
+                    <li ><a  href="JUnitTesting.html"  title="JUnit Testing" 
>JUnit Testing</a></li>
+                    <li ><a  href="ManualTesting.html"  title="Manual Testing" 
>Manual Testing</a></li>
+                    <li ><a  href="ReleaseGuide.html"  title="Release Guide" 
>Release Guide</a></li>
+                    <li ><a  href="WebsiteGuide.html"  title="Website Guide" 
>Website Guide</a></li>
+                </ul>
+
+            </div>
+      </div>
+    </div>
+  </footer>
+  <div class="container subfooter">
+    <div class="row">
+      <div class="col-md-12">
+        <p class="pull-right"><a href="#">Back to top</a></p>
+        <p class="copyright">Copyright &copy;2012-2017                 <a 
href="http://apache.org";>Apache Software Foundation</a>
+. All Rights Reserved.</p>
 <p>Apache OpenMeetings, OpenMeetings, Apache, the Apache feather, and the 
Apache OpenMeetings project logo</p>
-<p>are trademarks of the Apache Software Foundation.</p>                       
</div>
-               </div>
-       </div>
+                       <p>are trademarks of the Apache Software Foundation.</p>
+      </div>
+    </div>
+  </div>
+  <!-- Le javascript
+  ================================================== -->
+  <!-- Placed at the end of the document so the pages load faster -->
+    <script src=".//js/jquery.min.js"></script>
+  <script src=".//js/bootstrap.min.js"></script>
+
+  <script src=".//js/lightbox.min.js"></script>
 
-       <!-- Le javascript
-       ================================================== -->
-       <!-- Placed at the end of the document so the pages load faster -->
-       <script src=".//js/jquery.min.js"></script>
+  <script src=".//js/reflow-scroll.js"></script>
 
-       <script src=".//js/bootstrap.min.js"></script>
-       <script src=".//js/lightbox.min.js"></script>
-       <script src=".//js/reflow-scroll.js"></script>
-       
+<script src=".//js/site.js" type="text/javascript"></script>
 <script src=".//js/jquery-ui.min.js" type="text/javascript"></script>
-<script src=".//js/netcalc.js" type="text/javascript"></script>
-       <script src=".//js/reflow-skin.js"></script>
+<script src=".//js/netcalc.js" type="text/javascript"></script>  <script 
src=".//js/reflow-skin.js"></script>
+    <script src=".//js/anchor.min.js"></script>
+    <script>
+        document.addEventListener("DOMContentLoaded", function(event) {
+            anchors.options = {
+              placement: 'left',
+            };
+            anchors.add('h1,h2, h3, h4, h5, h6');
+        });
+    </script>
 
-       </body>
+  </body>
 </html>

Reply via email to