Error handling when compressing readings
[scpubgit/stemmaweb.git] / root / js / relationship.js
1 var MARGIN=30;
2 var svg_root = null;
3 var svg_root_element = null;
4 var start_element_height = 0;
5 var reltypes = {};
6 var readingdata = {};
7 var text_direction = 'LR';
8
9 jQuery.removeFromArray = function(value, arr) {
10     return jQuery.grep(arr, function(elem, index) {
11         return elem !== value;
12     });
13 };
14
15 function arrayUnique(array) {
16     var a = array.concat();
17     for(var i=0; i<a.length; ++i) {
18         for(var j=i+1; j<a.length; ++j) {
19             if(a[i] === a[j])
20                 a.splice(j--, 1);
21         }
22     }
23     return a;
24 };
25
26 function getTextURL( which ) {
27         return basepath + textid + '/' + which;
28 }
29
30 function getReadingURL( reading_id ) {
31         return basepath + textid + '/reading/' + reading_id;
32 }
33
34 // Make an XML ID into a valid selector
35 function jq(myid) { 
36         return '#' + myid.replace(/(:|\.)/g,'\\$1');
37 }
38
39 // Actions for opening the reading panel
40 function node_dblclick_listener( evt ) {
41         // Open the reading dialogue for the given node.
42         // First get the reading info
43         var reading_id = $(this).attr('id');
44         var reading_info = readingdata[reading_id];
45         // and then populate the dialog box with it.
46         // Set the easy properties first
47         $('#reading-form').dialog( 'option', 'title', 'Reading information for "' + reading_info['text'] + '"' );
48         $('#reading_id').val( reading_id );
49         toggle_checkbox( $('#reading_is_nonsense'), reading_info['is_nonsense'] );
50         toggle_checkbox( $('#reading_grammar_invalid'), reading_info['grammar_invalid'] );
51         // Use .text as a backup for .normal_form
52         var normal_form = reading_info['normal_form'];
53         if( !normal_form ) {
54                 normal_form = reading_info['text'];
55         }
56         var nfboxsize = 10;
57         if( normal_form.length > 9 ) {
58                 nfboxsize = normal_form.length + 1;
59         }
60         $('#reading_normal_form').attr( 'size', nfboxsize )
61         $('#reading_normal_form').val( normal_form );
62         // Now do the morphological properties.
63         morphology_form( reading_info['lexemes'] );
64         // and then open the dialog.
65         $('#reading-form').dialog("open");
66 }
67
68 function toggle_checkbox( box, value ) {
69         if( value == null ) {
70                 value = false;
71         }
72         box.attr('checked', value );
73 }
74
75 function morphology_form ( lexlist ) {
76         if( lexlist.length ) {
77                 $('#morph_outer').show();
78                 $('#morphology').empty();
79                 $.each( lexlist, function( idx, lex ) {
80                         var morphoptions = [];
81                         if( 'wordform_matchlist' in lex ) {
82                                 $.each( lex['wordform_matchlist'], function( tdx, tag ) {
83                                         var tagstr = stringify_wordform( tag );
84                                         morphoptions.push( tagstr );
85                                 });
86                         }
87                         var formtag = 'morphology_' + idx;
88                         var formstr = '';
89                         if( 'form' in lex ) {
90                                 formstr = stringify_wordform( lex['form'] );
91                         } 
92                         var form_morph_elements = morph_elements( 
93                                 formtag, lex['string'], formstr, morphoptions );
94                         $.each( form_morph_elements, function( idx, el ) {
95                                 $('#morphology').append( el );
96                         });
97                 });
98         } else {
99                 $('#morph_outer').hide();
100         }
101 }
102
103 function stringify_wordform ( tag ) {
104         if( tag ) {
105                 var elements = tag.split(' // ');
106                 return elements[1] + ' // ' + elements[2];
107         }
108         return ''
109 }
110
111 function morph_elements ( formtag, formtxt, currform, morphoptions ) {
112         var clicktag = '(Click to select)';
113         if ( !currform ) {
114                 currform = clicktag;
115         }
116         var formlabel = $('<label/>').attr( 'id', 'label_' + formtag ).attr( 
117                 'for', 'reading_' + formtag ).text( formtxt + ': ' );
118         var forminput = $('<input/>').attr( 'id', 'reading_' + formtag ).attr( 
119                 'name', 'reading_' + formtag ).attr( 'size', '50' ).attr(
120                 'class', 'reading_morphology' ).val( currform );
121         forminput.autocomplete({ source: morphoptions, minLength: 0     });
122         forminput.focus( function() { 
123                 if( $(this).val() == clicktag ) {
124                         $(this).val('');
125                 }
126                 $(this).autocomplete('search', '') 
127         });
128         var morphel = [ formlabel, forminput, $('<br/>') ];
129         return morphel;
130 }
131
132 function color_inactive ( el ) {
133         var reading_id = $(el).parent().attr('id');
134         var reading_info = readingdata[reading_id];
135         // If the reading info has any non-disambiguated lexemes, color it yellow;
136         // otherwise color it green.
137         $(el).attr( {stroke:'green', fill:'#b3f36d'} );
138         if( reading_info ) {
139                 $.each( reading_info['lexemes'], function ( idx, lex ) {
140                         if( !lex['is_disambiguated'] || lex['is_disambiguated'] == 0 ) {
141                                 $(el).attr( {stroke:'orange', fill:'#fee233'} );
142                         }
143                 });
144         }
145 }
146
147 function relemmatize () {
148         // Send the reading for a new lemmatization and reopen the form.
149         $('#relemmatize_pending').show();
150         var reading_id = $('#reading_id').val()
151         ncpath = getReadingURL( reading_id );
152         form_values = { 
153                 'normal_form': $('#reading_normal_form').val(), 
154                 'relemmatize': 1 };
155         var jqjson = $.post( ncpath, form_values, function( data ) {
156                 // Update the form with the return
157                 if( 'id' in data ) {
158                         // We got back a good answer. Stash it
159                         readingdata[reading_id] = data;
160                         // and regenerate the morphology form.
161                         morphology_form( data['lexemes'] );
162                 } else {
163                         alert("Could not relemmatize as requested: " + data['error']);
164                 }
165                 $('#relemmatize_pending').hide();
166         });
167 }
168
169 // Initialize the SVG once it exists
170 function svgEnlargementLoaded() {
171         //Give some visual evidence that we are working
172         $('#loading_overlay').show();
173         lo_height = $("#enlargement_container").outerHeight();
174         lo_width = $("#enlargement_container").outerWidth();
175         $("#loading_overlay").height( lo_height );
176         $("#loading_overlay").width( lo_width );
177         $("#loading_overlay").offset( $("#enlargement_container").offset() );
178         $("#loading_message").offset(
179                 { 'top': lo_height / 2 - $("#loading_message").height() / 2,
180                   'left': lo_width / 2 - $("#loading_message").width() / 2 });
181     if( editable ) {
182         // Show the update toggle button.
183             $('#update_workspace_button').data('locked', false);
184         $('#update_workspace_button').css('background-position', '0px 44px');
185     }
186     $('#svgenlargement ellipse').parent().dblclick( node_dblclick_listener );
187     var graph_svg = $('#svgenlargement svg');
188     var svg_g = $('#svgenlargement svg g')[0];
189     if (!svg_g) return;
190     svg_root = graph_svg.svg().svg('get').root();
191
192     // Find the real root and ignore any text nodes
193     for (i = 0; i < svg_root.childNodes.length; ++i) {
194         if (svg_root.childNodes[i].nodeName != '#text') {
195                 svg_root_element = svg_root.childNodes[i];
196                 break;
197            }
198     }
199
200     //Set viewbox width and height to width and height of $('#svgenlargement svg').
201     //This is essential to make sure zooming and panning works properly.
202     svg_root.viewBox.baseVal.width = graph_svg.attr( 'width' );
203     svg_root.viewBox.baseVal.height = graph_svg.attr( 'height' );
204     //Now set scale and translate so svg height is about 150px and vertically centered in viewbox.
205     //This is just to create a nice starting enlargement.
206     var initial_svg_height = 250;
207     var scale = initial_svg_height/graph_svg.attr( 'height' );
208     var additional_translate = (graph_svg.attr( 'height' ) - initial_svg_height)/(2*scale);
209     var transform = svg_g.getAttribute('transform');
210     var translate = parseFloat( transform.match( /translate\([^\)]*\)/ )[0].split('(')[1].split(' ')[1].split(')')[0] );
211     translate += additional_translate;
212     var transform = 'rotate(0) scale(' + scale + ') translate(4 ' + translate + ')';
213     svg_g.setAttribute('transform', transform);
214     //used to calculate min and max zoom level:
215     start_element_height = $('#__START__').children('ellipse')[0].getBBox().height;
216     //some use of call backs to ensure succesive execution
217     add_relations( function() { 
218         var rdgpath = getTextURL( 'readings' );
219         $.getJSON( rdgpath, function( data ) {
220             readingdata = data;
221             $('#svgenlargement ellipse').each( function( i, el ) { color_inactive( el ) });
222             $('#loading_overlay').hide(); 
223         });
224     });
225     
226     //initialize marquee
227     marquee = new Marquee();
228
229         if (text_direction == 'RL') {
230                 scrollToEnd();
231         }
232 }
233
234 function add_relations( callback_fn ) {
235         // Add the relationship types to the keymap list
236         $.each( relationship_types, function(index, typedef) {   
237                  li_elm = $('<li class="key">').css( "border-color", 
238                         relation_manager.relation_colors[index] ).text(typedef.name);
239                  li_elm.append( $('<div>').attr('class', 'key_tip_container').append(
240                         $('<div>').attr('class', 'key_tip').text(typedef.description) ) );
241                  $('#keymaplist').append( li_elm ); 
242         });
243         // Now fetch the relationships themselves and add them to the graph
244         var rel_types = $.map( relationship_types, function(t) { return t.name });
245         // Save this list of names to the outer element data so that the relationship
246         // factory can access it
247         $('#keymap').data('relations', rel_types);
248         var textrelpath = getTextURL( 'relationships' );
249         $.getJSON( textrelpath, function(data) {
250                 $.each(data, function( index, rel_info ) {
251                         var type_index = $.inArray(rel_info.type, rel_types);
252                         var source_found = get_ellipse( rel_info.source_id );
253                         var target_found = get_ellipse( rel_info.target_id );
254                         var emphasis = rel_info.is_significant;
255                         if( type_index != -1 && source_found.size() && target_found.size() ) {
256                                 var relation = relation_manager.create( rel_info.source_id, rel_info.target_id, type_index, emphasis );
257                                 // Save the relationship data too.
258                                 $.each( rel_info, function( k, v ) {
259                                         relation.data( k, v );
260                                 });
261                                 if( editable ) {
262                                         var node_obj = get_node_obj(rel_info.source_id);
263                                         node_obj.set_selectable( false );
264                                         node_obj.ellipse.data( 'node_obj', null );
265                                         node_obj = get_node_obj(rel_info.target_id);
266                                         node_obj.set_selectable( false );
267                                         node_obj.ellipse.data( 'node_obj', null );
268                                 }
269                         }
270                 });
271                 callback_fn.call();
272         });
273 }
274
275 function get_ellipse( node_id ) {
276         return $( jq( node_id ) + ' ellipse');
277 }
278
279 function get_node_obj( node_id ) {
280     var node_ellipse = get_ellipse( node_id );
281     if( node_ellipse.data( 'node_obj' ) == null ) {
282         node_ellipse.data( 'node_obj', new node_obj(node_ellipse) );
283     };
284     return node_ellipse.data( 'node_obj' );
285 }
286
287 function node_obj(ellipse) {
288   this.ellipse = ellipse;
289   var self = this;
290   
291   this.x = 0;
292   this.y = 0;
293   this.dx = 0;
294   this.dy = 0;
295   this.node_elements = node_elements_for(self.ellipse);
296   
297   this.get_id = function() {
298     return $(self.ellipse).parent().attr('id')
299   }
300   
301   this.set_selectable = function( clickable ) {
302       if( clickable && editable ) {
303           $(self.ellipse).attr( {stroke:'black', fill:'#fff'} );
304           $(self.ellipse).parent().hover( this.enter_node, this.leave_node );
305           $(self.ellipse).parent().mousedown( function(evt) { evt.stopPropagation() } ); 
306           $(self.ellipse).parent().click( function(evt) { 
307               evt.stopPropagation();              
308               if( $('ellipse[fill="#9999ff"]').size() > 0 ) {
309                 $('ellipse[fill="#9999ff"]').each( function() { 
310                     $(this).data( 'node_obj' ).set_draggable( false );
311                 } );
312               }
313               self.set_draggable( true ) 
314           });
315       } else {
316           $(self.ellipse).attr( {stroke:'black', fill:'#fff'} );
317           self.ellipse.siblings('text').attr('class', '');
318           $(self.ellipse).parent().unbind(); 
319           $('body').unbind('mousemove');
320           $('body').unbind('mouseup');
321       }
322   }
323   
324   this.set_draggable = function( draggable ) {
325     if( draggable && editable ) {
326       $(self.ellipse).attr( {stroke:'black', fill:'#9999ff'} );
327       $(self.ellipse).parent().mousedown( this.mousedown_listener );
328       $(self.ellipse).parent().unbind( 'mouseenter' ).unbind( 'mouseleave' );
329       self.ellipse.siblings('text').attr('class', 'noselect draggable');
330     } else {
331       $(self.ellipse).attr( {stroke:'black', fill:'#fff'} );
332       self.ellipse.siblings('text').attr('class', '');
333       $(self.ellipse).parent().unbind( 'mousedown ');
334       $(self.ellipse).parent().mousedown( function(evt) { evt.stopPropagation() } ); 
335       $(self.ellipse).parent().hover( this.enter_node, this.leave_node );
336     }
337   }
338
339   this.mousedown_listener = function(evt) {
340     evt.stopPropagation();
341     self.x = evt.clientX;
342     self.y = evt.clientY;
343     $('body').mousemove( self.mousemove_listener );
344     $('body').mouseup( self.mouseup_listener );
345     $(self.ellipse).parent().unbind('mouseenter').unbind('mouseleave')
346     self.ellipse.attr( 'fill', '#6b6bb2' );
347     first_node_g_element = $("#svgenlargement g .node" ).filter( ":first" );
348     if( first_node_g_element.attr('id') !== self.get_g().attr('id') ) { self.get_g().insertBefore( first_node_g_element ) };
349   }
350
351   this.mousemove_listener = function(evt) {
352     self.dx = (evt.clientX - self.x) / mouse_scale;
353     self.dy = (evt.clientY - self.y) / mouse_scale;
354     self.move_elements();
355     evt.returnValue = false;
356     evt.preventDefault();
357     return false;
358   }
359
360   this.mouseup_listener = function(evt) {    
361     if( $('ellipse[fill="#ffccff"]').size() > 0 ) {
362         var source_node_id = $(self.ellipse).parent().attr('id');
363         var source_node_text = self.ellipse.siblings('text').text();
364         var target_node_id = $('ellipse[fill="#ffccff"]').parent().attr('id');
365         var target_node_text = $('ellipse[fill="#ffccff"]').siblings("text").text();
366         $('#source_node_id').val( source_node_id );
367         $('#source_node_text').val( source_node_text );
368         $('.rel_rdg_a').text( "'" + source_node_text + "'" );
369         $('#target_node_id').val( target_node_id );
370         $('#target_node_text').val( target_node_text );
371         $('.rel_rdg_b').text( "'" + target_node_text + "'" );
372         $('#dialog-form').dialog( 'open' );
373     };
374     $('body').unbind('mousemove');
375     $('body').unbind('mouseup');
376     self.ellipse.attr( 'fill', '#9999ff' );
377     self.reset_elements();
378   }
379   
380   this.cpos = function() {
381     return { x: self.ellipse.attr('cx'), y: self.ellipse.attr('cy') };
382   }
383
384   this.get_g = function() {
385     return self.ellipse.parent('g');
386   }
387
388   this.enter_node = function(evt) {
389     self.ellipse.attr( 'fill', '#ffccff' );
390   }
391
392   this.leave_node = function(evt) {
393     self.ellipse.attr( 'fill', '#fff' );
394   }
395
396   this.greyout_edges = function() {
397       $.each( self.node_elements, function(index, value) {
398         value.grey_out('.edge');
399       });
400   }
401
402   this.ungreyout_edges = function() {
403       $.each( self.node_elements, function(index, value) {
404         value.un_grey_out('.edge');
405       });
406   }
407
408   this.reposition = function( dx, dy ) {
409     $.each( self.node_elements, function(index, value) {
410       value.reposition( dx, dy );
411     } );    
412   }
413
414   this.move_elements = function() {
415     $.each( self.node_elements, function(index, value) {
416       value.move( self.dx, self.dy );
417     } );
418   }
419
420   this.reset_elements = function() {
421     $.each( self.node_elements, function(index, value) {
422       value.reset();
423     } );
424   }
425
426   this.update_elements = function() {
427       self.node_elements = node_elements_for(self.ellipse);
428   }
429
430   this.get_witnesses = function() {
431       return readingdata[self.get_id()].witnesses
432   }
433
434   self.set_selectable( true );
435 }
436
437 function svgshape( shape_element ) {
438   this.shape = shape_element;
439   this.reposx = 0;
440   this.reposy = 0; 
441   this.repositioned = this.shape.parent().data( 'repositioned' );
442   if( this.repositioned != null ) {
443       this.reposx = this.repositioned[0];
444       this.reposy = this.repositioned[1]; 
445   }
446   this.reposition = function (dx, dy) {
447       this.move( dx, dy );
448       this.reposx = this.reposx + dx;
449       this.reposy = this.reposy + dy;
450       this.shape.parent().data( 'repositioned', [this.reposx,this.reposy] );
451   }
452   this.move = function(dx,dy) {
453       this.shape.attr( "transform", "translate( " + (this.reposx + dx) + " " + (this.reposy + dy) + " )" );
454   }
455   this.reset = function() {
456     this.shape.attr( "transform", "translate( " + this.reposx + " " + this.reposy + " )" );
457   }
458   this.grey_out = function(filter) {
459       if( this.shape.parent(filter).size() != 0 ) {
460           this.shape.attr({'stroke':'#e5e5e5', 'fill':'#e5e5e5'});
461       }
462   }
463   this.un_grey_out = function(filter) {
464       if( this.shape.parent(filter).size() != 0 ) {
465         this.shape.attr({'stroke':'#000000', 'fill':'#000000'});
466       }
467   }
468 }
469
470 function svgpath( path_element, svg_element ) {
471   this.svg_element = svg_element;
472   this.path = path_element;
473   this.x = this.path.x;
474   this.y = this.path.y;
475
476   this.reposition = function (dx, dy) {
477       this.x = this.x + dx;
478       this.y = this.y + dy;      
479       this.path.x = this.x;
480       this.path.y = this.y;
481   }
482
483   this.move = function(dx,dy) {
484     this.path.x = this.x + dx;
485     this.path.y = this.y + dy;
486   }
487   
488   this.reset = function() {
489     this.path.x = this.x;
490     this.path.y = this.y;
491   }
492   
493   this.grey_out = function(filter) {
494       if( this.svg_element.parent(filter).size() != 0 ) {
495           this.svg_element.attr('stroke', '#e5e5e5');
496           this.svg_element.siblings('text').attr('fill', '#e5e5e5');
497           this.svg_element.siblings('text').attr('class', 'noselect');
498       }
499   }
500   this.un_grey_out = function(filter) {
501       if( this.svg_element.parent(filter).size() != 0 ) {
502           this.svg_element.attr('stroke', '#000000');
503           this.svg_element.siblings('text').attr('fill', '#000000');
504           this.svg_element.siblings('text').attr('class', '');
505       }
506   }
507 }
508
509 function node_elements_for( ellipse ) {
510   node_elements = get_edge_elements_for( ellipse );
511   node_elements.push( new svgshape( ellipse.siblings('text') ) );
512   node_elements.push( new svgshape( ellipse ) );
513   return node_elements;
514 }
515
516 function get_edge_elements_for( ellipse ) {
517   edge_elements = new Array();
518   node_id = ellipse.parent().attr('id');
519   edge_in_pattern = new RegExp( node_id + '$' );
520   edge_out_pattern = new RegExp( '^' + node_id + '-' );
521   $.each( $('#svgenlargement .edge,#svgenlargement .relation').children('title'), function(index) {
522     title = $(this).text();
523     if( edge_in_pattern.test(title) ) {
524         polygon = $(this).siblings('polygon');
525         if( polygon.size() > 0 ) {
526             edge_elements.push( new svgshape( polygon ) );
527         }
528         path_segments = $(this).siblings('path')[0].pathSegList;
529         edge_elements.push( new svgpath( path_segments.getItem(path_segments.numberOfItems - 1), $(this).siblings('path') ) );
530     }
531     if( edge_out_pattern.test(title) ) {
532       path_segments = $(this).siblings('path')[0].pathSegList;
533       edge_elements.push( new svgpath( path_segments.getItem(0), $(this).siblings('path') ) );
534     }
535   });
536   return edge_elements;
537
538
539 function relation_factory() {
540     var self = this;
541     this.color_memo = null;
542     //TODO: colors hard coded for now
543     this.temp_color = '#FFA14F';
544     this.relation_colors = [ "#5CCCCC", "#67E667", "#F9FE72", "#6B90D4", "#FF7673", "#E467B3", "#AA67D5", "#8370D8", "#FFC173" ];
545
546     this.create_temporary = function( source_node_id, target_node_id ) {
547         var relation_id = get_relation_id( source_node_id, target_node_id );
548         var relation = $( jq( relation_id ) );
549         if( relation.size() == 0 ) { 
550             draw_relation( source_node_id, target_node_id, self.temp_color );
551         } else {
552             self.color_memo = relation.children('path').attr( 'stroke' );
553             relation.children('path').attr( 'stroke', self.temp_color );
554         }
555     }
556     this.remove_temporary = function() {
557         var path_element = $('#svgenlargement .relation').children('path[stroke="' + self.temp_color + '"]');
558         if( self.color_memo != null ) {
559             path_element.attr( 'stroke', self.color_memo );
560             self.color_memo = null;
561         } else {
562             var temporary = path_element.parent('g').remove();
563             temporary.empty();
564             temporary = null; 
565         }
566     }
567     this.create = function( source_node_id, target_node_id, color_index, emphasis ) {
568         //TODO: Protect from (color_)index out of bound..
569         var relation_color = self.relation_colors[ color_index ];
570         var relation = draw_relation( source_node_id, target_node_id, relation_color, emphasis );
571         get_node_obj( source_node_id ).update_elements();
572         get_node_obj( target_node_id ).update_elements();
573         return relation;
574     }
575     this.toggle_active = function( relation_id ) {
576         var relation = $( jq( relation_id ) );
577         var relation_path = relation.children('path');
578         if( !relation.data( 'active' ) ) {
579             relation_path.css( {'cursor':'pointer'} );
580             relation_path.mouseenter( function(event) { 
581                 outerTimer = setTimeout( function() { 
582                     timer = setTimeout( function() { 
583                         var related_nodes = get_related_nodes( relation_id );
584                         var source_node_id = related_nodes[0];
585                         var target_node_id = related_nodes[1];
586                         $('#delete_source_node_id').val( source_node_id );
587                         $('#delete_target_node_id').val( target_node_id );
588                         self.showinfo(relation); 
589                     }, 500 ) 
590                 }, 1000 );
591             });
592             relation_path.mouseleave( function(event) {
593                 clearTimeout(outerTimer); 
594                 if( timer != null ) { clearTimeout(timer); } 
595             });
596             relation.data( 'active', true );
597         } else {
598             relation_path.unbind( 'mouseenter' );
599             relation_path.unbind( 'mouseleave' );
600             relation_path.css( {'cursor':'inherit'} );
601             relation.data( 'active', false );
602         }
603     }
604     this.showinfo = function(relation) {
605         $('#delete_relation_type').text( relation.data('type') );
606         $('#delete_relation_scope').text( relation.data('scope') );
607         $('#delete_relation_attributes').empty();
608         var significance = ' is not ';
609         if( relation.data( 'is_significant' ) === 'yes') {
610                 significance = ' is ';
611         } else if ( relation.data( 'is_significant' ) === 'maybe' ) {
612                 significance = ' might be ';
613         }
614                 $('#delete_relation_attributes').append( 
615                         "This relationship" + significance + "stemmatically significant<br/>");
616         if( relation.data( 'a_derivable_from_b' ) ) {
617                 $('#delete_relation_attributes').append( 
618                         "'" + relation.data('source_text') + "' derivable from '" + relation.data('target_text') + "'<br/>");
619         }
620         if( relation.data( 'b_derivable_from_a' ) ) {
621                 $('#delete_relation_attributes').append( 
622                         "'" + relation.data('target_text') + "' derivable from '" + relation.data('source_text') + "'<br/>");
623         }
624         if( relation.data( 'non_independent' ) ) {
625                 $('#delete_relation_attributes').append( 
626                         "Variance unlikely to arise coincidentally<br/>");
627         }
628         if( relation.data( 'note' ) ) {
629                 $('#delete_relation_note').text('note: ' + relation.data( 'note' ) );
630         }
631         var points = relation.children('path').attr('d').slice(1).replace('C',' ').split(' ');
632         var xs = parseFloat( points[0].split(',')[0] );
633         var xe = parseFloat( points[1].split(',')[0] );
634         var ys = parseFloat( points[0].split(',')[1] );
635         var ye = parseFloat( points[3].split(',')[1] );
636         var p = svg_root.createSVGPoint();
637         p.x = xs + ((xe-xs)*1.1);
638         p.y = ye - ((ye-ys)/2);
639         var ctm = svg_root_element.getScreenCTM();
640         var nx = p.matrixTransform(ctm).x;
641         var ny = p.matrixTransform(ctm).y;
642         var dialog_aria = $ ("div[aria-labelledby='ui-dialog-title-delete-form']");
643         $('#delete-form').dialog( 'open' );
644         dialog_aria.offset({ left: nx, top: ny });
645     }
646     this.remove = function( relation_id ) {
647         if( !editable ) {
648                 return;
649         }
650         var relation = $( jq( relation_id ) );
651         relation.remove();
652     }
653 }
654
655 // Utility function to create/return the ID of a relation link between
656 // a source and target.
657 function get_relation_id( source_id, target_id ) {
658         var idlist = [ source_id, target_id ];
659         idlist.sort();
660         return 'relation-' + idlist[0] + '-...-' + idlist[1];
661 }
662
663 function get_related_nodes( relation_id ) {
664         var srctotarg = relation_id.substr( 9 );
665         return srctotarg.split('-...-');
666 }
667
668 function draw_relation( source_id, target_id, relation_color, emphasis ) {
669     var source_ellipse = get_ellipse( source_id );
670     var target_ellipse = get_ellipse( target_id );
671     var relation_id = get_relation_id( source_id, target_id );
672     var svg = $('#svgenlargement').children('svg').svg().svg('get');
673     var path = svg.createPath(); 
674     var sx = parseInt( source_ellipse.attr('cx') );
675     var rx = parseInt( source_ellipse.attr('rx') );
676     var sy = parseInt( source_ellipse.attr('cy') );
677     var ex = parseInt( target_ellipse.attr('cx') );
678     var ey = parseInt( target_ellipse.attr('cy') );
679     var relation = svg.group( $("#svgenlargement svg g"), { 'class':'relation', 'id':relation_id } );
680     svg.title( relation, source_id + '->' + target_id );
681     var stroke_width = emphasis === "yes" ? 6 : emphasis === "maybe" ? 4 : 2;
682     svg.path( relation, path.move( sx, sy ).curveC( sx + (2*rx), sy, ex + (2*rx), ey, ex, ey ), {fill: 'none', stroke: relation_color, strokeWidth: stroke_width });
683     var relation_element = $('#svgenlargement .relation').filter( ':last' );
684     relation_element.insertBefore( $('#svgenlargement g g').filter(':first') );
685     return relation_element;
686 }
687
688 function detach_node( readings ) {
689     // separate out the deleted relationships, discard for now
690     if( 'DELETED' in readings ) {
691         // Remove each of the deleted relationship links.
692         $.each( readings['DELETED'], function( idx, pair ) {
693                 var relation_id = get_relation_id( pair[0], pair[1] );
694                         var relation = $( jq( relation_id ) );
695                         if( relation.size() == 0 ) { 
696                         relation_id = get_relation_id( pair[1], pair[0] );
697                 }
698                 relation_manager.remove( relation_id );
699         });
700         delete readings['DELETED'];
701     }
702     // add new node(s)
703     $.extend( readingdata, readings );
704     // remove from existing readings the witnesses for the new nodes/readings
705     $.each( readings, function( node_id, reading ) {
706         $.each( reading.witnesses, function( index, witness ) {
707             var witnesses = readingdata[ reading.orig_rdg ].witnesses;
708             readingdata[ reading.orig_rdg ].witnesses = $.removeFromArray( witness, witnesses );
709         } );
710     } );    
711     
712     detached_edges = [];
713     
714     // here we detach witnesses from the existing edges accoring to what's being relayed by readings
715     $.each( readings, function( node_id, reading ) {
716         var edges = edges_of( get_ellipse( reading.orig_rdg ) );
717         incoming_remaining = [];
718         outgoing_remaining = [];
719         $.each( reading.witnesses, function( index, witness ) {
720             incoming_remaining.push( witness );
721             outgoing_remaining.push( witness );
722         } );
723         $.each( edges, function( index, edge ) {
724             detached_edge = edge.detach_witnesses( reading.witnesses );
725             if( detached_edge != null ) {
726                 detached_edges.push( detached_edge );
727                 $.each( detached_edge.witnesses, function( index, witness ) {
728                     if( detached_edge.is_incoming == true ) {
729                         incoming_remaining = $.removeFromArray( witness, incoming_remaining );
730                     } else {
731                         outgoing_remaining = $.removeFromArray( witness, outgoing_remaining );
732                     }
733                 } );
734             }
735         } );
736         
737         // After detaching we still need to check if for *all* readings
738         // an edge was detached. It may be that a witness was not
739         // explicitly named on an edge but was part of a 'majority' edge
740         // in which case we need to duplicate and name that edge after those
741         // remaining witnesses.
742         if( outgoing_remaining.length > 0 ) {
743             $.each( edges, function( index, edge ) {
744                 if( edge.get_label() == 'majority' && !edge.is_incoming ) {
745                     detached_edges.push( edge.clone_for( outgoing_remaining ) );
746                 }
747             } );
748         }
749         if( incoming_remaining.length > 0 ) {
750             $.each( edges, function( index, edge ) {
751                 if( edge.get_label() == 'majority' && edge.is_incoming ) {
752                     detached_edges.push( edge.clone_for( incoming_remaining ) );
753                 }
754             } );
755         }
756         
757         // Finally multiple selected nodes may share edges
758         var copy_array = [];
759         $.each( detached_edges, function( index, edge ) {
760             var do_copy = true;
761             $.each( copy_array, function( index, copy_edge ) {
762                 if( copy_edge.g_elem.attr( 'id' ) == edge.g_elem.attr( 'id' ) ) { do_copy = false }
763             } );
764             if( do_copy == true ) {
765                 copy_array.push( edge );
766             }
767         } );
768         detached_edges = copy_array;
769         
770         // Lots of unabstracted knowledge down here :/
771         // Clone original node/reading, rename/id it..
772         duplicate_node = get_ellipse( reading.orig_rdg ).parent().clone();
773         duplicate_node.attr( 'id', node_id );
774         duplicate_node.children( 'title' ).text( node_id );
775         
776         // This needs somehow to move to node or even to shapes! #repositioned
777         duplicate_node_data = get_ellipse( reading.orig_rdg ).parent().data( 'repositioned' );
778         if( duplicate_node_data != null ) {
779             duplicate_node.children( 'ellipse' ).parent().data( 'repositioned', duplicate_node_data );
780         }
781         
782         // Add the node and all new edges into the graph
783         var graph_root = $('#svgenlargement svg g.graph');
784         graph_root.append( duplicate_node );
785         $.each( detached_edges, function( index, edge ) {
786             id_suffix = node_id.slice( node_id.indexOf( '_' ) );
787             edge.g_elem.attr( 'id', ( edge.g_elem.attr( 'id' ) + id_suffix ) );
788             edge_title = edge.g_elem.children( 'title' ).text();
789             edge_weight = 0.8 + ( 0.2 * edge.witnesses.length );
790             edge_title = edge_title.replace( reading.orig_rdg, node_id );
791             edge.g_elem.children( 'title' ).text( edge_title );
792             edge.g_elem.children( 'path').attr( 'stroke-width', edge_weight );
793             // Reg unabstracted knowledge: isn't it more elegant to make 
794             // it edge.append_to( graph_root )?
795             graph_root.append( edge.g_elem );
796         } );
797                 
798         // Make the detached node a real node_obj
799         var ellipse_elem = get_ellipse( node_id );
800         var new_node = new node_obj( ellipse_elem );
801         ellipse_elem.data( 'node_obj', new_node );
802
803         // Move the node somewhat up for 'dramatic effect' :-p
804         new_node.reposition( 0, -70 );        
805         
806     } );
807     
808 }
809
810 function merge_nodes( source_node_id, target_node_id, consequences ) {
811     if( consequences.status != null && consequences.status == 'ok' ) {
812         merge_node( source_node_id, target_node_id );
813         if( consequences.checkalign != null ) {
814             $.each( consequences.checkalign, function( index, node_ids ) {
815                 var temp_relation = draw_relation( node_ids[0], node_ids[1], "#89a02c" );
816                 var sy = parseInt( temp_relation.children('path').attr('d').split('C')[0].split(',')[1] );
817                 var ey = parseInt( temp_relation.children('path').attr('d').split(' ')[2].split(',')[1] );
818                 var yC = ey + (( sy - ey )/2); 
819                 // TODO: compute xC to be always the same distance to the amplitude of the curve
820                 var xC = parseInt( temp_relation.children('path').attr('d').split(' ')[1].split(',')[0] );
821                 var svg = $('#svgenlargement').children('svg').svg('get');
822                 parent_g = svg.group( $('#svgenlargement svg g') );
823                 var ids_text = node_ids[0] + '-' + node_ids[1]; 
824                 var merge_id = 'merge-' + ids_text;
825                 var yes = svg.image( parent_g, xC, (yC-8), 16, 16, merge_button_yes, { id: merge_id } );
826                 var no = svg.image( parent_g, (xC+20), (yC-8), 16, 16, merge_button_no, { id: 'no' + merge_id } );
827                 $(yes).hover( function(){ $(this).addClass( 'draggable' ) }, function(){ $(this).removeClass( 'draggable' ) } );
828                 $(no).hover( function(){ $(this).addClass( 'draggable' ) }, function(){ $(this).removeClass( 'draggable' ) } );
829                 $(yes).click( function( evt ){ 
830                     merge_node( node_ids[0], node_ids[1] );
831                     temp_relation.remove();
832                     $(evt.target).parent().remove();
833                     //notify backend
834                     var ncpath = getTextURL( 'merge' );
835                     var form_values = "source_id=" + node_ids[0] + "&target_id=" + node_ids[1] + "&single=true";
836                     $.post( ncpath, form_values );
837                 } );
838                 $(no).click( function( evt ) {
839                     temp_relation.remove();
840                     $(evt.target).parent().remove();
841                 } );
842             } );
843         }
844     }
845 }
846
847 function merge_node( source_node_id, target_node_id ) {
848     $.each( edges_of( get_ellipse( source_node_id ) ), function( index, edge ) {
849         if( edge.is_incoming == true ) {
850             edge.attach_endpoint( target_node_id );
851         } else {
852             edge.attach_startpoint( target_node_id );
853         }
854     } );
855     $( jq( source_node_id ) ).remove();    
856 }
857
858 function compress_nodes(readings) {
859     //add text of other readings to 1st reading
860
861     var first = get_ellipse(readings[0]);
862     var first_title = first.parent().find('text')[0];
863
864     for (var i = 1; i < readings.length; i++) {
865         var cur         = get_ellipse(readings[i]);
866         var cur_title   = cur.parent().find('text')[0];
867
868         first_title.textContent += " " + cur_title.textContent;
869     };
870
871     //delete all others
872     for (var i = 1; i < readings.length; i++) {
873         var node = get_ellipse(readings[i]);
874         var rid = readings[i-1] + '->' + readings[i];
875
876         //[].slice.call(s.getElementsByTagName('title')).find(function(elem){return elem.textContent=='r64.2->r66.2'}).parentNode.remove()
877
878         console.log(svg_root, svg_root_element);
879
880         console.log(rid);
881
882         [].slice.call(svg_root.getElementsByTagName('title'))
883             .find(function(elem){
884                 return elem.textContent==rid
885             }).parentNode.remove();
886
887         node.parent().remove();
888     }
889 }
890
891 function Marquee() {
892     
893     var self = this;
894     
895     this.x = 0;
896     this.y = 0;
897     this.dx = 0;
898     this.dy = 0;
899     this.enlargementOffset = $('#svgenlargement').offset();
900     this.svg_rect = $('#svgenlargement svg').svg('get');
901
902     this.show = function( event ) {
903         self.x = event.clientX;
904         self.y = event.clientY;
905         p = svg_root.createSVGPoint();
906         p.x = event.clientX - self.enlargementOffset.left;
907         p.y = event.clientY - self.enlargementOffset.top;
908         self.svg_rect.rect( p.x, p.y, 0, 0, { fill: 'black', 'fill-opacity': '0.1', stroke: 'black', 'stroke-dasharray': '4,2', strokeWidth: '0.02em', id: 'marquee' } );
909     };
910
911     this.expand = function( event ) {
912         self.dx = (event.clientX - self.x);
913         self.dy = (event.clientY - self.y);
914         var rect = $('#marquee');
915         if( rect.length != 0 ) {            
916             var rect_w =  Math.abs( self.dx );
917             var rect_h =  Math.abs( self.dy );
918             var rect_x = self.x - self.enlargementOffset.left;
919             var rect_y = self.y - self.enlargementOffset.top;
920             if( self.dx < 0 ) { rect_x = rect_x - rect_w }
921             if( self.dy < 0 ) { rect_y = rect_y - rect_h }
922             rect.attr("x", rect_x).attr("y", rect_y).attr("width", rect_w).attr("height", rect_h);
923         }
924     };
925     
926     this.select = function() {
927         var rect = $('#marquee');
928         if( rect.length != 0 ) {
929             //unselect any possible selected first
930             //TODO: unless SHIFT?
931             if( $('ellipse[fill="#9999ff"]').size() > 0 ) {
932               $('ellipse[fill="#9999ff"]').each( function() { 
933                   $(this).data( 'node_obj' ).set_draggable( false );
934               } );
935             }
936             //compute dimension of marquee
937             var left = $('#marquee').offset().left;
938             var top = $('#marquee').offset().top;
939             var right = left + parseInt( $('#marquee').attr( 'width' ) );
940             var bottom = top + parseInt( $('#marquee').attr( 'height' ) );
941             var tf = svg_root_element.getScreenCTM().inverse(); 
942             var p = svg_root.createSVGPoint();
943             p.x=left;
944             p.y=top;
945             var cx_min = p.matrixTransform(tf).x;
946             var cy_min = p.matrixTransform(tf).y;
947             p.x=right;
948             p.y=bottom;
949             var cx_max = p.matrixTransform(tf).x;
950             var cy_max = p.matrixTransform(tf).y;
951             //select any node with its center inside the marquee
952             var readings = [];
953             //also merge witness sets from nodes
954             var witnesses = [];
955             $('#svgenlargement ellipse').each( function( index ) {
956                 var cx = parseInt( $(this).attr('cx') );
957                 var cy = parseInt( $(this).attr('cy') );
958                 
959                 // This needs somehow to move to node or even to shapes! #repositioned
960                 // We should ask something more aling the lines of: nodes.each { |item| node.selected? }
961                 var org_translate = $(this).parent().data( 'repositioned' );
962                 if( org_translate != null ) {
963                     cx = cx + org_translate[0];
964                     cy = cy + org_translate[1];
965                 }
966                 
967                 if( cx > cx_min && cx < cx_max) {
968                     if( cy > cy_min && cy < cy_max) {
969                         // we actually heve no real 'selected' state for nodes, except coloring
970                         $(this).attr( 'fill', '#9999ff' );
971                         // Take note of the selected reading(s) and applicable witness(es)
972                         // so we can populate the multipleselect-form 
973                         readings.push( $(this).parent().attr('id') ); 
974                         var this_witnesses = $(this).data( 'node_obj' ).get_witnesses();
975                         witnesses = arrayUnique( witnesses.concat( this_witnesses ) );
976                     }
977                 }
978             });
979             if( $('ellipse[fill="#9999ff"]').size() > 0 ) {
980                 //add intersection of witnesses sets to the multi select form and open it
981                 $('#detach_collated_form').empty();
982
983                 $.each( readings, function( index, value ) {
984                   $('#detach_collated_form').append( $('<input>').attr(
985                     "type", "hidden").attr("name", "readings[]").attr(
986                     "value", value ) );
987                 });
988                 $.each( witnesses, function( index, value ) {
989                     $('#detach_collated_form').append( 
990                       '<input type="checkbox" name="witnesses[]" value="' + value 
991                       + '">' + value + '<br>' ); 
992                 });
993                 $('#multiple_selected_readings').attr('value', readings.join(',') ); 
994
995                 if ($('#action-merge')[0].checked) {
996                     $('#detach_collated_form').hide();
997                     $('#multipleselect-form-text').hide();
998
999                     $('#detach_btn').hide();
1000                     $('#merge_btn').show();
1001                 } else {
1002                     $('#detach_collated_form').show();
1003                     $('#multipleselect-form-text').show();
1004
1005                     $('#detach_btn').show();
1006                     $('#merge_btn').hide();
1007                 }
1008
1009                 $('#action-detach').change(function() {
1010                     if ($('#action-detach')[0].checked) {
1011                         $('#detach_collated_form').show();
1012                         $('#multipleselect-form-text').show();
1013
1014                         $('#detach_btn').show();
1015                         $('#merge_btn').hide();
1016                     }
1017                 });
1018
1019                 $('#action-merge').change(function() {
1020                     if ($('#action-merge')[0].checked) {
1021                         $('#detach_collated_form').hide();
1022                         $('#multipleselect-form-text').hide();
1023
1024                         $('#detach_btn').hide();
1025                         $('#merge_btn').show();
1026                     }
1027                 });
1028
1029                 $('#multipleselect-form').dialog( 'open' );
1030             }
1031             self.svg_rect.remove( $('#marquee') );
1032         }
1033     };
1034     
1035     this.unselect = function() {
1036         $('ellipse[fill="#9999ff"]').attr( 'fill', '#fff' );
1037     }
1038      
1039 }
1040
1041 function readings_equivalent( source, target ) {
1042         var sourcetext = readingdata[source].text;
1043         var targettext = readingdata[target].text;
1044         if( sourcetext === targettext ) {
1045                 return true;
1046         }
1047         // Lowercase and strip punctuation from both and compare again
1048         var nonwc = XRegExp('[^\\p{L}\\s]|_');
1049         var stlc = XRegExp.replace( sourcetext.toLocaleLowerCase(), nonwc, "", 'all' );
1050         var ttlc = XRegExp.replace( targettext.toLocaleLowerCase(), nonwc, "", 'all' );
1051         if( stlc === ttlc ) {
1052                 return true;
1053         }       
1054         return false;
1055 }
1056
1057 function scrollToEnd() {
1058         var stateTf = svg_root_element.getCTM().inverse();
1059
1060         var vbdim = svg_root.viewBox.baseVal;
1061         var width = Math.floor(svg_root_element.getBoundingClientRect().width) - vbdim.width;
1062
1063         var p = svg_root.createSVGPoint();
1064         p.x = width;
1065         p.y = 0;
1066         p = p.matrixTransform(stateTf);
1067
1068         var matrix = stateTf.inverse().translate(-p.x, -100);
1069         var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
1070         svg_root_element.setAttribute("transform", s);
1071 }
1072
1073 $(document).ready(function () {
1074     
1075   timer = null;
1076   relation_manager = new relation_factory();
1077   
1078   $('#update_workspace_button').data('locked', false);
1079    
1080   // Set up the mouse events on the SVG enlargement             
1081   $('#enlargement').mousedown(function (event) {
1082     $(this)
1083         .data('down', true)
1084         .data('x', event.clientX)
1085         .data('y', event.clientY)
1086         .data('scrollLeft', this.scrollLeft)
1087     stateTf = svg_root_element.getCTM().inverse();
1088     var p = svg_root.createSVGPoint();
1089     p.x = event.clientX;
1090     p.y = event.clientY;
1091     stateOrigin = p.matrixTransform(stateTf);
1092
1093     // Activate marquee if in interaction mode
1094     if( $('#update_workspace_button').data('locked') == true ) { marquee.show( event ) };
1095         
1096     event.returnValue = false;
1097     event.preventDefault();
1098     return false;
1099   }).mouseup(function (event) {
1100     marquee.select(); 
1101     $(this).data('down', false);
1102   }).mousemove(function (event) {
1103     if( timer != null ) { clearTimeout(timer); } 
1104     if ( ($(this).data('down') == true) && ($('#update_workspace_button').data('locked') == false) ) {
1105         var p = svg_root.createSVGPoint();
1106         p.x = event.clientX;
1107         p.y = event.clientY;
1108         p = p.matrixTransform(stateTf);
1109         var matrix = stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y);
1110         var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
1111         svg_root_element.setAttribute("transform", s);
1112     }
1113     marquee.expand( event ); 
1114     event.returnValue = false;
1115     event.preventDefault();
1116   }).mousewheel(function (event, delta) {
1117     event.returnValue = false;
1118     event.preventDefault();
1119     if ( $('#update_workspace_button').data('locked') == false ) {
1120         if (!delta || delta == null || delta == 0) delta = event.originalEvent.wheelDelta;
1121         if (!delta || delta == null || delta == 0) delta = -1 * event.originalEvent.detail;
1122         if( delta < -9 ) { delta = -9 }; 
1123         var z = 1 + delta/10;
1124         z = delta > 0 ? 1 : -1;
1125         var g = svg_root_element;
1126         if (g && ((z<1 && (g.getScreenCTM().a * start_element_height) > 4.0) || (z>=1 && (g.getScreenCTM().a * start_element_height) < 100))) {
1127             var root = svg_root;
1128             var p = root.createSVGPoint();
1129             p.x = event.originalEvent.clientX;
1130             p.y = event.originalEvent.clientY;
1131             p = p.matrixTransform(g.getCTM().inverse());
1132             var scaleLevel = 1+(z/20);
1133             var k = root.createSVGMatrix().translate(p.x, p.y).scale(scaleLevel).translate(-p.x, -p.y);
1134             var matrix = g.getCTM().multiply(k);
1135             var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
1136             g.setAttribute("transform", s);
1137         }
1138     }
1139   }).css({
1140     'overflow' : 'hidden',
1141     'cursor' : '-moz-grab'
1142   });
1143   
1144   
1145   // Set up the relationship creation dialog. This also functions as the reading
1146   // merge dialog where appropriate.
1147                           
1148   if( editable ) {
1149         $( '#dialog-form' ).dialog( {
1150         autoOpen: false,
1151         height: 350,
1152         width: 340,
1153         modal: true,
1154         buttons: {
1155           'Merge readings': function( evt ) {
1156                   var mybuttons = $(evt.target).closest('button').parent().find('button');
1157                   mybuttons.button( 'disable' );
1158                   $( '#status' ).empty();
1159                   form_values = $( '#collapse_node_form' ).serialize();
1160                   ncpath = getTextURL( 'merge' );
1161                   var jqjson = $.post( ncpath, form_values, function( data ) {
1162                           merge_nodes( $( '#source_node_id' ).val(), $( '#target_node_id' ).val(), data );
1163                           mybuttons.button( 'enable' );
1164               $( '#dialog-form' ).dialog( 'close' );
1165                   } );
1166           },
1167           OK: function( evt ) {
1168                 var mybuttons = $(evt.target).closest('button').parent().find('button');
1169                 mybuttons.button( 'disable' );
1170                 $( '#status' ).empty();
1171                 form_values = $( '#collapse_node_form' ).serialize();
1172                 ncpath = getTextURL( 'relationships' );
1173                 var jqjson = $.post( ncpath, form_values, function( data ) {
1174                         $.each( data, function( item, source_target ) { 
1175                                 var source_found = get_ellipse( source_target[0] );
1176                                 var target_found = get_ellipse( source_target[1] );
1177                                 var relation_found = $.inArray( source_target[2], $( '#keymap' ).data( 'relations' ) );
1178                                 if( source_found.size() && target_found.size() && relation_found > -1 ) {
1179                                         var emphasis = $('#is_significant option:selected').attr('value');
1180                                         var relation = relation_manager.create( source_target[0], source_target[1], relation_found, emphasis );
1181                                         relation_manager.toggle_active( relation.attr('id') );
1182                                         $.each( $('#collapse_node_form').serializeArray(), function( i, k ) {
1183                                                 relation.data( k.name, k.value );
1184                                         });
1185                                 }
1186                                 mybuttons.button( 'enable' );
1187                    });
1188                         $( '#dialog-form' ).dialog( 'close' );
1189                 }, 'json' );
1190           },
1191           Cancel: function() {
1192                   $( this ).dialog( 'close' );
1193           }
1194         },
1195         create: function(event, ui) { 
1196                 $(this).data( 'relation_drawn', false );
1197                 $('#rel_type').data( 'changed_after_open', false );
1198                 $.each( relationship_types, function(index, typedef) {   
1199                          $('#rel_type').append( $('<option />').attr( "value", typedef.name ).text(typedef.name) ); 
1200                 });
1201                 $.each( relationship_scopes, function(index, value) {   
1202                          $('#scope').append( $('<option />').attr( "value", value ).text(value) ); 
1203                 });
1204                 $.each( ternary_values, function( index, value ) {
1205                         $('#is_significant').append( $('<option />').attr( "value", value ).text(value) );
1206                 });
1207                 // Handler to reset fields to default, the first time the relationship 
1208                 // is changed after opening the form.
1209                 $('#rel_type').change( function () {
1210                         if( !$(this).data( 'changed_after_open' ) ) {
1211                                 $('#note').val('');
1212                                 $(this).find(':checked').removeAttr('checked');
1213                         }
1214                         $(this).data( 'changed_after_open', true );
1215                 });
1216         },
1217         open: function() {
1218                 relation_manager.create_temporary( 
1219                         $('#source_node_id').val(), $('#target_node_id').val() );
1220                 var buttonset = $(this).parent().find( '.ui-dialog-buttonset' )
1221                 if( readings_equivalent( $('#source_node_id').val(), 
1222                                 $('#target_node_id').val() ) ) {
1223                         buttonset.find( "button:contains('Merge readings')" ).show();
1224                 } else {
1225                         buttonset.find( "button:contains('Merge readings')" ).hide();
1226                 }
1227                 $(".ui-widget-overlay").css("background", "none");
1228                 $("#dialog_overlay").show();
1229                 $("#dialog_overlay").height( $("#enlargement_container").height() );
1230                 $("#dialog_overlay").width( $("#enlargement_container").innerWidth() );
1231                 $("#dialog_overlay").offset( $("#enlargement_container").offset() );
1232                 $('#rel_type').data( 'changed_after_open', false );
1233         },
1234         close: function() {
1235                 relation_manager.remove_temporary();
1236                 $( '#status' ).empty();
1237                 $("#dialog_overlay").hide();
1238         }
1239         }).ajaxError( function(event, jqXHR, ajaxSettings, thrownError) {
1240                 if( ( ajaxSettings.url == getTextURL('relationships')
1241                           || ajaxSettings.url == getTextURL('merge') )
1242                         && ajaxSettings.type == 'POST' && jqXHR.status == 403 ) {
1243                         var error;
1244                         if( jqXHR.responseText.indexOf('do not have permission to modify') > -1 ) {
1245                                 error = 'You are not authorized to modify this tradition. (Try logging in again?)';
1246                         } else {
1247                                 try {
1248                                         var errobj = jQuery.parseJSON( jqXHR.responseText );
1249                                         error = errobj.error + '</br>The relationship cannot be made.</p>';
1250                                 } catch(e) {
1251                                         error = jqXHR.responseText;
1252                                 }
1253                         }
1254                         $('#status').append( '<p class="error">Error: ' + error );
1255                 }
1256                 $(event.target).parent().find('.ui-button').button("enable");
1257         } );
1258   }
1259
1260   // Set up the relationship info display and deletion dialog.  
1261   $( "#delete-form" ).dialog({
1262     autoOpen: false,
1263     height: 135,
1264     width: 300,
1265     modal: false,
1266     buttons: {
1267         OK: function() { $( this ).dialog( "close" ); },
1268         "Delete all": function () { delete_relation( true ); },
1269         Delete: function() { delete_relation( false ); }
1270     },
1271     create: function(event, ui) {
1272         // TODO What is this logic doing?
1273         // This scales the buttons in the dialog and makes it look proper
1274         // Not sure how essential it is, does anything break if it's not here?
1275         var buttonset = $(this).parent().find( '.ui-dialog-buttonset' ).css( 'width', '100%' );
1276         buttonset.find( "button:contains('OK')" ).css( 'float', 'right' );
1277         // A: This makes sure that the pop up delete relation dialogue for a hovered over
1278         // relation auto closes if the user doesn't engage (mouseover) with it.
1279         var dialog_aria = $("div[aria-labelledby='ui-dialog-title-delete-form']");  
1280         dialog_aria.mouseenter( function() {
1281             if( mouseWait != null ) { clearTimeout(mouseWait) };
1282         })
1283         dialog_aria.mouseleave( function() {
1284             mouseWait = setTimeout( function() { $("#delete-form").dialog( "close" ) }, 2000 );
1285         })
1286     },
1287     open: function() {
1288         // Show the appropriate buttons...
1289                 var buttonset = $(this).parent().find( '.ui-dialog-buttonset' )
1290                 // If the user can't edit, show only the OK button
1291         if( !editable ) {
1292                 buttonset.find( "button:contains('Delete')" ).hide();
1293         // If the relationship scope is local, show only OK and Delete
1294         } else if( $('#delete_relation_scope').text() === 'local' ) {
1295                 $( this ).dialog( "option", "width", 160 );
1296                 buttonset.find( "button:contains('Delete')" ).show();
1297                 buttonset.find( "button:contains('Delete all')" ).hide();
1298         // Otherwise, show all three
1299         } else {
1300                 $( this ).dialog( "option", "width", 200 );
1301                 buttonset.find( "button:contains('Delete')" ).show();
1302                 }       
1303         mouseWait = setTimeout( function() { $("#delete-form").dialog( "close" ) }, 2000 );
1304     },
1305     close: function() {}
1306   });
1307
1308   $( "#multipleselect-form" ).dialog({
1309     autoOpen: false,
1310     height: 150,
1311     width: 250,
1312     modal: true,
1313     buttons: {
1314         Cancel: function() { $( this ).dialog( "close" ); },
1315         Detach: function ( evt ) {
1316             evt.target.id = 'detach_btn';
1317
1318             var self = $(this);
1319             var mybuttons = $(evt.target).closest('button').parent().find('button');
1320             mybuttons.button( 'disable' );
1321             var form_values = $('#detach_collated_form').serialize();
1322             ncpath = getTextURL( 'duplicate' );
1323             var jqjson = $.post( ncpath, form_values, function(data) {
1324                 detach_node( data );
1325                 mybuttons.button("enable");
1326                 self.dialog( "close" );
1327             } );
1328         },
1329         Merge: function (evt) {
1330             evt.target.id = 'merge_btn';
1331
1332             var self = $(this);
1333             var mybuttons = $(evt.target).closest('button').parent().find('button');
1334             mybuttons.button('disable');
1335
1336             var ncpath = getTextURL('compress');
1337             var form_values = $('#detach_collated_form').serialize();
1338
1339             var jqjson = $.post(ncpath, form_values, function(data) {
1340                 if (data.success) {
1341                     if (data.nodes) {
1342                         compress_nodes(data.nodes);
1343                     }
1344
1345                     mybuttons.button('enable');
1346                     self.dialog('close');
1347                 } else if (data.error_msg) {
1348                     document.getElementById('duplicate-merge-error').innerHTML = data.error_msg;
1349                     mybuttons.button('enable');
1350
1351                 }
1352             });
1353         }
1354     },
1355     create: function(event, ui) {
1356         var buttonset = $(this).parent().find( '.ui-dialog-buttonset' ).css( 'width', '100%' );
1357         buttonset.find( "button:contains('Cancel')" ).css( 'float', 'right' );
1358     },
1359     open: function() {
1360         $( this ).dialog( "option", "width", 200 );
1361         $(".ui-widget-overlay").css("background", "none");
1362         $('#multipleselect-form-status').empty();
1363         $("#dialog_overlay").show();
1364         $("#dialog_overlay").height( $("#enlargement_container").height() );
1365         $("#dialog_overlay").width( $("#enlargement_container").innerWidth() );
1366         $("#dialog_overlay").offset( $("#enlargement_container").offset() );
1367
1368         var mybuttons = $(this).parent().find('button');
1369
1370         mybuttons[1].id = 'detach_btn';
1371         mybuttons[2].id = 'merge_btn';
1372     },
1373     close: function() { 
1374         marquee.unselect();
1375         $("#dialog_overlay").hide();
1376     }
1377   }).ajaxError( function(event, jqXHR, ajaxSettings, thrownError) {
1378     if( ajaxSettings.url == getTextURL('duplicate') 
1379       && ajaxSettings.type == 'POST' && jqXHR.status == 403 ) {
1380       var error;
1381       if( jqXHR.responseText.indexOf('do not have permission to modify') > -1 ) {
1382         error = 'You are not authorized to modify this tradition. (Try logging in again?)';
1383       } else {
1384         try {
1385           var errobj = jQuery.parseJSON( jqXHR.responseText );
1386           error = errobj.error + '</br>The relationship cannot be made.</p>';
1387         } catch(e) {
1388           error = jqXHR.responseText;
1389         }
1390       }
1391       $('#multipleselect-form-status').append( '<p class="error">Error: ' + error );
1392     }
1393     $(event.target).parent().find('.ui-button').button("enable");
1394   }); 
1395
1396
1397   // Helpers for relationship deletion
1398   
1399   function delete_relation( scopewide ) {
1400           form_values = $('#delete_relation_form').serialize();
1401           if( scopewide ) {
1402                 form_values += "&scopewide=true";
1403           }
1404           ncpath = getTextURL( 'relationships' );
1405           var jqjson = $.ajax({ url: ncpath, data: form_values, success: function(data) {
1406                   $.each( data, function(item, source_target) { 
1407                           relation_manager.remove( get_relation_id( source_target[0], source_target[1] ) );
1408                   });
1409                   $( "#delete-form" ).dialog( "close" );
1410           }, dataType: 'json', type: 'DELETE' });
1411   }
1412   
1413   function toggle_relation_active( node_id ) {
1414       $('#svgenlargement .relation').find( "title:contains('" + node_id +  "')" ).each( function(index) {
1415           matchid = new RegExp( "^" + node_id );
1416           if( $(this).text().match( matchid ) != null ) {
1417                   var relation_id = $(this).parent().attr('id');
1418               relation_manager.toggle_active( relation_id );
1419           };
1420       });
1421   }
1422
1423   // function for reading form dialog should go here; 
1424   // just hide the element for now if we don't have morphology
1425   if( can_morphologize ) {
1426           $('#reading-form').dialog({
1427                 autoOpen: false,
1428                 // height: 400,
1429                 width: 450,
1430                 modal: true,
1431                 buttons: {
1432                         Cancel: function() {
1433                                 $( this ).dialog( "close" );
1434                         },
1435                         Update: function( evt ) {
1436                                 // Disable the button
1437                                 var mybuttons = $(evt.target).closest('button').parent().find('button');
1438                                 mybuttons.button( 'disable' );
1439                                 $('#reading_status').empty();
1440                                 var reading_id = $('#reading_id').val()
1441                                 form_values = {
1442                                         'id' : reading_id,
1443                                         'is_nonsense': $('#reading_is_nonsense').is(':checked'),
1444                                         'grammar_invalid': $('#reading_grammar_invalid').is(':checked'),
1445                                         'normal_form': $('#reading_normal_form').val() };
1446                                 // Add the morphology values
1447                                 $('.reading_morphology').each( function() {
1448                                         if( $(this).val() != '(Click to select)' ) {
1449                                                 var rmid = $(this).attr('id');
1450                                                 rmid = rmid.substring(8);
1451                                                 form_values[rmid] = $(this).val();
1452                                         }
1453                                 });
1454                                 // Make the JSON call
1455                                 ncpath = getReadingURL( reading_id );
1456                                 var reading_element = readingdata[reading_id];
1457                                 // $(':button :contains("Update")').attr("disabled", true);
1458                                 var jqjson = $.post( ncpath, form_values, function(data) {
1459                                         $.each( data, function(key, value) { 
1460                                                 reading_element[key] = value;
1461                                         });
1462                                         if( $('#update_workspace_button').data('locked') == false ) {
1463                                                 color_inactive( get_ellipse( reading_id ) );
1464                                         }
1465                                         mybuttons.button("enable");
1466                                         $( "#reading-form" ).dialog( "close" );
1467                                 });
1468                                 // Re-color the node if necessary
1469                                 return false;
1470                         }
1471                 },
1472                 create: function() {
1473                         if( !editable ) {
1474                                 // Get rid of the disallowed editing UI bits
1475                                 $( this ).dialog( "option", "buttons", 
1476                                         [{ text: "OK", click: function() { $( this ).dialog( "close" ); }}] );
1477                                 $('#reading_relemmatize').hide();
1478                         }
1479                 },
1480                 open: function() {
1481                         $(".ui-widget-overlay").css("background", "none");
1482                         $("#dialog_overlay").show();
1483                         $('#reading_status').empty();
1484                         $("#dialog_overlay").height( $("#enlargement_container").height() );
1485                         $("#dialog_overlay").width( $("#enlargement_container").innerWidth() );
1486                         $("#dialog_overlay").offset( $("#enlargement_container").offset() );
1487                         $("#reading-form").parent().find('.ui-button').button("enable");
1488                 },
1489                 close: function() {
1490                         $("#dialog_overlay").hide();
1491                 }
1492           }).ajaxError( function(event, jqXHR, ajaxSettings, thrownError) {
1493                 if( ajaxSettings.url.lastIndexOf( getReadingURL('') ) > -1
1494                         && ajaxSettings.type == 'POST' && jqXHR.status == 403 ) {
1495                         var error;
1496                         if( jqXHR.responseText.indexOf('do not have permission to modify') > -1 ) {
1497                                 error = 'You are not authorized to modify this tradition. (Try logging in again?)';
1498                         } else {
1499                                 try {
1500                                         var errobj = jQuery.parseJSON( jqXHR.responseText );
1501                                         error = errobj.error + '</br>The relationship cannot be made.</p>';
1502                                 } catch(e) {
1503                                         error = jqXHR.responseText;
1504                                 }
1505                         }
1506                         $('#status').append( '<p class="error">Error: ' + error );
1507                 }
1508                 $(event.target).parent().find('.ui-button').button("enable");
1509           });
1510         } else {
1511                 $('#reading-form').hide();
1512         }
1513   
1514
1515   $('#update_workspace_button').click( function() {
1516          if( !editable ) {
1517                 return;
1518          }
1519      var svg_enlargement = $('#svgenlargement').svg().svg('get').root();
1520      mouse_scale = svg_root_element.getScreenCTM().a;
1521      if( $(this).data('locked') == true ) {
1522          $('#svgenlargement ellipse' ).each( function( index ) {
1523              if( $(this).data( 'node_obj' ) != null ) {
1524                  $(this).data( 'node_obj' ).ungreyout_edges();
1525                  $(this).data( 'node_obj' ).set_selectable( false );
1526                  color_inactive( $(this) );
1527                  var node_id = $(this).data( 'node_obj' ).get_id();
1528                  toggle_relation_active( node_id );
1529                  $(this).data( 'node_obj', null );
1530              }
1531          })
1532          $(this).data('locked', false);
1533          $(this).css('background-position', '0px 44px');
1534      } else {
1535          var left = $('#enlargement').offset().left;
1536          var right = left + $('#enlargement').width();
1537          var tf = svg_root_element.getScreenCTM().inverse(); 
1538          var p = svg_root.createSVGPoint();
1539          p.x=left;
1540          p.y=100;
1541          var cx_min = p.matrixTransform(tf).x;
1542          p.x=right;
1543          var cx_max = p.matrixTransform(tf).x;
1544          $('#svgenlargement ellipse').each( function( index ) {
1545              var cx = parseInt( $(this).attr('cx') );
1546              if( cx > cx_min && cx < cx_max) { 
1547                  if( $(this).data( 'node_obj' ) == null ) {
1548                      $(this).data( 'node_obj', new node_obj( $(this) ) );
1549                  } else {
1550                      $(this).data( 'node_obj' ).set_selectable( true );
1551                  }
1552                  $(this).data( 'node_obj' ).greyout_edges();
1553                  var node_id = $(this).data( 'node_obj' ).get_id();
1554                  toggle_relation_active( node_id );
1555              }
1556          });
1557          $(this).css('background-position', '0px 0px');
1558          $(this).data('locked', true );
1559      }
1560   });
1561
1562   if( !editable ) {  
1563     // Hide the unused elements
1564     $('#dialog-form').hide();
1565     $('#update_workspace_button').hide();
1566   }
1567
1568   
1569   $('.helptag').popupWindow({ 
1570           height:500, 
1571           width:800, 
1572           top:50, 
1573           left:50,
1574           scrollbars:1 
1575   }); 
1576
1577   expandFillPageClients();
1578   $(window).resize(function() {
1579     expandFillPageClients();
1580   });
1581
1582 });
1583
1584
1585 function expandFillPageClients() {
1586         $('.fillPage').each(function () {
1587                 $(this).height($(window).height() - $(this).offset().top - MARGIN);
1588         });
1589 }
1590
1591 function loadSVG(svgData, direction) {
1592         text_direction = direction;
1593
1594         var svgElement = $('#svgenlargement');
1595
1596         $(svgElement).svg('destroy');
1597
1598         $(svgElement).svg({
1599                 loadURL: svgData,
1600                 onLoad : svgEnlargementLoaded
1601         });
1602 }
1603
1604
1605
1606 /*      OS Gadget stuff
1607
1608 function svg_select_callback(topic, data, subscriberData) {
1609         svgData = data;
1610         loadSVG(svgData);
1611 }
1612
1613 function loaded() {
1614         var prefs = new gadgets.Prefs();
1615         var preferredHeight = parseInt(prefs.getString('height'));
1616         if (gadgets.util.hasFeature('dynamic-height')) gadgets.window.adjustHeight(preferredHeight);
1617         expandFillPageClients();
1618 }
1619
1620 if (gadgets.util.hasFeature('pubsub-2')) {
1621         gadgets.HubSettings.onConnect = function(hum, suc, err) {
1622                 subId = gadgets.Hub.subscribe("interedition.svg.selected", svg_select_callback);
1623                 loaded();
1624         };
1625 }
1626 else gadgets.util.registerOnLoadHandler(loaded);
1627 */