<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -23,30 +23,31 @@ import com.google.inject.name.Names;
 
 /**
  * Example GuiceModule binds everything together
+ * 
  * @author bens
  */
 public class GuiceModule extends SocialApiGuiceModule {
-	
-	@Override
+
+  @Override
   protected void configure() {
-		super.configure();
-		bind(String.class).annotatedWith(Names.named(&quot;shindig.canonical.json.db&quot;))
-    		.toInstance(&quot;sampledata/canonicaldb.json&quot;);
-    
+    super.configure();
+    bind(String.class).annotatedWith(Names.named(&quot;shindig.canonical.json.db&quot;))
+        .toInstance(&quot;sampledata/canonicaldb.json&quot;);
+
     bind(ActivityService.class).to(JsonDbServiceExample.class);
     bind(AppDataService.class).to(JsonDbServiceExample.class);
     bind(PersonService.class).to(JsonDbServiceExample.class);
     bind(MessageService.class).to(JsonDbServiceExample.class);
     bind(RelationshipService.class).to(JsonDbServiceExample.class);
-    
+
     bind(OAuthDataStore.class).to(SampleOAuthDataStore.class);
 
     requestStaticInjection(SampleRealm.class);
-	}
-	
-	@Override
+  }
+
+  @Override
   protected Set&lt;Object&gt; getHandlers() {
-		return ImmutableSet.&lt;Object&gt;of(ActivityHandler.class, AppDataHandler.class,
-        PersonHandlerImpl.class, MessageHandler.class);
+    return ImmutableSet.&lt;Object&gt; of(ActivityHandler.class,
+        AppDataHandler.class, PersonHandlerImpl.class, MessageHandler.class);
   }
 }</diff>
      <filename>src/main/java/bbc/social/shindig/example/GuiceModule.java</filename>
    </modified>
    <modified>
      <diff>@@ -26,40 +26,40 @@ import com.google.inject.Inject;
  */
 @Service(name = &quot;people&quot;, path = &quot;/{userId}+/{groupId}/{personId}+&quot;)
 public class PersonHandlerImpl extends PersonHandler {
-	private final RelationshipService relationshipService;
+  private final RelationshipService relationshipService;
 
-	@Inject
-	public PersonHandlerImpl(PersonService personService,
-	    RelationshipService relationshipService, ContainerConfig config) {
-		super(personService, config);
-		this.relationshipService = relationshipService;
-	}
+  @Inject
+  public PersonHandlerImpl(PersonService personService,
+      RelationshipService relationshipService, ContainerConfig config) {
+    super(personService, config);
+    this.relationshipService = relationshipService;
+  }
 
-	/**
-	 * Create a new friendship between 2 users POST - {id: 'friendId'}
-	 * /people/{userId}/@friends
-	 * 
-	 * @param request
-	 * @return
-	 * @throws ProtocolException
-	 */
-	@Operation(httpMethods = &quot;POST&quot;, path = &quot;/{userId}+/@friends&quot;)
-	public Future&lt;?&gt; createFriends(SocialRequestItem request)
-	    throws ProtocolException {
-		Set&lt;UserId&gt; userIds = request.getUsers();
-		Person person = request.getTypedParameter(&quot;body&quot;, Person.class);
-		HandlerPreconditions.requireNotEmpty(userIds, &quot;No userId specified&quot;);
-		HandlerPreconditions.requireSingular(userIds,
-		    &quot;Multiple userIds not supported&quot;);
+  /**
+   * Create a new friendship between 2 users POST - {id: 'friendId'}
+   * /people/{userId}/@friends
+   * 
+   * @param request
+   * @return
+   * @throws ProtocolException
+   */
+  @Operation(httpMethods = &quot;POST&quot;, path = &quot;/{userId}+/@friends&quot;)
+  public Future&lt;?&gt; createFriends(SocialRequestItem request)
+      throws ProtocolException {
+    Set&lt;UserId&gt; userIds = request.getUsers();
+    Person person = request.getTypedParameter(&quot;body&quot;, Person.class);
+    HandlerPreconditions.requireNotEmpty(userIds, &quot;No userId specified&quot;);
+    HandlerPreconditions.requireSingular(userIds,
+        &quot;Multiple userIds not supported&quot;);
 
-		if (person == null || person.getId() == null || person.getId().length() &lt; 1) {
-			throw new IllegalArgumentException(
-			    &quot;Cannot create relationship without a person to befriend&quot;);
-		}
-		UserId userId = userIds.iterator().next();
-		this.relationshipService.createRelationship(userId.getUserId(request
-		    .getToken()), person.getId());
+    if (person == null || person.getId() == null || person.getId().length() &lt; 1) {
+      throw new IllegalArgumentException(
+          &quot;Cannot create relationship without a person to befriend&quot;);
+    }
+    UserId userId = userIds.iterator().next();
+    this.relationshipService.createRelationship(userId.getUserId(request
+        .getToken()), person.getId());
 
-		return ImmediateFuture.newInstance(null);
-	}
+    return ImmediateFuture.newInstance(null);
+  }
 }</diff>
      <filename>src/main/java/bbc/social/shindig/example/handler/PersonHandlerImpl.java</filename>
    </modified>
    <modified>
      <diff>@@ -2,13 +2,15 @@ package bbc.social.shindig.example.service;
 
 /**
  * Relationship service provides interface to users' relationships
+ * 
  * @author bens
  */
 public interface RelationshipService {
-	/**
-	 * Create a relationship between two users
-	 * @param personId
-	 * @param friendId
-	 */
-	public void createRelationship(String personId, String friendId);
+  /**
+   * Create a relationship between two users
+   * 
+   * @param personId
+   * @param friendId
+   */
+  public void createRelationship(String personId, String friendId);
 }</diff>
      <filename>src/main/java/bbc/social/shindig/example/service/RelationshipService.java</filename>
    </modified>
    <modified>
      <diff>@@ -12,42 +12,47 @@ import com.google.inject.Singleton;
 import com.google.inject.name.Named;
 
 /**
- * Simple implementation stores relationships in JsonDb
- * This nieve implementation makes a rather large assumption that friendships are uni-directional
+ * Simple implementation stores relationships in JsonDb This nieve
+ * implementation makes a rather large assumption that friendships are
+ * uni-directional
+ * 
  * @author bens
  */
 @Singleton
