<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -8,7 +8,6 @@
   (newest-page (url &quot;/newest&quot;))
   (completed-page (url &quot;/completed&quot;))
   (feature-detail-page (url &quot;/feature/&quot; (string-arg)))
-  (feature-feed-page (url &quot;/atom.xml&quot;))
   (signin-page (url &quot;/signin&quot;))
   (adminified-index-page (url &quot;/admin&quot;))
   )</diff>
      <filename>app.scm</filename>
    </modified>
    <modified>
      <diff>@@ -43,12 +43,8 @@
                                     (if redirect
                                         (redirect-to redirect)
                                         &quot;comment saved.&quot;))))
-         (div ((id &quot;ft&quot;)) 
-              (ul ((class &quot;simple&quot;))
-                   ,(li-a &quot;http://github.com/vegashacker/lawnelephant/tree/master&quot; &quot;source code&quot;)
-                   ,(li-a &quot;http://blog.lawnelephant.com&quot; &quot;blog&quot;)
-                   ,(li-a &quot;mailto:ask@lawnelephant.com&quot; &quot;ask@lawnelephant.com&quot;))))))
-;;XXX using nonstandard footer - don't want goog analytics to track this page
+         (div ((id &quot;ft&quot;))
+              ,standard-footer))))
 
 (define (show-all-comments-view sesh parent-item
                                 #:threaded (threaded #f)</diff>
      <filename>discuss.ss</filename>
    </modified>
    <modified>
      <diff>@@ -3,17 +3,20 @@
 (require (planet &quot;leftparen.scm&quot; (&quot;vegashacker&quot; &quot;leftparen.plt&quot; 4 (= 1)))
          (planet &quot;util.scm&quot; (&quot;vegashacker&quot; &quot;leftparen.plt&quot; 4 (= 1)))
          )
+
 (provide
   base-design
   li-a
-  ;goog-analytics
-  ;standard-footer
+  goog-analytics
+  standard-footer
   )
 
+
+
 (define (base-design #:title (title &quot;lawnelephant&quot;))
   (design
-   ;#:atom-feed-page feature-feed-page
-   #:js '(&quot;http://yui.yahooapis.com/combo?2.6.0/build/yahoo-dom-event/yahoo-dom-event.js&amp;2.6.0/build/element/element-beta-min.js&amp;2.6.0/build/tabview/tabview-min.js&quot;)
+   #:js '(&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js&quot;
+          &quot;scripts/init.js&quot;)
    #:css '(&quot;http://yui.yahooapis.com/combo?2.6.0/build/reset-fonts-grids/reset-fonts-grids.css&amp;2.6.0/build/base/base-min.css&amp;2.6.0/build/tabview/assets/skins/sam/tabview.css&quot;
            &quot;/css/main.css&quot;)
    #:title title))
@@ -36,10 +39,17 @@
 
 
 (define standard-footer
-  `(ul ((class &quot;simple&quot;))
-       ,(li-a &quot;http://github.com/vegashacker/lawnelephant/tree/master&quot; &quot;github&quot;)
+  `(div 
+     (ul ((class &quot;simple&quot;))
+         (li &quot;features:&quot;)
+         ,(li-a &quot;/popular&quot; &quot;popular&quot;)
+         ,(li-a &quot;/newest&quot; &quot;newest&quot;)
+         ,(li-a &quot;/completed&quot; &quot;completed&quot;))
+     (ul ((class &quot;simple&quot;))
+       ,(li-a &quot;http://blog.lawnelephant.com/post/74637624/introducing-lawnelephant-com&quot; &quot;about&quot;)
        ,(li-a &quot;http://blog.lawnelephant.com&quot; &quot;blog&quot;)
+       ,(li-a &quot;http://github.com/vegashacker/lawnelephant/tree/master&quot; &quot;source code&quot;)
        ,(li-a &quot;mailto:ask@lawnelephant.com&quot; &quot;ask@lawnelephant.com&quot;)
        ;; XXX goog analytics really needs to be just before the closing body tag, but I
        ;; don't know how to put it there just yet
-      ,(raw-str goog-analytics)))
+      ,(raw-str goog-analytics))))</diff>
      <filename>templates.ss</filename>
    </modified>
    <modified>
      <diff>@@ -7,47 +7,16 @@
          &quot;data.ss&quot;
          &quot;social.ss&quot;
          &quot;discuss.ss&quot;
+         &quot;templates.ss&quot;
          &quot;admin.ss&quot;)
 
 
 (provide index-page-view
          feature-detail-page-view
-         base-design
          list-page-view
          )
 
 
-(define goog-analytics 
-  &quot;
-  &lt;script type=\&quot;text/javascript\&quot;&gt;
-  var gaJsHost = ((\&quot;https:\&quot; == document.location.protocol) ? \&quot;https://ssl.\&quot; : \&quot;http://www.\&quot;);
-  document.write(unescape(\&quot;%3Cscript src='\&quot; + gaJsHost + \&quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E\&quot;));
-  &lt;/script&gt;
-  &lt;script type=\&quot;text/javascript\&quot;&gt;
-  try {
-  var pageTracker = _gat._getTracker(\&quot;UA-7294827-1\&quot;);
-  pageTracker._trackPageview();
-  } catch(err) {}&lt;/script&gt;
-&quot;)
-
-(define (li-a link name) 
-  `(li (a ((href ,link)) ,name)))
-
-(define standard-footer
-  `(div 
-     (ul ((class &quot;simple&quot;))
-         (li &quot;features:&quot;)
-         ,(li-a &quot;/popular&quot; &quot;popular&quot;)
-         ,(li-a &quot;/newest&quot; &quot;newest&quot;)
-         ,(li-a &quot;/completed&quot; &quot;completed&quot;))
-     (ul ((class &quot;simple&quot;))
-       ,(li-a &quot;http://blog.lawnelephant.com/post/74637624/introducing-lawnelephant-com&quot; &quot;about&quot;)
-       ,(li-a &quot;http://blog.lawnelephant.com&quot; &quot;blog&quot;)
-       ,(li-a &quot;http://github.com/vegashacker/lawnelephant/tree/master&quot; &quot;source code&quot;)
-       ,(li-a &quot;mailto:ask@lawnelephant.com&quot; &quot;ask@lawnelephant.com&quot;)
-       ;; XXX goog analytics really needs to be just before the closing body tag, but I
-       ;; don't know how to put it there just yet
-      ,(raw-str goog-analytics))))
 
 (define (index-page-view sesh #:form-view (form-markup request-feature-form-view))
   (page
@@ -170,22 +139,7 @@
               ,(xexpr-if (and (not is-completed?) (in-admin-mode?))
                          (mark-as-completed-view feat))))))
 
-(define-page (feature-feed-page req)
-  #:blank #t
-  (atom-feed feature-feed-page 
-             #:feed-title &quot;features for lawnelephant&quot;
-             #:feed-description &quot;all the features so far&quot;
-             #:feed-updated/epoch-seconds (current-seconds)
-             #:author-name &quot;the lawnelephant staff&quot;
-             #:items 
-             (map (lambda (fr) 
-                    (let ((explanation (rec-prop fr 'explanation)))
-                      (atom-item 
-                       #:title (string-ellide explanation 40)
-                       #:url (string-append (setting *WEB_APP_URL*) &quot;feature/&quot; (rec-id fr))
-                       #:updated-epoch-seconds (rec-prop fr 'created-at)
-                       #:content explanation)))
-                  (get-feature-requests-newest))))
+
 
 (define (delete-entry-view feat-req-rec)
   (** &quot; &quot;
@@ -200,12 +154,4 @@
                                                 (redirect-to (page-url
                                                               adminified-index-page))))))
 
-(define (base-design #:title (title &quot;lawnelephant&quot;))
-  (design
-   #:atom-feed-page feature-feed-page
-   #:js '(&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js&quot;
-          &quot;scripts/init.js&quot;)
-   #:css '(&quot;http://yui.yahooapis.com/combo?2.6.0/build/reset-fonts-grids/reset-fonts-grids.css&amp;2.6.0/build/base/base-min.css&amp;2.6.0/build/tabview/assets/skins/sam/tabview.css&quot;
-           &quot;/css/main.css&quot;)
-   #:title title))
 </diff>
      <filename>view.ss</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>88562d6e715a1600c382ada8144fc074a2b4e021</id>
    </parent>
  </parents>
  <author>
    <name>Idoh Gersten</name>
    <email>idoh@idoh.com</email>
  </author>
  <url>http://github.com/vegashacker/lawnelephant/commit/befdc64849fa74ed97482aa0f4dfbd5e478f5fce</url>
  <id>befdc64849fa74ed97482aa0f4dfbd5e478f5fce</id>
  <committed-date>2009-03-19T23:55:29-07:00</committed-date>
  <authored-date>2009-03-19T23:55:29-07:00</authored-date>
  <message>moving things over to template.ss, removed rss feed (didn't work right anyway) for now. This change makes the comment box work right for the reply to comments area as well.</message>
  <tree>afb79efd5690921a0619fff314967a424a5ddefe</tree>
  <committer>
    <name>Idoh Gersten</name>
    <email>idoh@idoh.com</email>
  </committer>
</commit>
