2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/base.html" %}
|
2012-11-09 00:09:58 +01:00
|
|
|
|
2013-02-25 02:59:59 +01:00
|
|
|
{% load compressed %}
|
Reuse minified JS from previous deploys
This is a big change affecting lots of areas:
* Pipeline no longer deals with JS (though it still minifies CSS)
* A new script, tools/minify-js (called from update-prod-static),
minifies JavaScripts
* A command-line argument --prev-deploy, if passed to minify-js or
update-prod-static, is used to copy minified JS from a previous
deploy (i.e., a previous git checkout), if the source files have
not changed
* update-deployment passes --prev-deploy
* Scripts are now included with the minified_js template tag, rather
than Pipeline's compressed_js
Also, as a side benefit of this commit, our Handlebars templates will
no longer be copied into prod-static/ and accessible in production.
Unminification is probably broken, but, per Zev and Trac ticket #1377,
it wasn't working perfectly before this change either.
(Based on code review, this commit has been revised to:
* Warn if git returns an error in minify-js
* Add missing output redirects in update-prod-static
* Use DEPLOY_ROOT instead of manually constructing that directory
* Use old style formatting)
(imported from commit e67722ea252756db8519d5c0bd6a421d59374185)
2013-07-03 22:42:25 +02:00
|
|
|
{% load minified_js %}
|
2013-02-25 02:59:59 +01:00
|
|
|
|
2012-11-09 00:09:58 +01:00
|
|
|
{# User Activity. #}
|
|
|
|
|
2013-10-11 22:29:26 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2012-12-05 19:24:00 +01:00
|
|
|
{% block customhead %}
|
|
|
|
{{ block.super }}
|
Reuse minified JS from previous deploys
This is a big change affecting lots of areas:
* Pipeline no longer deals with JS (though it still minifies CSS)
* A new script, tools/minify-js (called from update-prod-static),
minifies JavaScripts
* A command-line argument --prev-deploy, if passed to minify-js or
update-prod-static, is used to copy minified JS from a previous
deploy (i.e., a previous git checkout), if the source files have
not changed
* update-deployment passes --prev-deploy
* Scripts are now included with the minified_js template tag, rather
than Pipeline's compressed_js
Also, as a side benefit of this commit, our Handlebars templates will
no longer be copied into prod-static/ and accessible in production.
Unminification is probably broken, but, per Zev and Trac ticket #1377,
it wasn't working perfectly before this change either.
(Based on code review, this commit has been revised to:
* Warn if git returns an error in minify-js
* Add missing output redirects in update-prod-static
* Use DEPLOY_ROOT instead of manually constructing that directory
* Use old style formatting)
(imported from commit e67722ea252756db8519d5c0bd6a421d59374185)
2013-07-03 22:42:25 +02:00
|
|
|
{% minified_js 'activity' %}
|
2013-02-25 02:59:59 +01:00
|
|
|
{% compressed_css 'activity' %}
|
2012-12-05 19:24:00 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2012-11-09 00:09:58 +01:00
|
|
|
{% block content %}
|
|
|
|
|
2013-11-04 16:50:07 +01:00
|
|
|
{% if not is_home %}
|
|
|
|
<a class="show-all" href="/activity">Home</a>
|
2013-09-25 23:47:54 +02:00
|
|
|
<br />
|
|
|
|
{% endif %}
|
|
|
|
|
2013-11-04 16:50:07 +01:00
|
|
|
<h4>{{ title }}</h4>
|
|
|
|
|
2013-09-25 23:47:54 +02:00
|
|
|
|
2012-12-05 17:57:12 +01:00
|
|
|
<ul class="nav nav-tabs">
|
2013-09-25 18:10:56 +02:00
|
|
|
{% for name, activity in data %}
|
2013-09-26 00:15:12 +02:00
|
|
|
<li {% if forloop.first %} class="active" {% endif %}>
|
2013-10-22 17:11:54 +02:00
|
|
|
<a href="#{{ name|slugify }}" data-toggle="tab">{{ name }}</a>
|
2012-12-05 17:57:12 +01:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
2012-11-09 00:09:58 +01:00
|
|
|
|
2013-09-25 18:10:56 +02:00
|
|
|
{% for name, activity in data %}
|
2012-12-05 17:57:12 +01:00
|
|
|
|
2013-10-22 17:11:54 +02:00
|
|
|
<div class="tab-pane {% if forloop.first %} active {% endif %}" id="{{ name|slugify }}">
|
2013-11-07 16:53:09 +01:00
|
|
|
{{ activity }}
|
2012-12-05 17:57:12 +01:00
|
|
|
</div>
|
2012-11-09 00:09:58 +01:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2012-12-05 17:57:12 +01:00
|
|
|
</div>
|
|
|
|
|
2012-11-09 00:09:58 +01:00
|
|
|
{% endblock %}
|