<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,10 +1,10 @@
 [
     {&quot;pk&quot;: 1, &quot;model&quot;: &quot;monitor.moniton&quot;, &quot;fields&quot;: {
         &quot;email&quot;: &quot;kegan@example.com&quot;,
-        &quot;north&quot;: &quot;90&quot;,
-        &quot;east&quot;: &quot;180&quot;,
-        &quot;south&quot;: &quot;-90&quot;,
-        &quot;west&quot;: &quot;-180&quot;,
+        &quot;top&quot;: &quot;90&quot;,
+        &quot;right&quot;: &quot;180&quot;,
+        &quot;bottom&quot;: &quot;-90&quot;,
+        &quot;left&quot;: &quot;-180&quot;,
         &quot;zoom&quot;: &quot;9&quot;,
         &quot;uuid&quot;: &quot;03619ac2453211de8c651fabc0151a16&quot;,
         &quot;created_at&quot;: &quot;2009-04-04 00:00:00&quot;,
@@ -12,10 +12,10 @@
 
     {&quot;pk&quot;: 2, &quot;model&quot;: &quot;monitor.moniton&quot;, &quot;fields&quot;: {
         &quot;email&quot;: &quot;zul@example.com&quot;,
-        &quot;north&quot;: &quot;90&quot;,
-        &quot;east&quot;: &quot;180&quot;,
-        &quot;south&quot;: &quot;-90&quot;,
-        &quot;west&quot;: &quot;-10&quot;,
+        &quot;top&quot;: &quot;90&quot;,
+        &quot;right&quot;: &quot;180&quot;,
+        &quot;bottom&quot;: &quot;-90&quot;,
+        &quot;left&quot;: &quot;0&quot;,
         &quot;zoom&quot;: &quot;9&quot;,
         &quot;uuid&quot;: &quot;4ad2302c454311de8b3387c74347e6f7&quot;,
         &quot;created_at&quot;: &quot;2009-04-04 00:00:00&quot;,
@@ -23,10 +23,10 @@
 
     {&quot;pk&quot;: 3, &quot;model&quot;: &quot;monitor.moniton&quot;, &quot;fields&quot;: {
         &quot;email&quot;: &quot;leremy@example.com&quot;,
-        &quot;north&quot;: &quot;90&quot;,
-        &quot;east&quot;: &quot;10&quot;,
-        &quot;south&quot;: &quot;-90&quot;,
-        &quot;west&quot;: &quot;-180&quot;,
+        &quot;top&quot;: &quot;90&quot;,
+        &quot;right&quot;: &quot;0&quot;,
+        &quot;bottom&quot;: &quot;-90&quot;,
+        &quot;left&quot;: &quot;-180&quot;,
         &quot;zoom&quot;: &quot;9&quot;,
         &quot;uuid&quot;: &quot;5432a3fc49ff11de854c1730b0756f01&quot;,
         &quot;created_at&quot;: &quot;2009-04-04 00:00:00&quot;,</diff>
      <filename>monitor/fixtures/monitons.json</filename>
    </modified>
    <modified>
      <diff>@@ -4,12 +4,12 @@ class Moniton(models.Model):
     &quot;&quot;&quot;
     A monitoring unit. Consist of the monitored area and email.
     &quot;&quot;&quot;
-    email  = models.EmailField()
-    north  = models.FloatField()
-    east   = models.FloatField()
-    south  = models.FloatField()
-    west   = models.FloatField()
-    zoom   = models.IntegerField()
+    email      = models.EmailField()
+    top        = models.FloatField()
+    right      = models.FloatField()
+    bottom     = models.FloatField()
+    left       = models.FloatField()
+    zoom       = models.IntegerField()
     uuid       = models.CharField(max_length=32, default='', blank=True)
     created_at = models.DateTimeField(auto_now_add=True)
     updated_at = models.DateTimeField(auto_now=True)</diff>
      <filename>monitor/models.py</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@ class MonitonTestCase(TestCase):
     Test operations for crime areas monitoring.
     &quot;&quot;&quot;
     urls = 'monitor.urls'
-    fixtures = ['monitor/fixtures/monitons.json']
+    fixtures = ['monitor/fixtures/monitons.json', 'monitor/fixtures/crimes.json']
 
     def setUp(self):
         pass
@@ -31,10 +31,10 @@ class MonitonTestCase(TestCase):
         &quot;&quot;&quot;
         inputs = {
             'email': 'kegan@kegan.info',
-            'north': 1.1234,
-            'east': 1.1234,
-            'south': 1.1234,
-            'west': 1.1234,
+            'top': 1.1234,
+            'right': 1.1234,
+            'bottom': 1.1234,
+            'left': 1.1234,
             'zoom': 9,
         }
         response = self.client.post('/subscribe/', inputs)
@@ -50,10 +50,10 @@ class MonitonTestCase(TestCase):
         &quot;&quot;&quot;
         inputs = {
             'email': 'xxx',
-            'north': 1.1234,
-            'east': 1.1234,
-            'south': 1.1234,
-            'west': 1.1234,
+            'top': 1.1234,
+            'right': 1.1234,
+            'bottom': 1.1234,
+            'left': 1.1234,
             'zoom': 9,
         }
         response = self.client.post('/subscribe/', inputs, follow=True)</diff>
      <filename>monitor/tests.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>67d65b74865949b780626305652f17c050dbfa64</id>
    </parent>
  </parents>
  <author>
    <name>Kegan Gan</name>
    <email>kegan@kebook.local</email>
  </author>
  <url>http://github.com/kegan/malaysiacrime/commit/308c3537ef3c62b032e7dfa13c26a46199d2fe7d</url>
  <id>308c3537ef3c62b032e7dfa13c26a46199d2fe7d</id>
  <committed-date>2009-10-30T20:33:26-07:00</committed-date>
  <authored-date>2009-10-30T20:33:26-07:00</authored-date>
  <message>Updated models and corresponding fixtures, tests.</message>
  <tree>9df52f3bd3882e91027c9fe01a38ed59358fdb22</tree>
  <committer>
    <name>Kegan Gan</name>
    <email>kegan@kebook.local</email>
  </committer>
</commit>
