<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>index.css</filename>
    </added>
    <added>
      <filename>jquery.js</filename>
    </added>
    <added>
      <filename>jquery.tweet.css</filename>
    </added>
    <added>
      <filename>jquery.tweet.js</filename>
    </added>
    <added>
      <filename>jquery.tweet.query.css</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -3,11 +3,11 @@
 &lt;html&gt;
   &lt;head&gt;
     &lt;title&gt;Tweet! Put Twitter on your site with this simple, unobtrusive jQuery widget&lt;/title&gt;
-    &lt;link href=&quot;stylesheets/application.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
-    &lt;link href=&quot;stylesheets/jquery.tweet.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
-    &lt;link href=&quot;stylesheets/jquery.tweet.query.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
-    &lt;script language=&quot;javascript&quot; src=&quot;javascripts/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
-    &lt;script language=&quot;javascript&quot; src=&quot;javascripts/jquery.tweet.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
+    &lt;link href=&quot;index.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
+    &lt;link href=&quot;jquery.tweet.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
+    &lt;link href=&quot;jquery.tweet.query.css&quot; media=&quot;all&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
+    &lt;script language=&quot;javascript&quot; src=&quot;jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
+    &lt;script language=&quot;javascript&quot; src=&quot;jquery.tweet.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
     &lt;script type='text/javascript'&gt;
       jQuery(document).ready(function($) {
         $(&quot;.tweet&quot;).tweet({
@@ -35,20 +35,13 @@
     &lt;div class='container'&gt;
       &lt;h1&gt;Tweet!&lt;/h1&gt;
       &lt;h2&gt;put &lt;a href=&quot;http://twitter.com&quot;&gt;twitter&lt;/a&gt; on your website with &lt;em&gt;tweet!&lt;/em&gt;, an unobtrusive javascript plugin for jquery.&lt;/h2&gt;
+      
       &lt;h3&gt;Demo&lt;/h3&gt;
       &lt;p&gt;displaying three tweets from the &lt;a href=&quot;http://twitter.com/seaofclouds&quot;&gt;seaofclouds twitter feed&lt;/a&gt;, or check the script in action at &lt;a href=&quot;http://seaofclouds.com&quot;&gt;seaofclouds.com&lt;/a&gt;&lt;/p&gt;
       &lt;div class='tweet'&gt;&lt;/div&gt;
       &lt;p&gt;displaying four tweets from the query &quot;&lt;a href=&quot;http://search.twitter.com/search?q=tweet.seaofclouds.com&quot;&gt;tweet.seaofclouds.com&lt;/a&gt;&quot;.&lt;/p&gt;
       &lt;div class='query'&gt;&lt;/div&gt;
-      &lt;div class='download'&gt;
-        &lt;h3&gt;Download&lt;/h3&gt;
-        &lt;p&gt;
-          &lt;a href=&quot;http://github.com/seaofclouds/tweet/zipball/master&quot;&gt;
-            &lt;img border=&quot;0&quot; width=&quot;90&quot; src=&quot;http://github.com/images/modules/download/zip.png&quot;&gt;&lt;/a&gt;
-          &lt;a href=&quot;http://github.com/seaofclouds/tweet/tarball/master&quot;&gt;
-            &lt;img border=&quot;0&quot; width=&quot;90&quot; src=&quot;http://github.com/images/modules/download/tar.png&quot;&gt;&lt;/a&gt;
-        &lt;/p&gt;
-      &lt;/div&gt;
+
       &lt;h3&gt;Features&lt;/h3&gt;
       &lt;ul&gt;
         &lt;li&gt;small size and fast download time&lt;/li&gt;
@@ -64,11 +57,12 @@
         &lt;li&gt;converts &amp;lt;3 to a css styleable &lt;tt class='heart'&gt;&#9829;&lt;/tt&gt; (we &#9829; hearts)&lt;/li&gt;
         &lt;li&gt;customize the style with your own stylesheet or with other jquery plugins&lt;/li&gt;
       &lt;/ul&gt;
+      
       &lt;h3&gt;Usage&lt;/h3&gt;
       &lt;p&gt;In your template's &lt;span class=&quot;code&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;, &lt;strong&gt;include jQuery and tweet javascript files&lt;/strong&gt;&lt;/p&gt;
       &lt;code&gt;
-        &amp;lt;script language=&amp;quot;javascript&amp;quot; src=&amp;quot;/tweet/javascripts/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
-        &amp;lt;script language=&amp;quot;javascript&amp;quot; src=&amp;quot;/tweet/javascripts/jquery.tweet.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
+        &amp;lt;script language=&amp;quot;javascript&amp;quot; src=&amp;quot;/tweet/jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
+        &amp;lt;script language=&amp;quot;javascript&amp;quot; src=&amp;quot;/tweet/jquery.tweet.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
       &lt;/code&gt;
       &lt;p&gt;Also in &lt;span class=&quot;code&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;, &lt;strong&gt;Initialize tweet!&lt;/strong&gt; on page load with your Username and other options&lt;/p&gt;
       &lt;code&gt;
@@ -92,6 +86,17 @@
       &lt;code&gt;
         &amp;lt;div class=&amp;quot;tweet&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
       &lt;/code&gt;
+      
+      &lt;div class='download'&gt;
+        &lt;h3&gt;Download&lt;/h3&gt;
+        &lt;p&gt;
+          &lt;a href=&quot;http://github.com/seaofclouds/tweet/zipball/master&quot;&gt;
+            &lt;img border=&quot;0&quot; width=&quot;90&quot; src=&quot;http://github.com/images/modules/download/zip.png&quot;&gt;&lt;/a&gt;
+          &lt;a href=&quot;http://github.com/seaofclouds/tweet/tarball/master&quot;&gt;
+            &lt;img border=&quot;0&quot; width=&quot;90&quot; src=&quot;http://github.com/images/modules/download/tar.png&quot;&gt;&lt;/a&gt;
+        &lt;/p&gt;
+      &lt;/div&gt;
+      
       &lt;h3&gt;Contribute&lt;/h3&gt;
       &lt;p&gt;Bring your code slinging skills to &lt;a href=&quot;http://github.com/seaofclouds/tweet/&quot;&gt;Github&lt;/a&gt; and help us develop new features for tweet!&lt;/p&gt;
       &lt;code&gt;</diff>
      <filename>index.html</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>javascripts/jquery.js</filename>
    </removed>
    <removed>
      <filename>javascripts/jquery.tweet.js</filename>
    </removed>
    <removed>
      <filename>stylesheets/application.css</filename>
    </removed>
    <removed>
      <filename>stylesheets/jquery.tweet.css</filename>
    </removed>
    <removed>
      <filename>stylesheets/jquery.tweet.query.css</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>8822960bbd05d4ebc05266bbc0506e01e77c379b</id>
    </parent>
  </parents>
  <author>
    <name>seaofclouds</name>
    <email>todd@seaofclouds.com</email>
  </author>
  <url>http://github.com/seaofclouds/tweet/commit/c334ef921bf3b93ac00235d44c2bf851d12208f2</url>
  <id>c334ef921bf3b93ac00235d44c2bf851d12208f2</id>
  <committed-date>2009-02-04T13:02:59-08:00</committed-date>
  <authored-date>2009-02-04T13:02:59-08:00</authored-date>
  <message>major restructuring, flatten architecture</message>
  <tree>86ba56c6116d38ff3bbec335a658e0a979931dd8</tree>
  <committer>
    <name>seaofclouds</name>
    <email>todd@seaofclouds.com</email>
  </committer>
</commit>
