a few updates since last commit

This commit is contained in:
Don Harper 2015-09-09 22:17:23 -05:00
parent dae95027aa
commit 33a1a23ad4
8 changed files with 80 additions and 203 deletions

40
conf.py
View file

@ -14,14 +14,14 @@ NAVIGATION_LINKS = {
DEFAULT_LANG: (
('/index.html', 'Home'),
('/stories/about.html', 'About me'),
(
(
('http://www.donaldharper.com', 'My Photo Blog'),
('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
('http://www.duckland.org', 'My Personal and Tech Blog'),
),
'My Sites'
),
#(
#(
#('http://www.donaldharper.com', 'My Photo Blog'),
#('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
#('http://www.duckland.org', 'My Personal and Tech Blog'),
#),
#'My Sites'
#),
(
(
('https://twitter.com/duckunix', 'My Twitter'),
@ -71,8 +71,8 @@ SHOW_BLOG_TITLE = True
FEED_LENGTH = 10
REDIRECTIONS = []
IMAGE_FOLDERS = {'images': 'images'}
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}</a></p>'
RSS_READ_MORE_LINK = '<p><a href="{link}">{read_more}</a> ({min_remaining_read})</p>'
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}</a></p>'
RSS_READ_MORE_LINK = '<p><a href="{link}">{read_more}</a> ({min_remaining_read})</p>'
RSS_LINKS_APPEND_QUERY = False
DEPLOY_COMMANDS = {
'default': [
@ -116,3 +116,23 @@ GLOBAL_CONTEXT_FILLER = []
CREATE_MONTHLY_ARCHIVE = True
#ARCHIVE_PATH = "posts"
#ARCHIVE_FILENAME = "index.html"
COIL_SECRET_KEY = b'\x8a\x0f{\x11\xf4\x0c\x92\x86\x14\xc0\xfb\xeeM\xb2\xc1\xa5r\xe12Q\x81GC%'
COIL_URL = 'http://coil.duckland.org/'
_MAKO_DISABLE_CACHING = True
COIL_LIMITED = True
COIL_USERS = {
'1': {
'username': 'don',
'realname': 'Don Harper',
'password': '$bcrypt-sha256$2a,12$St3N7xoStL7Doxpvz78Jve$3vKfveUNhMNhvaFEfJllWEarb5oNgNu',
'must_change_password': False,
'email': 'info@getnikola.com',
'active': True,
'is_admin': True,
'can_edit_all_posts': True,
'wants_all_posts': True,
'can_upload_attachments': True,
'can_rebuild_site': True,
'can_transfer_post_authorship': True,
},
}