diff -r be2c6c835b74 sphinx/themes/moin/layout.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sphinx/themes/moin/layout.html	Sat Oct 01 21:43:32 2011 +0200
@@ -0,0 +1,76 @@
+{#
+    moin/layout.html
+    ~~~~~~~~~~~~~~~~~
+
+    Sphinx layout template for the moin theme.
+    This template is based in many details on the haiku theme.
+
+    :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+#}
+{% extends "basic/layout.html" %}
+{% set script_files = script_files + ['_static/theme_extras.js'] %}
+{% set css_files = css_files + ['_static/print.css'] %}
+
+{# do not display relbars #}
+{% block relbar1 %}{% endblock %}
+{% block relbar2 %}{% endblock %}
+
+{% macro nav() %}
+        <p>
+        {%- block moinrel1 %}
+        {%- endblock %}
+        {%- if prev %}
+        «&#160;&#160;<a href="{{ prev.link|e }}">{{ prev.title }}</a>
+        &#160;&#160;::&#160;&#160;
+        {%- endif %}
+        <a class="uplink" href="{{ pathto(master_doc) }}">{{ _('Contents') }}</a>
+        {%- if next %}
+        &#160;&#160;::&#160;&#160;
+        <a href="{{ next.link|e }}">{{ next.title }}</a>&#160;&#160;»
+        {%- endif %}
+        {%- block moinrel2 %}
+        {%- endblock %}
+        </p>
+{% endmacro %}
+
+{% block content %}
+      <div class="header">
+        {%- block sidebarsearch %}
+            {%- include "searchbox.html" %}
+        {%- endblock %}
+        {%- block moinheader %}
+        {%- if theme_full_logo != "false" %}
+        <a href="{{ pathto('index') }}">
+          <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
+        </a>
+        <h1 class="heading">{{ title }}
+        
+        {%- else %}
+        {%- if logo -%}
+          <img class="rightlogo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
+          <h1 class="heading">{{ title }}
+        {%- endif -%}
+        <h1 class="heading"><a href="{{ pathto('index') }}">
+          <span>{{ shorttitle|e }}</span></a></h1>
+        <h2 class="heading"><span>{{ title|striptags|e }}</span></h2>
+        {%- endif %}
+        {%- endblock %}
+        
+      </div>
+      <div class="topnav">
+      {{ nav() }}
+      </div>
+      <div class="content">
+        {#{%- if display_toc %}
+        <div id="toc">
+          <h3>Table Of Contents</h3>
+          {{ toc }}
+        </div>
+        {%- endif %}#}
+        {% block body %}{% endblock %}
+      </div>
+      <div class="bottomnav">
+      {{ nav() }}
+      </div>
+{% endblock %}
diff -r be2c6c835b74 sphinx/themes/moin/searchbox.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sphinx/themes/moin/searchbox.html	Sat Oct 01 21:43:32 2011 +0200
@@ -0,0 +1,20 @@
+{#
+    basic/searchbox.html
+    ~~~~~~~~~~~~~~~~~~~~
+
+    Sphinx sidebar template: quick search box.
+
+    :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+#}
+{%- if pagename != "search" %}
+<div id="searchbox" style="display: none">
+    <form class="search" action="{{ pathto('search') }}" method="get">
+      <input type="text" name="q" />
+      <input type="submit" value="{{ _('Go') }}" />
+      <input type="hidden" name="check_keywords" value="yes" />
+      <input type="hidden" name="area" value="default" />
+    </form>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+{%- endif %}
diff -r be2c6c835b74 sphinx/themes/moin/static/Logo_MoinMoin.png
Binary file sphinx/themes/moin/static/Logo_MoinMoin.png has changed
diff -r be2c6c835b74 sphinx/themes/moin/static/moin.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sphinx/themes/moin/static/moin.css	Sat Oct 01 21:43:32 2011 +0200
@@ -0,0 +1,182 @@
+/*
+ * moin.css
+ * ~~~~~~~~
+ *
+ * Sphinx stylesheet -- moin theme.
+ * based on
+ *  common.css - MoinMoin Default Styles
+ *
+ *   Copyright: 2001, 2002, 2003 MoinMoin:JuergenHermann
+ *   Copyright: 2010 MoinMoin:DiogenesAugusto
+ *   Copyright: 2010 MoinMoin:RogerHaase
+ *   License: GNU GPL v2 or later, see COPYING for details.
+ *
+ * parts from
+ * Adapted from http://haiku-os.org/docs/Haiku-doc.css.
+ * Original copyright message:
+ *
+ *     Copyright 2008-2009, Haiku. All rights reserved.
+ *     Distributed under the terms of the MIT License.
+ *
+ *     Authors:
+ *              Francois Revol <revol@free.fr>
+ *              Stephan Assmus <superstippi@gmx.de>
+ *              Braden Ewing <brewin@gmail.com>
+ *              Humdinger <humdingerb@gmail.com>
+ *
+ * Copyright: 2011 MoinMoin:ReimarBauer
+ * License: GNU GPL v2 or later, see COPYING for details.
+ */
+
+@import url("basic.css");
+
+html { color: black;
+       font-family: sans-serif;
+       margin: 0px; 
+       padding: 0px;
+       line-height: 1.12em; 
+     }
+
+body {
+      line-height: 1.5;
+      margin: auto;
+      padding: 0px;
+      font-family: "DejaVu Sans", Arial, Helvetica, sans-serif;
+      background-color: #F3F7FD; 
+      color: {{ theme_textcolor }};
+     }
+
+/* links */
+a:link { color: #47F; text-decoration: none; }
+a:visited { text-decoration: none; color: #04A; }
+a:visited:hover { text-decoration: none; color: red; }
+a:hover,
+a:active { text-decoration: underline; color: green; }
+a.moin-nonexistent:link { color: #666; }
+a.moin-nonexistent:hover { color: black; text-decoration: underline; }
+/* placeholder - not used yet
+a.download { font-size: 120%; letter-spacing: 0.05em; font-weight: bold; background: #E7E7E7;
+            border: 1px solid #9C9C9C; padding: 0.5em; text-align: center; }
+*/
+
+
+div.footer {
+    padding: 8px;
+    font-size: 11px;
+    text-align: center;
+    letter-spacing: 0.5px;
+}
+
+/* basic text elements */
+
+div.content {
+    margin-top: 20px;
+    margin-left: 40px;
+    margin-right: 40px;
+    margin-bottom: 50px;
+    font-size: 0.9em;
+}
+
+/* heading and navigation */
+
+div.header {
+    position: relative;
+    left: 0px;
+    top: 0px;
+    height: 85px;
+    /* background: #eeeeee; */
+    padding: 0 40px;
+    background: url(white-clouds.jpg);
+}
+
+
+div.header form.search {  
+              margin: 5px 10px;
+              float: right;   
+              height: auto; width: 200px;    
+
+}
+
+div.header img.rightlogo {
+    float: right;
+}
+
+div.header img.logo {
+    float: left;
+    margin: 5px 10px;
+    padding: 0;
+    font-size: 1.4em;
+    line-height: 1em;
+    font-weight: bold; 
+    vertical-align: middle;
+}
+
+div.title {
+    font-size: 1.3em;
+    font-weight: bold;
+    color: {{ theme_headingcolor }};
+    border-bottom: dotted thin #e0e0e0;
+    margin-bottom: 25px;
+}
+div.topnav {
+     background: #C4D9FF;
+}
+div.topnav p {
+    margin-top: 0px;
+    margin-left: 40px;
+    margin-right: 40px;
+    margin-bottom: 0px;
+    text-align: right;
+    font-size: 0.8em;
+}
+div.bottomnav {
+    background: #C4D9FF;
+}
+div.bottomnav p {
+    margin-right: 40px;
+    text-align: right;
+    font-size: 0.8em;
+    
+}
+
+/* More layout and styles */
+
+/* headings - from: http: //www.w3.org/TR/CSS2/sample.html */
+
+/* the slides have title h1 right of logo given from layout.html */
+h1 { font-size: 2em; margin: .67em 0; color: #47F; display: none; }
+h1.heading { font-size: 2em; 
+             margin: .67em 0; 
+             color: #47F; 
+             display: inline; 
+             float: left;
+             margin: 5px 10px;
+             padding: 0;
+             font-weight: bold; 
+             vertical-align: middle;  }
+
+div#ausblick-auf-moinmoin-2-0.section.h1 { display: inline;} 
+
+h2 { font-size: 1.5em; margin: .75em 0; color: #47F;}
+h3 { font-size: 1.17em; margin: .83em 0; color: #47F;}
+h4 { margin: 1.12em 0; color: #47F;}
+h5 { font-size: .83em; margin: 1.5em 0; color: #47F;}
+h6 { font-size: .75em; margin: 1.67em 0; color: #47F;}
+
+.section.h1 {display: none; }
+
+div.viewcode-block:target {
+    background-color: #f4debf;
+    border-top: 1px solid #ac9;
+    border-bottom: 1px solid #ac9;
+    margin: -1px -12px;
+    padding: 0 12px;
+}
+
+pre { border: 1px solid #AEBDCC; background-color: #F3F5F7; padding: 5px; clear: both;
+            font-family: courier, monospace; margin: .33em 0; white-space: pre; }
+
+/* no l1 on index page */
+li.toctree-l1 {display: none;}
+/* enable h1 on div content */
+div.content.h1 {display: inline;}
diff -r be2c6c835b74 sphinx/themes/moin/static/white-clouds.jpg
Binary file sphinx/themes/moin/static/white-clouds.jpg has changed
diff -r be2c6c835b74 sphinx/themes/moin/theme.conf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sphinx/themes/moin/theme.conf	Sat Oct 01 21:43:32 2011 +0200
@@ -0,0 +1,12 @@
+[theme]
+inherit = basic
+stylesheet = moin.css
+pygments_style = autumn
+
+[options]
+full_logo         = true
+textcolor         = #333333
+headingcolor      = #0c3762
+linkcolor         = #dc3c01
+visitedlinkcolor  = #892601
+hoverlinkcolor    = #ff4500
