Uncrazy the caching, part 1.
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 29 Jul 2019 14:13:14 +0000 (16:13 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 29 Jul 2019 14:13:14 +0000 (16:13 +0200)
17 files changed:
src/ajaxable/templates/ajaxable/form.html
src/catalogue/templates/catalogue/book_detail.html
src/catalogue/templates/catalogue/book_text.html
src/catalogue/templates/catalogue/custom_pdf_form.html
src/catalogue/templates/catalogue/related_books.html
src/catalogue/templates/catalogue/snippets/like_button.html
src/catalogue/templates/catalogue/tag_catalogue.html
src/contact/templates/contact/form.html
src/newsletter/templates/newsletter/subscribe_form.html
src/newsletter/templates/newsletter/unsubscribe_form.html
src/polls/templates/polls/tags/poll.html
src/social/templates/social/sets_form.html
src/wolnelektury/templates/auth/login.html
src/wolnelektury/templates/auth/login_register.html
src/wolnelektury/templates/base/app.html
src/wolnelektury/templates/base/superbase.html
src/wolnelektury/templates/main_page.html

index 0af34f4..0c97b65 100755 (executable)
@@ -1,11 +1,10 @@
 {% load i18n %}
-{% load ssi_csrf_token from ssify %}
 
 <h1>{{ title }}</h1>
 
 <form action="{% if action_url %}{% url action_url %}{% else %}{{ action }}{% endif %}{% if action_query %}?{{ action_query }}{% endif %}" method="post" accept-charset="utf-8"
       class="cuteform{% if placeholdize %} hidelabels{% endif %}">
-  {% ssi_csrf_token %}
+  {% csrf_token %}
   {% if honeypot %}
     {% load honeypot %}
     {% render_honeypot_field %}
index ecae89e..a5be89b 100644 (file)
@@ -1,7 +1,6 @@
 {% extends "base/base.html" %}
 {% load i18n %}
 {% load common_tags catalogue_tags %}
-{% load ssify %}
 {% load build_absolute_uri from fnp_common %}
 {% load cache %}
 
@@ -33,7 +32,6 @@
           {% cache 86400 book_mini_box rel.pk %}
             {% include 'catalogue/book_mini_box.html' with book=rel %}
           {% endcache %}
-          {#% ssi_include 'catalogue_book_mini' pk=rel.pk %#}
         {% endfor %}
       </section>
     {% endif %}
@@ -56,7 +54,9 @@
   {% for author in book.authors %}
     <div class="white-box">
       <a style="display:block" href="{{ author.get_absolute_url }}">
-        {% ssi_include 'catalogue_tag_box' pk=author.pk %}
+       {% cache 86400 catalogue_tag_box rel.pk %}
+          {% include 'catalogue/tag_box.html' with tag=author %}
+       {% endcache %}
       </a>
     </div>
   {% endfor %}
index 42eb1fa..27eadb0 100644 (file)
@@ -91,7 +91,6 @@
                 {% cache 86400 book_mini_box other_version.pk %}
                   {% include 'catalogue/book_mini_box.html' with book=other_version no_link=True %}
                 {% endcache %}
-                {#% ssi_include 'catalogue_book_mini_nolink' pk=other_version.pk %#}
               </a>
             </li>
           {% endfor %}
index 3abc22d..ef865bc 100644 (file)
@@ -1,12 +1,11 @@
 {% load i18n %}
 {% load honeypot %}
-{% load ssi_csrf_token from ssify %}
 {% load ajaxable_tags %}
 
 <h1>{% trans "Download custom PDF" %}</h1>
 
 <form id='custom-pdf-form' action="" method="post" accept-charset="utf-8" class="cuteform">
-  {% ssi_csrf_token %}
+  {% csrf_token %}
   {% render_honeypot_field %}
   <ol>
     {{ form.nofootnotes|pretty_checkbox }}
index 74e680f..db0fd35 100755 (executable)
@@ -12,7 +12,6 @@
     {% cache 86400 book_mini_box book.pk %}
       {% include 'catalogue/book_mini_box.html' %}
     {% endcache %}
-    {#% ssi_include 'catalogue_book_mini' pk=book.pk %#}
   {% endfor %}
 
   {% if random %}
@@ -25,4 +24,4 @@
       {% ssi_include 'picture_mini' pk=random_pic_pk %}
     {{ random_pic_pk.endif }}
   {% endif %}
-{% endspaceless %}
\ No newline at end of file
+{% endspaceless %}
index 6f0902e..9b333c4 100644 (file)
@@ -1,4 +1,3 @@
-{% load ssify %}
 {% load likes_book from social_tags %}
 {% likes_book book.pk as likes %}
 <div class="star {{ likes.if }}{{ likes.else }}un{{ likes.endif }}like">
@@ -10,7 +9,7 @@
     <form id="social-like-book-{{ book.slug }}"
           data-callback='social-like-book' method='post'
           class='ajax-form' action='{% url "social_like_book" book.slug %}'>
-      {% ssi_csrf_token %}
+      {% csrf_token %}
       <button type='submit'>☆</button>
     </form>
   </div>
index 5f7e61b..73a5b14 100644 (file)
@@ -1,7 +1,7 @@
 {% extends "base/base.html" %}
 {% load i18n %}
+{% load cache %}
 {% load plain_list from catalogue_tags %}
-{% load ssi_include from ssify %}
 
 {% block titleextra %}{{ title }}{% endblock %}
 
@@ -12,7 +12,9 @@
 
   {% for tag in best %}
     <a class="tag-box" href="{{ tag.get_absolute_url }}">
-      {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+      {% cache 86400 catalogue_tag_box rel.pk %}
+        {% include 'catalogue/tag_box.html' %}
+      {% endcache %}
     </a>
   {% endfor %}
 
index fc1427f..346de58 100644 (file)
@@ -1,7 +1,6 @@
 {% extends form.base_template|default:"base/base.html" %}
 {% load chunks %}
 {% load honeypot %}
-{% load ssi_csrf_token from ssify %}
 
 {% block title %}{{ form.form_title }}{% endblock %}
 
@@ -16,7 +15,7 @@
     </div>
 
     <form method="POST" action="." enctype="multipart/form-data" class="submit-form">
-    {% ssi_csrf_token %}
+    {% csrf_token %}
     {% render_honeypot_field %}
     {% block form %}
         <table>
index c0379f0..53d7901 100644 (file)
@@ -1,13 +1,12 @@
 {% extends "base/base.html" %}
 {% load i18n %}
-{% load ssify %}
 {% load honeypot %}
 {% load ajaxable_tags %}
 
 {% block body %}
   <h1>{{ page_title }}</h1>
   <form id="subscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
-    {% ssi_csrf_token %}
+    {% csrf_token %}
     {% render_honeypot_field %}
     <ol>
       <li>{{ form.email|pretty_field }}</li>
@@ -16,4 +15,4 @@
       <li><input type="submit" value="{% trans "Subscribe" %}"/></li>
     </ol>
   </form>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
index 3372d2f..d7a6f70 100644 (file)
@@ -1,16 +1,15 @@
 {% extends "base/base.html" %}
 {% load i18n %}
-{% load ssify %}
 {% load honeypot %}
 
 {% block body %}
   <h1>{{ page_title }}</h1>
   <form id="unsubscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
-    {% ssi_csrf_token %}
+    {% csrf_token %}
     {% render_honeypot_field %}
     <ol>
       {{ form.as_ul }}
       <li><input type="submit" value="{% trans "Unsubscribe" %}"/></li>
     </ol>
   </form>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
index 4c4d2b5..b4a4e7f 100644 (file)
@@ -1,5 +1,4 @@
 {% load i18n %}
-{% load ssi_csrf_token from ssify %}
 
 {% if poll %}
     {% if voted_already %}
     {% else %}
         <div class="poll">
             <p>{{poll.question}}</p>
-            <form action="{{poll.get_absolute_url}}" method="post">{% ssi_csrf_token %}
+            <form action="{{poll.get_absolute_url}}" method="post">{% csrf_token %}
             {{ form.vote }}
             <input type="submit" value="{% trans "Submit" %}" />
             </form>
         </div>
     {% endif %}
-{% endif %}
\ No newline at end of file
+{% endif %}
index 05f8e43..a003f67 100644 (file)
@@ -1,16 +1,15 @@
 {% load i18n %}
-{% load ssi_csrf_token from ssify %}
 <h1>{{ title }}</h1>
 
 <form action="{% url 'social_unlike_book' view_kwargs.slug %}" method="post" accept-charset="utf-8"
       class="cuteform{% if placeholdize %} hidelabels{% endif %}">
-  {% ssi_csrf_token %}
+  {% csrf_token %}
   <input type="submit" value="{% trans "Remove from my shelf" %}"/>
 </form>
 
 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8"
       class="cuteform{% if placeholdize %} hidelabels{% endif %}">
-  {% ssi_csrf_token %}
+  {% csrf_token %}
   <ol>
     <div id="id___all__"></div>
     {{ form.as_ul }}
index 2965713..c32df0f 100644 (file)
@@ -1,11 +1,10 @@
 {% load i18n %}
-{% load ssi_csrf_token from ssify %}
 
 <h1>{{ title }}</h1>
 
 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8"
       class="cuteform{% if placeholdize %} hidelabels{% endif %}">
-  {% ssi_csrf_token %}
+  {% csrf_token %}
   <ol>
     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
     {{ form.as_ul }}
index 6be2054..50e2ea0 100644 (file)
@@ -1,7 +1,6 @@
 {% extends "auth/login.html" %}
 {% load i18n %}
 {% load honeypot %}
-{% load ssi_csrf_token from ssify %}
 
 {% block extra %}
   {{ block.super }}
index e0a729b..c10cc4c 100644 (file)
@@ -5,7 +5,7 @@
     {% load static from staticfiles %}
     {% load catalogue_tags funding_tags reporting_stats %}
     {% load piwik_tags %}
-    {% load ssi_include ssi_csrf_token from ssify %}
+    {% load ssi_include from ssify %}
     {% load user_username user_is_staff from common_tags %}
     {% load cache %}
     {% get_current_language as LANGUAGE_CODE %}
@@ -49,7 +49,7 @@
                 <div id="lang-menu-items">
                   {% for lang in LANGUAGES %}
                     <form action="{% url 'set_language' %}" method="post">
-                      {% ssi_csrf_token %}
+                      {% csrf_token %}
                       <input type="hidden" name="language" value="{{ lang.0 }}"/>
                       <button type="submit" lang="{{ lang.0 }}"
                               class="{% ifequal lang.0 LANGUAGE_CODE %}active{% endifequal %}">{{ lang.1 }}</button>
index a34006b..b03392f 100644 (file)
@@ -5,7 +5,7 @@
     {% load static from staticfiles %}
     {% load catalogue_tags funding_tags reporting_stats %}
     {% load piwik_tags %}
-    {% load ssi_include ssi_csrf_token from ssify %}
+    {% load ssi_include from ssify %}
     {% load user_username user_is_staff from common_tags %}
     {% load cache %}
     {% get_current_language as LANGUAGE_CODE %}
@@ -69,7 +69,7 @@
                 <div id="lang-menu-items">
                   {% for lang in LANGUAGES %}
                     <form action="{% url 'set_language' %}" method="post">
-                      {% ssi_csrf_token %}
+                      {% csrf_token %}
                       <input type="hidden" name="language" value="{{ lang.0 }}"/>
                       <button type="submit" lang="{{ lang.0 }}"
                               class="{% ifequal lang.0 LANGUAGE_CODE %}active{% endifequal %}">{{ lang.1 }}</button>
index c306412..c1e6a9c 100644 (file)
       <a class="more" href="{% url 'theme_catalogue' %}">{% trans "See motifs catalog" %}</a>
     </section>
 
-    {% comment %}
-    <section class="tag-box-section">
-      <h1>Autorzy</h1>
-      <a class="tag-box" href="{{ author.get_absolute_url }}">
-        {% ssi_include "catalogue_tag_box" pk=author.pk %}
-      </a>
-      <a class="more" href="{% url 'author_catalogue' %}">Zobacz katalog autorów</a>
-    </section>
-
-    <section class="tag-box-section">
-      <h1>Gatunki</h1>
-      <a class="tag-box" href="{{ genre.get_absolute_url }}">
-        {% ssi_include "catalogue_tag_box" pk=genre.pk %}
-      </a>
-      <a class="more" href="{% url 'genre_catalogue' %}">Zobacz katalog gatunków</a>
-    </section>
-
-    <section class="tag-box-section">
-      <h1>Rodzaje</h1>
-      <a class="tag-box" href="{{ kind.get_absolute_url }}">
-        {% ssi_include "catalogue_tag_box" pk=kind.pk %}
-      </a>
-      <a class="more" href="{% url 'kind_catalogue' %}">Zobacz katalog rodzajów</a>
-    </section>
-
-    <section class="tag-box-section">
-      <h1>Epoki</h1>
-      <a class="tag-box" href="{{ epoch.get_absolute_url }}">
-        {% ssi_include "catalogue_tag_box" pk=epoch.pk %}
-      </a>
-      <a class="more" href="{% url 'epoch_catalogue' %}">Zobacz katalog epok</a>
-    </section>
-    {% endcomment %}
-
     {% if collection %}
       <section>
         <h1>{% trans "Collections" %}</h1>