You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by bu...@apache.org on 2010/12/02 21:54:41 UTC

svn commit: r779983 - in /websites/staging/lucene/trunk/content: ./ README.txt lucene/ lucene/css/ lucene/css/lucene.css lucene/index.html templates/ templates/sidenav.html templates/single_narrative.html templates/skeleton.html

Author: buildbot
Date: Thu Dec  2 20:54:41 2010
New Revision: 779983

URL: http://svn.apache.org/viewvc?rev=779983&view=rev
Log:
Staging update by buildbot

Added:
    websites/staging/lucene/trunk/content/
    websites/staging/lucene/trunk/content/README.txt
    websites/staging/lucene/trunk/content/lucene/
    websites/staging/lucene/trunk/content/lucene/css/
    websites/staging/lucene/trunk/content/lucene/css/lucene.css
    websites/staging/lucene/trunk/content/lucene/index.html
    websites/staging/lucene/trunk/content/templates/
    websites/staging/lucene/trunk/content/templates/sidenav.html
    websites/staging/lucene/trunk/content/templates/single_narrative.html
    websites/staging/lucene/trunk/content/templates/skeleton.html

Added: websites/staging/lucene/trunk/content/README.txt
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/README.txt?rev=779983&view=auto
==============================================================================
--- websites/staging/lucene/trunk/content/README.txt (added)
+++ websites/staging/lucene/trunk/content/README.txt Thu Dec  2 20:54:41 2010
@@ -0,0 +1,4 @@
+this directory is empty. it is not yet used. 
+the subdirectory stanbol/ is used for content.
+this is done in order to make it possible to use the staging url
+to prepare publishing on the incubator site.

Added: websites/staging/lucene/trunk/content/lucene/css/lucene.css
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/lucene/css/lucene.css?rev=779983&view=auto
==============================================================================
    (empty)

Added: websites/staging/lucene/trunk/content/lucene/index.html
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/lucene/index.html?rev=779983&view=auto
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/index.html (added)
+++ websites/staging/lucene/trunk/content/lucene/index.html Thu Dec  2 20:54:41 2010
@@ -0,0 +1 @@
+single_narrative.html
\ No newline at end of file

Added: websites/staging/lucene/trunk/content/templates/sidenav.html
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/templates/sidenav.html?rev=779983&view=auto
==============================================================================
--- websites/staging/lucene/trunk/content/templates/sidenav.html (added)
+++ websites/staging/lucene/trunk/content/templates/sidenav.html Thu Dec  2 20:54:41 2010
@@ -0,0 +1 @@
+single_narrative.html
\ No newline at end of file

Added: websites/staging/lucene/trunk/content/templates/single_narrative.html
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/templates/single_narrative.html?rev=779983&view=auto
==============================================================================
--- websites/staging/lucene/trunk/content/templates/single_narrative.html (added)
+++ websites/staging/lucene/trunk/content/templates/single_narrative.html Thu Dec  2 20:54:41 2010
@@ -0,0 +1 @@
+{% extends "skeleton.html" %}

Added: websites/staging/lucene/trunk/content/templates/skeleton.html
URL: http://svn.apache.org/viewvc/websites/staging/lucene/trunk/content/templates/skeleton.html?rev=779983&view=auto
==============================================================================
--- websites/staging/lucene/trunk/content/templates/skeleton.html (added)
+++ websites/staging/lucene/trunk/content/templates/skeleton.html Thu Dec  2 20:54:41 2010
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You 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 "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.
+-->
+
+  <link href="/lucene/css/lucene.css" rel="stylesheet" type="text/css">
+  <title>Apache Lucene - {% block title %}{{ headers.title }}{% endblock %}</title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+</head>
+
+<body>
+  <div id="navigation"> 
+  {% filter markdown %}{% include "sidenav.mdtext" %}{% endfilter %}
+  </div>
+  
+  <div id="content">
+    <h1 class="title">{% block title %}{{ headers.title }}{% endblock %}</h1>
+    {% block content %}{{ content|markdown }}{% endblock %}
+  </div>
+  
+  <div id="footer">
+    <div class="copyright">
+      <p>
+        Copyright &copy; 2010 The Apache Software Foundation, 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>
+    </div>
+  </div>
+  
+</body>
+</html>