Skip to content

Instantly share code, notes, and snippets.

@dag
Created May 13, 2011 14:37
Show Gist options
  • Save dag/970642 to your computer and use it in GitHub Desktop.
Save dag/970642 to your computer and use it in GitHub Desktop.

Ideas for a Software the World Needs Desperately: Another Static Site Generator

  • Use Genshi for templating
    • Elegant
    • Powerful
    • Speed not important for static sites
  • But actually map template file extensions to 'renderer' objects
  • SCSS for styles
  • reST for textual content
    • Extensible directives, roles
    • Use field lists for metadata
      • Tags/Categories
      • Template to render page in
      • …or better yet, have a concept of programmable 'page types' that control:
        • Template
        • URL (e.g. include date?)
        • If content should be Atom published, index and archive -listed, listed in navigation…
  • But be modular about filetypes so e.g. creole can be supported, using macros for extensions
    • Map file extensions to 'source readers'
  • Metadata providers e.g. git, FS
    • List providers to use in order of "priority"
  • Wrap content from reST etc as genshi.HTML rather than Markup
    • Serialization
    • Transformations
    • Match templates
  • WSGI development server (better than watch-and-build?)
  • YAML, INI or plain Python for configuration?
  • Design like a framework more than like a tool, at least at the core
    • Don't make assumptions about page types, template contexts
    • Don't just build a page per source document etc - treat the documents more like a database
# renderer
class Genshi(Renderer):
def __init__(self, serializer='html', doctype='html5'):
pass
site.renderers['.html'] = Genshi()
site.renderers['.xml'] = Genshi('xml', doctype=None)
# source documents
class Rst(Document):
# parse an .rst file and set some attributes based on field lists etc
pass
site.document_sources['.rst'] = Rst
# metadata informants
class Git(Informant):
# get created/modified dates and revisions etc from git
# maybe some configuration to link to github et al for diffs etc
pass
class FileSystem(Informant):
# get created/modified dates from filesystem
pass
site.informants = [Git, FileSystem]
from . import Site
site = Site(__name__)
for source in site.documents:
istype = lambda x: source.type == x
# :type: page, publish as is
if istype('page'):
source.build('page.html', [source.name])
# :type: blog, publish as /year/month/day/name
elif istype('blog'):
source.build('post.html', [
source.created.year,
source.created.month,
source.created.day,
source.name
])
# also publish listings per date
site.build('post-list.html', [
source.created.year,
source.created.month,
source.created.day
], posts=[
post for post in site.sources
if (post.created.year, post.created.month, post.created.day)
== (source.created.year, source.created.month, source.created.day)
])
# …and month
site.build('post-list.html', [
source.created.year,
source.created.month
], posts=[
post for post in site.sources
if (post.created.year, post.created.month)
== (source.created.year, source.created.month)
])
# …and year (better way to do all this?)
site.build('post-list.html', [source.created.year], posts=[
post for post in site.sources
if post.created.year == source.created.year
])
# atom feed with five last modified posts
site.build('atom.xml', ['feed.xml'], posts=sorted([
source for source in site.sources
if source.type == 'blog'
], key=lambda x: x.modified)[:5])
@relrod
Copy link

relrod commented May 13, 2011

Very true. I'm liking where this is going :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment