Add a setup.py for packaging :)

--HG--
rename : pelican/pelican => bin/pelican
rename : pelican/themes/archives.html => pelican/themes/templates/archives.html
rename : pelican/themes/article.html => pelican/themes/templates/article.html
rename : pelican/themes/base.html => pelican/themes/templates/base.html
rename : pelican/themes/categories.html => pelican/themes/templates/categories.html
rename : pelican/themes/category.html => pelican/themes/templates/category.html
rename : pelican/themes/index.html => pelican/themes/templates/index.html
rename : pelican/themes/tag.html => pelican/themes/templates/tag.html
rename : pelican/themes/tags.html => pelican/themes/templates/tags.html
This commit is contained in:
Alexis Metaireau 2010-08-19 04:23:07 +02:00
commit ebd906cd4b
22 changed files with 123 additions and 104 deletions

View file

@ -23,7 +23,10 @@ _DEFAULT_CONFIG = {'PATH': None,
'OUTPUT_PATH': 'output/',
'MARKUP': 'rst',
'STATIC_PATHS': ['css', 'images'],
'FEED_FILENAME': 'atom.xml'}
'FEED_FILENAME': 'atom.xml',
'BLOGNAME': 'A Pelican Blog',
'BLOGURL': ''}
def generate_output(path=None, theme=None, output_path=None, markup=None,
settings=None):
@ -92,13 +95,13 @@ def generate_output(path=None, theme=None, output_path=None, markup=None,
title=context['BLOGNAME'],
link=context['BLOGURL'],
feed_url='%s/%s' % (context['BLOGURL'], context['FEED_FILENAME']),
description=context['BLOGSUBTITLE'])
description=context.get('BLOGSUBTITLE', ''))
for article in articles:
feed.add_item(
title=article.title,
link='%s/%s' % (context['BLOGURL'], article.url),
description=article.content,
author_name=article.author,
author_name=getattr(article, 'author', 'John Doe'),
pubdate=article.date)
fp = open(os.path.join(output_path, context['FEED_FILENAME']), 'w')

View file

@ -1,31 +0,0 @@
#!/usr/local/bin/python2.7
from generator import generate_output
import argparse
import os
parser = argparse.ArgumentParser(description="""Generate files, given some
files to read and a template to use.
The main use case is to generate static-files-based blogs, to ease DVCSes as
storages, but it could be used with others goal in mind.""")
parser.add_argument('-p', '--path', dest='path',
help='Path where to find the content files (default is "content").')
parser.add_argument('-t', '--templates-path', dest='templates',
help='Path where to find the templates. If not specified, will uses the'
' ones included with pelican.')
parser.add_argument('-o', '--output', dest='output',
help='Where to output the generated files. If not specified, a directory'
' will be created, named "output" in the current path.')
parser.add_argument('-m', '--markup', default='rst', dest='markup',
help='the markup language to use. Currently only ReSTreucturedtext is'
' available.')
parser.add_argument('-s', '--settings', dest='settings',
help='the settings of the application. Default to None.')
if __name__ == '__main__':
args = parser.parse_args()
files = []
generate_output(args.path, args.templates, args.output, args.markup,
args.settings)
print 'Done !'

View file