new file: liblinkpeek.py modified: pelicanconf.py modified: requirements.txt
94 lines
2.5 KiB
Python
94 lines
2.5 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
from __future__ import unicode_literals
|
|
|
|
from os import environ
|
|
|
|
DEFAULTS = {
|
|
'AUTHOR' : u'Russell Ballestrini',
|
|
'SITENAME' : u'Russell Ballestrini',
|
|
'SITEURL' : 'http://127.0.0.1:8000',
|
|
#'THEME' : 'pelican-themes/svbhack',
|
|
'THEME' : 'pelican-themes/pelican-svbhack',
|
|
'REMARKBOX' : True,
|
|
'LINKPEEK_API_KEY' : None,
|
|
'LINKPEEK_SECRET_KEY' : None,
|
|
}
|
|
|
|
def get_environ_or_default(key):
|
|
return environ.get(key, DEFAULTS[key])
|
|
|
|
AUTHOR = get_environ_or_default('AUTHOR')
|
|
SITENAME = get_environ_or_default('SITENAME')
|
|
SITEURL = get_environ_or_default('SITEURL')
|
|
|
|
THEME = get_environ_or_default('THEME')
|
|
|
|
REMARKBOX = get_environ_or_default('REMARKBOX')
|
|
|
|
LINKPEEK_API_KEY = get_environ_or_default('LINKPEEK_API_KEY')
|
|
LINKPEEK_SECRET_KEY = get_environ_or_default('LINKPEEK_SECRET_KEY')
|
|
|
|
# Theme specific
|
|
USER_LOGO_URL = 'https://lh3.googleusercontent.com/-uAPZy7NmmP0/AAAAAAAAAAI/AAAAAAAAAnI/iG2P43gCL2U/s125-c/photo.jpg'
|
|
TAGLINE = '<a href="/about">Builds Products</a>'
|
|
|
|
PATH = 'content'
|
|
|
|
STATIC_PATHS = ['uploads']
|
|
|
|
TIMEZONE = 'America/New_York'
|
|
|
|
DEFAULT_LANG = u'en'
|
|
|
|
# Atom all feed.
|
|
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
|
|
|
# Feed generation is usually not desired when developing
|
|
CATEGORY_FEED_ATOM = None
|
|
TRANSLATION_FEED_ATOM = None
|
|
AUTHOR_FEED_ATOM = None
|
|
AUTHOR_FEED_RSS = None
|
|
|
|
# Blogroll
|
|
LINKS = (
|
|
('LinkPeek', 'https://linkpeek.com/'),
|
|
('RemarkBox', 'http://remarkbox.com/'),
|
|
)
|
|
|
|
# Social widget
|
|
SOCIAL = (
|
|
('@russellbal', 'https://twitter.com/russellbal'),
|
|
('github', 'https://github.com/russellballestrini'),
|
|
('bitbucket', 'https://bitbucket.org/russellballestrini'),
|
|
)
|
|
|
|
DEFAULT_PAGINATION = False
|
|
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
#RELATIVE_URLS = True
|
|
|
|
DISPLAY_PAGES_ON_MENU = False
|
|
|
|
# teach pelican to use directory/index.html files
|
|
ARTICLE_URL = '{slug}/'
|
|
PAGE_URL = '{slug}/'
|
|
CATEGORY_URL = 'category/{slug}/'
|
|
TAG_URL = 'tags/{slug}/'
|
|
AUTHOR_URL = 'author/{slug}/'
|
|
|
|
# Adjust save location.
|
|
ARTICLE_SAVE_AS = '{slug}/index.html'
|
|
PAGE_SAVE_AS = '{slug}/index.html'
|
|
CATEGORY_SAVE_AS = 'category/{slug}/index.html'
|
|
TAG_SAVE_AS = 'tags/{slug}/index.html'
|
|
AUTHOR_SAVE_AS = 'author/{slug}/index.html'
|
|
|
|
# needed to add liblinkpeek filter
|
|
import ago
|
|
import sys
|
|
sys.path.append('.')
|
|
import liblinkpeek
|
|
linkpeek = lambda uri, size : liblinkpeek.api_v1(uri, LINKPEEK_API_KEY, LINKPEEK_SECRET_KEY, size)
|
|
JINJA_FILTERS = {'linkpeek':linkpeek, 'ago':ago.human}
|
|
# done adding liblinkpeek filter
|