Make the http links use <a href> tag in new_notification.html and welcome.html mail templates.
Patch by: Pawel Solyga
Reviewed by: to-be-reviewed
--- a/app/soc/templates/soc/mail/new_notification.html Mon Mar 09 00:43:36 2009 +0000
+++ b/app/soc/templates/soc/mail/new_notification.html Mon Mar 09 00:44:45 2009 +0000
@@ -16,7 +16,7 @@
{% block content %}
You have received a new notification entitled "{{ notification.subject }}".
-To read, respond to, or delete this notification please visit {{ notification_url }}.
+To read, respond to, or delete this notification please visit <a href="{{ notification_url }}">{{ notification_url }}</a>.
{% endblock %}
{% block signature %}
--- a/app/soc/templates/soc/mail/welcome.html Mon Mar 09 00:43:36 2009 +0000
+++ b/app/soc/templates/soc/mail/welcome.html Mon Mar 09 00:44:45 2009 +0000
@@ -22,7 +22,7 @@
Currently Melange is still under development, if you run into any trouble you
can usually find us at #melange on freenode IRC network.
If you find any bugs,please report them to our Issue tracker which can be found
-at http://code.google.com/p/soc/issues/list.
+at <a href="http://code.google.com/p/soc/issues/list">http://code.google.com/p/soc/issues/list</a>.
{% endifequal %}
{% endblock %}