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>");
200 var specialChars = ['Ą','ą','Ć','ć','Ę','ę','Ł','ł','Ń','ń','Ó','ó','Ś','ś','Ż','ż','Ź','ź','Á','á','À','à',
201 'Â','â','Ä','ä','Å','å','Ā','ā','Ă','ă','Ã','ã',
202 'Æ','æ','Ç','ç','Č','č','Ċ','ċ','Ď','ď','É','é','È','è',
203 'Ê','ê','Ë','ë','Ē','ē','Ě','ě','Ġ','ġ','Ħ','ħ','Í','í','Î','î',
204 'Ī','ī','Ĭ','ĭ','Ľ','ľ','Ñ','ñ','Ň','ň','Ó','ó','Ö','ö',
205 'Ô','ô','Ō','ō','Ǒ','ǒ','Œ','œ','Ø','ø','Ř','ř','Š',
206 'š','Ş','ş','Ť','ť','Ţ','ţ','Ű','ű','Ú','ú','Ù','ù',
207 'Ü','ü','Ů','ů','Ū','ū','Û','û','Ŭ','ŭ',
208 'Ý','ý','Ž','ž','ß','Ð','ð','Þ','þ','А','а','Б',
209 'б','В','в','Г','г','Д','д','Е','е','Ё','ё','Ж',
210 'ж','З','з','И','и','Й','й','К','к','Л','л','М',
211 'м','Н','н','О','о','П','п','Р','р','С','с',
212 'Т','т','У','у','Ф','ф','Х','х','Ц','ц','Ч',
213 'ч','Ш','ш','Щ','щ','Ъ','ъ','Ы','ы','Ь','ь','Э',
214 'э','Ю','ю','Я','я','ѓ','є','і','ї','ј','љ','њ',
215 'Ґ','ґ','Α','α','Β','β','Γ','γ','Δ','δ','Ε','ε',
216 'Ζ','ζ','Η','η','Θ','θ','Ι','ι','Κ','κ','Λ','λ','Μ',
217 'μ','Ν','ν','Ξ','ξ','Ο','ο','Π','π','Ρ','ρ','Σ','ς','σ',
218 'Τ','τ','Υ','υ','Φ','φ','Χ','χ','Ψ','ψ','Ω','ω','–',
219 '—','¡','¿','$','¢','£','€','©','®','°','¹','²','³',
220 '¼','½','¾','†','§','‰','•','←','↑','→','↓',
221 '„','”','„”','«','»','«»','»«','’','[',']','~','|','−','·',
222 '×','÷','≈','≠','±','≤','≥','∈'];
223 var tableContent = "<tr>";
225 for(var i in specialChars) {
226 if(i % 14 == 0 && i > 0) {
227 tableContent += "</tr><tr>";
229 tableContent += "<td><input type='button' class='specialBtn' value='"+specialChars[i]+"'/></td>";
232 tableContent += "</tr>";
233 $("#content").append(specialCharsContainer);
236 // localStorage for recently used characters - reading
237 if (typeof(localStorage) != 'undefined') {
238 if (localStorage.getItem("recentSymbols")) {
239 var recent = localStorage.getItem("recentSymbols");
240 var recentArray = recent.split(";");
242 for(var i in recentArray.reverse()) {
243 recentRow += "<td><input type='button' class='specialBtn recentSymbol' value='"+recentArray[i]+"'/></td>";
245 recentRow = "<tr>" + recentRow + "</tr>";
248 $("#tableSpecialChars").append(recentRow);
249 $("#tableSpecialChars").append(tableContent);
253 $('.specialBtn').click(function(){
254 var editArea = $('div.html-editarea textarea')[0];
255 var insertVal = $(this).val();
257 // if we want to surround text with quotes
258 // not sure if just check if value has length == 2
260 if (insertVal.length == 2) {
261 var startTag = insertVal[0];
262 var endTag = insertVal[1];
263 var textAreaOpened = editArea;
265 if (document.selection) {
266 textAreaOpened.focus();
267 sel = document.selection.createRange();
268 sel.text = startTag + sel.text + endTag;
270 //MOZILLA/NETSCAPE support
271 else if (textAreaOpened.selectionStart || textAreaOpened.selectionStart == '0') {
272 var startPos = textAreaOpened.selectionStart;
273 var endPos = textAreaOpened.selectionEnd;
274 textAreaOpened.value = textAreaOpened.value.substring(0, startPos)
275 + startTag + textAreaOpened.value.substring(startPos, endPos) + endTag + textAreaOpened.value.substring(endPos, textAreaOpened.value.length);
278 // if we just want to insert single symbol
279 insertAtCaret(editArea, insertVal);
282 // localStorage for recently used characters - saving
283 if (typeof(localStorage) != 'undefined') {
284 if (localStorage.getItem("recentSymbols")) {
285 var recent = localStorage.getItem("recentSymbols");
286 var recentArray = recent.split(";");
287 var valIndex = $.inArray(insertVal, recentArray);
290 // value not present in array yet
291 if(recentArray.length > 13){
293 recentArray.push(insertVal);
295 recentArray.push(insertVal);
298 // value already in the array
299 for(var i = valIndex; i < recentArray.length; i++){
300 recentArray[i] = recentArray[i+1];
302 recentArray[recentArray.length-1] = insertVal;
304 localStorage.setItem("recentSymbols", recentArray.join(";"));
306 localStorage.setItem("recentSymbols", insertVal);
309 $(specialCharsContainer).remove();
311 $('#specialCharsClose').click(function(){
312 $(specialCharsContainer).remove();
316 window.alert('Najedź na fragment tekstu, wybierz "Edytuj" i ustaw kursor na miejscu gdzie chcesz wstawić symbol.');
320 function insertAtCaret(txtarea,text) {
321 /* http://www.scottklarr.com/topic/425/how-to-insert-text-into-a-textarea-where-the-cursor-is/ */
322 var scrollPos = txtarea.scrollTop;
325 var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? "ff" : (document.selection ? "ie" : false ) );
328 var range = document.selection.createRange();
329 range.moveStart ('character', -txtarea.value.length);
330 strPos = backStart = range.text.length;
331 } else if (br == "ff") {
332 strPos = txtarea.selectionStart;
333 backStart = txtarea.selectionEnd;
335 var front = (txtarea.value).substring(0,strPos);
336 var back = (txtarea.value).substring(backStart,txtarea.value.length);
337 txtarea.value=front+text+back;
338 strPos = strPos + text.length;
341 var range = document.selection.createRange();
342 range.moveStart ('character', -txtarea.value.length);
343 range.moveStart ('character', strPos);
344 range.moveEnd ('character', 0);
346 } else if (br == "ff") {
347 txtarea.selectionStart = strPos;
348 txtarea.selectionEnd = strPos;
351 txtarea.scrollTop = scrollPos;
354 /* open edition window for selected fragment */
355 function openForEdit($origin){
358 // annotations overlay their sub box - not their own box //
359 if ($origin.is(".annotation-inline-box")) {
360 $box = $("*[x-annotation-box]", $origin);
365 var x = $box[0].offsetLeft;
366 var y = $box[0].offsetTop;
368 var w = $box.outerWidth();
369 var h = $box.innerHeight();
371 if ($origin.is(".annotation-inline-box")) {
372 w = Math.max(w, 400);
374 if($('.htmlview div').offset().left + $('.htmlview div').width() > ($('.vsplitbar').offset().left - 480)){
375 x = -(Math.max($origin.offset().left, $origin.width()));
381 // start edition on this node
382 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({
383 position: 'absolute',
388 }).appendTo($box[0].offsetParent || $box.parent()).show();
391 if ($origin.is('.motyw')) {
392 $('.akap-edit-button').remove();
393 withThemes(function(canonThemes){
394 $('textarea', $overlay).autocomplete(canonThemes, {
403 if ($origin.is('.motyw')){
404 $('.delete-button', $overlay).click(function(){
405 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten motyw ?")) {
406 $('[theme-class=' + $origin.attr('theme-class') + ']').remove();
408 $(document).unbind('click.blur-overlay');
413 else if($box.is('*[x-annotation-box]')) {
414 $('.delete-button', $overlay).click(function(){
415 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten przypis?")) {
418 $(document).unbind('click.blur-overlay');
424 $('.delete-button', $overlay).html("Anuluj");
425 $('.delete-button', $overlay).click(function(){
426 if (window.confirm("Czy jesteś pewien, że chcesz anulować zmiany?")) {
428 $(document).unbind('click.blur-overlay');
435 var serializer = new XMLSerializer();
440 success: function(text){
441 $('textarea', $overlay).val($.trim(text));
443 setTimeout(function(){
444 $('textarea', $overlay).elastic().focus();
447 function save(argument){
448 var nodeName = $box.attr('x-node') || 'pe';
449 var insertedText = $('textarea', $overlay).val();
451 if ($origin.is('.motyw')) {
452 insertedText = insertedText.replace(/,\s*$/, '');
456 xml: '<' + nodeName + '>' + insertedText + '</' + nodeName + '>',
457 success: function(element){
458 if (nodeName == 'out-of-flow-text') {
459 $(element).children().insertAfter($origin);
463 $origin.html($(element).html());
467 error: function(text){
468 alert('Błąd! ' + text);
472 var msg = $("<div class='saveNotify'><p>Pamiętaj, żeby zapisać swoje zmiany.</p></div>");
473 $("#base").prepend(msg);
474 $('#base .saveNotify').fadeOut(3000, function(){
479 $('.akap-edit-button', $overlay).click(function(){
480 var textAreaOpened = $('textarea', $overlay)[0];
483 var buttonName = this.innerHTML;
485 if(buttonName == "słowo obce") {
486 startTag = "<slowo_obce>";
487 endTag = "</slowo_obce>";
488 } else if (buttonName == "wyróżnienie") {
489 startTag = "<wyroznienie>";
490 endTag = "</wyroznienie>";
491 } else if (buttonName == "tytuł dzieła") {
492 startTag = "<tytul_dziela>";
493 endTag = "</tytul_dziela>";
494 } else if(buttonName == "znak spec."){
499 var myField = textAreaOpened;
502 if (document.selection) {
503 textAreaOpened.focus();
504 sel = document.selection.createRange();
505 sel.text = startTag + sel.text + endTag;
507 //MOZILLA/NETSCAPE support
508 else if (textAreaOpened.selectionStart || textAreaOpened.selectionStart == '0') {
509 var startPos = textAreaOpened.selectionStart;
510 var endPos = textAreaOpened.selectionEnd;
511 textAreaOpened.value = textAreaOpened.value.substring(0, startPos)
512 + startTag + textAreaOpened.value.substring(startPos, endPos) + endTag + textAreaOpened.value.substring(endPos, textAreaOpened.value.length);
516 $('.accept-button', $overlay).click(function(){
520 $(document).bind('click.blur-overlay', function(event){
521 if ($(event.target).closest('.html-editarea, #specialCharsContainer').length > 0) {
525 $(document).unbind('click.blur-overlay');
529 error: function(text){
530 alert('Błąd! ' + text);
535 function VisualPerspective(options){
537 var old_callback = options.callback;
539 options.callback = function(){
540 var element = $("#html-view");
541 var button = $('<button class="edit-button">Edytuj</button>');
543 if (!CurrentDocument.readonly) {
544 $('#html-view').bind('mousemove', function(event){
545 var editable = $(event.target).closest('*[x-editable]');
546 $('.active', element).not(editable).removeClass('active').children('.edit-button').remove();
548 if (!editable.hasClass('active')) {
549 editable.addClass('active').append(button);
551 if (editable.is('.annotation-inline-box')) {
552 $('*[x-annotation-box]', editable).css({
553 position: 'absolute',
554 left: event.clientX - editable.offset().left + 5,
555 top: event.clientY - editable.offset().top + 5
559 $('*[x-annotation-box]').hide();
563 $('#insert-annotation-button').click(function(){
568 $('#insert-theme-button').click(function(){
573 $('.edit-button').live('click', function(event){
574 event.preventDefault();
575 openForEdit($(this).parent());
580 $('.motyw').live('click', function(){
581 selectTheme($(this).attr('theme-class'));
584 old_callback.call(this);
587 $.wiki.Perspective.call(this, options);
590 VisualPerspective.prototype = new $.wiki.Perspective();
592 VisualPerspective.prototype.freezeState = function(){
596 VisualPerspective.prototype.onEnter = function(success, failure){
597 $.wiki.Perspective.prototype.onEnter.call(this);
600 message: 'Uaktualnianie widoku...'
603 function _finalize(callback){
611 success: function(element){
612 $('#html-view').html(element);
615 error: function(text, source){
616 err = '<p class="error">Wystąpił błąd:</p><p>'+text+'</p>';
618 err += '<pre>'+source.replace(/&/g, '&').replace(/</g, '<')+'</pre>'
619 $('#html-view').html(err);
625 VisualPerspective.prototype.onExit = function(success, failure){
629 message: 'Zapisywanie widoku...'
632 function _finalize(callback){
638 if ($('#html-view .error').length > 0)
639 return _finalize(failure);
642 element: $('#html-view').get(0),
644 success: function(text){
645 self.doc.setText(text);
648 error: function(text){
649 $('#source-editor').html('<p>Wystąpił błąd:</p><pre>' + text + '</pre>');
655 $.wiki.VisualPerspective = VisualPerspective;