Dodanie możliwości ustalania skrótów klawiszowych (z CTRL) dla przycisków wstawiający...
authorzuber <marek@stepniowski.com>
Tue, 18 Aug 2009 15:03:04 +0000 (17:03 +0200)
committerzuber <marek@stepniowski.com>
Tue, 18 Aug 2009 15:03:04 +0000 (17:03 +0200)
project/static/js/codemirror/editor.js
project/templates/explorer/file_xml.html

index b8b7abc..757d3ea 100644 (file)
@@ -656,7 +656,7 @@ var Editor = (function(){
     // Intercept enter and tab, and assign their new functions.
     keyDown: function(event) {
       if (this.frozen == "leave") this.frozen = null;
-      if (this.frozen && (!this.keyFilter || this.keyFilter(event.keyCode))) {
+      if (this.frozen && (!this.keyFilter || this.keyFilter(event))) {
         event.stop();
         this.frozen(event);
         return;
@@ -734,7 +734,7 @@ var Editor = (function(){
       // keydown event does not prevent the associated keypress event
       // from happening, so we have to cancel enter and tab again
       // here.
-      if ((this.frozen && (!this.keyFilter || this.keyFilter(event.keyCode))) ||
+      if ((this.frozen && (!this.keyFilter || this.keyFilter(event))) ||
           event.code == 13 || (event.code == 9 && this.options.tabMode != "default") ||
           (event.keyCode == 32 && event.shiftKey && this.options.tabMode == "default"))
         event.stop();
index e9cd85c..c23ad41 100644 (file)
@@ -5,15 +5,7 @@
     <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 src="/static/js/jquery.autoscroll.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');
-        }
-        
+    <script type="text/javascript" charset="utf-8">        
         $(function() {
             $('#id_folders').change(function() {
                 $('#images').load('/images/' + $('#id_folders').val() + '/', function() {
                 parserfile: 'parsexml.js',
                 path: "/static/js/codemirror/",
                 stylesheet: "/static/css/xmlcolors.css",
-                parserConfig: {useHTMLKludges: false}
+                parserConfig: {useHTMLKludges: false},
+                initCallback: function() {
+                    $('#images').autoscroll('iframe');
+                    $('.toggleAutoscroll').toggle(function() {
+                        $(this).html('Synchronizuj przewijanie');
+                        $('#images').disableAutoscroll();
+                    }, function() {
+                        $(this).html('Nie synchronizuj przewijania');
+                        $('#images').enableAutoscroll();
+                    })
+
+                    keys = {}
+                    
+                    function addEditorButton(editor, label, keyCode, fn) {
+                        var handler = function() {
+                            var text = editor.selection();
+                            editor.replaceSelection(fn(text));
+                        }
+                        
+                        keys[keyCode] = handler;
+                        
+                        $('<button type="button">' + label + '</button>').click(function(event) {
+                            event.preventDefault();
+                            handler();
+                        }).appendTo('#buttons');
+                    }
+                    
+                    addEditorButton(editor, 'utwór', 65, function(text) { return '<utwor>' + text + '</utwor>'; });
+                    addEditorButton(editor, 'akap', 83, function(text) { return '<akap>' + text + '</akap>'; });
+                    
+                    editor.grabKeys(function(event) { 
+                        // console.log('handle', event, event.keyCode)
+                        if (keys[event.keyCode]) {
+                            keys[event.keyCode]();
+                        }
+                    }, function(event) { return event.ctrlKey && event.keyCode != 17; });
+
+                    resizePanels();
+                }
             });
-            
-            $('iframe').load(function() {
-                $('#images').autoscroll('iframe');
-                $('.toggleAutoscroll').toggle(function() {
-                    $(this).html('Synchronizuj przewijanie');
-                    $('#images').disableAutoscroll();
-                }, function() {
-                    $(this).html('Nie synchronizuj przewijania');
-                    $('#images').enableAutoscroll();
-                })
-                setTimeout(function() {resizePanels();}, 10);
-            })
-            
-            addEditorButton('utwór', function(text) { return '<utwor>' + text + '</utwor>'; });
-            addEditorButton('akap', function(text) { return '<akap>' + text + '</akap>'; });
-            
+
             $('#images-wrap').lazyload('.image-box', {threshold: 640 * 10, scrollTreshold: 640 * 5});
         });
 
 {% 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="clear: both; height: 0; width: 0">&nbsp;</div></div>    
+    <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="float: left" id="buttons"></div>
+        <div style="clear: both; height: 0; width: 0">&nbsp;</div>
+    </div>
     
     <form action="." method="post" accept-charset="utf-8">
         <div id="panels">