Dodanie komunikatów o błędach, gdy nie zostanie wpisana nazwa użytkownika lub opis...
[redakcja.git] / project / templates / explorer / file_xml.html
index 66e128d..08e42e4 100644 (file)
         var lastScroll = -1000;
                     
         function checkScroll() {
-            console.log('checkScroll', $('#images').scrollTop(), lastScroll);
-            
             if (Math.abs($('#images').scrollTop() - lastScroll) > 300) {
-                console.log('checking!');
-                
                 var container = $('#images');
                 lastScroll = container.scrollTop();
                 
             setTimeout(checkScroll, 2000);
         }
         
+        function addEditorButton(label, fn) {
+            $('<button type="button">' + label + '</button>').click(function(event) {
+                var text = $('#id_text').getSelection().text;
+                $('#id_text').replaceSelection(fn(text));
+                event.preventDefault();
+            }).appendTo('#buttons');
+        }
+        
         $(function() {
             $('#id_folders').change(function() {
                 $('#images').load('/images/' + $('#id_folders').val() + '/', function() {
                     lastScroll = -1000;
                 });
             });
+
+            addEditorButton('utwór', function(text) { return '<utwor>' + text + '</utwor>'; });
+            addEditorButton('akap', function(text) { return '<akap>' + text + '</akap>'; });
             
             setTimeout(checkScroll, 2000);
-            
-            $('#rozdzial-button').click(function(event) {
-                console.log($('#id_text').getSelection().text);
-                $('#id_text').replaceSelection('<rozdzial>' + $('#id_text').getSelection().text + '</rozdzial>', true);
-                event.preventDefault();
-            });
         });
     </script>
 {% endblock extrahead %}
     <div id="tabs"><a href="{% url file_xml hash %}" class="active">Źródło</a><a href="{% url file_html hash %}">HTML</a>    <div style="padding: 3px; margin-left: 10px">{{ image_folders_form.folders }}</div><div style="clear: both; height: 0; width: 0">&nbsp;</div></div>    
 
     <div id="images">
-        <div class="image-box">
-            <p>Aby zobaczyć obrazki wybierz folder z obrazkami powyżej.</p>
-        </div>
+        <p>Aby zobaczyć obrazki wybierz folder z obrazkami powyżej.</p>
     </div>
     <form action="." method="post" accept-charset="utf-8">
-        <a href="#" id="rozdzial-button">Rodział</a>
+        <div id="buttons"></div>
         {{ form.text }}
-        <p>Użytkownik: {{ form.user }} Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p>
+        {{ form.user.errors }}
+        <p>Użytkownik: {{ form.user }}</p> 
+        {{ form.commit_message.errors }}
+        <p>Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p>
     </form>
 {% endblock maincontent %}