<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>static/potlatch.css</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,6 @@
 
-8/27/08:  adding demisauce support for non js comments, etc.
+8/27/08:  adding demisauce support for non js comments, (remote service capability) and memcached support for remote services
+8/27/08:  fixing bug that showed un-published items in rss feed.
 5/18/08:  adding anchor tags to show comments for index page with more than one item to go to detail page
 5/18/08:  added preview capability to blog posts so you don't have to publish to preview
 5/18/08:  pushed large set of changes to include Demisauce comments in Potlatch Blog</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-import cgi, os
+import cgi, os, logging
 from functools import wraps
 import wsgiref.handlers
 
@@ -12,6 +12,8 @@ from google.appengine.ext import db
 from model import *
 from demisaucepy import cache, cfg
 
+log = logging.getLogger(__name__)
+
 def rebuild_cache(blog):
     &quot;&quot;&quot;
     Pre-Render's and cache's html in blog object.  Everything
@@ -128,21 +130,18 @@ class MainPage(BasePublicPage):
     #@printinfo
     def get(self,slug=None):
         entries = []
+        showcomments = False
         if slug == None:
             entries = Entry.allpublished().fetch(10)
         else:
             entries = Entry.all().filter('slug', slug).fetch(1)
+            showcomments = True
             if not entries or len(entries) == 0:
                 return self.error(404)
             
         
-        self.render('views/index.html',{'entries':entries,'slug':slug})
+        self.render('views/index.html',{'entries':entries,'slug':slug,'showcomments':showcomments})
     
-    def xget(self,slug=None):
-        for name in os.environ.keys():
-              self.response.out.write(&quot;%s = %s&lt;br /&gt;\n&quot; % (name, os.environ[name]))
-        print 'aaron is here'
-        #ln -s ~/Dropbox/demisauce/demisaucepy/trunk/demisaucepy demisaucepy
 
 class PublicPage(BasePublicPage):
     def get(self,slug=None):
@@ -152,14 +151,23 @@ class PublicPage(BasePublicPage):
 
 class ArchivePage(BasePublicPage):
     def get(self,monthyear=None):
+        showcomments = False
         entries = Entry.allpublished().filter('monthyear', monthyear)
-        self.render('views/index.html',{'entries':entries})
+        if entries and entries.count(1000) == 1:
+            showcomments = True
+        
+        self.render('views/index.html',{'entries':entries,'showcomments':showcomments})
     
 
 class TagPage(BasePublicPage):
     def get(self,tags=None):
+        showcomments = False
         entries = Entry.allpublished().filter(&quot;tags =&quot;, tags)
-        self.render('views/index.html',{'entries':entries})
+        log.info('count = %s' % entries.count(1000))
+        if entries and entries.count(10000) == 1:
+            showcomments = True
+            log.info('yup, should be showing comments')
+        self.render('views/index.html',{'entries':entries,'showcomments':showcomments})
     
 
 class FeedHandler(BaseController):
@@ -347,5 +355,8 @@ def main():
                      ],debug=True)
     wsgiref.handlers.CGIHandler().run(application)
 
+template.register_template_library('demisaucepy.demidj.templatetags.demisaucetags')
+
+
 if __name__ == &quot;__main__&quot;:
     main()
\ No newline at end of file</diff>
      <filename>blog.py</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@ indexes:
 # automatically uploaded to the admin console when you next deploy
 # your application using appcfg.py.
 
-# Used once in query history.
+# Used 4 times in query history.
 - kind: Archive
   properties:
   - name: date
@@ -22,14 +22,14 @@ indexes:
   - name: date
     direction: desc
 
-# Used 4 times in query history.
+# Used 13 times in query history.
 - kind: Entry
   properties:
   - name: entrytype
   - name: date
     direction: desc
 
-# Unused in query history -- copied from input.
+# Used 6 times in query history.
 - kind: Entry
   properties:
   - name: entrytype
@@ -38,7 +38,7 @@ indexes:
   - name: date
     direction: desc
 
-# Used 8 times in query history.
+# Used 57 times in query history.
 - kind: Entry
   properties:
   - name: entrytype
@@ -46,7 +46,7 @@ indexes:
   - name: date
     direction: desc
 
