from explorer import forms
from api.models import PullRequest
-
+from bookthemes.models import Theme
def ajax_login_required(view):
"""Similar ro @login_required, but instead of redirect,
'fileid': path,
'euser': user,
'gallery_from': gallery_form,
+ 'availble_themes': ({'first_letter': t.name[0].upper(), 'name': t.name} for t in Theme.objects.order_by('name')),
}, context_instance=RequestContext(request))
#
'filebrowser',
'explorer',
'toolbar',
+ 'bookthemes',
'api',
)
z-index: 0;
font-size: 10pt;
background-color: ivory;
+}
+
+/*/
+/*
+/* Theme edit dialog
+/*
+/*/
+#theme-edit-dialog {
+ left: 5%;
+ right: 5%;
+ top: 5%;
+ bottom: 5%;
+ padding: 0em;
+}
+
+#theme-edit-dialog *.data-area {
+ position: absolute;
+
+ top: 0px;
+ left: 0px;
+ right: 0px;
+ bottom: 32px;
+
+ padding: 0px;
+ background-color: #fafafa;
+
+ overflow-y: scroll;
+}
+
+#theme-edit-dialog *.action-area {
+ position: absolute;
+ height: 30px;
+ line-height: 20px;
+
+ left: 5px;
+ right: 5px;
+ bottom: 0px;
+
+ padding: 0px;
+ margin: 0px;
+
+ border-top: 1px solid black;
+ background-color: #fafafa;
+}
+
+#theme-edit-dialog *.action-area * {
+ vertical-align: baseline;
+}
+
+#theme-edit-dialog .theme-multi-list {
+ padding: 0.5em 1em;
+}
+
+#theme-edit-dialog .theme-multi-list .unknown-themes {
+ display: none;
+}
+
+#theme-edit-dialog .theme-multi-list .letter-heading {
+ font-size: 150%;
+ text-align: left;
+ border-bottom: 1px solid black;
+ padding-top: 1em;
+}
+
+#theme-edit-dialog .theme-mutli-list input:checked + label {
+ font-weight: bold;
}
\ No newline at end of file
color: #333;\r
border: 1px solid black;\r
padding: 1em;\r
+ z-index: 10000;\r
}\r
\r
.jqmOverlay { background-color: #000; }\r
this.splitView = new SplitView('#splitview', doc);
// Inicjalizacja okien jQuery Modal
- $('#commit-dialog', this.element).
- jqm({
- modal: true,
- onShow: this.loadRelatedIssues.bind(this)
- });
-
- $('#commit-dialog-cancel-button', this.element).click(function() {
- $('#commit-dialog-error-empty-message').hide();
- $('#commit-dialog').jqmHide();
- });
-
- $('#commit-dialog-save-button').click(function(event, data)
- {
- if ($('#commit-dialog-message').val().match(/^\s*$/)) {
- $('#commit-dialog-error-empty-message').fadeIn();
- } else {
- $('#commit-dialog-error-empty-message').hide();
- $('#commit-dialog').jqmHide();
-
- var message = $('#commit-dialog-message').val();
- $('#commit-dialog-related-issues input:checked')
- .each(function() {
- message += ' refs #' + $(this).val();
- });
-
- var ctx = $('#commit-dialog').data('context');
- console.log("COMMIT APROVED", ctx);
- ctx.callback(message);
- }
- return false;
- });
+ this.commitDialog = new CommitDialog( $('#commit-dialog') );
// $('#split-dialog').jqm({
this.model.saveDirtyContentModel();
},
- commit: function(event) {
- $('#commit-dialog', this.element).jqmShow({
- callback: this.doCommit.bind(this)
- });
+ commit: function(event)
+ {
+ this.commitDialog.show( this.doCommit.bind(this) )
+
},
doCommit: function(message) {
},
merge: function(event) {
- $('#commit-dialog', this.element).jqmShow({
- callback: this.doMerge.bind(this)
- });
+ this.commitDialog.show( this.doMerge.bind(this) )
},
doMerge: function(message) {
this.model.merge(message);
},
- loadRelatedIssues: function(hash) {
+ /*loadRelatedIssues: function(hash) {
var self = this;
var c = $('#commit-dialog-related-issues');
});
hash.w.show();
- },
+ }, */
modelStateChanged: function(property, value) {
// Uaktualnia stan przycisków
this._super();
}
});
+
+
+var AbstractDialog = Class.extend({
+ _className: 'AbstractDialog',
+
+ init: function($element, modal, overlay)
+ {
+ this.$window = $element;
+ this.$window.jqm({
+ modal: modal || true,
+ overlay: overlay || 80,
+ // toTop: true,
+ onShow: this.onShow.bind(this),
+ onHide: this.onHide.bind(this)
+ });
+
+ this.reset();
+
+ $('.cancel-button', this.$window).click(this.cancel.bind(this));
+ $('.save-button', this.$window).click(this.accept.bind(this));
+ },
+
+ onShow: function(hash)
+ {
+ hash.w.show();
+ },
+
+ onHide: function(hash)
+ {
+ hash.w.hide();
+ hash.o.remove();
+ },
+
+ reset: function() {
+ this.acceptCallback = null;
+ this.cancelCallback = null;
+ this.errors = [];
+
+ $('.error-messages-box', this.$window).html('').hide();
+
+ this.userData = {};
+ },
+
+ show: function(acall, ccall) {
+ this.acceptCallback = acall;
+ this.cancelCallback = ccall;
+
+ // do the show
+ this.$window.jqmShow();
+ },
+
+ cancel: function() {
+ this.$window.jqmHide();
+ if(this.cancelCallback) this.cancelCallback(this);
+ this.reset();
+ },
+
+ accept: function()
+ {
+ this.errors = [];
+
+ if(!this.validate()) {
+ this.displayErrors();
+ return;
+ }
+
+ this.$window.jqmHide();
+
+ if(this.acceptCallback)
+ this.acceptCallback(this);
+
+ this.reset();
+ },
+
+ validate: function() {
+ return true;
+ },
+
+ displayErrors: function() {
+ var errorDiv = $('.error-messages-box', this.$window);
+ if(errorDiv.length > 0) {
+ var html = '';
+ $.each(this.errors, function() {
+ html += '<li>' + this + '</li>';
+ });
+ errorDiv.html('<ul>' + html + '</ul>');
+ errorDiv.show();
+ console.log('Validation errors:', html);
+ }
+ else
+ throw this.errors;
+ }
+
+});
+
+var CommitDialog = AbstractDialog.extend({
+ _className: 'CommitDialog',
+
+ validate: function()
+ {
+ var message = $('textarea.commit-message', this.$window).val();
+
+ if( message.match(/^\s*$/) ) {
+ this.errors.push("Message can't be empty.");
+ return false;
+ }
+
+ // append refs
+ $('.related-issues-fields input:checked', this.$window).each(function() {
+ message += ' refs #' + $(this).val();
+ });
+
+ this.userData.message = message;
+ return this._super();
+ }
+ });
+
+
\ No newline at end of file
init: function(element, model, parent, template) {
var submodel = model.contentModels['html'];
this._super(element, submodel, template);
- this.parent = parent;
+ this.parent = parent;
+
+ this.themeEditor = new ThemeEditDialog( $('#theme-edit-dialog') );
this.model
.addObserver(this, 'data', this.modelDataChanged.bind(this))
console.log( this.model.serializer.serializeToString(this.model.get('data')) );
}, */
- renderPart: function($e, html) {
- // exceptions aren't good, but I don't have a better idea right now
- if($e.attr('x-annotation-box')) {
- // replace the whole annotation
- var $p = $e.parent();
- $p.html(html);
- var $box = $('*[x-annotation-box]', $p);
- $box.append( this.$menuTemplate.clone() );
-
- if(this.currentFocused && $p[0] == this.currentFocused[0])
- {
- this.currentFocused = $p;
- $box.css({
- 'display': 'block'
- });
- }
-
- return;
- }
-
- $e.html(html);
- $e.append( this.$menuTemplate.clone() );
- },
-
reload: function() {
this.model.load(true);
},
* - this greatly simplifies the whole click check
*/
- if( $e.hasClass('motyw') )
- {
- console.log($e);
+ if( $e.hasClass('motyw'))
+ {
this.selectTheme($e.attr('theme-class'));
return false;
}
+
+ if( $e.hasClass('theme-text-list') )
+ {
+ this.selectTheme($e.parent().attr('theme-class'));
+ return false;
+ }
/* other buttons */
try {
+ var editable = this.editableFor($e);
+
if($e.hasClass('delete-button'))
- this.deleteElement( this.editableFor($e) );
+ this.deleteElement(editable);
if($e.hasClass('edit-button'))
- this.openForEdit( this.editableFor($e) );
+ {
+ if( editable.hasClass('motyw') )
+ this.editTheme(editable);
+ else
+ this.openForEdit(editable);
+ }
if($e.hasClass('accept-button'))
- this.closeWithSave( this.editableFor($e) );
+ this.closeWithSave(editable);
if($e.hasClass('reject-button'))
- this.closeWithoutSave( this.editableFor($e) );
+ this.closeWithoutSave(editable);
+
} catch(e) {
messageCenter.addMessage('error', "wlsave", 'Błąd:' + e.toString());
}
return true;
},
- addTheme: function()
+
+ editTheme: function($element)
+ {
+ var themeTextSpan = $('.theme-text-list', $element);
+ this.themeEditor.setFromString( themeTextSpan.text() );
+
+ function _editThemeFinish(dialog) {
+ themeTextSpan.text( dialog.userData.themes.join(', ') );
+ };
+
+ this.themeEditor.show(_editThemeFinish);
+ },
+
+ //
+ // Special stuff for themes
+ //
+ addTheme: function()
{
var selection = window.getSelection();
var n = selection.rangeCount;
console.log("Range count:", n);
-
if(n == 0) {
window.alert("Nie zaznaczono żadnego obszaru");
return false;
return false;
}
- // from this point, we will assume that the ranges are disjoint
- for(var i=0; i < n; i++)
- {
- var range = selection.getRangeAt(i);
- console.log(i, range.startContainer, range.endContainer);
-
- // verify if the start/end points make even sense -
- // they must be inside a x-node (otherwise they will be discarded)
- // and the x-node must be a main text
- if(! this.verifyThemeInsertPoint(range.startContainer) ) {
- window.alert("Motyw nie może się zaczynać w tym miejscu.");
- return false;
- }
+ // remember the selected range
+ var range = selection.getRangeAt(0);
+ console.log(range.startContainer, range.endContainer);
- if(! this.verifyThemeInsertPoint(range.endContainer) ) {
- window.alert("Motyw nie może się kończyć w tym miejscu.");
- return false;
- }
+ // verify if the start/end points make even sense -
+ // they must be inside a x-node (otherwise they will be discarded)
+ // and the x-node must be a main text
+ if(! this.verifyThemeInsertPoint(range.startContainer) ) {
+ window.alert("Motyw nie może się zaczynać w tym miejscu.");
+ return false;
+ }
-
+ if(! this.verifyThemeInsertPoint(range.endContainer) ) {
+ window.alert("Motyw nie może się kończyć w tym miejscu.");
+ return false;
+ }
+
+ function _addThemeFinish(dialog)
+ {
var date = (new Date()).getTime();
var random = Math.floor(4000000000*Math.random());
var id = (''+date) + '-' + (''+random);
epoint.setStart(range.endContainer, range.endOffset);
var mtag, btag, etag, errors;
+ var themesStr = dialog.userData.themes.join(', ');
- // insert theme-ref
+ // insert theme-ref
mtag = $('<span></span>');
spoint.insertNode(mtag[0]);
- errors = this.model.updateWithWLML(mtag, '<motyw id="m'+id+'">Nowy Motyw</motyw>');
+ errors = this.model.updateWithWLML(mtag, '<motyw id="m'+id+'">'+themesStr+'</motyw>');
+
if(errors) {
messageCenter.addMessage('error', null, 'Błąd przy dodawaniu motywu :' + errors);
return false;
return false;
}
-
etag = $('<span></span>');
epoint.insertNode(etag[0]);
result = this.model.updateWithWLML(etag, '<end id="e'+id+'" />');
messageCenter.addMessage('error', null, 'Błąd przy dodawaniu motywu :' + errors);
return false;
}
- }
- selection.removeAllRanges();
- },
+ selection.removeAllRanges();
+ return true;
+ };
+ // show the modal
+ this.themeEditor.setFromString('');
+ this.themeEditor.show(_addThemeFinish.bind(this));
+ },
+
selectTheme: function(themeId)
{
var selection = window.getSelection();
}
});
+var ThemeEditDialog = AbstractDialog.extend({
+
+ validate: function()
+ {
+ var active = $('input.theme-list-item:checked', this.$window);
+
+ if(active.length < 1) {
+ this.errors.push("You must select at least one theme.");
+ return false;
+ }
+
+ console.log("Active:", active);
+ this.userData.themes = $.makeArray(active.map(function() { return this.value; }) );
+ console.log('After validate:', this.userData);
+ return this._super();
+ },
+
+ setFromString: function(string)
+ {
+ var $unmatchedList = $('tbody.unknown-themes', this.$window);
+
+ $("tr:not(.header)", $unmatchedList).remove();
+ $unmatchedList.hide();
+
+ $('input.theme-list-item', this.$window).removeAttr('checked');
+
+ var unmatched = [];
+
+ $.each(string.split(','), function() {
+ var name = $.trim(this);
+ if(!name) return;
+
+ console.log('Selecting:', name);
+ var checkbox = $("input.theme-list-item[value='"+name+"']", this.$window);
+
+ if(checkbox.length > 0)
+ checkbox.attr('checked', 'checked');
+ else
+ unmatched.push(name);
+ });
+
+ if(unmatched.length > 0)
+ {
+ $.each(unmatched, function() {
+ $('<tr><td colspan="5"><label><input type="checkbox"'+
+ ' checked="checked" class="theme-list-item" value="'
+ + this+ '" />"'+this+'"</label></td></tr>').
+ appendTo($unmatchedList);
+ });
+
+ $unmatchedList.show();
+ }
+ },
+
+ displayErrors: function() {
+ var errorP = $('.error-messages-inline-box', this.$window);
+ if(errorP.length > 0) {
+ var html = '';
+ $.each(this.errors, function() {
+ html += '<span>' + this + '</span>';
+ });
+ errorP.html(html);
+ errorP.show();
+ console.log('Validation errors:', html);
+ }
+ else
+ this._super();
+ },
+
+ reset: function()
+ {
+ this._super();
+ $('.error-messages-inline-box', this.$window).html('').hide();
+ }
+
+ });
+
// Register view
panels['html'] = HTMLView;
\ No newline at end of file
<xsl:template match="@*" priority="0" />\r
\r
<!-- Specjalne reguły dla przypisów -->\r
- <xsl:template match="*[@x-annotation-box]">\r
+ <xsl:template match="*[@x-annotation-box]|*[@class='theme-text-list']">\r
<xsl:apply-templates select="node()" />\r
</xsl:template>\r
\r
<xsl:value-of select="substring-after(@id, 'm')" />
</xsl:attribute>
<xsl:call-template name="context-menu" />
- <xsl:value-of select="." />
+ <span class="theme-text-list"><xsl:value-of select="." /></span>
</span>
</xsl:template>
</div>
{% endif %}
</div>
- </script>
+ </script>
<script type="text/html" charset="utf-8" id="button-toolbar-view-template">
<div class="buttontoolbarview panel-toolbar">
<div id="commit-dialog" class="jqmWindow" style="display:none">
<form action="" method="POST">
<label for="message">Commit message:</label>
- <textarea cols="60" rows="10" name="message" id="commit-dialog-message"></textarea>
- <p id="commit-dialog-error-empty-message">Wiadomość nie może być pusta.</p>
- <fieldset id="commit-dialog-related-issues" ui:ajax-src="{{REDMINE_URL}}/publications/issues/{{fileid}}">
+
+ <textarea cols="60" rows="10" name="message" class="commit-message"></textarea>
+ <div class="error-messages-box"> </div>
+
+ <fieldset class="related-issues-fields" >
<legend>Related issues</legend>
<div class="loading-box" style="display: none;">
<p>Loading related issues...</p>
<div class="container-box">No related issues.</div>
</fieldset>
<p>
- <input type="button" value="Save" id="commit-dialog-save-button" />
- <input type="reset" value="Cancel" id="commit-dialog-cancel-button" />
+ <input type="button" value="Save" class="save-button" />
+ <input type="button" value="Cancel" class="cancel-button" />
</p>
</form>
</div>
+
+ <div id="theme-edit-dialog" class="jqmWindow" style="display:none">
+ <div class="data-area">
+ <table class="theme-multi-list">
+ <tbody class="unknown-themes">
+ <tr class="header"><th colspan="5">Unknown themes</th></tr>
+ </tbody>
+
+ <tbody>
+ <tr><th colspan="5">Themes in the database</th></tr>
+ {% regroup availble_themes by first_letter as grouped_themes %}
+
+ {% for letter in grouped_themes %}
+ <tr><th colspan="5" class="letter-heading">{{ letter.grouper }}</th></tr>
+
+ {% for theme in letter.list %}
+ {% if forloop.first %}
+ <tr>
+ {% else %}
+ {% if forloop.counter0|divisibleby:"5" %}
+ </tr><tr>
+ {% endif %}
+ {% endif %}
+ <td width="18%"><label><input class="theme-list-item" type="checkbox" value="{{theme.name}}"/>{{ theme.name }}</label></td>
+ {% if forloop.last %}
+ </tr>
+ {% endif %}
+ {% endfor %}
+
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
+ <p class="action-area">
+ <input type="button" value="Accept" class="save-button" />
+ <input type="button" value="Cancel" class="cancel-button" />
+ <span class="error-messages-inline-box"></span>
+ </p>
+ </div>
<div id="split-dialog" class="jqmWindow" style="display:none">
<div class="container-box"> </div>
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
url(r'^admin/(.*)', admin.site.root),
-
+ # Theme database
+ url(r'themes/', include('bookthemes.urls')),
# Our über-restful api
url(r'^api/', include('api.urls')),