Commit b26593a7dffd1eb3ec0e4fa080238ca5624969b4

Authored by mburge
1 parent 4a7a59de

Corrections for hosting.

share/openbr/DoxygenFooter.html
... ... @@ -11,10 +11,22 @@
11 11 <!--END GENERATE_TREEVIEW-->
12 12 <!--BEGIN !GENERATE_TREEVIEW-->
13 13 <hr class="footer"/><address class="footer"><small>
14   -$generatedby &#160;<a href="http://www.doxygen.org/index.html">
15   -<img class="footer" src="$relpath$doxygen.png" alt="doxygen"/>
16   -</a> $doxygenversion
  14 +$generatedby &#160;
17 15 </small></address>
18 16 <!--END !GENERATE_TREEVIEW-->
  17 +<!-- Begin Custom Bootstrap Support -->
19 18 </body>
  19 + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  20 + <script>window.jQuery || document.write('<script src="js/jquery-1.8.2.min.js"><\/script>')</script>
  21 + <script src="js/bootstrap.min.js"></script>
  22 + <script>
  23 + $(document).ready(function(){
  24 + $("#totop").click(function () {
  25 + $("body, html").animate({
  26 + scrollTop: 0
  27 + }, 300);
  28 + return false;
  29 + });
  30 + });
  31 + </script>
20 32 </html>
... ...
share/openbr/DoxygenHeader.html
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5   -<meta http-equiv="X-UA-Compatible" content="IE=9"/>
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 + <head>
  4 + <meta charset="utf-8">
  5 + <title>OpenBR | Home</title>
  6 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7 + <meta name="description" content="">
  8 + <meta name="author" content="OpenBiometrics.org">
  9 + <link href="/css/bootstrap.min.css" rel="stylesheet">
  10 + <link href="/css/bootstrap-responsive.min.css" rel="stylesheet">
  11 + <link href="/css/font-awesome.css" rel="stylesheet">
  12 + <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  13 + <!--[if lt IE 8]>
  14 + <link href="css/font-awesome-ie7.css" rel="stylesheet">
  15 + <![endif]-->
  16 + <link href="/css/base.css" rel="stylesheet">
  17 + <link href="/css/blue.css" rel="stylesheet">
  18 + <!--[if lt IE 9]>
  19 + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  20 + <![endif]-->
  21 + <link rel="shortcut icon" href="/img/ico/favicon.ico">
  22 + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/ico/favicon.ico">
  23 + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/ico/favicon.ico">
  24 + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/ico/favicon.ico">
  25 + <link rel="apple-touch-icon-precomposed" href="/img/ico/favicon.ico">
  26 + </head>
  27 +
  28 + <body>
  29 +
  30 + <div class="navbar navbar-fixed-top">
  31 + <div class="navbar-inner">
  32 + <div class="container">
  33 + <a class="btn btn-primary btn-dropnav" data-toggle="collapse" data-target=".nav-collapse">
  34 + <span class="icon-bar"></span>
  35 + <span class="icon-bar"></span>
  36 + <span class="icon-bar"></span>
  37 + </a>
  38 + <a class="brand" href="index.html">OpenBR</a>
  39 + <div class="nav-collapse collapse">
  40 + <ul class="nav pull-right">
  41 + <li><a href="/index.html">Home</a></li>
  42 + <li><a href="/features.html">Features</a></li>
  43 + <li class="active"><a href="/doxygen/html/index.html">Documentation</a></li>
  44 + <li><a href="/login.html">Login</a></li>
  45 + <li><a href="/register.html">Register</a></li>
  46 + <li><a href="/contact.html">Contact</a></li>
  47 + </ul>
  48 + </div>
  49 + </div>
  50 + </div>
  51 + </div>
  52 +
6 53 <!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
7 54 <!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
8 55 <link href="$relpath$tabs.css" rel="stylesheet" type="text/css"/>
... ...