-# Unused in query history -- copied from input.
+# Used 24 times in query history.
 - kind: Entry
   properties:
   - name: entrytype</diff>
      <filename>index.yaml</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,7 @@ from demisaucepy import cfg
 
 
 
-cfg.CFG['demisauce.apikey'] = '173726158347a26b3836d1c6c09e6c646461517a'
+cfg.CFG['demisauce.apikey'] = 'a95c21ee8e64cb5ff585b5f9b761b39d7cb9a202'
 cfg.CFG['demisauce.url'] = 'http://localhost:4951'
 cfg.CFG['demisauce.appname'] = 'djangodemo'
 
@@ -55,7 +55,7 @@ class Blog(db.Model):
     blogversion = db.StringProperty(multiline=False,default='1.15')
     layout = db.StringProperty(multiline=False,default='2cola',choices=[
         '3cola', '3colb', '2cola','2colb'])
-    theme = db.StringProperty(multiline=False,default='freshpress.css')
+    theme = db.StringProperty(multiline=False,default='potlatch.css')
     area1 = db.TextProperty(default='')
     area2 = db.TextProperty(default='')
     area3 = db.TextProperty(default='')
@@ -193,5 +193,4 @@ class Entry(BaseModel):
             ).filter(&quot;published =&quot;, True).order('-date')
     
 make_declarative(Entry.__dict__)
-for attr in Entry.__dict__.keys():
-    print 'attr %s, %s' % (attr,Entry.__dict__[attr])
+</diff>
      <filename>model.py</filename>
    </modified>
    <modified>
      <diff>@@ -8,16 +8,7 @@ Description: Inspired by WordPress 2.5 release &quot;Brecker&quot;. View more &lt;a href=&quot;htt
 This theme was designed and built by Hyder Jaffari of Weborithm Design Studio.
 
 */
-/* Layout.css   */
-/*two equal 174px right columns 
-#leftsidebar {width: 174px;}
-#rightsidebar {width: 174px;}
-#content {width: 576px;margin: 0px 15px 0px 0px;}
- */
-/*one right column right columns  */
-#leftsidebar {width: 0px;}
-#rightsidebar {width: 274px;}
-#content {width: 665px;margin: 0px 0px 0px 0px;}
+
 
 body {margin: 0px;padding: 0px;font: 0.9em Tahoma, Verdana, sans-serif;}
 .clear {padding: 0px;margin: 0px;clear: both;}
