Usunięcie nieużywanych już paneli.
authorzuber <marek@stepniowski.com>
Wed, 30 Sep 2009 10:31:46 +0000 (12:31 +0200)
committerzuber <marek@stepniowski.com>
Wed, 30 Sep 2009 10:31:46 +0000 (12:31 +0200)
project/templates/explorer/panels/dceditor.html [deleted file]
project/templates/explorer/panels/gallery.html [deleted file]
project/templates/explorer/panels/htmleditor.html [deleted file]
project/templates/explorer/panels/parse_error.html [deleted file]
project/templates/explorer/panels/xmleditor.html [deleted file]

diff --git a/project/templates/explorer/panels/dceditor.html b/project/templates/explorer/panels/dceditor.html
deleted file mode 100644 (file)
index 215f54f..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<div class="panel-dceditor">
-    <form action="{% url file_dc fileid %}" method="post" accept-charset="utf-8">
-        {{ form.as_p }}
-<!--    <p><input type="submit" value="Continue &rarr;"/></p> -->
-    </form>
-</div>
-<script type="text/javascript" charset="utf-8">
-panel_hooks = { 
-
-       load: function() {
-               var self = this;
-               self.form = $('form', self.contentDiv);
-               $("input[type='text'], textarea", self.form).each(function() {
-                       $(this).change(function(event) {
-                               self.contentDiv.trigger('panel:contentChanged', self);
-                       });
-               });
-                self._endload();       
-       },
-       saveInfo: function(saveInfo) {
-               var myInfo = {
-                       url: "{% url file_dc fileid %}",
-                       postData: $('form', this.contentDiv).serialize() 
-               };
-               $.extend(saveInfo, myInfo);
-       }
-};
-</script>
diff --git a/project/templates/explorer/panels/gallery.html b/project/templates/explorer/panels/gallery.html
deleted file mode 100644 (file)
index 0d66972..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<div class="toolbar" style="height: 24px">
-    {{ form.folders }}
-</div>
-
-<div class="images-wrap" style="position: absolute; top: 24px; left:0px; right:0px; bottom: 0px;">
-    <div class="images"><!-- To jest div na obrazki, które są wstawiane później --></div>
-</div>
-<script type="text/javascript" charset="utf-8">
-
-panel_hooks = {
-    load: function() {
-        var contentDiv = this.contentDiv;
-        $('select[name=folders]', contentDiv).change(function() {
-            var select = this;
-            $('.images', contentDiv).fadeOut('slow', function() { 
-                $(this).html('').load('{% url folder_image_ajax %}' + $(select).val() + '/',  function() {
-                    $('.images', contentDiv).fadeIn('slow');
-                    $('.images-wrap', contentDiv).data('lazyload:lastCheckedScrollTop', -10000);
-                    $('.image-box').click(function() {
-                        var src = $('img', $(this)).attr('src');
-                        var idx = src.lastIndexOf('/');
-                        var bigSrc = src.substring(0, idx) + '/big' + src.substring(idx, src.length);
-                        var zoom = $('<div style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: scroll">'
-                            + '<img src="' + bigSrc + '" />'
-                            + '</div>').click(function() {
-                                $(this).remove();
-                            })
-                        zoom.appendTo(contentDiv);
-                    });
-                });
-            })
-        });
-        
-        $('.images-wrap', contentDiv).lazyload('.image-box', 
-            {threshold: 640 * 10, scrollTreshold: 640 * 5}
-        );
-        
-        this._endload();
-    },
-    refresh: function() {
-        return true; // gallery is always fresh
-    },
-    dirty: function() {
-        return true; // and it doesn't get dirty 
-    }
-};
-</script>
diff --git a/project/templates/explorer/panels/htmleditor.html b/project/templates/explorer/panels/htmleditor.html
deleted file mode 100644 (file)
index d27d8cc..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-{% load toolbar_tags %}
-{% toolbar toolbar_groups toolbar_extra_group %}
-
-{{ html|safe }}
-
-<script type="text/javascript" charset="utf-8">
-panel_hooks = {
-       load: function() {
-            this._endload();   
-       },
-       unload: function() {
-
-       }
-};
-</script>
diff --git a/project/templates/explorer/panels/parse_error.html b/project/templates/explorer/panels/parse_error.html
deleted file mode 100644 (file)
index 027e8b4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<h2>Podczas otwierania panelu "{{ panel_name }}" wystąpił przetwarzania pliku źródłowego:</h2>
-<p><b>{{ exception_type }}</b></p>
-<p>{{ exception.message }}</p>
-
-<button id="try-again-button" type="button">Try Again</button>
-
-<script type="text/javascript" charset="utf-8">
-panel_hooks = {
-    load: function() {
-        var self = this;
-
-        $('#try-again-button').click(function() {
-            self.load(self.current_url);
-        });      
-    },
-    refresh: function() {
-        return true; // error page is static
-    },
-    dirty: function() {
-        return true; // and it doesn't get dirty 
-    }
-};
-</script>
diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html
deleted file mode 100644 (file)
index 74a6877..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-{% load toolbar_tags %}
-{% toolbar toolbar_groups toolbar_extra_group %}
-
-<div class="iframe-container" style="position: absolute; top: 40px; left:0px; right:0px; bottom: 0px;">
-       <textarea name="text">{{ text }}</textarea>
-</div>
-
-<script type="text/javascript" charset="utf-8">
-panel_hooks = {
-       load: function () {
-               var self = this;
-               var panel = self.contentDiv;
-
-        var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
-       $('textarea', panel).attr('id', textareaId);
-
-       var texteditor = CodeMirror.fromTextArea(textareaId, {            
-            parserfile: 'parsexml.js',
-            path: "{{STATIC_URL}}js/lib/codemirror/",
-            width: 'auto',
-            stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
-            parserConfig: {useHTMLKludges: false},
-            textWrapping: false,
-            lineNumbers: true,
-            onChange: function() {
-               self.fireEvent('contentChanged');
-            },
-            initCallback: function(editor) {
-                // Editor is loaded
-                // Buttons are connected
-                // register callbacks for actions
-                texteditor.grabKeys(
-                    $.fbind(self, self.hotkeyPressed),
-                    $.fbind(self, self.isHotkey) );
-                
-            }
-        })
-
-        $('.CodeMirror-content-wrapper').css({
-            width: '100%', height: '100%' });
-                    
-        this.texteditor = texteditor;
-        self._endload();       
-    },
-
-       unload: function() { 
-               this.texteditor = null;
-       },
-
-
-       //refresh: function() { }, // no support for refresh
-
-       saveInfo: function(saveInfo) {
-               var myInfo = {
-                       url: "{% url file_xml fileid %}",
-                       postData: {
-                               content: this.texteditor.getCode()
-                       } 
-               };
-               $.extend(saveInfo, myInfo);
-       },
-
-        toolbarResized: function() {
-            $('.iframe-container', this.contentDiv).css('top',
-                    $('.toolbar', this.contentDiv).outerHeight() );
-        }
-};
-
-</script>