Repository: incubator-juneau-website
Updated Branches:
  refs/heads/asf-site 2ead32d5a -> e5746eb2d


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/e5746eb2/content/index2.html
----------------------------------------------------------------------
diff --git a/content/index2.html b/content/index2.html
new file mode 100644
index 0000000..282a800
--- /dev/null
+++ b/content/index2.html
@@ -0,0 +1,181 @@
+<!DOCTYPE html>
+<html>
+<head>
+       <meta name="description" content="Apache Juneau Universal Serialization 
and REST API Library" />
+       <meta name="keywords" content="Apache 
Juneau,Apache,Juneau,REST,JSON,HTML,XML,MessagePack,Java,UON,urlencoding,Swagger,Jackson,SOAP,ATOM,Cognos,INI,Jena,CSV,JSON-Schema,XML-Schema,Servlet,JAX-RS,JAXRS,JAX-WS,JAXWS,bean"
 />
+       <title>Apache Juneau Universal Serialization and REST API 
Library</title>
+       <style>
+               @import url("styles/juneau-code.css");
+               @import url("styles/juneau-doc.css");
+
+               html, body { margin:0px; height: 100%; width: 100%; 
font-family: sans-serif;}
+               header {
+                       background-color: #e8ebef;
+                   font-size: 2.0em;
+                   height: 50px;
+                   color: #2874A6;
+                   clear: left;
+                   margin: 0px;
+                       padding: 20px 20px 0px 20px;
+                       box-shadow: 5px 5px 2px #999999;
+                       text-shadow: rgba(0,0,0,.2) 2px 6px 
5px,rgba(125,32,191,.4) 0 -4px 30px;
+                       white-space: nowrap;
+               }
+               footer {
+                   padding: 10px;
+                   color: black;
+                   background-color: silver;
+                   text-align: left;
+                   font-size: 0.9em;
+               }
+               div.container {
+                   width: 100%;
+                   height: 100%;
+               }
+               nav {
+                   float: left;
+                   width: 160px;
+                   margin: 40px 20px;
+                   padding: 1em;
+                   border: 1px solid gray;
+                       box-shadow: 5px 5px 2px #999999;
+                       color: rgb(44, 69, 87);
+                       background-color: #eef3f7;
+                   font-size: 1.0em;
+                   text-transform: uppercase;
+                   font-weight: lighter;
+               }
+               nav ul { list-style-type: none; padding: 0; }
+               nav ul li { padding: 5px 0px; }
+               nav ul a { text-decoration: none; color: rgb(44, 69, 87); }
+               nav ul a:hover { font-weight: normal; }
+               nav ul a.selected { font-weight: normal; }
+               article {
+                       margin: 0px 20px 20px 170px; 
+                   padding: 10px 2px;
+                   overflow: hidden;
+                   min-height: 500px;
+               }
+               p.download {
+                       color: #2C4557;
+                   padding: 5px 20px;
+                   margin: 10px 0px 10px 0px;
+                   text-decoration: none;      
+                   font-size: 0.67em;
+               font-weight: bold;
+               background: linear-gradient(to bottom, #F5F5F5, #DEE3E9) repeat 
scroll 0% 0% transparent;
+               }
+       </style>
+
+       <script>
+               var selectedNode;
+               
+               function select(node) {
+                       if (selectedNode)
+                               selectedNode.classList.remove("selected");
+                       node.classList.add("selected");
+                       selectedNode = node;
+                       var buff = document.getElementById("buff");
+                       buff.src = node.id + ".html";
+                       history.pushState(null, null, "#" + node.id + ".html");
+                       return false;
+               }
+               
+               // Load results from IFrame into this document.
+               function loadResults(buff) {
+                       var doc = buff.contentDocument || 
buff.contentWindow.document;
+                       var body = doc.body;
+                       var article = document.getElementById('article');
+                       var header = document.getElementById('header');
+                       var footer = document.getElementById('footer');
+                       if (body != null) {
+                               article.innerHTML = body.innerHTML;
+                               nodeScriptReplace(article);
+                       }
+                       var availableHeight = window.innerHeight - 
header.clientHeight - footer.clientHeight - 40; 
+                       article.style.minHeight = availableHeight + 'px';
+               }
+               
+               window.onload = function() {
+                       var hash = window.location.hash;
+                       if (hash == null || hash.length == 0) {
+                               hash = "#about.html";
+                       }
+                       var id = hash.substring(1, hash.length - 5);
+                       document.getElementById(id).click();   
+               }
+               
+               function nodeScriptReplace(node) {
+                       if (node.tagName === 'SCRIPT') {
+                               
node.parentNode.replaceChild(nodeScriptClone(node) , node);
+                       } else {
+                               node.childNodes.forEach(nodeScriptReplace);
+                       }
+                       return node;
+               }
+               
+               function nodeScriptClone(node) {
+                       var script  = document.createElement("script");
+                       script.text = node.innerHTML;
+                       var attrs = node.attributes;
+                       for (var i = attrs.length - 1; i >= 0; i--) {
+                               script.setAttribute(attrs[i].name, 
attrs[i].value);
+                       }
+                       return script;
+               }               
+       </script>
+</head>
+
+<body>
+<div class="container">
+
+       <header id='header'>
+          <img src='images/juneau2.png' 
style='position:absolute;left:20px;height:50px;top:10px'>
+          <span style='vertical-align: top;color: #cc1b1b; font-weight: 
lighter; padding-left: 100px'>APACHE JUNEAU</span>
+          <span style='vertical-align: top;color: #cc1b1b; font-size: 12pt; 
font-weight: lighter'>(incubating)</span>
+          <img src='images/incubator_feather_egg_logo3.png' 
style='position:absolute;right:20px;height:50px;top:10px'>
+       </header>
+
+       <nav>
+               <ul>
+                       <li><a href='about2.html' id='about' onclick="return 
select(this)">About</a></li>
+                       <li><a href='documentation.html' id='documentation' 
onclick="return select(this)">Documentation</a></li>
+                       <li><a href='downloads.html' id='downloads' 
onclick="return select(this)">Downloads</a></li>
+                       <li><a href='sourceCode.html' id='sourceCode' 
onclick="return select(this)">Source Code</a></li>
+                       <li><a href='issueTracking.html' id='issueTracking' 
onclick="return select(this)">Issue Tracking</a></li>
+                       <li><a href='community.html' id='community' 
onclick="return select(this)">Community</a></li>
+                       <li><a href='twitter.html' id='twitter' onclick="return 
select(this)">Twitter</a></li>
+               </ul>
+       </nav>
+
+       <article id='article'>
+               Loading...
+       </article>
+       
+       <footer id='footer'>
+               <table>
+                       <tr>
+                               <td><a href="http://incubator.apache.org/"; 
target="_blank"><br>
+                                       <img 
src="images/incubator_feather_egg_logo2.png" width="300px"/></a>
+                                       <!-- hitwebcounter Code START -->
+                                       <a href="http://www.hitwebcounter.com"; 
target="_blank">
+                                               <img 
src="http://hitwebcounter.com/counter/counter.php?page=6608331&style=0007&nbdigits=7&type=ip&initCount=0";
 title="" Alt=""  border="0">
+                                       </a>            
+                                   <!-- hitwebcounter.com -->
+                                   <a href="http://www.hitwebcounter.com"; 
title="Hitwebcounter.com Free" target="_blank" style="font-family: Arial, 
Helvetica, sans-serif; font-size: 12px; color: #FFFFFF; text-decoration: 
underline ; display:none;"><strong>Hitwebcounter.com Free</strong></a>    
+                               </td>
+                               <td style="padding-left:10px;">
+                                       Apache Juneau is an effort undergoing 
Incubation at The Apache Software Foundation (ASF), sponsored by the Incubator. 
+                                       Incubation is required of all newly 
accepted projects until a further review indicates that the infrastructure, 
communications, and decision making process have stabilized in a manner 
consistent with other successful ASF projects. 
+                                       While incubation status is not 
necessarily a reflection of the completeness or stability of the code, it does 
indicate that the project has yet to be fully endorsed by the ASF.
+                               </td>
+               </table>
+               <p>
+                       Copyright &copy; 2016, 2017 <a 
href="http://www.apache.org/";>The Apache Software Foundation</a>, Licensed 
under the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache License, 
Version 2.0</a>.
+                       <br>Apache and the Apache feather logo are trademarks 
of The Apache Software Foundation.
+               </p>
+       </footer>
+</div>
+<iframe id='buff' style='display:none' onload="parent.loadResults(this)" 
sandbox="allow-same-origin"></iframe>
+</body>
+</html>

Reply via email to