<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -21,6 +21,8 @@
   * DONE markitup editor
   * DONE switch to maruku
   * DONE setup preview
+  * DONE widen edit view and page, make attachment section toggle
+  * DONE remove double click page to edit, did not work right 
   * Clean up page list eliminating non-markdown pages or at least removing edit and history links
 
 </diff>
      <filename>TODO</filename>
    </modified>
    <modified>
      <diff>@@ -96,7 +96,6 @@ ul {
 .clearer { clear: both; }
 
 .content {
-  margin-left: 35%;
   padding: 10px 10px 2px 10px;
 }
 
@@ -167,6 +166,12 @@ ul {
         clear: left;
 }
 
+.page_title {
+  float: left;
+  font-size: 1.6em;
+  padding: 3px 10px 0 0;
+}
+
 .right { text-align: right; }
 
 .search_result { margin-bottom: 15px; }
@@ -184,7 +189,6 @@ ul {
 }
 
 .sub_nav {
-  float: left;
   padding-top: 8px;
 }
 
@@ -205,6 +209,14 @@ div.attach-options {
 }
 /* ids */
 
+#attachments {
+  display: none;
+}
+
+#hideAttachments {
+  display: none;
+}
+
 #container {
  clear: both;
  margin: auto;</diff>
      <filename>public/style.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,20 @@
-&lt;h1&gt;Editing &lt;a href=&quot;/&lt;%= @page.name %&gt;&quot;&gt;&lt;%= @page.title %&gt;&lt;/a&gt;&lt;/h1&gt;
+&lt;script type=&quot;text/javascript&quot;&gt;
+  $(document).ready(function() {
+    $(&quot;#showAttachments&quot;).click(function(){
+      $(&quot;#attachments&quot;).toggle();
+      $(&quot;#showAttachments&quot;).toggle();
+      $(&quot;#hideAttachments&quot;).toggle();
+    });
+    $(&quot;#hideAttachments&quot;).click(function(){
+      $(&quot;#attachments&quot;).toggle();
+      $(&quot;#hideAttachments&quot;).toggle();
+      $(&quot;#showAttachments&quot;).toggle();
+    });
+  });
+&lt;/script&gt;
+
+
+&lt;div class=&quot;page_title&quot;&gt;Editing &lt;a href=&quot;/&lt;%= @page.name %&gt;&quot;&gt;&lt;%= @page.title %&gt;&lt;/a&gt;&lt;/div&gt;
 
 &lt;div class=&quot;sub_nav&quot;&gt;
   &lt;a href=&quot;/&lt;%= @page.basename %&gt;&quot; class=&quot;nav_link&quot;&gt;back&lt;/a&gt;
@@ -11,11 +27,15 @@
   &amp;bull; &lt;a id=&quot;delete_link&quot; href=&quot;#&quot; class=&quot;nav_link&quot;&gt;delete&lt;/a&gt;
 
   &lt;% if files = @page.attachments %&gt;
-    &lt;h3&gt;Attachments&lt;/h3&gt;
+    &lt;span id=&quot;attachmentsLabel&quot;&gt;
+      &amp;bull; Attachments
+      &lt;a id=&quot;showAttachments&quot; class=&quot;nav_link&quot; href=&quot;#&quot;&gt;(show)&lt;/a&gt;
+      &lt;a id=&quot;hideAttachments&quot; class=&quot;nav_link&quot; href=&quot;#&quot;&gt;(hide)&lt;/a&gt;
+    &lt;/span&gt;
     &lt;div id=&quot;attachments&quot;&gt;
     &lt;% files.each do |file| %&gt;
       &lt;div class=&quot;attachment_item&quot;&gt;&lt;a href=&quot;&lt;%= file.link_path %&gt;&quot;&gt;&lt;%= file.name %&gt;&lt;/a&gt;
-        &lt;span class=&quot;detail&quot;&gt;(&lt;%= file.size %&gt;)&lt;/span&gt;
+        &lt;span class=&quot;detail&quot;&gt;(&lt;%= file.size %&gt;)&lt;/span&gt; 
         &lt;div class=&quot;attach-options&quot;&gt;
           &lt;a class=&quot;delete_attachment&quot; href=&quot;&lt;%= file.delete_path %&gt;&quot; aname=&quot;&lt;%= file.name %&gt;&quot;&gt;delete&lt;/a&gt;
           &amp;bull; &lt;a class=&quot;replace_attachment&quot; href=&quot;&lt;%= file.replace_path %&gt;&quot; aname=&quot;&lt;%= file.name %&gt;&quot;&gt;replace&lt;/a&gt;</diff>
      <filename>views/edit.erb</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,7 @@
   });
 &lt;/script&gt;
 
-&lt;h1&gt;&lt;%= @page.title %&gt;&lt;/h1&gt;
+&lt;div class=&quot;page_title&quot;&gt;&lt;%= @page.title %&gt;&lt;/div&gt;
 
 &lt;%= @env %&gt;
 
@@ -35,13 +35,15 @@
     &amp;bull; &lt;a href=&quot;/h/&lt;%= @page.basename %&gt;/&lt;%= @page.next_commit %&gt;&quot; class=&quot;nav_link&quot;&gt;newer&lt;/a&gt;
   &lt;% end %&gt;
 
-  &lt;div class=&quot;sub_nav details&quot;&gt;
+  &lt;span class=&quot;sub_nav details&quot;&gt;
     &lt;script type=&quot;text/javascript&quot;&gt;
       document.write(time_ago_in_words(&lt;%= @page.updated_at.for_time_ago_in_words %&gt;) + ' ago');
     &lt;/script&gt;
-    &lt;br /&gt;
+
+    &lt;!--
     &lt;%= $repo.current_branch %&gt; branch
-  &lt;/div&gt;
+    --&gt; 
+  &lt;/span&gt;
 
 &lt;/div&gt;
 </diff>
      <filename>views/show.erb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b7c8b825bc690cf1ab207ee46a1e66170677d328</id>
    </parent>
  </parents>
  <author>
    <name>Jeff Barczewski</name>
    <email>jeff@jeff-d820.(none)</email>
  </author>
  <url>http://github.com/jeffbski/git-wiki/commit/d6d52605242d3ccd51781193e518126df73c1157</url>
  <id>d6d52605242d3ccd51781193e518126df73c1157</id>
  <committed-date>2009-10-29T16:10:21-07:00</committed-date>
  <authored-date>2009-10-29T16:10:21-07:00</authored-date>
  <message>widen text edit, make attachments toggle, remove doubleclick to edit</message>
  <tree>0a372bdb0cd06783a82a747cc9052ceee1e1f831</tree>
  <committer>
    <name>Jeff Barczewski</name>
    <email>jeff@jeff-d820.(none)</email>
  </committer>
</commit>