-public class JsonDbServiceExample extends JsonDbOpensocialService implements RelationshipService {
-	
-	@Inject
-  public JsonDbServiceExample(@Named(&quot;shindig.canonical.json.db&quot;)
-  String jsonLocation, @Named(&quot;shindig.bean.converter.json&quot;)
-  BeanConverter converter) throws Exception {
-		super(jsonLocation, converter);
+public class JsonDbServiceExample extends JsonDbOpensocialService implements
+    RelationshipService {
+
+  @Inject
+  public JsonDbServiceExample(
+      @Named(&quot;shindig.canonical.json.db&quot;) String jsonLocation,
+      @Named(&quot;shindig.bean.converter.json&quot;) BeanConverter converter)
+      throws Exception {
+    super(jsonLocation, converter);
   }
 
-	/** {@inheritDoc} */
-	public void createRelationship(String personId, String friendId) {
-		try {
-			if (this.getDb().getJSONObject(&quot;friendLinks&quot;).has(personId)) {
-				JSONArray friends = this.getDb().getJSONObject(&quot;friendLinks&quot;).getJSONArray(personId);
-  			boolean found = false;
-				for (int i=0; i&lt;friends.length(); i++) {
-					if (friends.getString(i).equals(friendId)) {
-						found = true;
-					}
-				}
-				if (!found) {
-					friends.put(friendId);
-					this.getDb().getJSONObject(&quot;friendLinks&quot;).put(personId, friends);
-				}
-			} else {
-				JSONArray friends = new JSONArray();
-				friends.put(friendId);
-				this.getDb().getJSONObject(&quot;friendLinks&quot;).put(personId, friends);
-			}
-		} catch (JSONException e) {
-			throw new RuntimeException(&quot;unable to work with json db&quot;, e);
-		}
-	}
+  /** {@inheritDoc} */
+  public void createRelationship(String personId, String friendId) {
+    try {
+      if (this.getDb().getJSONObject(&quot;friendLinks&quot;).has(personId)) {
+        JSONArray friends = this.getDb().getJSONObject(&quot;friendLinks&quot;)
+            .getJSONArray(personId);
+        boolean found = false;
+        for (int i = 0; i &lt; friends.length(); i++) {
+          if (friends.getString(i).equals(friendId)) {
+            found = true;
+          }
+        }
+        if (!found) {
+          friends.put(friendId);
+          this.getDb().getJSONObject(&quot;friendLinks&quot;).put(personId, friends);
+        }
+      } else {
+        JSONArray friends = new JSONArray();
+        friends.put(friendId);
+        this.getDb().getJSONObject(&quot;friendLinks&quot;).put(personId, friends);
+      }
+    } catch (JSONException e) {
+      throw new RuntimeException(&quot;unable to work with json db&quot;, e);
+    }
+  }
 }</diff>
      <filename>src/main/java/bbc/social/shindig/example/service/impl/JsonDbServiceExample.java</filename>
    </modified>
    <modified>
      <diff>@@ -49,32 +49,38 @@ import com.google.inject.TypeLiteral;
 import com.google.inject.name.Names;
 
 /**
- * Duplication of https://svn.apache.org/repos/asf/incubator/shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/dataservice/integration/RestfulJsonPeopleTest.java
- * Added create friends to show how to extend interface
+ * Duplication of
+ * https://svn.apache.org/repos/asf/incubator/shindig/trunk/java/social
+ * -api/src/test/java/org/apache/shindig/social/dataservice/integration/
+ * RestfulJsonPeopleTest.java Added create friends to show how to extend
+ * interface
+ * 
  * @author bens
  */
 public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
   private Person canonical;
 
-  @SuppressWarnings({ &quot;unchecked&quot;, &quot;boxing&quot; })
+  @SuppressWarnings( { &quot;unchecked&quot;, &quot;boxing&quot; })
   @Override
   protected void setUp() throws Exception {
-    Injector injector = Guice.createInjector(new PropertiesModule(), new GuiceModule());
+    Injector injector = Guice.createInjector(new PropertiesModule(),
+        new GuiceModule());
     this.setResponse(EasyMock.createMock(HttpServletResponse.class));
-    
+
     // Set data service servlet
     DataServiceServlet servlet = new DataServiceServlet();
     HandlerRegistry dispatcher = injector.getInstance(HandlerRegistry.class);
-    dispatcher.addHandlers(injector.getInstance(Key.get(new TypeLiteral&lt;Set&lt;Object&gt;&gt;(){},
-        Names.named(&quot;org.apache.shindig.social.handlers&quot;))));
-    
+    dispatcher.addHandlers(injector.getInstance(Key.get(
+        new TypeLiteral&lt;Set&lt;Object&gt;&gt;() {
+        }, Names.named(&quot;org.apache.shindig.social.handlers&quot;))));
+
     servlet.setHandlerRegistry(dispatcher);
     servlet.setBeanConverters(new BeanJsonConverter(injector),
         new BeanXStreamConverter(new XStream081Configuration(injector)),
         new BeanXStreamAtomConverter(new XStream081Configuration(injector)));
     this.setServlet(servlet);
     assertNotNull(servlet);
-    
+
     NameImpl name = new NameImpl(&quot;Sir Shin H. Digg Social Butterfly&quot;);
     name.setAdditionalName(&quot;H&quot;);
     name.setFamilyName(&quot;Digg&quot;);
@@ -86,7 +92,8 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     canonical.setAboutMe(&quot;I have an example of every piece of data&quot;);
     canonical.setActivities(Lists.newArrayList(&quot;Coding Shindig&quot;));
 
-    Address address = new AddressImpl(&quot;PoBox 3565, 1 OpenStandards Way, Apache, CA&quot;);
+    Address address = new AddressImpl(
+        &quot;PoBox 3565, 1 OpenStandards Way, Apache, CA&quot;);
     address.setCountry(&quot;US&quot;);
     address.setLatitude(28.3043F);
     address.setLongitude(143.0859F);
@@ -107,7 +114,8 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     bodyType.setWeight(74F);
     canonical.setBodyType(bodyType);
 
-    canonical.setBooks(Lists.newArrayList(&quot;The Cathedral &amp; the Bazaar&quot;, &quot;Catch 22&quot;));
+    canonical.setBooks(Lists.newArrayList(&quot;The Cathedral &amp; the Bazaar&quot;,
+        &quot;Catch 22&quot;));
     canonical.setCars(Lists.newArrayList(&quot;beetle&quot;, &quot;prius&quot;));
     canonical.setChildren(&quot;3&quot;);
     AddressImpl location = new AddressImpl();
@@ -117,7 +125,8 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
 
     canonical.setBirthday(new Date());
     canonical.setDrinker(new EnumImpl&lt;Drinker&gt;(Drinker.SOCIALLY));
-    ListField email = new ListFieldImpl(&quot;work&quot;, &quot;shindig-dev@incubator.apache.org&quot;);
+    ListField email = new ListFieldImpl(&quot;work&quot;,
+        &quot;shindig-dev@incubator.apache.org&quot;);
     canonical.setEmails(Lists.newArrayList(email));
 
     canonical.setEthnicity(&quot;developer&quot;);
@@ -126,7 +135,8 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     canonical.setGender(Person.Gender.male);
     canonical.setHappiestWhen(&quot;coding&quot;);
     canonical.setHasApp(true);
-    canonical.setHeroes(Lists.newArrayList(&quot;Doug Crockford&quot;, &quot;Charles Babbage&quot;));
+    canonical
+        .setHeroes(Lists.newArrayList(&quot;Doug Crockford&quot;, &quot;Charles Babbage&quot;));
     canonical.setHumor(&quot;none to speak of&quot;);
     canonical.setInterests(Lists.newArrayList(&quot;PHP&quot;, &quot;Java&quot;));
     canonical.setJobInterests(&quot;will work for beer&quot;);
@@ -160,26 +170,30 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     canonical.setOrganizations(Lists.newArrayList(job1, job2));
 
     canonical.setUpdated(new Date());
-    canonical.setLanguagesSpoken(Lists.newArrayList(&quot;English&quot;, &quot;Dutch&quot;, &quot;Esperanto&quot;));
+    canonical.setLanguagesSpoken(Lists.newArrayList(&quot;English&quot;, &quot;Dutch&quot;,
+        &quot;Esperanto&quot;));
     canonical.setLivingArrangement(&quot;in a house&quot;);
-    Enum&lt;LookingFor&gt; lookingForRandom =
-        new EnumImpl&lt;LookingFor&gt;(LookingFor.RANDOM, &quot;Random&quot;);
-    Enum&lt;LookingFor&gt; lookingForNetworking =
-        new EnumImpl&lt;LookingFor&gt;(LookingFor.NETWORKING, &quot;Networking&quot;);
-    canonical.setLookingFor(Lists.newArrayList(lookingForRandom, lookingForNetworking));
+    Enum&lt;LookingFor&gt; lookingForRandom = new EnumImpl&lt;LookingFor&gt;(
+        LookingFor.RANDOM, &quot;Random&quot;);
+    Enum&lt;LookingFor&gt; lookingForNetworking = new EnumImpl&lt;LookingFor&gt;(
+        LookingFor.NETWORKING, &quot;Networking&quot;);
+    canonical.setLookingFor(Lists.newArrayList(lookingForRandom,
+        lookingForNetworking));
     canonical.setMovies(Lists.newArrayList(&quot;Iron Man&quot;, &quot;Nosferatu&quot;));
     canonical.setMusic(Lists.newArrayList(&quot;Chieftains&quot;, &quot;Beck&quot;));
-    canonical.setNetworkPresence(new EnumImpl&lt;NetworkPresence&gt;(NetworkPresence.ONLINE));
+    canonical.setNetworkPresence(new EnumImpl&lt;NetworkPresence&gt;(
+        NetworkPresence.ONLINE));
     canonical.setNickname(&quot;diggy&quot;);
     canonical.setPets(&quot;dog,cat&quot;);
-    canonical.setPhoneNumbers(Lists.&lt;ListField&gt; newArrayList(new ListFieldImpl(&quot;work&quot;,
-        &quot;111-111-111&quot;), new ListFieldImpl(&quot;mobile&quot;, &quot;999-999-999&quot;)));
+    canonical.setPhoneNumbers(Lists.&lt;ListField&gt; newArrayList(new ListFieldImpl(
+        &quot;work&quot;, &quot;111-111-111&quot;), new ListFieldImpl(&quot;mobile&quot;, &quot;999-999-999&quot;)));
 
     canonical.setPoliticalViews(&quot;open leaning&quot;);
-    canonical.setProfileSong(new UrlImpl(&quot;http://www.example.org/songs/OnlyTheLonely.mp3&quot;,
-        &quot;Feelin' blue&quot;, &quot;road&quot;));
-    canonical.setProfileVideo(new UrlImpl(&quot;http://www.example.org/videos/Thriller.flv&quot;,
-        &quot;Thriller&quot;, &quot;video&quot;));
+    canonical.setProfileSong(new UrlImpl(
+        &quot;http://www.example.org/songs/OnlyTheLonely.mp3&quot;, &quot;Feelin' blue&quot;,
+        &quot;road&quot;));
+    canonical.setProfileVideo(new UrlImpl(
+        &quot;http://www.example.org/videos/Thriller.flv&quot;, &quot;Thriller&quot;, &quot;video&quot;));
 
     canonical.setQuotes(Lists.newArrayList(&quot;I am therfore I code&quot;, &quot;Doh!&quot;));
     canonical.setRelationshipStatus(&quot;married to my job&quot;);
@@ -197,11 +211,13 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     canonical.setTurnOns(Lists.newArrayList(&quot;well document code&quot;));
     canonical.setTvShows(Lists.newArrayList(&quot;House&quot;, &quot;Battlestar Galactica&quot;));
 
-    canonical.setUrls(Lists.&lt;Url&gt;newArrayList(
-        new UrlImpl(&quot;http://www.example.org/?id=1&quot;, &quot;my profile&quot;, &quot;Profile&quot;),
-        new UrlImpl(&quot;http://www.example.org/pic/?id=1&quot;, &quot;my awesome picture&quot;, &quot;Thumbnail&quot;)));
+    canonical
+        .setUrls(Lists.&lt;Url&gt; newArrayList(new UrlImpl(
+            &quot;http://www.example.org/?id=1&quot;, &quot;my profile&quot;, &quot;Profile&quot;),
+            new UrlImpl(&quot;http://www.example.org/pic/?id=1&quot;,
+                &quot;my awesome picture&quot;, &quot;Thumbnail&quot;)));
   }
-  
+
   @Test
   public void testCreateFriends() throws Exception {
     Map&lt;String, String&gt; extraParams = Maps.newHashMap();
@@ -213,8 +229,8 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     extraParams.put(&quot;fields&quot;, null);
 
     // Currently, for Shindig @all == @friends
-    String resp = getResponse(&quot;/people/john.doe/@friends&quot;, &quot;GET&quot;, extraParams, null,
-        ContentTypes.OUTPUT_JSON_CONTENT_TYPE);
+    String resp = getResponse(&quot;/people/john.doe/@friends&quot;, &quot;GET&quot;, extraParams,
+        null, ContentTypes.OUTPUT_JSON_CONTENT_TYPE);
     JSONObject result = getJson(resp);
 
     assertEquals(3, result.getInt(&quot;totalResults&quot;));
@@ -225,22 +241,22 @@ public class RestfulJsonPeopleTest extends AbstractLargeRestfulTests {
     // The users should be in alphabetical order
     assertPerson(people.getJSONObject(0), &quot;george.doe&quot;, &quot;George Doe&quot;);
     assertPerson(people.getJSONObject(1), &quot;jane.doe&quot;, &quot;Jane Doe&quot;);
-    
+
     String postData = &quot;{id: 'canonical'}&quot;;
     resp = getResponse(&quot;/people/john.doe/@friends&quot;, &quot;POST&quot;, postData, null,
         ContentTypes.OUTPUT_JSON_CONTENT_TYPE);
-    
+
     resp = getResponse(&quot;/people/john.doe/@friends&quot;, &quot;GET&quot;, extraParams, null,
         ContentTypes.OUTPUT_JSON_CONTENT_TYPE);
     result = getJson(resp);
 
     assertEquals(4, result.getInt(&quot;totalResults&quot;));
   }
-  
-  private void assertPerson(JSONObject person, String expectedId, String expectedName)
-      throws Exception {
+
+  private void assertPerson(JSONObject person, String expectedId,
+      String expectedName) throws Exception {
     assertEquals(expectedId, person.getString(&quot;id&quot;));
-    assertEquals(expectedName, person.getJSONObject(&quot;name&quot;).getString(&quot;formatted&quot;));
+    assertEquals(expectedName, person.getJSONObject(&quot;name&quot;).getString(
+        &quot;formatted&quot;));
   }
 }
-</diff>
      <filename>src/test/java/bbc/social/shindig/example/handler/RestfulJsonPeopleTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -26,22 +26,24 @@ import com.google.inject.Injector;
 
 /**
  * Tests the example implementation of extended shindig service
+ * 
  * @author bens
  */
 public class JsonDbServiceExampleTest {
-	private static final UserId JOHN_DOE = new UserId(UserId.Type.userId, &quot;john.doe&quot;);
-	private SecurityToken token = new FakeGadgetToken();
-	private JsonDbServiceExample service;
-	
-	@Before
+  private static final UserId JOHN_DOE = new UserId(UserId.Type.userId,
+      &quot;john.doe&quot;);
+  private SecurityToken token = new FakeGadgetToken();
+  private JsonDbServiceExample service;
+
+  @Before
   public void setUp() throws Exception {
     Injector injector = Guice.createInjector(new SocialApiTestsGuiceModule());
     service = injector.getInstance(JsonDbServiceExample.class);
   }
-	
-	@Test
-	public void shouldCreateFriendship() throws Exception {
-		CollectionOptions options = new CollectionOptions();
+
+  @Test
+  public void shouldCreateFriendship() throws Exception {
+    CollectionOptions options = new CollectionOptions();
     options.setSortBy(PersonService.TOP_FRIENDS_SORT);
     options.setSortOrder(SortOrder.ascending);
     options.setFilter(null);
@@ -52,18 +54,18 @@ public class JsonDbServiceExampleTest {
 
     RestfulCollection&lt;Person&gt; responseItem = service.getPeople(
         ImmutableSet.of(JOHN_DOE), new GroupId(GroupId.Type.friends, null),
-        options, Collections.&lt;String&gt;emptySet(), token).get();
+        options, Collections.&lt;String&gt; emptySet(), token).get();
     assertNotNull(responseItem);
     assertEquals(3, responseItem.getTotalResults());
     // Test a couple of users
     assertEquals(&quot;jane.doe&quot;, responseItem.getEntry().get(0).getId());
-    
+
     service.createRelationship(&quot;john.doe&quot;, &quot;canonical&quot;);
-    
-    responseItem = service.getPeople(
-        ImmutableSet.of(JOHN_DOE), new GroupId(GroupId.Type.friends, null),
-        options, Collections.&lt;String&gt;emptySet(), token).get();
+
+    responseItem = service.getPeople(ImmutableSet.of(JOHN_DOE),
+        new GroupId(GroupId.Type.friends, null), options,
+        Collections.&lt;String&gt; emptySet(), token).get();
     assertNotNull(responseItem);
     assertEquals(4, responseItem.getTotalResults());
-	}
+  }
 }</diff>
      <filename>src/test/java/bbc/social/shindig/example/service/JsonDbServiceExampleTest.java</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ffa15ad1e94187ea4ea7d0623570c08d62996594</id>
    </parent>
  </parents>
  <author>
    <name>Ben Smith</name>
    <email>ben@thesmith.co.uk</email>
  </author>
  <url>http://github.com/thesmith/bbc-shindig-example/commit/9bc83b41e72ea33daac3371455f4bd9aaa27515c</url>
  <id>9bc83b41e72ea33daac3371455f4bd9aaa27515c</id>
  <committed-date>2009-11-03T13:27:33-08:00</committed-date>
  <authored-date>2009-11-03T13:27:33-08:00</authored-date>
  <message>fixed a load of formatting</message>
  <tree>aa271aa563d805d169ff9cb958957f295e2d7664</tree>
  <committer>
    <name>Ben Smith</name>
    <email>ben@thesmith.co.uk</email>
  </committer>
</commit>
