public
Description: Yet Another Planet Refactoring
Homepage: http://intertwingly.net/blog/2007/12/19/Yet-Another-Planet-Refactoring
Clone URL: git://github.com/rubys/mars.git
mars /
name age message
file README Wed Apr 09 05:40:58 -0700 2008 haml templates for mars, v0.4 [joshu]
file Rakefile.rb Wed Apr 09 05:40:58 -0700 2008 haml templates for mars, v0.4 [joshu]
file planet.rb Fri Mar 28 18:34:10 -0700 2008 Add full Mars bzr tree. [Scott Bronson]
directory planet/ Wed Oct 01 21:14:51 -0700 2008 Add support for per-feed xml_base configuration... [distler]
file prereqs.rb Fri Mar 28 18:34:10 -0700 2008 Add full Mars bzr tree. [Scott Bronson]
file reconstitute.rb Wed Oct 01 07:07:38 -0700 2008 More reconstitute based on a full dry run [rubys]
file splice.rb Wed Apr 09 05:40:58 -0700 2008 haml templates for mars, v0.4 [joshu]
file test.rb Fri Mar 28 18:34:10 -0700 2008 Add full Mars bzr tree. [Scott Bronson]
directory test/ Sun Sep 28 17:36:29 -0700 2008 Merge branch 'master' of git://github.com/joshu... [rubys]
directory themes/ Mon Sep 29 08:07:19 -0700 2008 A better fix for atom:published in atom:source ... [distler]
directory tools/ Fri Mar 28 18:34:10 -0700 2008 Add full Mars bzr tree. [Scott Bronson]
README
HAML FOR MARS release 0.4

To run the haml example, execute:

  rake setup
  rake planet

and point your browser to yourdir/index.html

To play with templates once the cache has been built:

  rake splice

Setup copies in config and .haml templates for the intertwingly theme.
The various clean tasks remove the extra files. See rake -T


Previously on Planet Mars...

To verify that you have the necessary prereqs installed, execute:

  rake prereqs

Information on the various requirements:

  Addressable:
    gem install addressable

    For best resuts, also install idn:
      gem install idn

    To make sure that gems are searched:
      export RUBYOPT="-rubygems"

  Html5:
    There was a bug fixed on 2007-12-09 that Mars depends on.  For best
    results, check out the latest:

      svn checkout http://html5lib.googlecode.com/svn/trunk/ html5lib
      export RUBYLIB="/path/html5lib/ruby/lib"

  XmlParser:
    Mars needs a *working* XML parser (REXML version 3.1.6 won't do).

    To determine the version of REXML you have installed:
      ruby -rrexml/document -e 'p REXML::VERSION'

    For best results (speed, spec compliance), install one of
      http://www.yoshidam.net/xmlparser_en.txt
      http://libxml.rubyforge.org/

    The latest REXML can be obtained by
      svn co http://www.germane-software.com/repos/rexml/trunk/ rexml
      export RUBYLIB="/path/rexml/src"