# Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: steve@tachikoman-20080526032253-1g1v8fwn7uwydxf4 # target_branch: https://code.launchpad.net/~meow-developers/meow\ # /trunk # testament_sha1: 77d6c71c37414656c6b01a285a9917ffc292bd24 # timestamp: 2008-05-25 23:25:22 -0400 # base_revision_id: eric@themoritzfamily.com-20080524054422-\ # exxqryk5wx5llcju # # Begin patch === modified file 'settings.py' --- settings.py 2008-05-24 05:44:22 +0000 +++ settings.py 2008-05-25 01:44:00 +0000 @@ -15,15 +15,20 @@ """Django Settings""" import os +import sys +import logging + SITE_ID = 0 SITE_DOMAIN = "http://meow.appspot.com/" DEBUG = os.environ.get('USER', '') != 'apphosting' -MESSAGE_COUNT = 50 +MESSAGE_COUNT = 25 PUBLIC_MESSAGE_COUNT = 50 FEED_MESSAGE_COUNT = 10 +MESSAGE_QUERY_LIMIT = 1000 + ROOT_URLCONF = 'urls' TIME_ZONE = "UTC" MIDDLEWARE_CLASSES = ( === modified file 'templates/base.html' --- templates/base.html 2008-05-21 18:17:32 +0000 +++ templates/base.html 2008-05-26 01:50:15 +0000 @@ -17,12 +17,16 @@
+{% block pre-content %}{% endblock %} {% block content %} {% endblock %}
+{% block post-content %}{% endblock %} + + {% block tail %}{% endblock %} {% include "tracking.html" %} === modified file 'templates/index.html' --- templates/index.html 2008-05-21 18:17:32 +0000 +++ templates/index.html 2008-05-26 01:50:15 +0000 @@ -14,3 +14,6 @@ {% endif %} {% endblock %} +{% block post-content %} +{% include "pagination.html" %} +{% endblock %} === added file 'templates/pagination.html' --- templates/pagination.html 1970-01-01 00:00:00 +0000 +++ templates/pagination.html 2008-05-24 22:37:49 +0000 @@ -0,0 +1,5 @@ +{% ifequal prev_page 0 %} + Prev +{% endifequal %} +{% if prev_page %}Prev{% endif %} +{% if next_page %}Next{% endif %} === modified file 'templates/user.html' --- templates/user.html 2008-05-22 02:26:04 +0000 +++ templates/user.html 2008-05-26 01:50:15 +0000 @@ -8,7 +8,7 @@ {% if message_list %}