You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by dj...@apache.org on 2021/07/20 00:13:33 UTC

[felix-antora-site] 03/06: remove some remnants of the CMS site

This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/felix-antora-site.git

commit dbd1caf4b2671ebe9eb6ffa419cb9aa6a63a2c07
Author: David Jencks <dj...@apache.org>
AuthorDate: Mon Jul 19 14:07:47 2021 -0700

    remove some remnants of the CMS site
---
 res/apache.png            | Bin 12242 -> 0 bytes
 res/codehilite.css        | 429 ----------------------------------------------
 res/favicon.ico           | Bin 1406 -> 0 bytes
 res/favicon.png           | Bin 3507 -> 0 bytes
 res/gradient.png          | Bin 4044 -> 0 bytes
 res/icons/check.gif       | Bin 604 -> 0 bytes
 res/icons/forbidden.gif   | Bin 613 -> 0 bytes
 res/icons/information.gif | Bin 1005 -> 0 bytes
 res/icons/warning.gif     | Bin 569 -> 0 bytes
 res/jquery.js             |   2 -
 res/logo.png              | Bin 14927 -> 0 bytes
 res/old_felix_site.css    |  43 -----
 res/pygments-friendly.css | 269 -----------------------------
 res/site.css              | 256 ---------------------------
 sitemap.html              |   5 -
 15 files changed, 1004 deletions(-)

