3 /* Show theme to the user */
4 function selectTheme(themeId){
5 var selection = window.getSelection();
6 selection.removeAllRanges();
8 var range = document.createRange();
9 var s = $(".motyw[theme-class='" + themeId + "']")[0];
10 var e = $(".end[theme-class='" + themeId + "']")[0];
13 range.setStartAfter(s);
14 range.setEndBefore(e);
15 selection.addRange(range);
19 /* Verify insertion port for annotation or theme */
20 function verifyTagInsertPoint(node){
21 if (node.nodeType == 3) { // Text Node
22 node = node.parentNode;
25 if (node.nodeType != 1) {
30 var xtype = node.attr('x-node');
32 if (!xtype || (xtype.search(':') >= 0) ||
39 // don't allow themes inside annotations
40 if (node.is('*[x-annotation-box] *'))
46 /* Convert HTML fragment to plaintext */
47 var ANNOT_FORBIDDEN = ['pt', 'pa', 'pr', 'pe', 'begin', 'end', 'motyw'];
49 function html2plainText(fragment){
52 $(fragment.childNodes).each(function(){
53 if (this.nodeType == 3) // textNode
54 text += this.nodeValue;
56 if (this.nodeType == 1 &&
57 $.inArray($(this).attr('x-node'), ANNOT_FORBIDDEN) == -1) {
58 text += html2plainText(this);
67 /* Insert annotation using current selection */
68 function addAnnotation(){
69 var selection = window.getSelection();
70 var n = selection.rangeCount;
73 window.alert("Nie zaznaczono żadnego obszaru");
77 // for now allow only 1 range
79 window.alert("Zaznacz jeden obszar");
83 // remember the selected range
84 var range = selection.getRangeAt(0);
86 if (!verifyTagInsertPoint(range.endContainer)) {
87 window.alert("Nie można wstawić w to miejsce przypisu.");
91 // BUG #273 - selected text can contain themes, which should be omitted from
93 var text = html2plainText(range.cloneContents());
94 var tag = $('<span></span>');
95 range.collapse(false);
96 range.insertNode(tag[0]);
99 xml: '<pe><slowo_obce>' + text + '</slowo_obce> --- </pe>',
100 success: function(text){
107 alert('Błąd przy dodawaniu przypisu:' + errors);
113 /* Insert theme using current selection */
116 var selection = window.getSelection();
117 var n = selection.rangeCount;
120 window.alert("Nie zaznaczono żadnego obszaru");
124 // for now allow only 1 range
126 window.alert("Zaznacz jeden obszar.");
131 // remember the selected range
132 var range = selection.getRangeAt(0);
135 if ($(range.startContainer).is('.html-editarea') ||
136 $(range.endContainer).is('.html-editarea')) {
137 window.alert("Motywy można oznaczać tylko na tekście nie otwartym do edycji. \n Zamknij edytowany fragment i spróbuj ponownie.");
141 // verify if the start/end points make even sense -
142 // they must be inside a x-node (otherwise they will be discarded)
143 // and the x-node must be a main text
144 if (!verifyTagInsertPoint(range.startContainer)) {
145 window.alert("Motyw nie może się zaczynać w tym miejscu.");
149 if (!verifyTagInsertPoint(range.endContainer)) {
150 window.alert("Motyw nie może się kończyć w tym miejscu.");
154 var date = (new Date()).getTime();
155 var random = Math.floor(4000000000 * Math.random());
156 var id = ('' + date) + '-' + ('' + random);
158 var spoint = document.createRange();
159 var epoint = document.createRange();
161 spoint.setStart(range.startContainer, range.startOffset);
162 epoint.setStart(range.endContainer, range.endOffset);
164 var mtag, btag, etag, errors;
169 xml: '<end id="e' + id + '" />',
170 success: function(text){
171 etag = $('<span></span>');
172 epoint.insertNode(etag[0]);
173 etag.replaceWith(text);
175 xml: '<motyw id="m' + id + '"></motyw>',
176 success: function(text){
177 mtag = $('<span></span>');
178 spoint.insertNode(mtag[0]);
179 mtag.replaceWith(text);
181 xml: '<begin id="b' + id + '" />',
182 success: function(text){
183 btag = $('<span></span>');
184 spoint.insertNode(btag[0])
185 btag.replaceWith(text);
186 selection.removeAllRanges();
187 openForEdit($('.motyw[theme-class=' + id + ']'));
196 function addSymbol() {
197 if($('div.html-editarea textarea')[0]) {
198 var specialCharsContainer = $("<div id='specialCharsContainer'><a href='#' id='specialCharsClose'>Zamknij</a><table id='tableSpecialChars' style='width: 600px;'></table></div>");
199 var specialChars = ['Ą','ą','Ć','ć','Ę','ę','Ł','ł','Ń','ń','Ó','ó','Ś','ś','Ż','ż','Ź','ź','Á','á','À','à',
200 'Â','â','Ä','ä','Å','å','Ā','ā','Ă','ă','Ã','ã',
201 'Æ','æ','Ç','ç','Č','č','Ċ','ċ','Ď','ď','É','é','È','è',
202 'Ê','ê','Ë','ë','Ē','ē','Ě','ě','Ġ','ġ','Ħ','ħ','Í','í','Î','î',
203 'Ī','ī','Ĭ','ĭ','Ľ','ľ','Ñ','ñ','Ň','ň','Ó','ó','Ö','ö',
204 'Ô','ô','Ō','ō','Ǒ','ǒ','Œ','œ','Ø','ø','Ř','ř','Š',
205 'š','Ş','ş','Ť','ť','Ţ','ţ','Ű','ű','Ú','ú',
206 'Ü','ü','Ů','ů','Ū','ū','Û','û','Ŭ','ŭ',
207 'Ý','ý','Ž','ž','ß','Ð','ð','Þ','þ','А','а','Б',
208 'б','В','в','Г','г','Д','д','Е','е','Ё','ё','Ж',
209 'ж','З','з','И','и','Й','й','К','к','Л','л','М',
210 'м','Н','н','О','о','П','п','Р','р','С','с',
211 'Т','т','У','у','Ф','ф','Х','х','Ц','ц','Ч',
212 'ч','Ш','ш','Щ','щ','Ъ','ъ','Ы','ы','Ь','ь','Э',
213 'э','Ю','ю','Я','я','ѓ','є','і','ї','ј','љ','њ',
214 'Ґ','ґ','Α','α','Β','β','Γ','γ','Δ','δ','Ε','ε',
215 'Ζ','ζ','Η','η','Θ','θ','Ι','ι','Κ','κ','Λ','λ','Μ',
216 'μ','Ν','ν','Ξ','ξ','Ο','ο','Π','π','Ρ','ρ','Σ','ς','σ',
217 'Τ','τ','Υ','υ','Φ','φ','Χ','χ','Ψ','ψ','Ω','ω','–',
218 '—','¡','¿','$','¢','£','€','©','®','°','¹','²','³',
219 '¼','½','¾','†','§','‰','•','←','↑','→','↓',
220 '„','”','„”','«','»','«»','’','[',']','~','|','−','·',
221 '×','÷','≈','≠','±','≤','≥','∈'];
222 var tableContent = "<tr>";
224 for(var i in specialChars) {
225 if(i % 14 == 0 && i > 0) {
226 tableContent += "</tr><tr>";
228 tableContent += "<td><input type='button' class='specialBtn' value='"+specialChars[i]+"'/></td>";
231 tableContent += "</tr>";
232 $("#content").append(specialCharsContainer);
233 $("#tableSpecialChars").append(tableContent);
237 $('.specialBtn').click(function(){
238 var editArea = $('div.html-editarea textarea')[0];
239 var insertVal = $(this).val();
241 // if we want to surround text with quotes
242 // not sure if just check if value has length == 2
244 if(insertVal == '„”' || insertVal == '«»'){
245 var startTag = insertVal[0];
246 var endTag = insertVal[1];
247 var textAreaOpened = editArea;
249 if (document.selection) {
250 textAreaOpened.focus();
251 sel = document.selection.createRange();
252 sel.text = startTag + sel.text + endTag;
254 //MOZILLA/NETSCAPE support
255 else if (textAreaOpened.selectionStart || textAreaOpened.selectionStart == '0') {
256 var startPos = textAreaOpened.selectionStart;
257 var endPos = textAreaOpened.selectionEnd;
258 textAreaOpened.value = textAreaOpened.value.substring(0, startPos)
259 + startTag + textAreaOpened.value.substring(startPos, endPos) + endTag + textAreaOpened.value.substring(endPos, textAreaOpened.value.length);
262 // if we just want to insert single symbol
263 insertAtCaret(editArea, insertVal);
266 $(specialCharsContainer).remove();
268 $('#specialCharsClose').click(function(){
269 $(specialCharsContainer).remove();
273 window.alert('Najedź na fragment tekstu, wybierz "Edytuj" i ustaw kursor na miejscu gdzie chcesz wstawić symbol.');
277 function insertAtCaret(txtarea,text) {
278 /* http://www.scottklarr.com/topic/425/how-to-insert-text-into-a-textarea-where-the-cursor-is/ */
279 var scrollPos = txtarea.scrollTop;
281 var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? "ff" : (document.selection ? "ie" : false ) );
284 var range = document.selection.createRange();
285 range.moveStart ('character', -txtarea.value.length);
286 strPos = range.text.length;
287 } else if (br == "ff") strPos = txtarea.selectionStart;
288 var front = (txtarea.value).substring(0,strPos);
289 var back = (txtarea.value).substring(strPos,txtarea.value.length);
290 txtarea.value=front+text+back;
291 strPos = strPos + text.length;
294 var range = document.selection.createRange();
295 range.moveStart ('character', -txtarea.value.length);
296 range.moveStart ('character', strPos);
297 range.moveEnd ('character', 0);
299 } else if (br == "ff") {
300 txtarea.selectionStart = strPos;
301 txtarea.selectionEnd = strPos;
304 txtarea.scrollTop = scrollPos;
307 /* open edition window for selected fragment */
308 function openForEdit($origin){
311 // annotations overlay their sub box - not their own box //
312 if ($origin.is(".annotation-inline-box")) {
313 $box = $("*[x-annotation-box]", $origin);
318 var x = $box[0].offsetLeft;
319 var y = $box[0].offsetTop;
321 var w = $box.outerWidth();
322 var h = $box.innerHeight();
324 if ($origin.is(".annotation-inline-box")) {
325 w = Math.max(w, 400);
327 if($('.htmlview div').offset().left + $('.htmlview div').width() > ($('.vsplitbar').offset().left - 480)){
328 x = -(Math.max($origin.offset().left, $origin.width()));
334 // start edition on this node
335 var $overlay = $('<div class="html-editarea"><button class="accept-button">Zapisz</button><button class="delete-button">Usuń</button><button class="tytul-button akap-edit-button">tytuł dzieła</button><button class="wyroznienie-button akap-edit-button">wyróżnienie</button><button class="slowo-button akap-edit-button">słowo obce</button><button class="znak-button akap-edit-button">znak spec.</button><textarea></textarea></div>').css({
336 position: 'absolute',
341 }).appendTo($box[0].offsetParent || $box.parent()).show();
344 if ($origin.is('.motyw')) {
345 $('.akap-edit-button').remove();
346 withThemes(function(canonThemes){
347 $('textarea', $overlay).autocomplete(canonThemes, {
356 if ($origin.is('.motyw')){
357 $('.delete-button', $overlay).click(function(){
358 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten motyw ?")) {
359 $('[theme-class=' + $origin.attr('theme-class') + ']').remove();
361 $(document).unbind('click.blur-overlay');
366 else if($box.is('*[x-annotation-box]')) {
367 $('.delete-button', $overlay).click(function(){
368 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten przypis?")) {
371 $(document).unbind('click.blur-overlay');
377 $('.delete-button', $overlay).html("Anuluj");
378 $('.delete-button', $overlay).click(function(){
379 if (window.confirm("Czy jesteś pewien, że chcesz anulować zmiany?")) {
381 $(document).unbind('click.blur-overlay');
388 var serializer = new XMLSerializer();
393 success: function(text){
394 $('textarea', $overlay).val($.trim(text));
396 setTimeout(function(){
397 $('textarea', $overlay).elastic().focus();
400 function save(argument){
401 var nodeName = $box.attr('x-node') || 'pe';
402 var insertedText = $('textarea', $overlay).val();
404 if ($origin.is('.motyw')) {
405 insertedText = insertedText.replace(/,\s*$/, '');
409 xml: '<' + nodeName + '>' + insertedText + '</' + nodeName + '>',
410 success: function(element){
411 if (nodeName == 'out-of-flow-text') {
412 $(element).children().insertAfter($origin);
416 $origin.html($(element).html());
420 error: function(text){
422 alert('Błąd! ' + text);
426 var msg = $("<div class='saveNotify'><p>Twoje zmiany zostały naniesione na tekst źródłowy. Pamiętaj, że aby zmiany zostały utrwalone <span>należy je zapisać</span>!</p><p class='notifyTip'>Ta wiadomość zostanie automatycznie zamknięta za 6 sekund.</p></div>");
427 $("#base").prepend(msg);
428 $("#save-button").css({border: '2px solid #801000', backgroundColor: '#E1C1C1'});
429 $('#base .saveNotify').fadeOut(7000, function(){
431 $("#save-button").css({border: '1px solid black'});
435 $('.akap-edit-button', $overlay).click(function(){
436 var textAreaOpened = $('textarea', $overlay)[0];
439 var buttonName = this.innerHTML;
441 if(buttonName == "słowo obce") {
442 startTag = "<slowo_obce>";
443 endTag = "</slowo_obce>";
444 } else if (buttonName == "wyróżnienie") {
445 startTag = "<wyroznienie>";
446 endTag = "</wyroznienie>";
447 } else if (buttonName == "tytuł dzieła") {
448 startTag = "<tytul_dziela>";
449 endTag = "</tytul_dziela>";
450 } else if(buttonName == "znak spec."){
455 var myField = textAreaOpened;
458 if (document.selection) {
459 textAreaOpened.focus();
460 sel = document.selection.createRange();
461 sel.text = startTag + sel.text + endTag;
463 //MOZILLA/NETSCAPE support
464 else if (textAreaOpened.selectionStart || textAreaOpened.selectionStart == '0') {
465 var startPos = textAreaOpened.selectionStart;
466 var endPos = textAreaOpened.selectionEnd;
467 textAreaOpened.value = textAreaOpened.value.substring(0, startPos)
468 + startTag + textAreaOpened.value.substring(startPos, endPos) + endTag + textAreaOpened.value.substring(endPos, textAreaOpened.value.length);
472 $('.accept-button', $overlay).click(function(){
476 $(document).bind('click.blur-overlay', function(event){
477 if ($(event.target).parents('.html-editarea').length > 0) {
481 $(document).unbind('click.blur-overlay');
485 error: function(text){
486 alert('Błąd! ' + text);
491 function VisualPerspective(options){
493 var old_callback = options.callback;
495 options.callback = function(){
496 var element = $("#html-view");
497 var button = $('<button class="edit-button">Edytuj</button>');
499 if (!CurrentDocument.readonly) {
500 $('#html-view').bind('mousemove', function(event){
501 var editable = $(event.target).closest('*[x-editable]');
502 $('.active', element).not(editable).removeClass('active').children('.edit-button').remove();
504 if (!editable.hasClass('active')) {
505 editable.addClass('active').append(button);
507 if (editable.is('.annotation-inline-box')) {
508 $('*[x-annotation-box]', editable).css({
509 position: 'absolute',
510 left: event.clientX - editable.offset().left + 5,
511 top: event.clientY - editable.offset().top + 5
515 $('*[x-annotation-box]').hide();
519 $('#insert-annotation-button').click(function(){
524 $('#insert-theme-button').click(function(){
529 $('.edit-button').live('click', function(event){
530 event.preventDefault();
531 openForEdit($(this).parent());
536 $('.motyw').live('click', function(){
537 selectTheme($(this).attr('theme-class'));
540 old_callback.call(this);
543 $.wiki.Perspective.call(this, options);
546 VisualPerspective.prototype = new $.wiki.Perspective();
548 VisualPerspective.prototype.freezeState = function(){
552 VisualPerspective.prototype.onEnter = function(success, failure){
553 $.wiki.Perspective.prototype.onEnter.call(this);
556 message: 'Uaktualnianie widoku...'
559 function _finalize(callback){
567 success: function(element){
568 $('#html-view').html(element);
571 error: function(text, source){
572 err = '<p class="error">Wystąpił błąd:</p><p>'+text+'</p>';
574 err += '<pre>'+source.replace(/&/g, '&').replace(/</g, '<')+'</pre>'
575 $('#html-view').html(err);
581 VisualPerspective.prototype.onExit = function(success, failure){
585 message: 'Zapisywanie widoku...'
588 function _finalize(callback){
594 if ($('#html-view .error').length > 0)
595 return _finalize(failure);
598 element: $('#html-view div').get(0),
599 success: function(text){
600 self.doc.setText(text);
603 error: function(text){
604 $('#source-editor').html('<p>Wystąpił błąd:</p><pre>' + text + '</pre>');
610 $.wiki.VisualPerspective = VisualPerspective;