Author: rgardler
Date: Wed Feb 23 19:26:55 2011
New Revision: 1073895
URL: http://svn.apache.org/viewvc?rev=1073895&view=rev
Log:
Initial import of skeleton site using CMS
Added:
incubator/wookie/site/.project
incubator/wookie/site/trunk/
incubator/wookie/site/trunk/cgi-bin/
incubator/wookie/site/trunk/content/
incubator/wookie/site/trunk/content/wookie/
incubator/wookie/site/trunk/content/wookie/images/
incubator/wookie/site/trunk/content/wookie/images/logo.png (with props)
incubator/wookie/site/trunk/content/wookie/index.mdtext
incubator/wookie/site/trunk/templates/
incubator/wookie/site/trunk/templates/sidenav.mdtext
incubator/wookie/site/trunk/templates/skeleton.html
Added: incubator/wookie/site/.project
URL:
http://svn.apache.org/viewvc/incubator/wookie/site/.project?rev=1073895&view=auto
==============================================================================
--- incubator/wookie/site/.project (added)
+++ incubator/wookie/site/.project Wed Feb 23 19:26:55 2011
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>WookieSite</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: incubator/wookie/site/trunk/content/wookie/images/logo.png
URL:
http://svn.apache.org/viewvc/incubator/wookie/site/trunk/content/wookie/images/logo.png?rev=1073895&view=auto
==============================================================================
Binary file - no diff available.
Propchange: incubator/wookie/site/trunk/content/wookie/images/logo.png
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: incubator/wookie/site/trunk/content/wookie/index.mdtext
URL:
http://svn.apache.org/viewvc/incubator/wookie/site/trunk/content/wookie/index.mdtext?rev=1073895&view=auto
==============================================================================
--- incubator/wookie/site/trunk/content/wookie/index.mdtext (added)
+++ incubator/wookie/site/trunk/content/wookie/index.mdtext Wed Feb 23 19:26:55
2011
@@ -0,0 +1,6 @@
+Title: Apache Wookie (Incubating)
+
+Welcome to the Apache Wookie (incubating) project.
+
+Please note: we're currently migrating content from the old project site to
the Apache infrastructure.
+This site will be in something of a state of flux during the transition.
Added: incubator/wookie/site/trunk/templates/sidenav.mdtext
URL:
http://svn.apache.org/viewvc/incubator/wookie/site/trunk/templates/sidenav.mdtext?rev=1073895&view=auto
==============================================================================
--- incubator/wookie/site/trunk/templates/sidenav.mdtext (added)
+++ incubator/wookie/site/trunk/templates/sidenav.mdtext Wed Feb 23 19:26:55
2011
@@ -0,0 +1,13 @@
+# Wookie project
+ - [Home](index.html)
+ - [About](about.html)
+ - [Contributing](contributing.html)
+ - [Project Team](team.html)
+
+# ASF links
+ - [Apache Software Foundation](http://www.apache.org)
+ - [License](http://www.apache.org/licenses/LICENSE-2.0)
+ - [Thanks](http://www.apache.org/foundation/thanks.html)
+ - [Become a Sponsor](http://www.apache.org/foundation/sponsorship.html)
+ - [Security](http://www.apache.org/security/)
+
Added: incubator/wookie/site/trunk/templates/skeleton.html
URL:
http://svn.apache.org/viewvc/incubator/wookie/site/trunk/templates/skeleton.html?rev=1073895&view=auto
==============================================================================
--- incubator/wookie/site/trunk/templates/skeleton.html (added)
+++ incubator/wookie/site/trunk/templates/skeleton.html Wed Feb 23 19:26:55 2011
@@ -0,0 +1,50 @@
+<!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="/jena/css/jena.css" rel="stylesheet" type="text/css">
+ <title>Apache Wookie (Incubating) - {% block title %}{{ headers.title }}{%
endblock %}</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+</head>
+
+<body>
+ <div id="navigation">
+ <img alt="Apache Wookie (Incubating)" src="/wookie/images/logo.png"/>
+ {% 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 © 2011 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 logos are trademarks of The Apache
Software Foundation.
+ </p>
+ </div>
+ </div>
+
+</body>
+</html>