X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b3154a4f81c3a077d8e14ecc5a6826adb60f0548..2a77c384dc876f6924b94c557226d896597c0131:/project/templates/explorer/file_xml.html diff --git a/project/templates/explorer/file_xml.html b/project/templates/explorer/file_xml.html index 66e128de..bd022e9f 100644 --- a/project/templates/explorer/file_xml.html +++ b/project/templates/explorer/file_xml.html @@ -2,71 +2,63 @@ {% block extrahead %} <script src="/static/js/jquery.fieldselection.js" type="text/javascript" charset="utf-8"></script> - <script type="text/javascript" charset="utf-8"> - function aboveViewport(container, element, treshold) { - return $(container).offset().top >= $(element).offset().top + $(element).height() + treshold; - } - - function belowViewport(container, element, treshold) { - return $(container).offset().top + $(container).height() + treshold <= $(element).offset().top; - } - - var TRESHOLD = 600; - 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(); - - $('#images .image-box').each(function() { - if (aboveViewport(container, this, TRESHOLD)) { - $(this).html('loading...'); - } else if (belowViewport(container, this, TRESHOLD)) { - $(this).html('loading...'); - } else { - $(this).html('<img src="' + $(this).attr('src') + '" width="460" height="460"/>'); - } - }) - } - setTimeout(checkScroll, 2000); + <script src="/static/js/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script> + <script src="/static/js/codemirror/codemirror.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript" charset="utf-8"> + 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; + $('#images').data('lastScroll', -1000); }); }); + + var editor = CodeMirror.fromTextArea("id_text", { + parserfile: 'parsexml.js', + path: "/static/js/codemirror/", + stylesheet: "/static/css/xmlcolors.css", + parserConfig: {useHTMLKludges: false} + }); - setTimeout(checkScroll, 2000); + $('iframe').load(function() { + $($('iframe').contents()).scroll(function() { + var percentScrolled = $('body', this).scrollTop() / $('body', this).height(); + $('#images-wrap').scrollTop(percentScrolled * $('#images').height()); + }); + }) - $('#rozdzial-button').click(function(event) { - console.log($('#id_text').getSelection().text); - $('#id_text').replaceSelection('<rozdzial>' + $('#id_text').getSelection().text + '</rozdzial>', true); - event.preventDefault(); - }); + addEditorButton('utwór', function(text) { return '<utwor>' + text + '</utwor>'; }); + addEditorButton('akap', function(text) { return '<akap>' + text + '</akap>'; }); + + $('#images').lazyload('.image-box', {threshold: 600}); }); + </script> {% endblock extrahead %} -{% block breadcrumbs %}<a href="/">Platforma Redakcyjna</a> ⯠plik {{ hash }}{% endblock breadcrumbs %} +{% block breadcrumbs %}<a href="{% url file_list %}">Platforma Redakcyjna</a> ⯠plik {{ hash }}{% endblock breadcrumbs %} {% block maincontent %} <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"> </div></div> - <div id="images"> - <div class="image-box"> + <div id="images-wrap"> + <div id="images"> <p>Aby zobaczyÄ obrazki wybierz folder z obrazkami powyżej.</p> </div> </div> <form action="." method="post" accept-charset="utf-8"> - <a href="#" id="rozdzial-button">RodziaÅ</a> - {{ form.text }} - <p>Użytkownik: {{ form.user }} Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p> + {# <div id="buttons"></div> #} + <textarea id="id_text" name="text" style="width:50%; height:480px">{{ form.text.field.initial }}</textarea> + {{ 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 %}