X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/12d6c8f9c5b3edfe3c86a0a3b3ca1adcec706668..b5f8d214ba00903379f8716ef563f19743a120b6:/redakcja/static/js/button_scripts.js diff --git a/redakcja/static/js/button_scripts.js b/redakcja/static/js/button_scripts.js index de3b5ee9..c3275938 100644 --- a/redakcja/static/js/button_scripts.js +++ b/redakcja/static/js/button_scripts.js @@ -114,7 +114,6 @@ function ScriptletCenter() }; }); - var partial = true; if(!text) done(text, move_forward); var changed = 0; @@ -155,7 +154,6 @@ function ScriptletCenter() }); if(!text) done(text, move_forward); - var original = text;$ nblck_each(exprs, function(expr, index) { $progress.html(600 + index); @@ -217,6 +215,45 @@ function ScriptletCenter() done(text, move_forward); }.bind(this); + + this.scriptlets['autotag'] = function(context, params, text, move_forward, done) + { + if(!text.match(/^\n+$/)) done(text, move_forward); + + function insert_done(output, mf) { + text += output; + } + + if (!params.split) params.split = 2; + if (!params.padding) params.padding = 3; + + chunks = text.replace(/^\n+|\n+$/, '').split(new RegExp("\\n{"+params.split+",}")); + text = text.match(/^\n+/); + if (!text) + text = ''; + padding = ''; + for(; params.padding; params.padding--) { + padding += "\n"; + } + + if (params.tag == 'strofa') + tagger = this.scriptlets['insert_stanza']; + else + tagger = this.scriptlets['insert_tag']; + + for (i in chunks) { + if (chunks[i]) { + if (params.tag == 'akap' && chunks[i].match(/^---/)) + tag = 'akap_dialog'; + else tag = params.tag; + tagger(context, {tag: tag}, chunks[i], 0, insert_done); + text += padding; + } + } + + done(text, move_forward); + }.bind(this); + } ScriptletCenter.prototype.callInteractive = function(opts) {