@@ -50,35 +41,7 @@ img.alignleft {float: left;margin: 0px 10px 10px 0px;padding: 0px;border: 1px so
 .alignleft {float: left;padding: 0px;}
 .navigation {display: block;text-align: center;padding: 10px;font-size: 1em;}
 .video {text-align:center;margin: 0px;padding: 0px 0px 20px;}
-#dashboard, #nav ul li a, .fcomments a, #content .post h2 {letter-spacing: 1px;}
-#content h3, #comments h3 {margin: 10px;padding: 0px;border-bottom: 1px solid #e5e5e5;font: normal 1.4em Georgia, &quot;Times New Roman&quot;, Times, serif;color: #333;}
-#comments h3 {margin: 0px 0px 2px;padding:5px;background: #ccc;border-bottom: none;}
-/* Other Theme Properties Ends */
-
-/* Dashboard Area Starts */
-#dashboard {padding: 10px 0px;background: #464646;color: #cccccc;}
-#dashboard .dash {width: 972px;margin: auto;text-align: right;}
-/* Dashboard Area Ends */
-
-/* Search Elements Starts */
-#searchtop {float: left;border:1px solid #333;}
-#searchtop #s {font-size: 1em;padding: 2px 5px;color: #333;border: none;}
-#searchform {margin: auto;text-align:center;padding: 0px 0px 10px;}
-#searchform #s {border:1px solid #333;width: 166px;padding: 2px;margin: 0px 0px 5px;}
-/* Search Elements Ends */
-
-/* Header Elements Starts */
-#header {background: #e4f2fd;padding: 20px 0px;border-bottom: 1px solid #c6d9e9;}
-.headings {width: 972px;margin: auto;}
-#header h1 {font: normal 2em Georgia, &quot;Times New Roman&quot;, Times, serif;color: #555555;margin: 0px;padding: 0px;float: left;}
-#header h2 {float: right;padding: 9px 0px 0px;margin: 0px;color: #d54e21;font: normal 1.4em Georgia, &quot;Times New Roman&quot;, Times, serif;}
-/* Header Elements Ends */
-
-/* Navigation Starts */
-#nav {padding: 0px;margin: 0px 0px 15px;border-bottom: 1px solid #dadada;}
-#nav ul {list-style: none;margin: 10px auto;padding: 0px;width: 972px;}
-#nav ul li {float: left;display: block;font-size: 1em;font-weight: bold;color: #2583ad;padding: 0px 20px 0px 0px;margin: 0px;}
-/* Navigation Ends */
+
 
 /* Main Container Starts */
 #container {padding: 0px 0px 20px;margin: 0px auto 0px;width: 972px;}
@@ -120,8 +83,8 @@ img.alignleft {float: left;margin: 0px 10px 10px 0px;padding: 0px;border: 1px so
 #content .post blockquote p {margin: 0px;padding: 5px 5px 10px;font-size: 1.1em;line-height: 24px;}
 #content .quoteleft {width: 200px;float: left;padding: 5px 10px;background: #f2f2f2 url(images/quote.gif) no-repeat left top;text-indent: 30px;color: #000;margin: 10px 10px 0px 0px;}
 #content .quoteright {width: 200px;float: right;padding: 5px 10px;background: #f2f2f2 url(images/quote.gif) no-repeat left top;text-indent: 30px;color: #000;margin: 10px 0px 0px 10px;}
-#content .commentmeta {font-size: 0.8em;font-weight: bold;text-align:right;border-bottom: 1px solid #ccc;margin: 0px 0px 25px;}
-#content .commentmeta a {background: #fff;padding: 5px;top: 7px;position: relative;text-decoration: none;border: 1px solid #ccc;}
+#content .commentmeta {font-size: 0.8em;font-weight: bold;text-alignx:right;border-bottom: 1px solid #ccc;margin: 0px 0px 25px;}
+#content .commentmetax a {background: #fff;padding: 5px;top: 7px;position: relative;text-decoration: none;border: 1px solid #ccc;}
 /* Content Ends */
 
 /* Left Sidebar Starts */
@@ -155,25 +118,7 @@ table#wp-calendar td {text-align: center;background: #e4f2fd;}
 /* Sidebar Tags Ends */
 
 
-/* Box Links, and action bar    border: red 1px solid;  */
-.boxlinks {font-size: 85%;}
-.inlineboxlinks {padding: 1em;margin: 1em 0;clear: left;}
-.actionbar {margin: 0px;clear: right; padding: 0px;font-size: 115%;display: block; width:100%;height:33px; }
-.actionbar a {font-size: 123%;background:#fafafa;height:22px;}
-.right {float: right;}
-.boxlinks2 {font-size: 85%;margin-top:-24px; margin-right:-11px;background-color:#ffffff;}
-.boxlinks2 a {border: 1px solid #235C9D;text-decoration: none;padding: 3px 5px;}
-.boxlinks a, .boxlinks span {margin-top:2px; display: block;vertical-align: bottom; float: left;padding: 0.2em 0.5em;margin-right: 0.15em;}
-.boxlinks span.current {border: 1px solid #235C9D;font-weight: bold;background: #235C9D;color: #fff;}
-.boxlinks a {border: 1px solid #235C9D;text-decoration: none;}
-.boxlinks a:hover {background:#E1ECF9;}
-.boxlinks a.nextprev {font-weight: bold;}
-.boxlinks span.nextprev {color: #666;}
-.boxlinks span.nextprev {border: 1px solid #ddd;color: #999;}
-ul.boxlink {list-style-type:none;}
-div.boxlinks a.current {border-bottom: 1px solid #E1ECF9;;background:#E1ECF9;	}
-.tab-spacer{background:#E1ECF9;border:0px solid #8db2e3;border-top:0 none;height:2px;font-size:1px;line-height:1px;}
-div.formbox {border:1px solid #8db2e3;margin-top:20px;}
+
 
 /*  code formatting for posts */
 .code {color: #63FF00;background: #000;overflow: auto;font: normal 12px &quot;bitstream vera sans mono&quot;, monaco &quot;lucida console&quot;, &quot;courier new&quot;, courier, serif;margin: 0.9em 0; padding: 8px;}
@@ -197,24 +142,25 @@ div.formbox {border:1px solid #8db2e3;margin-top:20px;}
 /*  ADMIN area */
 .secondary {color:#999999;font-size: 80%;}
 #editable-post-name {background-color:#FFFBCC;}
-/* Comments Starts */
+
+/* comments marked for deletion
 #comments {margin: 0px;padding: 2px 0px;border-top: 1px solid #ccc;}
 #respond {margin: 2px 0px;border-bottom: 1px solid #ccc;border-top: 1px solid #ccc;background: #fff;}
 #respond h4 {margin: 2px 0px;font: normal 1.4em Georgia, &quot;Times New Roman&quot;, Times, serif;color: #333;padding:5px;background: #ccc;}
-/* Main Comment Elements */
+
 
 ol#commentlist {margin: 0px;padding: 10px 10px 10px 30px;border-top: 1px solid #ccc;}
-ol#commentlist li { /* This is for the normal entry headings */
+ol#commentlist li {  
 	font-size: 0.8em;color: #515151;margin: 0px;padding: 10px;border: 1px solid #F0F0F0;border-bottom: none;}
-ol#commentlist .entry { /* This is for the normal entry comments */
+ol#commentlist .entry { 
 	background: #fff;border: 1px solid #F0F0F0;margin: 0px 0px 20px;padding: 10px;}
-ol#commentlist li.alternate { /* This is for the alternate entry headings */
+ol#commentlist li.alternate { 
 	margin: 0px;padding: 10px;border: 1px solid #CCC;border-bottom: none;background: #f9f9f9;}
-ol#commentlist .alternate { /* This is for the alternate entry comments */
+ol#commentlist .alternate { 
 	border: 1px solid #ccc;margin: 0px 0px 20px;padding: 10px;background: #f9f9f9;}
-ol#commentlist li.author { /* This is for the author entry headings */
+ol#commentlist li.author { 
 	margin: 0px;padding: 10px;border: 1px solid #CCC;border-bottom: none;}
-ol#commentlist .author { /* This is for the author entry comments */
+ol#commentlist .author { 
 	border: 1px solid #ccc;margin: 0px 0px 20px;padding: 10px;background: #e4f2fd;}
 ol#commentlist .entry p, ol#commentlist .author p, ol#commentlist .alternate p {
 	font-size: 0.9em;color: #333;padding: 0px;margin: 0px;line-height: 20px;}
@@ -231,8 +177,31 @@ ol#commentlist li .avatar { border: 1px solid #ccc;padding: 2px;background: #fff
 #comment_form #submit:hover {border: 1px solid #333;background: #d54e21;color: #fff;}
 #comment_form input[type=&quot;text&quot;]:focus {	background: #ffffff;border: 1px solid #d54e21;}
 #comment_form textarea:focus {background: #fff;border: 1px solid #d54e21;}
+
+*/
 /* Comments Ends */
 
+
+/* Box Links, and action bar    border: red 1px solid;  */
+.boxlinks {font-size: 85%;}
+.inlineboxlinks {padding: 1em;margin: 1em 0;clear: left;}
+.actionbar {margin: 0px;clear: right; padding: 0px;font-size: 115%;display: block; width:100%;height:33px; }
+.actionbar a {font-size: 123%;background:#fafafa;height:22px;}
+.right {float: right;}
+.boxlinks2 {font-size: 85%;margin-top:-24px; margin-right:-11px;background-color:#ffffff;}
+.boxlinks2 a {border: 1px solid #235C9D;text-decoration: none;padding: 3px 5px;}
+.boxlinks a, .boxlinks span {margin-top:2px; display: block;vertical-align: bottom; float: left;padding: 0.2em 0.5em;margin-right: 0.15em;}
+.boxlinks span.current {border: 1px solid #235C9D;font-weight: bold;background: #235C9D;color: #fff;}
+.boxlinks a {border: 1px solid #235C9D;text-decoration: none;}
+.boxlinks a:hover {background:#E1ECF9;}
+.boxlinks a.nextprev {font-weight: bold;}
+.boxlinks span.nextprev {color: #666;}
+.boxlinks span.nextprev {border: 1px solid #ddd;color: #999;}
+ul.boxlink {list-style-type:none;}
+div.boxlinks a.current {border-bottom: 1px solid #E1ECF9;;background:#E1ECF9;	}
+.tab-spacer{background:#E1ECF9;border:0px solid #8db2e3;border-top:0 none;height:2px;font-size:1px;line-height:1px;}
+div.formbox {border:1px solid #8db2e3;margin-top:20px;}
+
 /*  Form elements */
 
 /* Colors &amp; Style */</diff>
      <filename>static/freshpress.css</filename>
    </modified>
    <modified>
      <diff>@@ -3,12 +3,11 @@
 {% block head_javascript %}
 {% endblock %}
 {% block topmenu %}
-&lt;ul&gt;
+
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/&quot; title=&quot;Home&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
     {{ blog.topmenu }}
     {% if current_userisadmin %}
     &lt;li class=&quot;page_item page-item-2&quot;  style=&quot;float:right;&quot;&gt;&lt;a href=&quot;/admin/entry/list/post&quot;&gt;Admin&lt;/a&gt;&lt;/li&gt;
     {% endif %}
-    &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
-&lt;/ul&gt;
+    
 {% endblock %}
\ No newline at end of file</diff>
      <filename>views/_base_public.html</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@
 
 {% endblock %}
 {% block topmenu %}
-&lt;ul&gt;
+    &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/&quot; title=&quot;Public&quot;&gt;View Site&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/entry/list/post&quot; title=&quot;Write&quot;&gt;Posts&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/links/blogroll&quot; title=&quot;Blogroll&quot;&gt;Blogroll&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot;&gt;&lt;a href=&quot;/admin/entry/list/page&quot; title=&quot;Pages&quot;&gt;Pages&lt;/a&gt;&lt;/li&gt;
@@ -20,7 +20,7 @@
     &lt;li class=&quot;page_item page-item-2&quot; style=&quot;float:right;&quot;&gt;&lt;a href=&quot;{{ url }}&quot; title=&quot;Admin&quot;&gt;{{ url_linktext }}&lt;/a&gt;&lt;/li&gt;
     &lt;li class=&quot;page_item page-item-2&quot; style=&quot;float:right;font-size:1em&quot;&gt;&lt;a href=&quot;#&quot; id=&quot;dshelp&quot; rel=&quot;facebox&quot; title=&quot;help&quot;&gt;feedback&lt;/a&gt;&lt;/li&gt;
     &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
-&lt;/ul&gt;
+
 
 &lt;div id=&quot;hiddenmessage&quot; style=&quot;&quot; &gt;&lt;/div&gt;
 </diff>
      <filename>views/admin_base.html</filename>
    </modified>
    <modified>
      <diff>@@ -4,6 +4,7 @@
     &lt;title&gt;{% block title %} {{ blog.title }}{% endblock %}&lt;/title&gt;
     &lt;meta name=&quot;generator&quot; content=&quot;PotlatchBlog&quot; /&gt;
     &lt;link rel=&quot;stylesheet&quot; href=&quot;/static/{{ blog.theme }}&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
+    &lt;link rel=&quot;stylesheet&quot; href=&quot;/static/potlatch.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
     &lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;{{ blog.title }}&quot; href=&quot;{{ blog.feedurl }}&quot; /&gt;
     &lt;script type=&quot;text/javascript&quot; src=&quot;/static/jquery-1.2.6.min.js&quot;&gt;&lt;/script&gt; 
     
@@ -12,67 +13,55 @@
     {% block head_javascript %}{% endblock %}
 &lt;/head&gt;
 &lt;body&gt;
+&lt;div id=&quot;page-wrapper&quot;&gt;
+    &lt;div id=&quot;header&quot;&gt;
+        &lt;ul class=&quot;nav2&quot;&gt;
+            {% block topmenu %}
 
-&lt;!-- Dashboard Starts --&gt;
-&lt;div id=&quot;dashboard&quot;&gt;
-    &lt;div class=&quot;dash&quot;&gt;
-        &lt;form method=&quot;get&quot; id=&quot;searchtop&quot; action=&quot;http://www.google.com/search&quot;&gt;
-            &lt;input type=&quot;text&quot; name=&quot;q&quot; id=&quot;q&quot; size=&quot;28&quot; value=&quot;to search, type and hit enter&quot; onblur=&quot;if (this.value == '') {this.value = 'to search, type and hit enter';}&quot;  onfocus=&quot;if (this.value == 'to search, type and hit enter') {this.value = '';}&quot; /&gt;
-            &lt;input name=&quot;domains&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
-            &lt;input name=&quot;sitesearch&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
-        &lt;/form&gt;
-        &lt;a href=&quot;{{ blog.feedurl }}&quot; title=&quot;Subscribe to {{ blog.title }} RSS feed&quot;&gt;Subscribe to my RSS feed &lt;img src=&quot;/static/images/feed-icon-16x16.png&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; title=&quot;Subscribe to Blog's RSS feed&quot; alt=&quot;RSS&quot;/&gt;&lt;/a&gt;
+            {% endblock %}
+            &lt;li style=&quot;float:right;&quot;&gt;  &lt;a href=&quot;{{ blog.feedurl }}&quot; title=&quot;Subscribe to {{ blog.title }} RSS feed&quot; style=&quot;color:#F89939;&quot;&gt;Subscribe&lt;img src=&quot;/static/images/feed-icon-16x16.png&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; title=&quot;Subscribe to Blog's RSS feed&quot; alt=&quot;RSS&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
+            &lt;li style=&quot;float:right;&quot;&gt;
+                &lt;div style=&quot;margin-top:15px;&quot;&gt;&lt;form method=&quot;get&quot; id=&quot;searchtop&quot;action=&quot;http://www.google.com/search&quot;&gt;
+                  &lt;input type=&quot;text&quot; name=&quot;q&quot; id=&quot;q&quot; size=&quot;24&quot; value=&quot;to search, type and hit enter&quot; onblur=&quot;if (this.value == '') {this.value = 'to search, type and hit enter';}&quot;  onfocus=&quot;if (this.value == 'to search, type and hit enter') {this.value = '';}&quot; /&gt;
+                  &lt;input name=&quot;domains&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
+                  &lt;input name=&quot;sitesearch&quot; type=&quot;hidden&quot; value=&quot;{{ blog.baseurl }}&quot;/&gt;
+               &lt;/form&gt;&lt;/div&gt;
+            &lt;/li&gt;
+            &lt;!--[if lte IE 7]&gt;
+            &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+            &lt;![endif]--&gt;
+        &lt;/ul&gt;
         &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
     &lt;/div&gt;
-&lt;/div&gt;
-&lt;!-- Dashboard Ends --&gt;
-
-&lt;!-- Header Starts --&gt;
-&lt;div id=&quot;header&quot;&gt;
-    &lt;div class=&quot;headings&quot;&gt;
-      &lt;h1&gt;&lt;a href=&quot;/&quot; &gt;{{ blog.title }}&lt;/a&gt;&lt;/h1&gt;
-      &lt;h2&gt;{{ blog.subtitle }}&lt;/h2&gt;
-      &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
-    &lt;/div&gt;
-&lt;/div&gt;
-&lt;!-- Header Ends --&gt;
-
-&lt;!-- Nav Starts --&gt;
-&lt;div id=&quot;nav&quot;&gt;
-    {% block topmenu %}
-
-    {% endblock %}
-    &lt;!--[if lte IE 7]&gt;
-    &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
-    &lt;![endif]--&gt;
-&lt;/div&gt;
-&lt;!-- Nav Ends --&gt;
-
-&lt;!-- Container Starts --&gt;
-&lt;div id=&quot;container&quot;&gt;
-    &lt;!-- Left Sidebar Starts 
-    &lt;div id=&quot;leftsidebar&quot;&gt;
-
+    &lt;!-- Container Starts --&gt;
+    &lt;div id=&quot;doc2&quot;  class=&quot;yui-t6&quot;&gt;
+        &lt;div&gt;
+            &lt;!-- Full Width Start--&gt;
+            {% block featured %}
+            {% endblock %}
+            &lt;!-- Featured Ends --&gt;
+        &lt;/div&gt;
+        &lt;div id=&quot;bd&quot;&gt;
+            &lt;div id=&quot;yui-main&quot;&gt;
+                 &lt;div class=&quot;yui-b&quot;&gt;
+                    {% block content %}
+                    
+                    {% endblock %} 
+                &lt;/div&gt;
+            &lt;/div&gt;
+            {% block rightsidebar %}
+            &lt;div id=&quot;rightsidebar&quot; class=&quot;yui-b&quot;&gt;  
+                &lt;!-- Right Sidebar Starts --&gt;
+                &lt;h1&gt;&lt;a href=&quot;/&quot; &gt;{{ blog.title }}&lt;/a&gt;&lt;/h1&gt;
+                {{ blog.sidebar }}
+                {% dsview &quot;poll&quot; &quot;what-should-the-new-features-be&quot; %}
+                &lt;!-- Right Sidebar Ends --&gt;
+            &lt;/div&gt;
+            {% endblock %}
+        &lt;/div&gt;
     &lt;/div&gt;
-     LeftSidebar Ends --&gt;
-    
-    &lt;!-- Full Width Start--&gt;
-    {% block featured %}
-    {% endblock %}
-    &lt;!-- Featured Ends --&gt;
-    
-    {% block content %}{% endblock %} 
-    
-    
-    {% block rightsidebar %}
-        &lt;!-- Right Sidebar Starts --&gt;
-        {{ blog.sidebar }}
-        &lt;!-- Right Sidebar Ends --&gt;
-    {% endblock %}
-
-&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+    &lt;!-- content Ends --&gt;
 &lt;/div&gt;
-&lt;!-- Container Ends --&gt;
 
 &lt;!-- Footer Starts --&gt;
 &lt;div id=&quot;footer&quot;&gt;
@@ -86,17 +75,15 @@
         &lt;/div&gt;
 
         &lt;div class=&quot;footercalt&quot;&gt;
+            {% dsview &quot;feedback&quot; &quot;badge&quot; %}
             {{ blog.area3 }}
+            
         &lt;/div&gt;
 
         &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
     &lt;/div&gt;
     &lt;div class=&quot;footerinner&quot;&gt;
         &lt;div id=&quot;credits&quot;&gt;
-            &lt;!-- Credit link can be removed by giving a $5 donation, it'll help us all build good karma! --&gt;
-            &lt;img src=&quot;/static/images/freshlogo.gif&quot; alt=&quot;FreshPress Themes&quot; title=&quot;visit www.freshpressthemes.com&quot; width=&quot;85&quot; height=&quot;29&quot; border=&quot;0&quot; /&gt;
-            &lt;span&gt;Theme from: &lt;a href=&quot;http://www.freshpressthemes.com&quot; title=&quot;See more fresh themes&quot; target=&quot;_blank&quot;&gt;FreshPress Themes&lt;/a&gt; {% now &quot;Y&quot; %}&lt;/span&gt; 
-            &lt;!-- Do Not Remove --&gt;
         &lt;/div&gt;
         &lt;div  valign=&quot;bottom&quot; align=&quot;center&quot;&gt;
             &lt;a href=&quot;http://code.google.com/appengine/&quot; &gt;
@@ -105,7 +92,7 @@
         &lt;/div&gt;
     &lt;/div&gt;
 &lt;/div&gt;
-&lt;!-- Footer Ends --&gt;
+
 {{ blog.analyticsjs }}
 
 &lt;/body&gt;</diff>
      <filename>views/base.html</filename>
    </modified>
    <modified>
      <diff>@@ -38,26 +38,19 @@
 
 
 {% block content %}
-&lt;h1&gt;{{ section.title }}&lt;/h1&gt;
+    &lt;h1&gt;{{ section.title }}&lt;/h1&gt;
     
     &lt;!-- Content Starts --&gt;
     &lt;div id=&quot;content&quot;&gt;
     {% for entry in entries %}
-        &lt;!-- Post Starts --&gt;
-        &lt;div class=&quot;date&quot;&gt;Posted: {{ entry.date|date:&quot;F jS, Y &quot; }}&lt;/div&gt;
-        &lt;h2&gt;&lt;a href=&quot;/entry/{{ entry.slug }}&quot; rel=&quot;bookmark&quot; title=&quot;{{ entry.title }}&quot;&gt;{{ entry.title }}&lt;/a&gt; &lt;/h2&gt;
-            &lt;div class=&quot;meta&quot;&gt;
-                &lt;ul&gt;
-                &lt;li&gt;Written by &lt;a href=&quot;#&quot; title=&quot;Posts by #&quot;&gt;{{ entry.author.nickname }}&lt;/a&gt;&lt;/li&gt;
-                &lt;!--&lt;li&gt;&lt;a href=&quot;#comments&quot; title=&quot;Read what people are saying&quot;&gt;Read the comments&lt;/a&gt;&lt;/li&gt;--&gt;
-                &lt;/ul&gt;
-            &lt;/div&gt;
-            
             &lt;!-- Post Starts --&gt;
             &lt;div class=&quot;post&quot; class=&quot;post-9&quot;&gt;
+                &lt;h3&gt;&lt;a href=&quot;/entry/{{ entry.slug }}&quot; rel=&quot;bookmark&quot; title=&quot;{{ entry.title }}&quot;&gt;{{ entry.title }}&lt;/a&gt; &lt;/h3&gt;
                 {{ entry.content }}
             &lt;/div&gt;
             &lt;div class=&quot;meta&quot;&gt;
+                &lt;span class=&quot;post-author&quot;&gt;&lt;a href=&quot;#&quot; title=&quot;Posts by #&quot;&gt;{{ entry.author.nickname }}&lt;/a&gt;&lt;/span&gt;
+                &lt;span class=&quot;post-date&quot;&gt;Posted: {{ entry.date|date:&quot;F jS, Y &quot; }}&lt;/span&gt;
                 {% if entry.tags %}
                 tags: 
                 {% for tag in entry.tags %}
@@ -67,11 +60,8 @@
                 
             &lt;/div&gt;
             &lt;div class=&quot;commentmeta&quot;&gt;
-                {{ entry.comments.views.summary }}
-                {% if entry.commentcount %}
-                    &lt;a href=&quot;#comments&quot; title=&quot;Comment on Demiauce Comment System&quot;&gt;{{ entry.commentcount }} comments&lt;/a&gt;
-                {% else %} 
-                    &lt;a href=&quot;/entry/{{ entry.slug }}#demisauce-comments&quot; title=&quot;Comment on Demiauce Comment System&quot;&gt;show comments&lt;/a&gt;
+                {% if showcomments %}
+                    {{ entry.comments.views.summary }}
                 {% endif %}
                 
             &lt;/div&gt;</diff>
      <filename>views/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-&lt;div id=&quot;rightsidebar&quot;&gt;
+
     &lt;h3&gt;Recent Posts&lt;/h3&gt;
     &lt;ul&gt;
         {% for entry in recententries %}
@@ -23,4 +23,3 @@
         &lt;li&gt;&lt;a href=&quot;{{ link.href }}&quot;&gt;{{ link.linktext }}&lt;/a&gt;&lt;/li&gt;
         {% endfor %}
     &lt;/ul&gt;
-&lt;/div&gt;
\ No newline at end of file</diff>
      <filename>views/sidebar.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b289ea8f3f111fb2f50bad4bae140bd5f12fefb7</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Raddon</name>
    <email>araddon@yahoo.com</email>
  </author>
  <url>http://github.com/araddon/potlatchblog/commit/909ae4d1b0637b0ad327f205b1fa56db9ed774f5</url>
  <id>909ae4d1b0637b0ad327f205b1fa56db9ed774f5</id>
  <committed-date>2008-09-01T10:20:46-07:00</committed-date>
  <authored-date>2008-09-01T10:20:46-07:00</authored-date>
  <message>adding demisaucepy to, ui mods to new theme</message>
  <tree>49fa4dcda6287a5b741412598aa166db4034edc7</tree>
  <committer>
    <name>Aaron Raddon</name>
    <email>araddon@yahoo.com</email>
  </committer>
</commit>
