-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ee4d377
Showing
56 changed files
with
2,657 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Simple django project which contains | ||
blueprint, polypage, facebox. | ||
|
||
urls.py containes direct mapping urls to templates, | ||
meaning that every template in templates folder | ||
is accessible by corresponding url (templates/index.html -> /index.html, etc) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env python | ||
from django.core.management import execute_manager | ||
try: | ||
import settings # Assumed to be in the same directory. | ||
except ImportError: | ||
import sys | ||
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) | ||
sys.exit(1) | ||
|
||
if __name__ == "__main__": | ||
execute_manager(settings) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
django-staticfiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Django settings for groupbuy1 project. | ||
import os | ||
|
||
PROJECT_ROOT = os.path.abspath(os.path.split(__file__)[0]) | ||
|
||
DEBUG = True | ||
TEMPLATE_DEBUG = DEBUG | ||
|
||
ADMINS = ( | ||
# ('Your Name', '[email protected]'), | ||
) | ||
|
||
MANAGERS = ADMINS | ||
|
||
DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. | ||
DATABASE_NAME = '' # Or path to database file if using sqlite3. | ||
DATABASE_USER = '' # Not used with sqlite3. | ||
DATABASE_PASSWORD = '' # Not used with sqlite3. | ||
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. | ||
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. | ||
|
||
# Local time zone for this installation. Choices can be found here: | ||
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name | ||
# although not all choices may be available on all operating systems. | ||
# On Unix systems, a value of None will cause Django to use the same | ||
# timezone as the operating system. | ||
# If running in a Windows environment this must be set to the same as your | ||
# system time zone. | ||
TIME_ZONE = 'America/Los_Angeles' | ||
|
||
# Language code for this installation. All choices can be found here: | ||
# http://www.i18nguy.com/unicode/language-identifiers.html | ||
LANGUAGE_CODE = 'en-us' | ||
|
||
SITE_ID = 1 | ||
|
||
# If you set this to False, Django will make some optimizations so as not | ||
# to load the internationalization machinery. | ||
USE_I18N = True | ||
|
||
# Absolute path to the directory that holds media. | ||
# Example: "/home/media/media.lawrence.com/" | ||
MEDIA_ROOT = '' | ||
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static') | ||
|
||
# URL that handles the media served from MEDIA_ROOT. Make sure to use a | ||
# trailing slash if there is a path component (optional in other cases). | ||
# Examples: "http://media.lawrence.com", "http://example.com/media/" | ||
MEDIA_URL = '' | ||
STATIC_URL = '/static/' | ||
|
||
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a | ||
# trailing slash. | ||
# Examples: "http://foo.com/media/", "/media/". | ||
ADMIN_MEDIA_PREFIX = '/admin_media/' | ||
|
||
# Make this unique, and don't share it with anybody. | ||
SECRET_KEY = 'yi@l19(fv7!wkf=o8l_19tb9motb3utax4x^(cm5d9iiyouiy@' | ||
|
||
# List of callables that know how to import templates from various sources. | ||
TEMPLATE_LOADERS = ( | ||
'django.template.loaders.filesystem.load_template_source', | ||
'django.template.loaders.app_directories.load_template_source', | ||
# 'django.template.loaders.eggs.load_template_source', | ||
) | ||
|
||
TEMPLATE_CONTEXT_PROCESSORS = ( | ||
'django.core.context_processors.auth', | ||
'django.core.context_processors.debug', | ||
'django.core.context_processors.i18n', | ||
'django.core.context_processors.media', | ||
'django.core.context_processors.request', | ||
'staticfiles.context_processors.static_url', | ||
) | ||
|
||
MIDDLEWARE_CLASSES = ( | ||
'django.middleware.common.CommonMiddleware', | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
) | ||
|
||
ROOT_URLCONF = 'urls' | ||
|
||
TEMPLATE_DIRS = ( | ||
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". | ||
# Always use forward slashes, even on Windows. | ||
os.path.join(PROJECT_ROOT, 'templates'), | ||
) | ||
|
||
INSTALLED_APPS = ( | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.sites', | ||
'staticfiles', | ||
# Uncomment the next line to enable the admin: | ||
# 'django.contrib.admin', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* ----------------------------------------------------------------------- | ||
Blueprint CSS Framework 0.9 | ||
http://blueprintcss.org | ||
* Copyright (c) 2007-Present. See LICENSE for more info. | ||
* See README for instructions on how to use Blueprint. | ||
* For credits and origins, see AUTHORS. | ||
* This is a compressed file. See the sources in the 'src' directory. | ||
----------------------------------------------------------------------- */ | ||
|
||
/* ie.css */ | ||
body {text-align:center;} | ||
.container {text-align:left;} | ||
* html .column, * html .span-1, * html .span-2, * html .span-3, * html .span-4, * html .span-5, * html .span-6, * html .span-7, * html .span-8, * html .span-9, * html .span-10, * html .span-11, * html .span-12, * html .span-13, * html .span-14, * html .span-15, * html .span-16, * html .span-17, * html .span-18, * html .span-19, * html .span-20, * html .span-21, * html .span-22, * html .span-23, * html .span-24 {display:inline;overflow-x:hidden;} | ||
* html legend {margin:0px -8px 16px 0;padding:0;} | ||
sup {vertical-align:text-top;} | ||
sub {vertical-align:text-bottom;} | ||
html>body p code {*white-space:normal;} | ||
hr {margin:-8px auto 11px;} | ||
img {-ms-interpolation-mode:bicubic;} | ||
.clearfix, .container {display:inline-block;} | ||
* html .clearfix, * html .container {height:1%;} | ||
fieldset {padding-top:0;} | ||
textarea {overflow:auto;} | ||
input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;} | ||
input.text:focus, input.title:focus {border-color:#666;} | ||
input.text, input.title, textarea, select {margin:0.5em 0;} | ||
input.checkbox, input.radio {position:relative;top:.25em;} | ||
form.inline div, form.inline p {vertical-align:middle;} | ||
form.inline label {position:relative;top:-0.25em;} | ||
form.inline input.checkbox, form.inline input.radio, form.inline input.button, form.inline button {margin:0.5em 0;} | ||
button, input.button {position:relative;top:0.25em;} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Buttons | ||
|
||
* Gives you great looking CSS buttons, for both <a> and <button>. | ||
* Demo: particletree.com/features/rediscovering-the-button-element | ||
|
||
|
||
Credits | ||
---------------------------------------------------------------- | ||
|
||
* Created by Kevin Hale [particletree.com] | ||
* Adapted for Blueprint by Olav Bjorkoy [bjorkoy.com] | ||
|
||
|
||
Usage | ||
---------------------------------------------------------------- | ||
|
||
1) Add this plugin to lib/settings.yml. | ||
See compress.rb for instructions. | ||
|
||
2) Use the following HTML code to place the buttons on your site: | ||
|
||
<button type="submit" class="button positive"> | ||
<img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save | ||
</button> | ||
|
||
<a class="button" href="/password/reset/"> | ||
<img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password | ||
</a> | ||
|
||
<a href="#" class="button negative"> | ||
<img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* -------------------------------------------------------------- | ||
buttons.css | ||
* Gives you some great CSS-only buttons. | ||
Created by Kevin Hale [particletree.com] | ||
* particletree.com/features/rediscovering-the-button-element | ||
See Readme.txt in this folder for instructions. | ||
-------------------------------------------------------------- */ | ||
|
||
a.button, button { | ||
display:block; | ||
float:left; | ||
margin: 0.7em 0.5em 0.7em 0; | ||
padding:5px 10px 5px 7px; /* Links */ | ||
|
||
border:1px solid #dedede; | ||
border-top:1px solid #eee; | ||
border-left:1px solid #eee; | ||
|
||
background-color:#f5f5f5; | ||
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif; | ||
font-size:100%; | ||
line-height:130%; | ||
text-decoration:none; | ||
font-weight:bold; | ||
color:#565656; | ||
cursor:pointer; | ||
} | ||
button { | ||
width:auto; | ||
overflow:visible; | ||
padding:4px 10px 3px 7px; /* IE6 */ | ||
} | ||
button[type] { | ||
padding:4px 10px 4px 7px; /* Firefox */ | ||
line-height:17px; /* Safari */ | ||
} | ||
*:first-child+html button[type] { | ||
padding:4px 10px 3px 7px; /* IE7 */ | ||
} | ||
button img, a.button img{ | ||
margin:0 3px -3px 0 !important; | ||
padding:0; | ||
border:none; | ||
width:16px; | ||
height:16px; | ||
float:none; | ||
} | ||
|
||
|
||
/* Button colors | ||
-------------------------------------------------------------- */ | ||
|
||
/* Standard */ | ||
button:hover, a.button:hover{ | ||
background-color:#dff4ff; | ||
border:1px solid #c2e1ef; | ||
color:#336699; | ||
} | ||
a.button:active{ | ||
background-color:#6299c5; | ||
border:1px solid #6299c5; | ||
color:#fff; | ||
} | ||
|
||
/* Positive */ | ||
body .positive { | ||
color:#529214; | ||
} | ||
a.positive:hover, button.positive:hover { | ||
background-color:#E6EFC2; | ||
border:1px solid #C6D880; | ||
color:#529214; | ||
} | ||
a.positive:active { | ||
background-color:#529214; | ||
border:1px solid #529214; | ||
color:#fff; | ||
} | ||
|
||
/* Negative */ | ||
body .negative { | ||
color:#d12f19; | ||
} | ||
a.negative:hover, button.negative:hover { | ||
background-color:#fbe3e4; | ||
border:1px solid #fbc2c4; | ||
color:#d12f19; | ||
} | ||
a.negative:active { | ||
background-color:#d12f19; | ||
border:1px solid #d12f19; | ||
color:#fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Fancy Type | ||
|
||
* Gives you classes to use if you'd like some | ||
extra fancy typography. | ||
|
||
Credits and instructions are specified above each class | ||
in the fancy-type.css file in this directory. | ||
|
||
|
||
Usage | ||
---------------------------------------------------------------- | ||
|
||
1) Add this plugin to lib/settings.yml. | ||
See compress.rb for instructions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* -------------------------------------------------------------- | ||
fancy-type.css | ||
* Lots of pretty advanced classes for manipulating text. | ||
See the Readme file in this folder for additional instructions. | ||
-------------------------------------------------------------- */ | ||
|
||
/* Indentation instead of line shifts for sibling paragraphs. */ | ||
p + p { text-indent:2em; margin-top:-1.5em; } | ||
form p + p { text-indent: 0; } /* Don't want this in forms. */ | ||
|
||
|
||
/* For great looking type, use this code instead of asdf: | ||
<span class="alt">asdf</span> | ||
Best used on prepositions and ampersands. */ | ||
|
||
.alt { | ||
color: #666; | ||
font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif; | ||
font-style: italic; | ||
font-weight: normal; | ||
} | ||
|
||
|
||
/* For great looking quote marks in titles, replace "asdf" with: | ||
<span class="dquo">“</span>asdf” | ||
(That is, when the title starts with a quote mark). | ||
(You may have to change this value depending on your font size). */ | ||
|
||
.dquo { margin-left: -.5em; } | ||
|
||
|
||
/* Reduced size type with incremental leading | ||
(http://www.markboulton.co.uk/journal/comments/incremental_leading/) | ||
This could be used for side notes. For smaller type, you don't necessarily want to | ||
follow the 1.5x vertical rhythm -- the line-height is too much. | ||
Using this class, it reduces your font size and line-height so that for | ||
every four lines of normal sized type, there is five lines of the sidenote. eg: | ||
New type size in em's: | ||
10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems) | ||
New line-height value: | ||
12px x 1.5 = 18px (old line-height) | ||
18px x 4 = 72px | ||
72px / 5 = 14.4px (new line height) | ||
14.4px / 10px = 1.44 (new line height in em's) */ | ||
|
||
p.incr, .incr p { | ||
font-size: 10px; | ||
line-height: 1.44em; | ||
margin-bottom: 1.5em; | ||
} | ||
|
||
|
||
/* Surround uppercase words and abbreviations with this class. | ||
Based on work by Jørgen Arnor Gårdsø Lom [http://twistedintellect.com/] */ | ||
|
||
.caps { | ||
font-variant: small-caps; | ||
letter-spacing: 1px; | ||
text-transform: lowercase; | ||
font-size:1.2em; | ||
line-height:1%; | ||
font-weight:bold; | ||
padding:0 2px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Link Icons | ||
* Icons for links based on protocol or file type. | ||
|
||
This is not supported in IE versions < 7. | ||
|
||
|
||
Credits | ||
---------------------------------------------------------------- | ||
|
||
* Marc Morgan | ||
* Olav Bjorkoy [bjorkoy.com] | ||
|
||
|
||
Usage | ||
---------------------------------------------------------------- | ||
|
||
1) Add this line to your HTML: | ||
<link rel="stylesheet" href="css/blueprint/plugins/link-icons/screen.css" type="text/css" media="screen, projection"> |
Oops, something went wrong.