]> git.openstreetmap.org Git - osqa.git/commitdiff
removing the smart_str function from the html.objelink function argument, it causes...
authorjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 13 Apr 2011 22:32:02 +0000 (22:32 +0000)
committerjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 13 Apr 2011 22:32:02 +0000 (22:32 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@980 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/skins/default/templates/notifications/answeraccepted.html
forum/skins/default/templates/notifications/newanswer.html
forum/skins/default/templates/notifications/newcomment.html
forum/skins/default/templates/notifications/newmember.html
forum/skins/default/templates/notifications/newquestion.html

index 6d9c041cf557d9811172f083955806a6a8fc02ea..4ce25a7d59d782c5ee7472b0901f6f1c23666c14 100644 (file)
@@ -6,9 +6,9 @@
     question = smart_str(answer.question)
     question_title = html.mark_safe(smart_str(question.title))
     accepted_by = html.mark_safe(smart_str(answer.nstate.accepted.by.username))
-    accepted_by_link = html.objlink(smart_str(answer.nstate.accepted.by), style=settings.EMAIL_ANCHOR_STYLE)
-    answer_author_link = html.objlink(smart_str(answer.author), style=settings.EMAIL_ANCHOR_STYLE)
-    question_link = html.objlink(smart_str(question), style=settings.EMAIL_ANCHOR_STYLE)
+    accepted_by_link = html.objlink(answer.nstate.accepted.by, style=settings.EMAIL_ANCHOR_STYLE)
+    answer_author_link = html.objlink(answer.author, style=settings.EMAIL_ANCHOR_STYLE)
+    question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
 {% enddeclare %}
 
 {% email %}
index 5936d5230f9ef1a7ab1c7eb5f0488cf8d581f4f7..1f3140ce4851c26a525b60849e87b6d8dae33710 100644 (file)
@@ -1,15 +1,15 @@
 {% load i18n extra_tags email_tags %}
 
 {% declare %}
-    prefix = smart_str(html.mark_safe(settings.EMAIL_SUBJECT_PREFIX))
+    prefix = html.mark_safe(smart_str(settings.EMAIL_SUBJECT_PREFIX))
     app_name = smart_str(settings.APP_SHORT_NAME)
-    safe_app_name = smart_str(html.mark_safe(settings.APP_SHORT_NAME))
-    answer_author = smart_str(html.mark_safe(answer.author.username))
-    question = smart_str(answer.question)
-    question_title = smart_str(html.mark_safe(question.title))
-    safe_body = smart_str(html.html2text(answer.html))
-    author_link = smart_str(html.objlink(answer.author, style=settings.EMAIL_ANCHOR_STYLE))
-    question_link = smart_str(html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE))
+    safe_app_name = html.mark_safe(smart_str(settings.APP_SHORT_NAME))
+    answer_author = html.mark_safe(smart_str(answer.author.username))
+    question = answer.question
+    question_title = html.mark_safe(smart_str(question.title))
+    safe_body = html.html2text(smart_str(answer.html))
+    author_link = html.objlink(answer.author, style=settings.EMAIL_ANCHOR_STYLE)
+    question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
 {% enddeclare %}
 
 {% email %}
index d629f64790ac57e165297e6c49d078b7e4bcbc92..b72b86722573906a965e9a4cb04fff76b541196f 100644 (file)
@@ -9,8 +9,8 @@
     comment_author = html.mark_safe(smart_str(comment.author))
     question_title = html.mark_safe(smart_str(question.title))
     safe_body = html.html2text(smart_str(comment.comment))
-    author_link = html.objlink(smart_str(comment.author), style=settings.EMAIL_ANCHOR_STYLE)
-    question_link = html.objlink(smart_str(question), style=settings.EMAIL_ANCHOR_STYLE)
+    author_link = html.objlink(comment.author, style=settings.EMAIL_ANCHOR_STYLE)
+    question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
 {% enddeclare %}
 
 {% email %}
index 5de2f294319bc744e452c8229ea88e7c03e271f5..aa5d5ec2bf949f6d5e5e35bdaf7b911c42fbab84 100644 (file)
@@ -8,7 +8,7 @@
     newmember_name = smart_str(newmember.username)
     safe_newmember_name = html.mark_safe(smart_str(newmember.username))
     newmember_url = smart_str(newmember.get_profile_url())
-    newmember_link = html.objlink(smart_str(newmember), style=settings.EMAIL_ANCHOR_STYLE)
+    newmember_link = html.objlink(newmember, style=settings.EMAIL_ANCHOR_STYLE)
 {% enddeclare %}
 
 {% email %}
index ae4101758765aca4d571a6bb42cbd94d53fc7554..1f48a380a7e3c76153de9708515be3132a4db8b2 100644 (file)
@@ -9,8 +9,8 @@
     question_title = html.mark_safe(smart_str(question.title))
     question_tags = html.mark_safe(smart_str(question.tagnames))
     safe_body = html.html2text(smart_str(question.html))
-    author_link = html.objlink(smart_str(question.author), style=settings.EMAIL_ANCHOR_STYLE)
-    question_link = html.objlink(smart_str(question), style=settings.EMAIL_ANCHOR_STYLE)
+    author_link = html.objlink(question.author, style=settings.EMAIL_ANCHOR_STYLE)
+    question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
     tag_links = html.mark_safe(smart_str(" ".join([html.objlink(t, style=settings.EMAIL_ANCHOR_STYLE) for t in question.tags.all()])))
 {% enddeclare %}