+++ /dev/null
-<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 →"/></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>
+++ /dev/null
-<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>
+++ /dev/null
-{% 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>
+++ /dev/null
-<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>
+++ /dev/null
-{% 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>