summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hyperkitty/static/js/libs/jquery.expander.js (renamed from hyperkitty/static/jquery.expander.js)2
-rw-r--r--hyperkitty/static/js/libs/protovis-d3.1.js (renamed from hyperkitty/static/protovis-d3.1.js)0
-rw-r--r--hyperkitty/templates/month_view.html3
-rw-r--r--hyperkitty/templates/recent_activities.html3
-rw-r--r--hyperkitty/templates/search.html3
-rw-r--r--hyperkitty/templates/thread.html2
-rw-r--r--hyperkitty/templates/user_profile.html4
7 files changed, 9 insertions, 8 deletions
diff --git a/hyperkitty/static/jquery.expander.js b/hyperkitty/static/js/libs/jquery.expander.js
index 9eabab4..214e5da 100644
--- a/hyperkitty/static/jquery.expander.js
+++ b/hyperkitty/static/js/libs/jquery.expander.js
@@ -9,7 +9,7 @@
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
- *
+ * https://github.com/kswedberg/jquery-expander/blob/a3393d68e28cde673a53cabba2cd49dc8d980f7f/jquery.expander.js
*
*
*/
diff --git a/hyperkitty/static/protovis-d3.1.js b/hyperkitty/static/js/libs/protovis-d3.1.js
index af56eac..af56eac 100644
--- a/hyperkitty/static/protovis-d3.1.js
+++ b/hyperkitty/static/js/libs/protovis-d3.1.js
diff --git a/hyperkitty/templates/month_view.html b/hyperkitty/templates/month_view.html
index cff4c31..97b0622 100644
--- a/hyperkitty/templates/month_view.html
+++ b/hyperkitty/templates/month_view.html
@@ -109,7 +109,7 @@
{% endblock %}
{% block additionaljs %}
-<script src="{{ STATIC_URL }}jquery.expander.js"></script>
+<script src="{{ STATIC_URL }}js/libs/jquery.expander.js"></script>
<script>
$(document).ready(function() {
$('span.expander').expander({
@@ -119,4 +119,3 @@
});
</script>
{% endblock %}
-
diff --git a/hyperkitty/templates/recent_activities.html b/hyperkitty/templates/recent_activities.html
index f946bb9..1f2df61 100644
--- a/hyperkitty/templates/recent_activities.html
+++ b/hyperkitty/templates/recent_activities.html
@@ -214,6 +214,5 @@
{% endblock %}
{% block additionaljs %}
- <script type="text/javascript" src="{{ STATIC_URL }}protovis-d3.1.js"></script>
+<script src="{{ STATIC_URL }}js/libs/protovis-d3.1.js"></script>
{% endblock %}
-
diff --git a/hyperkitty/templates/search.html b/hyperkitty/templates/search.html
index 5763eeb..303b9a5 100644
--- a/hyperkitty/templates/search.html
+++ b/hyperkitty/templates/search.html
@@ -85,7 +85,7 @@ Sorry no emails could be found for your search.
{% endblock %}
{% block additionaljs %}
-<script src="{{ STATIC_URL }}jquery.expander.js"></script>
+<script src="{{ STATIC_URL }}js/libs/jquery.expander.js"></script>
<script>
$(document).ready(function() {
$('span.expander').expander({
@@ -95,4 +95,3 @@ Sorry no emails could be found for your search.
});
</script>
{% endblock %}
-
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html
index c55d445..20dc8c6 100644
--- a/hyperkitty/templates/thread.html
+++ b/hyperkitty/templates/thread.html
@@ -41,7 +41,7 @@
{% block additionaljs %}
-<script src="{{ STATIC_URL }}jquery.expander.js"></script>
+<script src="{{ STATIC_URL }}js/libs/jquery.expander.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('div.email_body').expander({
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html
index e7a3c19..11c8292 100644
--- a/hyperkitty/templates/user_profile.html
+++ b/hyperkitty/templates/user_profile.html
@@ -46,6 +46,8 @@
<a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}">Message is empty</a>
{% endif %}
</li>
+ {% empty %}
+ <p>No up vote yet.</p>
{% endfor %}
</ul>
@@ -59,6 +61,8 @@
<a href="{% url message_index mlist_fqdn=vote.list_address, hashid=vote.messageid %}">Message is empty</a>
{% endif %}
</li>
+ {% empty %}
+ <p>No down vote yet.</p>
{% endfor %}
</ul>