X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/f62465929c480c1c05310df665fae32b5a24fb98..75c342df9bdad4455cd555ebb449cb82d3dc6fae:/project/templates/explorer/file_list.html

diff --git a/project/templates/explorer/file_list.html b/project/templates/explorer/file_list.html
index a36d353a..7612a71e 100644
--- a/project/templates/explorer/file_list.html
+++ b/project/templates/explorer/file_list.html
@@ -2,27 +2,54 @@
 
 {% block extrahead %}
 <link rel="stylesheet" href="{{ STATIC_URL }}css/filelist.css" type="text/css" />
-<script type="text/javascript" charset="utf-8" src="{{ STATIC_URL }}js/jquery.paginate.js"></script>
+    <script src="{{STATIC_URL}}js/jquery.json.js" type="text/javascript" charset="utf-8"></script>
+    <script src="{{STATIC_URL}}js/jquery.cookie.js" type="text/javascript" charset="utf-8"></script>
 <script type="text/javascript" charset="utf-8">
 $(function() {
-    $('#file-list').paginate({itemsPerPage: 15});
-
-    $('#file-list-find-button').click(function(event)
-    {
-        var expr = new RegExp( $('#file-list-filter').val() );
-
-        $('#file-list').filterItems( function(filename) {
-            return expr.test(filename);
-        });
-
+	function search(event) {
+        var expr = new RegExp($('#file-list-filter').val(), 'i');
+    	
+        $('#file-list p').hide().filter(function(index) {
+            return expr.test($(this).attr('title'));
+        }).show();
+    
         event.preventDefault();
-    });
+    }
+	
+    $('#file-list-find-button').click(search);
+	$('#file-list-filter').bind('keyup change DOMAttrModified', search);
+		
+    var defaultOptions = {
+        panels: [
+        {
+            name: 'htmleditor',
+            ratio: 0.5
+        },
 
-    $('#file-list-reset-button').click(function(event)
-    {
-        $('#file-list').filterItems();
-        event.preventDefault();
-    });
+        {
+            name: 'gallery',
+            ratio: 0.5
+        }
+        ],
+        recentFiles: [],
+        lastUpdate: 0
+    };
+    
+	var options = null;
+    try {
+        var cookie = $.cookie('options');
+        options = $.secureEvalJSON(cookie);
+        if (!options) {
+            options = defaultOptions;
+        }
+    } catch (e) {    
+        options = defaultOptions;
+    };
+	
+	$.each(options.recentFiles, function(index) {
+		var fileId = options.recentFiles[index].fileId;
+		$('#recent-file-list ul').append('<li><a href="{% url editor_base %}'+fileId+'">' + fileId + '</a></li>');
+	});
 });
 </script>
 {% endblock extrahead %}
@@ -38,17 +65,26 @@ $(function() {
     </p>
     </form>
     <div id="file-list">
+    {% load explorer_tags %}
     {% for file in files %}
-    <p title="{{file}}"><a href="{% url editor_view file %}">{{ file }}</a></p>
+    <p title="{{file|bookname}}"><a href="{% url editor_view file %}">{{ file|bookname }}</a></p>
     {% endfor %}
     </div>
 </div>
 
+<div id="recent-file-list">
+	<h2>Ostatnio oglądane pliki:</h2>
+	<ul>
+	</ul>
+</div>
+
 {% if perms.explorer.can_add_files %}
 <div class="upload-file-widget">
 <h2>Dodaj nowy utwór</h2>
 <form action="{% url file_upload %}" method="POST" enctype="multipart/form-data">
-    {{ bookform.as_p }}
+    <p><label>{{bookform.file.label}}: {{ bookform.file }}</label></p>
+    <p><label>{{bookform.bookname.label}}: {{bookform.bookname}}</label></p>
+    <p><label>{{bookform.autoxml}} {{bookform.autoxml.label}}</label></p>
     <p><button type="submit">Dodaj książkę</button></p>
 </form>
 </div>