# HG changeset patch
# User BenoƮt Allard <benoit.allard@greenbone.net>
# Date 1412079953 -7200
# Node ID a52995b50ecc9c5a328fef3b7770443dd2dca170
# Parent  d5265a0da13a6e7ffa6f860b19460f56a2b682bd
Add a warning when saving to a private cache

diff -r d5265a0da13a -r a52995b50ecc farol/templates/base.j2
--- a/farol/templates/base.j2	Tue Sep 30 14:25:25 2014 +0200
+++ b/farol/templates/base.j2	Tue Sep 30 14:25:53 2014 +0200
@@ -123,7 +123,7 @@
       {% block content %}{% endblock %}
     </div>
     {% if config.DEBUG and not config.DEBUG_SURE %}
-    <div class="alert alert-danger"><strong>DEBUG:</strong> This application is running in debug mode. See the <a href="{{ url_for('about', _anchor='debug')}}">about page</a> for more Details</div>
+    <div class="alert alert-danger"><strong>DEBUG:</strong> This application is running in debug mode. See the <a href="{{ url_for('about') }}#debug">about page</a> for more Details</div>
     {% endif %}
   </div>
   <footer class="footer container-fluid">
diff -r d5265a0da13a -r a52995b50ecc farol/templates/cache/save.j2
--- a/farol/templates/cache/save.j2	Tue Sep 30 14:25:25 2014 +0200
+++ b/farol/templates/cache/save.j2	Tue Sep 30 14:25:53 2014 +0200
@@ -28,6 +28,9 @@
 {% block title %}Save{% endblock %}
 
 {% block content %}
+{% if caching != 'global' %}
+  <div class="alert alert-warning" role="alert"><strong>Warning !</strong> You are about to save a document in your private cache. This cache is bound to your <em>browser session</em>, so that you won't be able to load your document again if you happen to close your browser. Read more about the <a class="alert-link" href="{{ url_for('about') }}#caching">caching system.</a></div>
+{% endif %}
 <form role="form" method="POST">
 {{ textinput("fname", "File name", "doc1", id_, required=True) }}
 <button class="btn btn-primary" type="submit">Save</button>