<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     >
  <channel>
    <title>Blogofile</title>
    <link>http://www.blogofile.com/blog</link>
    <description>A static blog engine/compiler</description>
    <pubDate>Sat, 13 Oct 2012 19:21:04 GMT</pubDate>
    <generator>Blogofile</generator>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <item>
      <title>Blogofile Documentation</title>
      <link>http://www.blogofile.com/blog/2009/07/23/blogofile-documentation</link>
      <pubDate>Thu, 23 Jul 2009 15:22:00 EDT</pubDate>
      <category><![CDATA[blogofile.com]]></category>
      <guid>http://www.blogofile.com/blog/2009/07/23/blogofile-documentation</guid>
      <description>Blogofile Documentation</description>
      <content:encoded><![CDATA[<p>I've started to compile all the Blogofile documentation I've written <a href="/documentation">into one place</a>.</p>
<p>I've also started a <a href="http://groups.google.com/group/blogofile-discuss">mailing list</a> for all thing Blogofile related. Please feel free to give feedback, ask questions, or suggest new features there.</p>]]></content:encoded>
    </item>
    <item>
      <title>The History of Blogofile</title>
      <link>http://www.blogofile.com/blog/2009/03/02/the-history-of-blogofile</link>
      <pubDate>Mon, 02 Mar 2009 13:10:00 EST</pubDate>
      <category><![CDATA[blogofile.com]]></category>
      <guid>http://www.blogofile.com/blog/2009/03/02/the-history-of-blogofile</guid>
      <description>The History of Blogofile</description>
      <content:encoded><![CDATA[
<p>I've been blogging for a while now, over at <a href="http://www.enigmacurry.com">EnigmaCurry.com</a>, early on having used TikiWiki, and most recently Wordpress. I've been mostly happy with Wordpress, it's got a very active community surrounding it and for the most part, it just works. </p>

<p>One thing I really hate about wordpress though, is writing blog posts in their stupid in browser editor. It's not really Wordpress' fault, no one has ever built a decent in browser editor (although <a href="http://bespin.mozilla.com/">that may change</a>), so I use Emacs to write all my blog posts.</p>

<p>At first I used the <a href="https://addons.mozilla.org/en-US/firefox/addon/4125">It's all text</a> firefox extension to be able to edit browser text fields inside of Emacs. This is a nice solution, and I use it all the time. However, when I'm writing blog entries, I'm kind of a perfectionist, often editing a post a couple dozen times before feeling done with it. It got rather tedious to keep switching between Emacs and firefox each time I would save my changes. I wanted a way that I could publish to my blog directly in Emacs.</p>

<p>As it turns out, there are several packages for Emacs that will publish to blog engines using xml-rpc:</p>
  <ul>
    <li><a href="http://www.tolchz.net/2008/01/06/posting-to-wordpress-with-emacs-webloggerel/">weblogger.el (Tolchz.net version)</a></li>
    <li><a href="http://www.emacswiki.org/cgi-bin/emacs/weblogger.el">weblogger.el</a> (The original?)</li>
    <li><a href="http://lists.gnu.org/archive/html/gnu-emacs-sources/2008-11/msg00006.html">blog.el</a></li>
    <li><a href="http://code.google.com/p/wp-emacs/">wp-emacs</a></li>
  </ul>
<p>I've tried them all. They all either didn't work, or didn't work how I wanted them to, so I started to write my own, but got frustrated and realized that I probably couldn't improve on what had already been done.</p>

<p>I briefly played with the idea of creating a <a href="http://fuse.sourceforge.net/">FUSE</a> based filesystem interface to wordpress, where when I wrote a file to a specific directory it would automatically post or update a blog entry on my blog. I wrote the original interface, but then I found <a href="http://www.google.com/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fgithub.com%2Fmojombo%2Fjekyll%2Ftree%2Fmaster&ei=_ImsSYbdM4yRngfbzeW_Bg&usg=AFQjCNGNQYkR3_N9TZzboMUafsn_6JUj-A&sig2=Z43F6QH8c3Pmjs9ykWHQkg">Jekyll</a>.</p>

<p>Wow! Jekyll is awesome. Most blog engines have a database that when a user requests a page the engine queries the database for the post and renders an HTML page on the fly. This frees the author from having to create an HTML page everytime they want to post to their site, but it gets a bit computationally expensive to render that page everytime a user requests one. Why not generate the page <b>one time</b> and be done with it? That's exactly what Jekyll does, it prerenders your entire website from a set of templates and then you upload that rendered site to your webhost (or have git do it for you with a post-receive hook).</p>

<p>Two things about Jekyll prevent me from using it though, it's brand new and doesn't have all the nice features that wordpress has, like categories and tags and such. Also, it's written in Ruby. I hear Ruby is a fine language, but I don't know it. So I wanted something similar in Python.</p>

<p>So this is Blogofile, something quite similar to Jekyll, but written in Python. Jekyll is made more for websites of arbitrary structure, although it does blogs quite well. Blogofile is targeted specifically for blogs. It integrates categories, tags, rss/atom feeds, rss/atom feeds per category, comments and trackbacks, like a good blog should.</p>

<p>Major props go out to <a href="http://tom.preston-werner.com/">Tom Preston-Werner</a> for creating Jekyll. I hope the jekyll project continues to do well!</p>

]]></content:encoded>
    </item>
  </channel>
</rss>