diff --git a/res/apache.png b/res/apache.png
deleted file mode 100644
index 5132f65..0000000
Binary files a/res/apache.png and /dev/null differ
diff --git a/res/codehilite.css b/res/codehilite.css
deleted file mode 100644
index dcf13db..0000000
--- a/res/codehilite.css
+++ /dev/null
@@ -1,429 +0,0 @@
-/*************************************************************************
-
-    For reference: classes defined by the Confluence batch.css
-    
-.code {
-    border-width: 1px;
-    border-style: dashed;
-    overflow: auto;
-}
-
-.code,.preformatted {
-    background-color: #fff;
-}
-
-.code pre,.preformatted pre {
-    font-family: "Courier New", Courier, monospace;
-    line-height: 1.3;
-}
-
-.code-keyword {
-    color: #000091;
-    background-color: inherit;
-}
-
-.code-object {
-    color: #910091;
-    background-color: inherit;
-}
-
-.code-quote {
-    color: #009100;
-    background-color: inherit;
-}
-
-.code-comment {
-    color: #808080;
-    background-color: inherit;
-}
-
-.code-xml .code-keyword {
-    color: inherit;
-    font-weight: bold;
-}
-
-.code-tag {
-    color: #000091;
-    background-color: inherit;
-}
-
-*/
-
-/*************************************************************************
-
-    For reference: classes defined by the old Sling Site CSS
-
-.codehilite {
-    color: black;
-    background-color: #f0f0f0;
-    border: solid 1px black;
-    margin-top: 0.5em;
-    margin-bottom: 0.5em;
-    padding: 0.5em
-}
-
-.codeHeader {
-    text-align: center;
-    font-family: monospace;
-    border-bottom: 1px solid black;
-    padding-top: 0.5em;
-    padding-bottom: 0.5em;
-    margin-bottom: 0.5em;
-}
-
-
-.codehilite pre {
-    margin: 0em
-}
-
-.code-keyword {
-    color: #880000
-}
-
-.code-quote {
-    color: #008800
-}
-
-.code-object {
-    color: #0000dd
-}
-
-.code-java {
-    margin: 0em
-}
-
-*/
-
-/**
-  Apache CMS Code High Lighting
-
-  HTML structure for default (:::, un-numbered code)
-  
-  <div class="codehilite">
-    <pre>
-    ... span-tagged code ...
-    </pre>
-  </div>
-
-
-  HTML structure for #! (line numbered code)
-  
-  <table class="codehilitetable">
-    <tr>
-        <td class="linenos">
-            <div class="linenodiv">
-                <pre>
-                ... line numbers ...
-                </pre>
-            </div>
-        </td>
-        <td class="code">
-            <div class="codehilite">
-                <pre>
-                ... span-tagged code ...
-                </pre>
-            </div>
-        </td>
-    </tr>
-  </table>
-*/
-
-.codehilitetable, .codehilite {
-    color: black;
-    background-color: #f0f0f0;
-    border: solid 1px black;
-    margin-top: 0.5em;
-    margin-bottom: 0.5em;
-    padding: 0.5em;
-}
-
-.codehilitetable .linenos {
-    border: none;
-}
-
-.codehilitetable .linenos .linenodiv {
-}
-
-.codehilitetable .linenos .linenodiv pre {
-    margin: 0px;
-    padding: 0px;
-}
-
-.codehilitetable .code {
-    border: none;
-}
-
-.codehilitetable .code .codehilite {
-    /** overwrite from .codehilite class above */
-    border: none;
-    margin: 0px;
-    padding: 0px;
-}
-
-.codehilite pre {
-    /* Applies to both .codehilite divs, top level and in table */
-    margin: 0px;
-    padding: 0px;
-    overflow: auto;
-}
-
-
-/**
- * Pygments Code Formatter Styles
- */
- 
-/** Whitespace */
-.codehilite .w {
-}
-/** Error */
-.codehilite .err {
-}
-/** Other */
-.codehilite .x {
-}
-
-/** Keyword */
-.codehilite .k {
-    color: #880000
-}
-/** Keyword.Constant */
-.codehilite .kc {
-    color: #880000
-}
-/** Keyword.Declaration */
-.codehilite .kd {
-    color: #880000
-}
-/** Keyword.Namespace */
-.codehilite .kn {
-    color: #880000
-}
-/** Keyword.Pseudo */
-.codehilite .kp {
-    color: #880000
-}
-/** Keyword.Reserved */
-.codehilite .kr {
-    color: #880000
-}
-/** Keyword.Type */
-.codehilite .kt {
-    color: #880000
-}
-    
-/** Name */
-.codehilite .n {
-    color: #0000dd
-}
-/** Name.Attribute */
-.codehilite .na {
-    color: #0000dd
-}
-/** Name.Builtin */
-.codehilite .nb {
-    color: #0000dd
-}
-/** Name.Builtin.Pseudo */
-.codehilite .bp {
-    color: #0000dd
-}
-/** Name.Class */
-.codehilite .nc {
-    color: #0000dd
-}
-/** Name.Constant */
-.codehilite .no {
-    color: #0000dd
-}
-/** Name.Decorator */
-.codehilite .nd {
-    color: #0000dd
-}
-/** Name.Entity */
-.codehilite .ni {
-    color: #0000dd
-}
-/** Name.Exception */
-.codehilite .ne {
-    color: #0000dd
-}
-/** Name.Function */
-.codehilite .nf {
-    color: #0000dd
-}
-/** Name.Property */
-.codehilite .py {
-    color: #0000dd
-}
-/** Name.Label */
-.codehilite .nl {
-    color: #0000dd
-}
-/** Name.Namespace */
-.codehilite .nn {
-    color: #0000dd
-}
-/** Name.Other */
-.codehilite .nx {
-    color: #0000dd
-}
-/** Name.Tag */
-.codehilite .nt {
-    color: #0000dd
-}
-/** Name.Variable */
-.codehilite .nv {
-    color: #0000dd
-}
-/** Name.Variable.Class */
-.codehilite .vc {
-    color: #0000dd
-}
-/** Name.Variable.Global */
-.codehilite .vg {
-    color: #0000dd
-}
-/** Name.Variable.Instance */
-.codehilite .vi {
-    color: #0000dd
-}
-    
-/** Literal */
-.codehilite .l {
-}
-/** Literal.Date */
-.codehilite .ld {
-}
-
-/** String */
-.codehilite .s {
-    color: #008800
-}
-/** String.Backtick */
-.codehilite .sb {
-    color: #008800
-}
-/** String.Char */
-.codehilite .sc {
-    color: #008800
-}
-/** String.Doc */
-.codehilite .sd {
-    color: #008800
-}
-/** String.Double */
-.codehilite .s2 {
-    color: #008800
-}
-/** String.Escape */
-.codehilite .se {
-    color: #008800
-}
-/** String.Heredoc */
-.codehilite .sh {
-    color: #008800
-}
-/** String.Interpol */
-.codehilite .si {
-    color: #008800
-}
-/** String.Other */
-.codehilite .sx {
-    color: #008800
-}
-/** String.Regex */
-.codehilite .sr {
-    color: #008800
-}
-/** String.Single */
-.codehilite .s1 {
-    color: #008800
-}
-/** String.Symbol */
-.codehilite .ss {
-    color: #008800
-}
-    
-/** Number */
-.codehilite .m {
-}
-/** Number.Float */
-.codehilite .mf {
-}
-/** Number.Hex */
-.codehilite .mh {
-}
-/** Number.Integer */
-.codehilite .mi {
-}
-/** Number.Integer.Long */
-.codehilite .il {
-}
-/** Number.Oct */
-.codehilite .mo {
-}
-/** Operator */
-.codehilite .o {
-}
-/** Operator.Word */
-.codehilite .ow {
-}
-/** Punctuation */
-.codehilite .p {
-}
-
-/** Comment */
-.codehilite .c {
-    color: #808080;
-}
-/** Comment.Multiline */
-.codehilite .cm {
-    color: #808080;
-}
-/** Comment.Preproc */
-.codehilite .cp {
-    color: #808080;
-}
-/** Comment.Single */
-.codehilite .c1 {
-    color: #808080;
-}
-/** Comment.Special */
-.codehilite .cs {
-    color: #808080;
-}
-    
-/** Generic */
-.codehilite .g {
-}
-/** Generic.Deleted */
-.codehilite .gd {
-}
-/** Generic.Emph */
-.codehilite .ge {
-}
-/** Generic.Error */
-.codehilite .gr {
-}
-/** Generic.Heading */
-.codehilite .gh {
-}
-/** Generic.Inserted */
-.codehilite .gi {
-}
-/** Generic.Output */
-.codehilite .go {
-}
-/** Generic.Prompt */
-.codehilite .gp {
-}
-/** Generic.Strong */
-.codehilite .gs {
-}
-/** Generic.Subheading */
-.codehilite .gu {
-}
-/** Generic.Traceback */
-.codehilite .gt {
-}
-
diff --git a/res/favicon.ico b/res/favicon.ico
deleted file mode 100644
index ff663d5..0000000
Binary files a/res/favicon.ico and /dev/null differ
diff --git a/res/favicon.png b/res/favicon.png
deleted file mode 100644
index 4f345d4..0000000
Binary files a/res/favicon.png and /dev/null differ
diff --git a/res/gradient.png b/res/gradient.png
deleted file mode 100644
index 6ddc10b..0000000
Binary files a/res/gradient.png and /dev/null differ
diff --git a/res/icons/check.gif b/res/icons/check.gif
deleted file mode 100644
index 28bb999..0000000
Binary files a/res/icons/check.gif and /dev/null differ
diff --git a/res/icons/forbidden.gif b/res/icons/forbidden.gif
deleted file mode 100644
index c6acdec..0000000
Binary files a/res/icons/forbidden.gif and /dev/null differ
diff --git a/res/icons/information.gif b/res/icons/information.gif
deleted file mode 100644
index 072ab66..0000000
Binary files a/res/icons/information.gif and /dev/null differ
diff --git a/res/icons/warning.gif b/res/icons/warning.gif
deleted file mode 100644
index 1c9883b..0000000
Binary files a/res/icons/warning.gif and /dev/null differ
diff --git a/res/jquery.js b/res/jquery.js
deleted file mode 100644
index 83589da..0000000
--- a/res/jquery.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/*! jQuery v1.8.3 jquery.com | jquery.org/license */
-(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),function(e,n){t[n]=!0}),t}function H(e,n,r){if(r===t&&e.nodeType===1){var i="data-"+n.replace(P,"-$1").toLowerCase();r=e.getAttribute(i);if(typeof r=="string"){try{r=r==="true"?!0:r==="false"?!1:r==="null"?null:+r+""===r?+r:D.test(r)?v.parseJSON(r):r}catch(s){}v.data(e,n,r)}else r=t}return r}function B(e){var t;for(t in e){if(t==="data"&&v.isEmptyObject(e[t]))continue;if(t!=="toJSON")return!1}return!0}function et(){retur [...]
\ No newline at end of file
diff --git a/res/logo.png b/res/logo.png
deleted file mode 100644
index dccbddc..0000000
Binary files a/res/logo.png and /dev/null differ
diff --git a/res/old_felix_site.css b/res/old_felix_site.css
deleted file mode 100644
index 36314aa..0000000
--- a/res/old_felix_site.css
+++ /dev/null
@@ -1,43 +0,0 @@
-/* @override http://felix.apache.org/site/media.data/site.css */
-
-body { background-color: #ffffff; color: #3b3b3b; font-family: Tahoma, Arial, sans-serif; font-size: 10pt; line-height: 140% }
-h1, h2, h3, h4, h5, h6 { font-weight: bold; color: #000000; line-height: 100% }
-h1 { font-size: 200% }
-h2 { font-size: 175% }
-h3 { font-size: 150% }
-h4 { font-size: 140%; font-weight: normal }
-h5 { font-size: 130%; font-weight: normal }
-h6 { font-size: 120%; font-weight: normal }
-a { color: #1980af }
-a:visited { color: #1980af }
-a:hover { color: #1faae9 }
-.title { position: absolute; left: 1px; right: 1px; top:25px; height: 81px; background: url(http://felix.apache.org/site/media.data/gradient.png) repeat-x; background-position: bottom; }
-.logo { position: absolute; width: 15em; height: 81px; text-align: center; }
-.header { text-align: right; margin-right: 20pt; margin-top: 30pt;}
-.menu { border-top: 10px solid #f9bb00; position: absolute; top: 107px; left: 1px; width: 15em; bottom: 0px; padding: 0px; background-color: #fcfcfc }
-.menu ul { background-color: #fdf5d9; list-style: none; padding-left: 4em; margin-top: 0px; padding-top: 2em; padding-bottom: 2em; margin-left: 0px; color: #4a4a43}
-.menu a { text-decoration: none; color: #4a4a43 }
-.main { position: absolute; border-top: 10px solid #cde0ea; top: 107px; left: 15em; right: 1px; margin-left: 2px; padding-right: 4em; padding-left: 1em; padding-top: 1em;}
-.code { background-color: #eeeeee; border: solid 1px black; padding: 0.5em }
-.code-keyword { color: #880000 }
-.code-quote { color: #008800 }
-.code-object { color: #0000dd }
-.code-java { margin: 0em }
-.code-xml { margin: 0em }
-table.confluenceTable { border-collapse: collapse; margin: 10px 0 10px 0 }
-td.confluenceTd { border:1px solid #CCCCCC; padding:5px; vertical-align:top; }
-
-/** Last modification information at the botton of each page */
-.timestamp {
-    margin-top: 30px;
-    font-size: 80%;
-    text-align: right;
-}
-
-/** Trademark text at the bottom of each page */
-.trademarkFooter {
-    font-size: 80%;
-    font-style: italic;
-    margin-top: 10px;
-    text-align: left;
-}
diff --git a/res/pygments-friendly.css b/res/pygments-friendly.css
deleted file mode 100644
index 4ef7b74..0000000
--- a/res/pygments-friendly.css
+++ /dev/null
@@ -1,269 +0,0 @@
-/**
- * Pygments Code Formatter Styles
- * from https://bitbucket.org/birkenfeld/pygments-main/src/5cc94956e233/pygments/styles/friendly.py
- *
- * This CSS is not currently in use
- */
- 
-/** Whitespace */
-.codehilite .w {
-    color: #bbbbbb;
-}
-/** Error */
-.codehilite .err {
-    border: 1px solid #ff0000;
-}
-/** Other */
-.codehilite .x {
-}
-/** Keyword */
-.codehilite .k {
-    font-style: bold;
-    color: #007020;
-}
-/** Keyword.Constant */
-.codehilite .kc {
-}
-/** Keyword.Declaration */
-.codehilite .kd {
-}
-/** Keyword.Namespace */
-.codehilite .kn {
-}
-/** Keyword.Pseudo */
-.codehilite .kp {
-    font-style: nobold;
-}
-/** Keyword.Reserved */
-.codehilite .kr {
-}
-/** Keyword.Type */
-.codehilite .kt {
-    font-style: nobold;
-    color: #902000;
-}
-/** Name */
-.codehilite .n {
-}
-/** Name.Attribute */
-.codehilite .na {
-}
-/** Name.Builtin */
-.codehilite .nb {
-    color: #007020;
-}
-/** Name.Builtin.Pseudo */
-.codehilite .bp {
-}
-/** Name.Class */
-.codehilite .nc {
-    font-style: bold;
-    color: #0e84b5;
-}
-/** Name.Constant */
-.codehilite .no {
-    color: #60add5;
-}
-/** Name.Decorator */
-.codehilite .nd {
-    font-style: bold;
-    color: #555555;
-}
-/** Name.Entity */
-.codehilite .ni {
-    font-style: bold;
-    color: #d55537;
-}
-/** Name.Exception */
-.codehilite .ne {
-    color: #007020;
-}
-/** Name.Function */
-.codehilite .nf {
-    color: #06287e;
-}
-/** Name.Property */
-.codehilite .py {
-}
-/** Name.Label */
-.codehilite .nl {
-    font-style: bold;
-    color: #002070;
-}
-/** Name.Namespace */
-.codehilite .nn {
-    font-style: bold;
-    color: #0e84b5;
-}
-/** Name.Other */
-.codehilite .nx {
-}
-/** Name.Tag */
-.codehilite .nt {
-    font-style: bold;
-    color: #062873;
-}
-/** Name.Variable */
-.codehilite .nv {
-    color: #bb60d5;
-}
-/** Name.Variable.Class */
-.codehilite .vc {
-}
-/** Name.Variable.Global */
-.codehilite .vg {
-}
-/** Name.Variable.Instance */
-.codehilite .vi {
-}
-/** Literal */
-.codehilite .l {
-}
-/** Literal.Date */
-.codehilite .ld {
-}
-/** String */
-.codehilite .s {
-    color: #4070a0;
-}
-/** String.Backtick */
-.codehilite .sb {
-}
-/** String.Char */
-.codehilite .sc {
-}
-/** String.Doc */
-.codehilite .sd {
-    font-style: italic;
-}
-/** String.Double */
-.codehilite .s2 {
-}
-/** String.Escape */
-.codehilite .se {
-    font-style: bold;
-    color: #4070a0;
-}
-/** String.Heredoc */
-.codehilite .sh {
-}
-/** String.Interpol */
-.codehilite .si {
-    font-style: italic;
-    color: #70a0d0;
-}
-/** String.Other */
-.codehilite .sx {
-    color: #c65d09;
-}
-/** String.Regex */
-.codehilite .sr {
-    color: #235388;
-}
-/** String.Single */
-.codehilite .s1 {
-}
-/** String.Symbol */
-.codehilite .ss {
-    color: #517918;
-}
-/** Number */
-.codehilite .m {
-    color: #40a070;
-}
-/** Number.Float */
-.codehilite .mf {
-}
-/** Number.Hex */
-.codehilite .mh {
-}
-/** Number.Integer */
-.codehilite .mi {
-}
-/** Number.Integer.Long */
-.codehilite .il {
-}
-/** Number.Oct */
-.codehilite .mo {
-}
-/** Operator */
-.codehilite .o {
-    color: #666666;
-}
-/** Operator.Word */
-.codehilite .ow {
-    font-style: bold;
-    color: #007020;
-}
-/** Punctuation */
-.codehilite .p {
-}
-/** Comment */
-.codehilite .c {
-    color: #60a0b0;
-    font-style: italic;
-}
-/** Comment.Multiline */
-.codehilite .cm {
-}
-/** Comment.Preproc */
-.codehilite .cp {
-    color: #007020;
-    font-style: noitalic;
-}
-/** Comment.Single */
-.codehilite .c1 {
-}
-/** Comment.Special */
-.codehilite .cs {
-    background-color: #fff0f0;
-    font-style: noitalic;
-}
-/** Generic */
-.codehilite .g {
-}
-/** Generic.Deleted */
-.codehilite .gd {
-    color: #a00000;
-}
-/** Generic.Emph */
-.codehilite .ge {
-    font-style: italic;
-}
-/** Generic.Error */
-.codehilite .gr {
-    color: #ff0000;
-    }
-/** Generic.Heading */
-.codehilite .gh {
-    font-style: bold;
-    color: #000080;
-}
-/** Generic.Inserted */
-.codehilite .gi {
-    color: #00a000;
-    }
-/** Generic.Output */
-.codehilite .go {
-    color: #888;
-}
-/** Generic.Prompt */
-.codehilite .gp {
-    font-style: bold;
-    color: #c65d09;
-}
-/** Generic.Strong */
-.codehilite .gs {
-    font-style: bold;
-}
-/** Generic.Subheading */
-.codehilite .gu {
-    font-style: bold;
-    color: #800080;
-    }
-/** Generic.Traceback */
-.codehilite .gt {
-    color: #04d;
-}
-
-
diff --git a/res/site.css b/res/site.css
deleted file mode 100644
index d174024..0000000
--- a/res/site.css
+++ /dev/null
@@ -1,256 +0,0 @@
-body {
-    background-color: #ffffff;
-    color: #3b3b3b;
-    font-family: Tahoma, Arial, sans-serif;
-    font-size: 10pt;
-    line-height: 140%
-}
-
-h1,h2,h3,h4,h5,h6 {
-    font-weight: normal;
-    color: #000000;
-    line-height: 100%;
-}
-
-h1 {
-    font-size: 200%;
-    border-radius: 10px;
-    padding: 10px;
-    background-color: #FDF5D9;
-    font-weight: bold;
-}
-
-h2 {
-    font-size: 175%;
-    border-radius: 10px;
-    padding: 10px;
-    margin-top: 2em;
-    background-color: #FDF5D9;
-    font-weight: bold;
-}
-
-h3 {
-    font-size: 150%
-}
-
-h4 {
-    font-size: 140%
-}
-
-h5 {
-    font-size: 130%
-}
-
-h6 {
-    font-size: 120%
-}
-
-a {
-    color: #1980af
-}
-
-a:visited {
-    color: #1980af
-}
-
-a:hover {
-    color: #1faae9
-}
-
-img {
-    width: 100%;
-    border: solid 1px black;
-    margin-top: 0.5em;
-    margin-bottom: 0.5em;
-    padding: 0.5em
-}
-
-.title {
-    position: absolute;
-    left: 1px;
-    right: 1px;
-    top: 25px;
-    height: 81px;
-    background:
-        url(gradient.png)
-        repeat-x;
-    background-position: bottom;
-}
-
-.title img {
-    width: auto;
-    border: none;
-    margin-top: 0px;
-    margin-bottom: 0px;
-    padding: 0px;    
-}
-
-.logo {
-    position: absolute;
-    width: 15em;
-    height: 81px;
-    text-align: center;
-}
-
-.header {
-    text-align: right;
-    margin-right: 20pt;
-}
-
-.menu {
-    border-top: 10px solid #f9bb00;
-    position: absolute;
-    top: 107px;
-    left: 1px;
-    width: 15em;
-    bottom: 0px;
-    padding: 0px;
-    background-color: #fcfcfc
-}
-
-.menu ul,.menu p {
-    background-color: #fdf5d9;
-    list-style: none;
-    padding-left: 4em;
-    margin-top: 0px;
-    padding-top: 2em;
-    padding-bottom: 2em;
-    margin-left: 0px;
-    color: #4a4a43
-}
-
-.menu p {
-    font-size: 90%;
-    margin: 0px;
-    padding: 1px;
-    padding-left: 1em;
-    padding-bottom: 1em;
-}
-
-.menu a {
-    text-decoration: none;
-    color: #4a4a43
-}
-
-.main {
-    position: absolute;
-    border-top: 10px solid #cde0ea;
-    top: 107px;
-    left: 15em;
-    right: 1px;
-    margin-left: 2px;
-    padding-right: 4em;
-    padding-left: 1em;
-    padding-top: 1em;
-}
-
-.preformatted {
-    color: black;
-    background-color: #eeeeee;
-    border: solid 1px black;
-    padding: 0.5em
-}
-
-.preformattedContent pre {
-    margin: 0em
-}
-
-table {
-    border-collapse: collapse;
-    margin: 5px;
-}
-
-th {
-    background-color: #FDF5D9;
-    border: 1px solid #CCCCCC;
-    padding: 3px 4px;
-    text-align: center;
-}
-
-td {
-    border: 1px solid #CCCCCC;
-    padding: 3px 4px;
-}
-
-.note
-{
-/*
-    background-color: #FFFFCE;
-    border: 1px solid #F0C000;
-*/
-    border: 1px solid #f0c000;
-    background: #ffffce url('icons/warning.gif') no-repeat 5px 5px;
-    text-align: left;
-    margin-top: 5px;
-    margin-bottom: 5px;
-    padding: 5px 5px 5px 28px;
-}
-
-.warning
-{
-/*
-    background-color: #FFCCCC;
-    border: 1px solid #CC0000;
-*/
-    border: 1px solid #f0c000;
-    background: #ffffce url('icons/forbidden.gif') no-repeat 5px 5px;
-    text-align: left;
-    margin-top: 5px;
-    margin-bottom: 5px;
-    padding: 5px 5px 5px 28px;
-}
-
-.info
-{
-/*
-    background-color: #D8E4F1;
-    border: 1px solid #3C78B5;
-*/
-    border: 1px solid #3c78b5;
-    background: #D8E4F1 url('icons/information.gif') no-repeat 5px 5px;
-    text-align: left;
-    margin-top: 5px;
-    margin-bottom: 5px;
-    padding: 5px 5px 5px 28px;
-}
-
-.tip
-{
-/*
-    background-color: #DDFFDD;
-    border: 1px solid #009900;
-*/
-    border: 1px solid #090;
-    background: #dfd url('/icons/check.gif') no-repeat 5px 5px;
-    text-align: left;
-    margin-top: 5px;
-    margin-bottom: 5px;
-    padding: 5px 5px 5px 28px;
-}
-
-/** Breadcrump at the top of each page */
-.breadcrump {
-    font-size: 80%;
-}
-
-/** Last modification information at the botton of each page */
-.timestamp {
-    margin-top: 30px;
-    font-size: 80%;
-    text-align: right;
-}
-
-/** Trademark text at the bottom of each page */
-.trademarkFooter {
-    font-size: 80%;
-    font-style: italic;
-    margin-top: 10px;
-    text-align: left;
-}
-
-blockquote {
-    font-style: italic;
-    margin: 0;
-    padding-left: 1em;
-    border-left: 1px solid black;
-}
\ No newline at end of file
diff --git a/sitemap.html b/sitemap.html
deleted file mode 100644
index 0894382..0000000
--- a/sitemap.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{% extends "skeleton.html" %}
-{% block title %}Sitemap{% endblock %}</h1>
-{% block content %}{{ sitemap|markdown }}{% endblock %}
-
-