From: Radek Czajka Date: Tue, 1 Apr 2025 13:36:13 +0000 (+0200) Subject: Minor editing improvements. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/8da57c41af2d69702bbc23c7a64adc6f102d2bcd?ds=sidebyside Minor editing improvements. --- diff --git a/src/redakcja/static/js/wiki/loader.js b/src/redakcja/static/js/wiki/loader.js index e9cf2b1a..adc2cb42 100644 --- a/src/redakcja/static/js/wiki/loader.js +++ b/src/redakcja/static/js/wiki/loader.js @@ -119,6 +119,17 @@ $(function() { CurrentDocument.active = new Date(); }); + $(window).keydown(function(e) { + if (e.ctrlKey || e.metaKey) { + switch (e.key) { + case 's': + e.preventDefault(); + $("#save-button").click(); + break; + } + } + }); + console.log("Fetching document's text"); $(document).bind('wlapi_document_changed', function(event, doc) { diff --git a/src/redakcja/static/js/wiki/view_editor_wysiwyg.js b/src/redakcja/static/js/wiki/view_editor_wysiwyg.js index 4a3cd6bd..3d4ca02c 100644 --- a/src/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/src/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -110,7 +110,7 @@ success: function(text){ var t = $(text); tag.replaceWith(t); - openForEdit(t); + openForEdit(t, trim=false); }, error: function(){ tag.remove(); @@ -405,7 +405,7 @@ } /* open edition window for selected fragment */ - function openForEdit($origin){ + function openForEdit($origin, trim=true){ var $box = null // annotations overlay their sub box - not their own box // @@ -515,7 +515,10 @@ element: source, stripOuter: true, success: function(text){ - let ttext = $.trim(text); + let ttext = text; + if (trim) { + ttext = ttext.trim(); + } $('textarea', $overlay).val(ttext); setTimeout(function(){ diff --git a/src/wiki/templates/wiki/document_details_base.html b/src/wiki/templates/wiki/document_details_base.html index 88f837c6..2ae83a54 100644 --- a/src/wiki/templates/wiki/document_details_base.html +++ b/src/wiki/templates/wiki/document_details_base.html @@ -67,7 +67,7 @@ {% trans "Version" %}: {% trans "Unknown" %} {% if not readonly %} - + {% trans "Save attempt in progress" %} {% trans "There is a newer version of this document!" %} {% endif %} diff --git a/src/wiki/templates/wiki/save_dialog.html b/src/wiki/templates/wiki/save_dialog.html index b1330455..18295132 100644 --- a/src/wiki/templates/wiki/save_dialog.html +++ b/src/wiki/templates/wiki/save_dialog.html @@ -26,34 +26,39 @@ - {% else %} -

- {{ forms.text_save.stage_completed.label }}: - {{ forms.text_save.stage_completed }} - {{ forms.text_save.stage_completed.help_text }} - -

- {% if can_pubmark %} -

- {{ forms.text_save.publishable.label_tag }}: - {{ forms.text_save.publishable }} - {{ forms.text_save.publishable.help_text }} - -

{% endif %} +

+ +
+ + + + {% if request.user.is_authenticated %} +
+
+ {{ forms.text_save.stage_completed.label }}: + {{ forms.text_save.stage_completed }} + {{ forms.text_save.stage_completed.help_text }} + +
+ {% if can_pubmark %} +
+ {{ forms.text_save.publishable.label_tag }} + {{ forms.text_save.publishable }} + {{ forms.text_save.publishable.help_text }} + +
{% endif %} +
+ + {% endif %} +
{% for f in forms.text_save.hidden_fields %} {{ f }} {% endfor %} -

- -

- - -