Ryan McGuire
Ryan McGuire
Thanks very much for this script, I've been hacking on it for the past few days. I've got some updates you may wish to re-incorporate in your branch. Sorry, they're...
http://stackoverflow.com/questions/12314451/accessing-bash-command-line-args-vs
If a post file has unicode characters, on windows it's handled poorly. Need to use sys.getfilesystemencoding() to know how to properly decode the filename in a cross-platform way. Reference: http://is.gd/uPA11J
It would be cool if the blog plugin could be run multiple times at mutliple paths for different authors. Only problem, is we'd need a way to create multiple configuration...
See [this mailing list post](http://groups.google.com/group/blogofile-discuss/browse_frm/thread/eae91d0e1a9882e3?hl=en_US) The style of configuration, creating a naked function called post_excerpt is ugly and is way old. We should be configuring bf.config.plugin.blog namespace instead.
Pygments wraps the code in a <pre> tag, Textile munges anything in <pre> tags converting html to entities thus corrupting the code. [Reference](http://groups.google.com/group/blogofile-discuss/browse_thread/thread/1f20b6b07672f0b2?hl=en)
Right now we have bf.template_context which is a place to store temporary state information for the currently rendering template. So far it only has bf.template_context.template_name which is the name of...
Disqus is better, but facebook has cool comments support now too: http://is.gd/uqAwK0 We should have an example in the docs how we can support this.
He has some good ideas in there that we can integrate. https://gist.github.com/853312
Right now when blogofile raises an uncaught exception, it produces a standard python stacktrace. The user can run blogofile -v or blogofile -vv and Blogofile will be verbose about what...