summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-27 19:06:47 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-27 19:06:47 -0500
commit9c34f4130b843480ab34b463f40ea6d4f9bfbd4c (patch)
treef52b885b4b78f23625e15b0053b4caddb676b71c
parentafa180b076d49e174879f7cce6c9cc08ade10fa2 (diff)
downloadaskbot-9c34f4130b843480ab34b463f40ea6d4f9bfbd4c.tar.gz
askbot-9c34f4130b843480ab34b463f40ea6d4f9bfbd4c.tar.bz2
askbot-9c34f4130b843480ab34b463f40ea6d4f9bfbd4c.zip
fixed a bug in the template faq as reported by Benoit, sub-version 64
-rw-r--r--askbot/__init__.py2
-rw-r--r--askbot/skins/default/templates/faq.html2
-rw-r--r--askbot/tests/page_load_tests.py5
3 files changed, 7 insertions, 2 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 95b32800..c280de96 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -19,4 +19,4 @@ def get_version():
"""returns version of the askbot app
this version is meaningful for pypi only
"""
- return '0.6.63'
+ return '0.6.64'
diff --git a/askbot/skins/default/templates/faq.html b/askbot/skins/default/templates/faq.html
index ed31c50b..74d5b0ef 100644
--- a/askbot/skins/default/templates/faq.html
+++ b/askbot/skins/default/templates/faq.html
@@ -4,7 +4,7 @@
{% block content %}
<h1>{% trans %}Frequently Asked Questions {% endtrans %}({% trans %}FAQ{% endtrans %})</h1>
<h2 class="first">{% trans %}What kinds of questions can I ask here?{% endtrans %}</h2>
-<p>Most importanly - questions should be <strong>relevant</strong> to this community.{% endtrans %}
+<p>{% trans %}Most importanly - questions should be <strong>relevant</strong> to this community.{% endtrans %}
{% trans %}Before asking the question - please make sure to use search to see whether your question has alredy been answered.{% endtrans %}
</p>
<h2>{% trans %}What questions should I avoid asking?{% endtrans %}</h2>
diff --git a/askbot/tests/page_load_tests.py b/askbot/tests/page_load_tests.py
index a4ef2547..7d9fdc26 100644
--- a/askbot/tests/page_load_tests.py
+++ b/askbot/tests/page_load_tests.py
@@ -236,6 +236,11 @@ class PageLoadTests(PageLoadTestCase):
status_code=200,
follow=True,
)
+ self.try_url(
+ 'faq',
+ template='faq.html',
+ status_code=200,
+ )
def test_non_user_urls(self):
self.proto_test_non_user_urls()