Remove unneeded files and dir.

This commit is contained in:
Prateek Singh Paudel 2012-10-03 04:47:33 +05:45
parent fc2f694ac3
commit c8ef876b06
7 changed files with 0 additions and 285 deletions

View File

@ -1,17 +0,0 @@
# -*- coding: utf-8 -
#
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
import os
# options
SITE_NAME = "Green Unicorn"
SITE_URL = "http://www.gunicorn.org"
SITE_DESCRIPTION = "A Python port of Ruby's Unicorn project."
# paths
DOC_PATH = os.path.dirname(os.path.abspath(__file__))
TEMPLATES_PATH = os.path.join(DOC_PATH, "templates")
INPUT_PATH = os.path.join(DOC_PATH, "site")
OUTPUT_PATH = os.path.join(DOC_PATH, "htdocs")

View File

@ -1,8 +0,0 @@
require 'ninesixty'
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "htdocs/css"
sass_dir = "css"
images_dir = "images"
preferred_syntax = :sass

View File

@ -1,74 +0,0 @@
@import 960/grid
@import 960/text
@import compass/css3
@import compass/layout.scss
@import compass/utilities/general
@import compass/typography/lists
@import compass/reset
// Index Layout
$ninesixty-columns: 24
#container.landing
+grid-container
#menu, #header, div.blurb, #tutorial, #actions, #footer
+grid-unit-base
#menu, #header, #footer
+grid-width(24)
#actions
div.blurb
+grid-width(8)
#tutorial
+grid-width(16)
+text
a, a:visited, a:hover, a:active
color: #569633
text-decoration: none
#header
margin: 46px 0px
#menu
margin-bottom: 23px
+border-bottom-radius(10px)
background-color: #959595
text-align: right
div.logo
float: left
margin-left: 10px
padding-top: 3px
ul
display: inline
margin-right: 10px
+no-bullets
li
display: inline
padding: 0px 3px
a
font-size: 17px
color: white
#footer
border-top: 1px solid #959595
padding: 10px 0px
text-align: center
color: #959595
p
margin-bottom: 5px
pre, tt, code
font-family: 'Andale Mono', 'Lucida Console', monospace
font-size: 12px
pre
white-space: pre
background-color: #000000
color: #00FF00
margin: 5px
margin-bottom: 20px
padding: 5px

View File

@ -1,116 +0,0 @@
@import 960/grid
@import 960/text
@import compass/css3
@import compass/layout.scss
@import compass/utilities/general
@import compass/typography/lists
@import compass/reset
$ninesixty-columns: 24
// Layout
#container.twocolumn
+grid-container
#header, #menu, #footer, #toc, #content
+grid-unit-base
#header, #menu, #footer
+grid-width(24)
#toc
+grid-width(8)
#content
+grid-width(16)
// Text
+text
body
font-family: Helvetica, Arial, sans-serif
a, a:visited, a:hover, a:active
color: #569633
text-decoration: none
// Style
#menu
margin-bottom: 23px
+border-bottom-radius(10px)
background-color: #959595
text-align: right
div.logo
float: left
margin-left: 10px
padding-top: 3px
ul
display: inline
margin-right: 10px
+no-bullets
li
display: inline
padding: 0px 3px
a
font-size: 17px
color: white
div.document
border-right: 1px solid #959595
padding-right: 15px
#toc
ul ul
list-style: disc
ul ul ul
list-style: circle
p.topic-title
display: none
pre, tt, code
font-family: 'Andale Mono', 'Lucida Console', monospace
font-size: 12px
pre
white-space: pre
background-color: #000000
color: #00FF00
margin: 5px
margin-bottom: 20px
padding: 5px
.note
border-top: 1px solid #569633
border-bottom: 1px solid #569633
padding: .6em .6em .6em 80px
margin-bottom: 2em
position: relative
p.admonition-title:before
content: "!"
font-size: 60px
font-weight: bold
color: #FF0000
position: absolute
left: 30px
font-family: helvetica,arial
p.admonition-title
font-weight: 700
margin: 0
margin-bottom: 4px
padding: 0
p.last
padding: 0
margin: 0
#footer
border-top: 1px solid #959595
padding: 10px 0px
text-align: center
color: #959595
p
margin-bottom: 5px
strong
font-weight: bold

View File

@ -1,41 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Green Unicorn - {% block title %}Welcome{% endblock %}</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
</head>
<body>
<div id="container" class="twocolumn">
<div id="menu">
<div class="logo">
<a href="./">
<img src="images/gunicorn.png" alt="Gunicorn - Green Unicorn" />
</a>
</div>
<ul id="actions">
<li><a href="install.html">Install</a></li>
<li><a href="run.html">Run</a></li>
<li><a href="configure.html">Configure</a></li>
<li><a href="deploy.html">Deploy</a></li>
<li><a href="design.html">Design</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="news.html">News</a></li>
<li><a href="http://github.com/benoitc/gunicorn/">Code</a></li>
<li><a href="http://github.com/benoitc/gunicorn/issues">Issues</a></li>
</ul>
</div>
<div id="content">
{% block body %}{% endblock %}
</div>
<div id="toc">
{% block toc %}{% endblock %}
</div>
<div id="footer">
<p>Site Content License <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>.</p>
<p>Hosted on <a href="http://github.com/">GitHub</a></p>
</div>
</div>
</body>
</html>

View File

@ -1,6 +0,0 @@
{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% if toc %}
{% block toc %}{{ toc }}{% endblock %}
{% endif %}
{% block body %}{{ body }}{% endblock %}

View File

@ -1,23 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Green Unicorn - {% block title %}Welcome{% endblock %}</title>
<link rel="alternate" type="application/rss+xml" href="/feed.xml" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
</head>
<body>
<div id="container" class="twocolumn">
<div id="header">
<img src="images/large_gunicorn.png" alt="Gunicorn - Green Unicorn" />
</div>
<div id="content">
{% block body %}{% endblock %}
</div>
<div id="footer">
<p>Site Content License <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>.</p>
<p>Hosted on <a href="http://github.com/">GitHub</a></p>
</div>
</div>
</body>
</html>