]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/marcedit.js
LP#1281678 Fixed field context menus should trigger close confirmation dialog
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / marcedit.js
1 /* vim: et:sw=4:ts=4:
2  *
3  * Copyright (C) 2004-2008  Georgia Public Library Service
4  * Copyright (C) 2008-2010  Equinox Software, Inc.
5  * Mike Rylander <miker@esilibrary.com> 
6  *
7  * Copyright (C) 2010 Dan Scott <dan@coffeecode.net>
8  * Copyright (C) 2010 Internationaal Instituut voor Sociale Geschiedenis <info@iisg.nl>
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.  
19  *
20  */
21 // Pretty printing kills whitespace too, so disable it.
22 XML.prettyPrinting = false;
23 var xmlDeclaration = /^<\?xml version[^>]+?>/;
24
25 var serializer = new XMLSerializer();
26 var marcns = new Namespace("http://www.loc.gov/MARC21/slim");
27 var gw = new Namespace("http://opensrf.org/-/namespaces/gateway/v1");
28 var xulns = new Namespace("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
29 default xml namespace = marcns;
30
31 var tooltip_hash = {};
32 var current_focus;
33 var _record;
34 var _record_type;
35 var bib_data;
36
37 var xml_record;
38
39 var context_menus;
40 var tag_menu;
41 var p;
42 var auth_pages = {};
43 var show_auth_menu = false;
44
45 var _fixed_field_values = {}, _fixed_field_context_menus = {};
46 var _fixed_field_anonymous_func_counter = 0;
47
48 function $(id) { return document.getElementById(id); }
49
50 var acs; // AuthorityControlSet
51
52 function get_new_008() {
53     var orig008 = '                                        ';
54     var now = new Date();
55     var y = now.getUTCFullYear().toString().substr(2,2);
56     var m = now.getUTCMonth() + 1;
57     if (m < 10) m = '0' + m;
58     var d = now.getUTCDate();
59     if (d < 10) d = '0' + d;
60
61     if (xml_record.controlfield.(@tag == '008')) {
62         var field = xml_record.controlfield.(@tag == '008')[0];
63         orig008 = field.text();
64     }
65
66     /* lang code from 041a */
67     var lang = orig008.substr(35, 3);
68     if (xml_record.datafield.(@tag == '041')) {
69         var field = xml_record.datafield.(@tag == '041')[0];
70         if (field && field.subfield.(@code == 'a')) {
71             lang = field.subfield.(@code == 'a')[0];
72         }
73     }
74
75     /* country code from 044a */
76     var country = orig008.substr(15, 3);
77     if (xml_record.datafield.(@tag == '044')) {
78         var field = xml_record.datafield.(@tag == '044')[0];
79         if (field && field.subfield.(@code == 'a')) {
80             country = field.subfield.(@code == 'a')[0];
81         }
82     }
83     while (country.length < 3) country = country + ' ';
84     if (country.length > 3) country = country.substr(0,3);
85
86     /* date1 from 260c */
87     var date1 = now.getUTCFullYear().toString();
88     if (xml_record.datafield.(@tag == '260')) {
89         var field = xml_record.datafield.(@tag == '260')[0];
90         if (field && field.subfield.(@code == 'c')) {
91             var tmpd = field.subfield.(@code == 'c')[0].replace(/[^0-9]/g, '');
92             if (tmpd.match(/^\d\d\d\d/)) {
93                 date1 = tmpd.substr(0, 4);
94             }
95         }
96     }
97
98     var date2 = orig008.substr(11, 4);
99     var datetype = orig008.substr(6, 1);
100     var modded = orig008.substr(38, 1);
101     var catsrc = orig008.substr(39, 1);
102
103     return '' + y + m + d + datetype + date1 + date2 + country + '                 ' + lang + modded + catsrc;
104
105 }
106
107 function mangle_005() {
108     var now = new Date();
109     var y = now.getUTCFullYear();
110
111     var m = now.getUTCMonth() + 1;
112     if (m < 10) m = '0' + m;
113     
114     var d = now.getUTCDate();
115     if (d < 10) d = '0' + d;
116     
117     var H = now.getUTCHours();
118     if (H < 10) H = '0' + H;
119     
120     var M = now.getUTCMinutes();
121     if (M < 10) M = '0' + M;
122     
123     var S = now.getUTCSeconds();
124     if (S < 10) S = '0' + S;
125     
126
127     var stamp = '' + y + m + d + H + M + S + '.0';
128     createControlField('005',stamp);
129
130 }
131
132 function createControlField (tag,data) {
133     // first, remove the old field, if any;
134     for (var i in xml_record.controlfield.(@tag == tag)) delete xml_record.controlfield.(@tag == tag)[i];
135
136     var cf = <controlfield tag="" xmlns="http://www.loc.gov/MARC21/slim">{ data }</controlfield>;
137     cf.@tag = tag;
138
139     // then, find the right position and insert it
140     var done = 0;
141     var cfields = xml_record.controlfield;
142     var base = Number(tag.substring(2));
143     for (var i in cfields) {
144         var t = Number(cfields[i].@tag.toString().substring(2));
145         if (t > base) {
146             xml_record.insertChildBefore( cfields[i], cf );
147             done = 1
148             break;
149         }
150     }
151
152     if (!done) xml_record.insertChildBefore( xml_record.datafield[0], cf );
153
154     return cf;
155 }
156
157 function xml_escape_unicode ( str ) {
158     return str.replace(
159         /([\u0080-\ufffe])/g,
160         function (r,s) { return "&#x" + s.charCodeAt(0).toString(16) + ";"; }
161     );
162 }
163
164 function wrap_long_fields (node) {
165     var text_size = dojo.attr(node, 'size');
166     var hard_width = 100; 
167     if (text_size > hard_width) {
168         dojo.attr(node, 'multiline', 'true');
169         dojo.attr(node, 'cols', hard_width);
170         var text_rows = (text_size / hard_width) + 1;
171         dojo.attr(node, 'rows', text_rows);
172     }
173 }
174
175 function set_flat_editor (useFlatText) {
176
177     var xe = $('xul-editor');
178     var te = $('text-editor');
179
180     if (useFlatText) {
181         if (xe.hidden) { return; }
182         te.hidden = false;
183         xe.hidden = true;
184     } else {
185         if (te.hidden) { return; }
186         te.hidden = true;
187         xe.hidden = false;
188     }
189
190     if (te.hidden) {
191         // get the marcxml from the text box
192         var xml_string = new MARC.Record({
193             marcbreaker : $('text-editor-box').value,
194             delimiter : '$'
195         }).toXmlString();
196
197         // reset the xml record and rerender it
198         xml_record = new XML( xml_string );
199         if (xml_record..record[0]) xml_record = xml_record..record[0];
200         loadRecord();
201     } else {
202         var xml_string = xml_record.toXMLString();
203
204         // push the xml record into the textbox
205         var rec = new MARC.Record ({ delimiter : '$', marcxml : xml_string });
206         $('text-editor-box').value = rec.toBreaker();
207     }
208 }
209
210 function my_init() {
211     try {
212
213         if (typeof JSAN == 'undefined') { throw( $("commonStrings").getString('common.jsan.missing') ); }
214         JSAN.errorLevel = "die"; // none, warn, or die
215         JSAN.addRepository('/xul/server/');
216
217         dojo.require('openils.AuthorityControlSet');
218         acs = new openils.AuthorityControlSet ();
219
220         // Fake xulG for standalone...
221         try {
222             window.xulG.record;
223         } catch (e) {
224             window.xulG = {};
225             window.xulG.record = {};
226             window.xulG.save = {};
227             window.xulG.marc_control_number_identifier = 'CONS';
228
229             window.xulG.save.label = $('catStrings').getString('staff.cat.marcedit.save.label');
230             window.xulG.save.func = function (r) { alert(r); }
231
232             var cgi = new CGI();
233             var _rid = cgi.param('record');
234             if (_rid) {
235                 window.xulG.record.id = _rid;
236                 window.xulG.record.url = '/opac/extras/supercat/retrieve/marcxml/record/' + _rid;
237             }
238         }
239
240         // End faking part...
241
242         /* Check for an explicitly passed record type
243          * This is not the same as the fixed-field record type; we can't trust
244          * the fixed fields when making modifications to the attributes for a
245          * given record (in particular, config.bib_source only applies for bib
246          * records, but an auth or MFHD record with the same ID and bad fixed
247          * fields could trample the config.bib_source value for the
248          * corresponding bib record if we're not careful.
249          *
250          * are = authority record
251          * sre = serial record (MFHD)
252          * bre = bibliographic record
253          */
254         if (!window.xulG.record.rtype) {
255             var cgi = new CGI();
256             window.xulG.record.rtype = cgi.param('rtype') || false;
257         }
258
259         document.getElementById('save-button').setAttribute('label', window.xulG.save.label);
260         /* Ugh. Sorry about the spaghetti. */
261         document.getElementById('save-button').setAttribute('oncommand',
262             'var to_save = function() { ' + /* begin to_save() */
263             'if ($("xul-editor").hidden) set_flat_editor(false); ' +
264             'mangle_005(); ' + 
265             'var xml_string = xml_escape_unicode( xml_record.toXMLString() ); ' + 
266             'save_attempt( xml_string ); ' +
267             'loadRecord(); ' +
268             '}; ' + /* end to_save() */
269
270             'if (typeof _owPCW == "object") { ' +
271             ' for (var k in _owPCW) { ' +
272             '  if (_owPCW[k].active) { ' +
273             '    try { _owPCW[k].apply(to_save); to_save.ran = true; } ' +
274             '    catch (E) { alert("_ow_PCW[" + k + "]: " + E); } ' +
275             '    break; ' +
276             '  }' +
277             ' }' +
278             '} ' +
279             'if (!to_save.ran) to_save();'
280         );
281
282         if (window.xulG.record.url) {
283             var req =  new XMLHttpRequest();
284             req.open('POST',window.xulG.record.url,false);
285             req.send(null);
286             window.xulG.record.marc = req.responseText.replace(xmlDeclaration, '');
287         }
288
289         xml_record = new XML( window.xulG.record.marc );
290         if (xml_record..record[0]) xml_record = xml_record..record[0];
291
292         // Get the tooltip xml all async like
293         req =  new XMLHttpRequest();
294
295         // Set a default locale in case preferences fail us
296         var locale = "en-US";
297
298         // Try to get the locale from our preferences
299         try {
300             const Cc = Components.classes;
301             const Ci = Components.interfaces;
302             locale = Cc["@mozilla.org/preferences-service;1"].
303                 getService(Ci.nsIPrefBranch).
304                 getCharPref("general.useragent.locale");
305         }
306         catch (e) { }
307
308         // TODO: We should send a HEAD request to check for the existence of the desired file
309         // then fall back to the default locale if preferred locale is not necessary;
310         // however, for now we have a simplistic check:
311         //
312         // we currently have translations for only three locales; in the absence of a
313         // valid locale, default to the almighty en-US
314         if (locale != 'en-US' && locale != 'fr-CA' && locale != 'fi-FI') {
315             locale = 'en-US';
316         }
317
318         // grab the right tooltip based on MARC type
319         var tooltip_doc = 'marcedit-tooltips.xml';
320         switch (window.xulG.record.rtype) {
321             case 'bre':
322                 tooltip_doc = 'marcedit-tooltips.xml';
323                 break; 
324             case 'are':
325                 tooltip_doc = 'marcedit-tooltips-authority.xml';
326                 locale = 'en-US'; // FIXME - note TODO above; at moment only en-US has this
327                 break; 
328             case 'sre':
329                 tooltip_doc = 'marcedit-tooltips-mfhd.xml';
330                 locale = 'en-US'; // FIXME - note TODO above; at moment only en-US has this
331                 break; 
332             default: 
333                 tooltip_doc = 'marcedit-tooltips.xml';
334         }
335
336         // Get the locale-specific tooltips
337         req.open('GET','/xul/server/locale/' + locale + '/' + tooltip_doc,true);
338
339         context_menus = createComplexXULElement('popupset');
340         document.documentElement.appendChild( context_menus );
341
342         tag_menu = createMenuPopup({position : 'after_start', id : 'tags_popup'});
343         context_menus.appendChild( tag_menu );
344
345         tag_menu.appendChild(
346             createMenuitem(
347                 { label : $('catStrings').getString('staff.cat.marcedit.add_row.label'),
348                   oncommand : 
349                     'var e = document.createEvent("KeyEvents");' +
350                     'e.initKeyEvent("keypress",1,1,null,1,0,0,0,13,0);' +
351                     'current_focus.inputField.dispatchEvent(e);'
352                  }
353             )
354         );
355
356         tag_menu.appendChild(
357             createMenuitem(
358                 { label : $('catStrings').getString('staff.cat.marcedit.insert_row.label'),
359                   oncommand : 
360                     'var e = document.createEvent("KeyEvents");' +
361                     'e.initKeyEvent("keypress",1,1,null,1,0,1,0,13,0);' +
362                     'current_focus.inputField.dispatchEvent(e);'
363                  }
364             )
365         );
366
367         tag_menu.appendChild(
368             createMenuitem(
369                 { label : $('catStrings').getString('staff.cat.marcedit.remove_row.label'),
370                   oncommand : 
371                     'var e = document.createEvent("KeyEvents");' +
372                     'e.initKeyEvent("keypress",1,1,null,1,0,0,0,46,0);' +
373                     'current_focus.inputField.dispatchEvent(e);'
374                 }
375             )
376         );
377
378         tag_menu.appendChild( createComplexXULElement( 'separator' ) );
379
380         tag_menu.appendChild(
381             createMenuitem(
382                 { label : $('catStrings').getString('staff.cat.marcedit.replace_006.label'),
383                   oncommand : 
384                     'var e = document.createEvent("KeyEvents");' +
385                     'e.initKeyEvent("keypress",1,1,null,1,0,0,0,117,0);' +
386                     'current_focus.inputField.dispatchEvent(e);'
387                  }
388             )
389         );
390
391         tag_menu.appendChild(
392             createMenuitem(
393                 { label : $('catStrings').getString('staff.cat.marcedit.replace_007.label'),
394                   oncommand : 
395                     'var e = document.createEvent("KeyEvents");' +
396                     'e.initKeyEvent("keypress",1,1,null,1,0,0,0,118,0);' +
397                     'current_focus.inputField.dispatchEvent(e);'
398                 }
399             )
400         );
401
402         tag_menu.appendChild(
403             createMenuitem(
404                 { label : $('catStrings').getString('staff.cat.marcedit.replace_008.label'),
405                   oncommand : 
406                     'var e = document.createEvent("KeyEvents");' +
407                     'e.initKeyEvent("keypress",1,1,null,1,0,0,0,119,0);' +
408                     'current_focus.inputField.dispatchEvent(e);'
409                 }
410             )
411         );
412
413         tag_menu.appendChild( createComplexXULElement( 'separator' ) );
414
415         p = createComplexXULElement('popupset');
416         document.documentElement.appendChild( p );
417
418         req.onreadystatechange = function () {
419             if (req.readyState == 4) {
420                 bib_data = new XML( req.responseText.replace(xmlDeclaration, '') );
421                 genToolTips();
422             }
423         }
424         req.send(null);
425
426         loadRecord();
427
428
429         if (! xulG.fast_add_item) {
430             document.getElementById('fastItemAdd_checkbox').hidden = true;
431         }
432         document.getElementById('fastItemAdd_textboxes').hidden = document.getElementById('fastItemAdd_checkbox').hidden || !document.getElementById('fastItemAdd_checkbox').checked;
433
434         // Only show bib sources for bib records that already exist in the database
435         if (xulG.record.rtype == 'bre' && xulG.record.id) {
436             dojo.require('openils.PermaCrud');
437             var authtoken = ses();
438             // Retrieve the current record attributes
439             var bib = new openils.PermaCrud({"authtoken": authtoken}).retrieve('bre', xulG.record.id);
440
441             // Remember the current bib source of the record
442             xulG.record.bre = bib;
443
444             buildBibSourceList(authtoken, xulG.record.id);
445         }
446
447         preparePhysCharWizardContext();
448         dojo.require('MARC.FixedFields');
449         dojo.require("openils.widget.PhysCharWizard");
450
451     } catch(E) {
452         alert('FIXME, MARC Editor, my_init: ' + E);
453     }
454 }
455
456
457 function createComplexHTMLElement (e, attrs, objects, text) {
458     var l = document.createElementNS('http://www.w3.org/1999/xhtml',e);
459
460     if (attrs) {
461         for (var i in attrs) l.setAttribute(i,attrs[i]);
462     }
463
464     if (objects) {
465         for ( var i in objects ) l.appendChild( objects[i] );
466     }
467
468     if (text) {
469         l.appendChild( document.createTextNode(text) )
470     }
471
472     return l;
473 }
474
475 function createComplexXULElement (e, attrs, objects) {
476     var l = document.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul',e);
477
478     if (attrs) {
479         for (var i in attrs) {
480             if (typeof attrs[i] == 'function') {
481                 l.addEventListener( i, attrs[i], true );
482             } else {
483                 l.setAttribute(i,attrs[i]);
484             }
485         }
486     } 
487
488     if (objects) {
489         for ( var i in objects ) l.appendChild( objects[i] );
490     }
491
492     return l;
493 }
494
495 function createDescription (attrs) {
496     return createComplexXULElement('description', attrs, Array.prototype.slice.apply(arguments, [1]) );
497 }
498
499 function createTooltip (attrs) {
500     return createComplexXULElement('tooltip', attrs, Array.prototype.slice.apply(arguments, [1]) );
501 }
502
503 function createLabel (attrs) {
504     return createComplexXULElement('label', attrs, Array.prototype.slice.apply(arguments, [1]) );
505 }
506
507 function createVbox (attrs) {
508     return createComplexXULElement('vbox', attrs, Array.prototype.slice.apply(arguments, [1]) );
509 }
510
511 function createHbox (attrs) {
512     return createComplexXULElement('hbox', attrs, Array.prototype.slice.apply(arguments, [1]) );
513 }
514
515 function createRow (attrs) {
516     return createComplexXULElement('row', attrs, Array.prototype.slice.apply(arguments, [1]) );
517 }
518
519 function createTextbox (attrs) {
520     return createComplexXULElement('textbox', attrs, Array.prototype.slice.apply(arguments, [1]) );
521 }
522
523 function createMenu (attrs) {
524     return createComplexXULElement('menu', attrs, Array.prototype.slice.apply(arguments, [1]) );
525 }
526
527 function createMenuPopup (attrs) {
528     return createComplexXULElement('menupopup', attrs, Array.prototype.slice.apply(arguments, [1]) );
529 }
530
531 function createPopup (attrs) {
532     return createComplexXULElement('popup', attrs, Array.prototype.slice.apply(arguments, [1]) );
533 }
534
535 function createMenuitem (attrs) {
536     return createComplexXULElement('menuitem', attrs, Array.prototype.slice.apply(arguments, [1]) );
537 }
538
539 function createCheckbox (attrs) {
540     return createComplexXULElement('checkbox', attrs, Array.prototype.slice.apply(arguments, [1]) );
541 }
542
543 // Find the next textbox that we can use for a focus point
544 // For control fields, use the first editable text box
545 // For data fields, focus on the first subfield text box
546 function setFocusToNextTag (row, direction) {
547     var keep_looking = true;
548     while (keep_looking && (direction == 'up' ? row = row.previousSibling : row = row.nextSibling)) {
549         // Is it a datafield?
550         dojo.query('hbox', row).query('hbox').query('textbox').forEach(function(node, index, arr) {
551             node.focus();
552             keep_looking = false;
553         });
554
555         // No, it's a control field; use the first textbox
556         if (keep_looking) {
557             dojo.query('textbox', row).forEach(function(node, index, arr) {
558                 node.focus();
559                 keep_looking = false;
560             });
561         }
562     }
563
564     return true;
565 }
566
567 function set_lock_on_keypress(ev) {
568     try {
569         //dump('keypress: isChar = ' + ev.isChar + ' char = ' + ev.char + ' charCode = ' + ev.charCode + ' key = ' + ev.key + ' keyCode = ' + ev.keyCode + '\n');
570         if (! /* NOT */(
571                 ev.altKey
572                 || ev.ctrlKey
573                 || ev.metaKey
574                 || ev.keyCode == ev.DOM_VK_F1
575                 || ev.keyCode == ev.DOM_VK_F2
576                 || ev.keyCode == ev.DOM_VK_F3
577                 || ev.keyCode == ev.DOM_VK_F4
578                 || ev.keyCode == ev.DOM_VK_F5
579                 || ev.keyCode == ev.DOM_VK_F6
580                 || ev.keyCode == ev.DOM_VK_F7
581                 || ev.keyCode == ev.DOM_VK_F8
582                 || ev.keyCode == ev.DOM_VK_F9
583                 || ev.keyCode == ev.DOM_VK_F10
584                 || ev.keyCode == ev.DOM_VK_F11
585                 || ev.keyCode == ev.DOM_VK_F12
586                 || ev.keyCode == ev.DOM_VK_F13
587                 || ev.keyCode == ev.DOM_VK_F14
588                 || ev.keyCode == ev.DOM_VK_F15
589                 || ev.keyCode == ev.DOM_VK_F16
590                 || ev.keyCode == ev.DOM_VK_F17
591                 || ev.keyCode == ev.DOM_VK_F18
592                 || ev.keyCode == ev.DOM_VK_F19
593                 || ev.keyCode == ev.DOM_VK_F20
594                 || ev.keyCode == ev.DOM_VK_F21
595                 || ev.keyCode == ev.DOM_VK_F22
596                 || ev.keyCode == ev.DOM_VK_F23
597                 || ev.keyCode == ev.DOM_VK_F24
598         )) {
599             oils_lock_page();
600         }
601     } catch(E) {
602         alert(E);
603     }
604 }
605
606 function createMARCTextbox (element,attrs) {
607
608     var box = createComplexXULElement('textbox', attrs, Array.prototype.slice.apply(arguments, [2]) );
609     box.addEventListener(
610         'keypress',
611         set_lock_on_keypress,
612         false
613     );
614     box.onkeypress = function (event) {
615         var root_node;
616         var node = element;
617         while(node = node.parent()) {
618             root_node = node;
619         }
620
621         var row = event.target;
622         while (row.tagName != 'row') row = row.parentNode;
623
624         if (element.nodeKind() == 'attribute') element[0]=box.value;
625         else element.setChildren( box.value );
626
627         if (element.localName() != 'controlfield') {
628             if ((event.charCode == 100 || event.charCode == 105) && event.ctrlKey) { // ctrl+d or ctrl+i
629
630                 var index_sf, target, move_data;
631                 if (element.localName() == 'subfield') {
632                     index_sf = element;
633                     target = event.target.parentNode;
634
635                     var start = event.target.selectionStart;
636                     var end = event.target.selectionEnd - event.target.selectionStart ?
637                             event.target.selectionEnd :
638                             event.target.value.length;
639
640                     move_data = event.target.value.substring(start,end);
641                     event.target.value = event.target.value.substring(0,start) + event.target.value.substring(end);
642                     event.target.setAttribute('size', event.target.value.length + 2);
643     
644                     element.setChildren( event.target.value );
645
646                 } else if (element.localName() == 'code') {
647                     index_sf = element.parent();
648                     target = event.target.parentNode;
649                 } else if (element.localName() == 'tag' || element.localName() == 'ind1' || element.localName() == 'ind2') {
650                     index_sf = element.parent().children()[element.parent().children().length() - 1];
651                     target = event.target.parentNode.lastChild.lastChild;
652                 }
653
654                 var sf = <subfield code="" xmlns="http://www.loc.gov/MARC21/slim">{ move_data }</subfield>;
655
656                 index_sf.parent().insertChildAfter( index_sf, sf );
657
658                 var new_sf = marcSubfield(sf);
659
660                 if (target === target.parentNode.lastChild) {
661                     target.parentNode.appendChild( new_sf );
662                 } else {
663                     target.parentNode.insertBefore( new_sf, target.nextSibling );
664                 }
665
666                 new_sf.firstChild.nextSibling.focus();
667
668                 event.preventDefault();
669                 return false;
670
671             } else if (event.keyCode == 13 || event.keyCode == 77) {
672                 if (event.ctrlKey) { // ctrl+enter
673
674                     var index;
675                     if (element.localName() == 'subfield') index = element.parent();
676                     if (element.localName() == 'code') index = element.parent().parent();
677                     if (element.localName() == 'tag') index = element.parent();
678                     if (element.localName() == 'ind1') index = element.parent();
679                     if (element.localName() == 'ind2') index = element.parent();
680
681                     var df = <datafield tag="" ind1="" ind2="" xmlns="http://www.loc.gov/MARC21/slim"><subfield code="" /></datafield>;
682
683                     if (event.shiftKey) { // ctrl+shift+enter
684                         index.parent().insertChildBefore( index, df );
685                     } else {
686                         index.parent().insertChildAfter( index, df );
687                     }
688
689                     var new_df = marcDatafield(df);
690
691                     if (row.parentNode.lastChild === row) {
692                         row.parentNode.appendChild( new_df );
693                     } else {
694                         if (event.shiftKey) { // ctrl+shift+enter
695                             row.parentNode.insertBefore( new_df, row );
696                         } else {
697                             row.parentNode.insertBefore( new_df, row.nextSibling );
698                         }
699                     }
700
701                     new_df.firstChild.focus();
702
703                     event.preventDefault();
704                     return false;
705
706                 } else if (event.shiftKey) {
707                     if (row.previousSibling.className.match('marcDatafieldRow'))
708                         row.previousSibling.firstChild.focus();
709                 } else {
710                     row.nextSibling.firstChild.focus();
711                 }
712
713             } else if (event.keyCode == 38 || event.keyCode == 40) { // up-arrow or down-arrow
714                 if (event.ctrlKey) { // CTRL key: copy the field
715                     var index;
716                     if (element.localName() == 'subfield') index = element.parent();
717                     if (element.localName() == 'code') index = element.parent().parent();
718                     if (element.localName() == 'tag') index = element.parent();
719                     if (element.localName() == 'ind1') index = element.parent();
720                     if (element.localName() == 'ind2') index = element.parent();
721
722                     var copyField = index.copy();
723
724                     if (event.keyCode == 38) { // ctrl+up-arrow
725                         index.parent().insertChildBefore( index, copyField );
726                     } else {
727                         index.parent().insertChildAfter( index, copyField );
728                     }
729
730                     var new_df = marcDatafield(copyField);
731
732                     if (row.parentNode.lastChild === row) {
733                         row.parentNode.appendChild( new_df );
734                     } else {
735                         if (event.keyCode == 38) { // ctrl+up-arrow
736                             row.parentNode.insertBefore( new_df, row );
737                         } else { // ctrl+down-arrow
738                             row.parentNode.insertBefore( new_df, row.nextSibling );
739                         }
740                     }
741
742                     new_df.firstChild.focus();
743
744                     event.preventDefault();
745
746                     return false;
747                 } else {
748                     if (event.keyCode == 38) {
749                         return setFocusToNextTag(row, 'up');
750                     }
751                     if (event.keyCode == 40) {
752                         return setFocusToNextTag(row, 'down');
753                     }
754                     return false;
755                 }
756
757             } else if (event.keyCode == 46 && event.ctrlKey) { // ctrl+del
758
759                 var index;
760                 if (element.localName() == 'subfield') index = element.parent();
761                 if (element.localName() == 'code') index = element.parent().parent();
762                 if (element.localName() == 'tag') index = element.parent();
763                 if (element.localName() == 'ind1') index = element.parent();
764                 if (element.localName() == 'ind2') index = element.parent();
765
766                 for (var i in index.parent().children()) {
767                     if (index === index.parent().children()[i]) {
768                         delete index.parent().children()[i];
769                         break;
770                     }
771                 }
772
773                 row.previousSibling.firstChild.focus();
774                 row.parentNode.removeChild(row);
775
776                 event.preventDefault();
777                 return false;
778
779             } else if (event.keyCode == 46 && event.shiftKey) { // shift+del
780
781                 var index;
782                 if (element.localName() == 'subfield') index = element;
783                 if (element.localName() == 'code') index = element.parent();
784
785                 if (index) {
786                     for (var i in index.parent().children()) {
787                         if (index === index.parent().children()[i]) {
788                             delete index.parent().children()[i];
789                             break;
790                         }
791                     }
792
793                     if (event.target.parentNode === event.target.parentNode.parentNode.lastChild) {
794                         event.target.parentNode.previousSibling.lastChild.focus();
795                     } else {
796                         event.target.parentNode.nextSibling.firstChild.nextSibling.focus();
797                     }
798
799                     event.target.parentNode.parentNode.removeChild(event.target.parentNode);
800
801                     event.preventDefault();
802                     return false;
803                 }
804             } else if (event.keyCode == 117 && event.ctrlKey) { // ctrl + F6
805                 box = null;
806                 createControlField('006','                                        ');
807                 loadRecord();
808             } else if (event.keyCode == 118 && event.ctrlKey) { // ctrl + F7
809                 box = null;
810                 createControlField('007','                                        ');
811                 loadRecord();
812             } else if (event.keyCode == 119 && event.ctrlKey) { // ctrl + F8
813                 box = null;
814                 createControlField('008', get_new_008());
815                 loadRecord();
816             }
817
818             return true;
819
820         } else { // event on a control field
821             if (event.keyCode == 38) { 
822                 return setFocusToNextTag(row, 'up'); 
823             } else if (event.keyCode == 40) { 
824                 return setFocusToNextTag(row, 'down');
825             }
826         }
827     };
828
829     box.addEventListener(
830         'keypress', 
831         function () {
832             if (element.nodeKind() == 'attribute') element[0]=box.value;
833             else element.setChildren( box.value );
834             return true;
835         },
836         false
837     );
838
839     box.addEventListener(
840         'change', 
841         function () {
842             if (element.nodeKind() == 'attribute') element[0]=box.value;
843             else element.setChildren( box.value );
844             return true;
845         },
846         false
847     );
848
849     box.addEventListener(
850         'keypress', 
851         function () {
852             if (element.nodeKind() == 'attribute') element[0]=box.value;
853             else element.setChildren( box.value );
854             return true;
855         },
856         true
857     );
858
859     // 'input' event catches the box value after the keypress
860     box.addEventListener(
861         'input', 
862         function () {
863             if (element.nodeKind() == 'attribute') element[0]=box.value;
864             else element.setChildren( box.value );
865             return true;
866         },
867         true
868     );
869
870     box.addEventListener(
871         'keyup', 
872         function () {
873             if (element.localName() == 'controlfield')
874                 eval('fillFixedFields();');
875         },
876         true
877     );
878
879     return box;
880 }
881
882 function toggleFFE () {
883     var grid = document.getElementById('leaderGrid');
884     if (grid.hidden) {
885         grid.hidden = false;
886     } else {
887         grid.hidden = true;
888     }
889     return true;
890 }
891
892 function changeFFEditor (type) {
893     var grid = document.getElementById('leaderGrid');
894     grid.setAttribute('type',type);
895     document.getElementById('recordTypeLabel').setAttribute('value',type);
896
897     // Hide FFEditor rows that we don't need for our current type
898     // If all of the labels for a given row do not include our
899     // desired type in their set attribute, we can hide that row
900     dojo.query('rows', grid).query('row').forEach(function(node, index, arr) {
901         if (dojo.query('label[set~=' + type + ']', node).length == 0) {
902             node.hidden = true;
903         }
904     });
905
906     getFFValuesForType(
907         type,
908         function() {
909             updateFFEditorContexts(grid, type);
910         },
911         function() {
912             alert(  /* XXX i18n - the marc editor either isn't tied in to
913                        an overall i18n infrastructure, or it's different
914                        enough from other Evergreen parts that I don't
915                        understand the right way to do i18n here */
916                 "failed to load fixed field values for rec_type '" +
917                 type + "'\n"
918             );
919         }
920     );
921 }
922
923 function getFFValuesForType(type, callback, errback) {
924     if (_fixed_field_values[type]) {
925         callback();
926     } else {
927         dojo.require("openils.Util");
928
929         fieldmapper.standardRequest(
930             ["open-ils.cat",
931                 "open-ils.cat.biblio.fixed_field_values.by_rec_type"], {
932                 "async": true,
933                 "params": [type],
934                 "oncomplete": function(r) {
935                     if (r = openils.Util.readResponse(r)) {
936                         _fixed_field_values[type] = r;
937                         callback();
938                     } else {
939                         errback();
940                     }
941                 },
942                 "onerror": errback
943             }
944         );
945     }
946 }
947
948 function updateFFEditorContexts(grid, type) {
949
950     /* XXX Dojo to navigate a XUL DOM.  Bad form?  We do it elsewhere in this
951      * file, but I think I've heard it scoffed at. */
952
953     var rows_node = dojo.query("rows", grid)[0];
954     dojo.query("row", rows_node).forEach(
955         function(row) {
956             dojo.query("textbox", row).forEach(
957                 function(tb) {
958                     var name = tb.getAttribute("name");
959                     if (_fixed_field_values[type][name]) {
960                         tb.setAttribute(
961                             "context", getFFContextMenu(type, name)
962                         );
963                     } else {
964                         tb.setAttribute("context", "clipboard");
965                     }
966                 }
967             );
968         }
969     );
970 }
971
972 function getFFContextMenu(type, name) {
973     if (!_fixed_field_context_menus[type]) {
974         _fixed_field_context_menus[type] = {};
975     }
976
977     var context_menu_id = "_fixed_field_context_menus_" + type + "_" + name;
978
979     if (!_fixed_field_context_menus[type][name]) {
980         var p = document.getElementsByTagName("popupset")[0];
981         var m = document.createElement("menupopup");
982         m.setAttribute("id", context_menu_id);
983         _fixed_field_values[type][name].forEach(
984             function(v) {
985                 var mi = document.createElement("menuitem");
986                 var funcname = "_ff_anon_" +
987                     String(_fixed_field_anonymous_func_counter++);
988
989                 /* These anon functions linger and take up memory, but due
990                  * to caching there's a limit on how much, and that limit is
991                  * a function of the size of the dataset defined in the
992                  * ccvm/cmfpm tables. */
993                 var code = v[0];
994                 var el = document.getElementById(name + "_tb");
995                 window[funcname] = function() {
996                     el.value = code;
997                     updateFixedFields(el);
998                     oils_lock_page();
999                 };
1000
1001                 /* In XUL land we can't set an element's
1002                  * attribute like oncommand to a code reference. It has to be
1003                  * an actual string to be eval'd. */
1004                 mi.setAttribute("oncommand", funcname + "()");
1005                 mi.setAttribute("label", v[0] + ": " + v[1]); /* XXX i18n ? */
1006                 m.appendChild(mi);
1007             }
1008         );
1009         _fixed_field_context_menus[type][name] = m;
1010         p.appendChild(m);
1011     }
1012
1013     return context_menu_id;
1014 }
1015
1016 /* This just sets up a special context menu for a 007 data field to use, so
1017  * that users can right-click for a menu and get a choice to launch the
1018  * Physical Characteristics Wizard.
1019  */
1020 function preparePhysCharWizardContext() {
1021     var menu = document.getElementById("physCharWizardContext");
1022     menu.appendChild(document.createElement("menuseparator"));
1023
1024     var clipb_children = document.getElementById("clipboard").childNodes;
1025     for (var i = 0; i < clipb_children.length; i++) /* collection not array */ {
1026         var child = clipb_children[i];
1027         if (child.nodeName == 'menuitem')
1028             menu.appendChild(child.cloneNode(true));
1029     }
1030 }
1031
1032 function launchPhysCharWizard(popup_node) {
1033     try {
1034         new openils.widget.PhysCharWizard({
1035             "node": popup_node,
1036             "onapply": function(v) {
1037                 createControlField("007", v);
1038                 oils_lock_page();
1039                 loadRecord();
1040             }
1041         });
1042     } catch (E) {
1043         alert("Exception raised by openils.widget.PhysCharWizard:\n" + E);
1044     }
1045 }
1046
1047 function fillFixedFields () {
1048     try {
1049             var grid = document.getElementById('leaderGrid');
1050             var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
1051
1052             var list = [];
1053             var pre_list = grid.getElementsByTagName('label');
1054             for (var i in pre_list) {
1055                 if ( pre_list[i].getAttribute && pre_list[i].getAttribute('set').indexOf(grid.getAttribute('type')) > -1 ) {
1056                     list.push( pre_list[i] );
1057                 }
1058             }
1059
1060             for (var i in list) {
1061                 var name = list[i].getAttribute('name');
1062                 var value = marc_rec.extractFixedField(name, true);
1063
1064                 if (value === null) continue;
1065
1066                 list[i].nextSibling.value = value;
1067             }
1068
1069             return true;
1070     } catch(E) {
1071         alert('FIXME, MARC Editor, fillFixedFields: ' + E);
1072     }
1073 }
1074
1075 function updateFixedFields (element) {
1076     var grid = document.getElementById('leaderGrid');
1077     var recGrid = document.getElementById('recGrid');
1078     var new_value = element.value;
1079     // Don't take focus away/adjust the record on partial changes
1080     var length = element.getAttribute('maxlength');
1081     if(new_value.length < length) return true;
1082
1083     var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
1084     marc_rec.setFixedField(element.getAttribute('name'), new_value);
1085
1086     var xml_string = marc_rec.toXmlString();
1087     xml_record = new XML( xml_string );
1088     if (xml_record..record[0]) xml_record = xml_record..record[0];
1089     loadRecord();
1090     // Put the cursor back to the current fixed field
1091     element.select();
1092
1093     return true;
1094 }
1095
1096 function marcLeader (leader) {
1097     var row = createRow(
1098         { class : 'marcLeaderRow',
1099           tag : 'ldr' },
1100         createLabel(
1101             { value : 'LDR',
1102               class : 'marcTag',
1103               tooltiptext : $('catStrings').getString('staff.cat.marcedit.marcTag.LDR.label') } ),
1104         createLabel(
1105             { value : '',
1106               class : 'marcInd1' } ),
1107         createLabel(
1108             { value : '',
1109               class : 'marcInd2' } ),
1110         createLabel(
1111             { value : leader.text(),
1112               class : 'marcLeader' } )
1113     );
1114
1115     return row;
1116 }
1117
1118 function marcControlfield (field) {
1119     tagname = field.@tag.toString().substr(2);
1120     var row;
1121     if (tagname == '1' || tagname == '3' || tagname == '6' || tagname == '7' || tagname == '8') {
1122         row = createRow(
1123             { class : 'marcControlfieldRow',
1124               tag : '_' + tagname },
1125             createLabel(
1126                 { value : field.@tag,
1127                   class : 'marcTag',
1128                   context : 'tags_popup',
1129                   onmouseover : 'getTooltip(this, "tag");',
1130                   tooltipid : 'tag' + field.@tag } ),
1131             createLabel(
1132                 { value : field.@ind1,
1133                   class : 'marcInd1',
1134                   onmouseover : 'getTooltip(this, "ind1");',
1135                   tooltipid : 'tag' + field.@tag + 'ind1val' + field.@ind1 } ),
1136             createLabel(
1137                 { value : field.@ind2,
1138                   class : 'marcInd2',
1139                   onmouseover : 'getTooltip(this, "ind2");',
1140                   tooltipid : 'tag' + field.@tag + 'ind2val' + field.@ind2 } ),
1141             createMARCTextbox(
1142                 field,
1143                 { value : field.text(),
1144                   class : 'plain marcEditableControlfield',
1145                   name : 'CONTROL' + tagname,
1146                   context : tagname == 7 ? 'physCharWizardContext': 'clipboard',
1147                   size : 50,
1148                   maxlength : 50 } )
1149             );
1150     } else {
1151         row = createRow(
1152             { class : 'marcControlfieldRow',
1153               tag : '_' + tagname },
1154             createLabel(
1155                 { value : field.@tag,
1156                   class : 'marcTag',
1157                   onmouseover : 'getTooltip(this, "tag");',
1158                   tooltipid : 'tag' + field.@tag } ),
1159             createLabel(
1160                 { value : field.@ind1,
1161                   class : 'marcInd1',
1162                   onmouseover : 'getTooltip(this, "ind1");',
1163                   tooltipid : 'tag' + field.@tag + 'ind1val' + field.@ind1 } ),
1164             createLabel(
1165                 { value : field.@ind2,
1166                   class : 'marcInd2',
1167                   onmouseover : 'getTooltip(this, "ind2");',
1168                   tooltipid : 'tag' + field.@tag + 'ind2val' + field.@ind2 } ),
1169             createLabel(
1170                 { value : field.text(),
1171                   class : 'marcControlfield' } )
1172         );
1173     }
1174
1175     return row;
1176 }
1177
1178 function stackSubfields(checkbox) {
1179     var list = document.getElementsByAttribute('name','sf_box');
1180
1181     var o = 'vertical';
1182     if (!checkbox.checked) o = 'horizontal';
1183     
1184     for (var i = 0; i < list.length; i++) {
1185         if (list[i]) list[i].setAttribute('orient',o);
1186     }
1187 }
1188
1189 function fastItemAdd_toggle(checkbox) {
1190     var x = document.getElementById('fastItemAdd_textboxes');
1191     if (checkbox.checked) {
1192         x.hidden = false;
1193         document.getElementById('fastItemAdd_callnumber').focus();
1194         document.getElementById('fastItemAdd_callnumber').select();
1195     } else {
1196         x.hidden = true;
1197     }
1198 }
1199
1200 function fastItemAdd_attempt(doc_id) {
1201     try {
1202         if (typeof window.xulG.fast_add_item != 'function') { return; }
1203         if (!document.getElementById('fastItemAdd_checkbox').checked) { return; }
1204         if (!document.getElementById('fastItemAdd_callnumber').value) { return; }
1205         if (!document.getElementById('fastItemAdd_barcode').value) { return; }
1206         window.xulG.fast_add_item( doc_id, document.getElementById('fastItemAdd_callnumber').value, document.getElementById('fastItemAdd_barcode').value );
1207         document.getElementById('fastItemAdd_barcode').value = '';
1208         return true;
1209     } catch(E) {
1210         alert('fastItemAdd_attempt: ' + E);
1211     }
1212 }
1213
1214 function save_attempt(xml_string) {
1215     try {
1216         var result = window.xulG.save.func( xml_string );
1217         // I'd prefer to pass on_complete on through to fast_item_add,
1218         // but with the way these window scopes get destroyed with
1219         // tab replacement, maybe not a good idea
1220         var replace_on_complete = false;
1221         if (result) {
1222             oils_unlock_page();
1223             if (result.id) {
1224                 replace_on_complete = fastItemAdd_attempt(result.id);
1225             }
1226             if (!replace_on_complete && typeof result.on_complete == 'function') {
1227                 result.on_complete();
1228             }
1229         }
1230     } catch(E) {
1231         alert('save_attempt: ' + E);
1232     }
1233 }
1234
1235 function marcDatafield (field) {
1236     var row = createRow(
1237         { class : 'marcDatafieldRow' },
1238         createMARCTextbox(
1239             field.@tag,
1240             { value : field.@tag,
1241               class : 'plain marcTag',
1242               name : 'marcTag',
1243               context : 'tags_popup',
1244               oninput : 'if (this.value.length == 3) { this.nextSibling.focus(); }',
1245               size : 3,
1246               maxlength : 3,
1247               onmouseover : 'current_focus = this; getTooltip(this, "tag");' } ),
1248         createMARCTextbox(
1249             field.@ind1,
1250             { value : field.@ind1,
1251               class : 'plain marcInd1',
1252               name : 'marcInd1',
1253               oninput : 'if (this.value.length == 1) { this.nextSibling.focus(); }',
1254               size : 1,
1255               maxlength : 1,
1256               onmouseover : 'current_focus = this; getContextMenu(this, "ind1"); getTooltip(this, "ind1");',
1257               oncontextmenu : 'getContextMenu(this, "ind1");' } ),
1258         createMARCTextbox(
1259             field.@ind2,
1260             { value : field.@ind2,
1261               class : 'plain marcInd2',
1262               name : 'marcInd2',
1263               oninput : 'if (this.value.length == 1) { this.nextSibling.firstChild.firstChild.focus(); }',
1264               size : 1,
1265               maxlength : 1,
1266               onmouseover : 'current_focus = this; getContextMenu(this, "ind2"); getTooltip(this, "ind2");',
1267               oncontextmenu : 'getContextMenu(this, "ind2");' } ),
1268         createHbox({ name : 'sf_box' })
1269     );
1270
1271     if (!current_focus && field.@tag == '') current_focus = row.childNodes[0];
1272     if (!current_focus && field.@ind1 == '') current_focus = row.childNodes[1];
1273     if (!current_focus && field.@ind2 == '') current_focus = row.childNodes[2];
1274
1275     var sf_box = row.lastChild;
1276     if (document.getElementById('stackSubfields').checked)
1277         sf_box.setAttribute('orient','vertical');
1278
1279     sf_box.addEventListener(
1280         'click',
1281         function (e) {
1282             if (sf_box === e.target) {
1283                 sf_box.lastChild.lastChild.focus();
1284             } else if (e.target.parentNode === sf_box) {
1285                 e.target.lastChild.focus();
1286             }
1287         },
1288         false
1289     );
1290
1291
1292     for (var i in field.subfield) {
1293         var sf = field.subfield[i];
1294         sf_box.appendChild(
1295             marcSubfield(sf)
1296         );
1297
1298         dojo.query('.marcSubfield', sf_box).forEach(wrap_long_fields);
1299
1300         if (sf.@code == '' && (!current_focus || current_focus.className.match(/Ind/)))
1301             current_focus = sf_box.lastChild.childNodes[1];
1302     }
1303
1304     return row;
1305 }
1306
1307 function marcSubfield (sf) {            
1308     return createHbox(
1309         { class : 'marcSubfieldBox' },
1310         createLabel(
1311             { value : "\u2021",
1312               class : 'plain marcSubfieldDelimiter',
1313               onmouseover : 'getTooltip(this.nextSibling, "subfield");',
1314               oncontextmenu : 'getContextMenu(this.nextSibling, "subfield");',
1315                 //onclick : 'this.nextSibling.focus();',
1316                 onfocus : 'this.nextSibling.focus();',
1317               size : 2 } ),
1318         createMARCTextbox(
1319             sf.@code,
1320             { value : sf.@code,
1321               class : 'plain marcSubfieldCode',
1322               align: 'start',
1323               name : 'marcSubfieldCode',
1324               onmouseover : 'current_focus = this; getContextMenu(this, "subfield"); getTooltip(this, "subfield");',
1325               oncontextmenu : 'getContextMenu(this, "subfield");',
1326               oninput : 'if (this.value.length == 1) { this.nextSibling.focus(); }',
1327               size : 2,
1328               maxlength : 1 } ),
1329         createMARCTextbox(
1330             sf,
1331             { value : sf.text(),
1332               name : sf.parent().@tag + ':' + sf.@code,
1333               class : 'plain marcSubfield', 
1334               align: 'start',
1335               onmouseover : 'getTooltip(this, "subfield");',
1336               contextmenu : function (event) { getAuthorityContextMenu(event.target, sf) },
1337               size : new String(sf.text()).length + 2,
1338               oninput : "this.setAttribute('size', this.value.length + 2);"
1339             } )
1340     );
1341 }
1342
1343 function loadRecord() {
1344     try {
1345             var grid_rows = document.getElementById('recGrid').lastChild;
1346
1347             while (grid_rows.firstChild) grid_rows.removeChild(grid_rows.firstChild);
1348
1349             grid_rows.appendChild( marcLeader( xml_record.leader ) );
1350
1351             for (var i in xml_record.controlfield) {
1352                 grid_rows.appendChild( marcControlfield( xml_record.controlfield[i] ) );
1353             }
1354
1355             for (var i in xml_record.datafield) {
1356                 grid_rows.appendChild( marcDatafield( xml_record.datafield[i] ) );
1357             }
1358
1359             grid_rows.getElementsByAttribute('class','marcDatafieldRow')[0].firstChild.focus();
1360
1361             var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
1362             changeFFEditor(marc_rec.recordType());
1363             fillFixedFields();
1364     } catch(E) {
1365         alert('FIXME, MARC Editor, loadRecord: ' + E);
1366     }
1367 }
1368
1369
1370 function genToolTips () {
1371     for (var i in bib_data.field) {
1372         var f = bib_data.field[i];
1373     
1374         tag_menu.appendChild(
1375             createMenuitem(
1376                 { label : f.@tag,
1377                   oncommand : 
1378                       'current_focus.value = "' + f.@tag + '";' +
1379                     'var e = document.createEvent("MutationEvents");' +
1380                     'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1381                     'current_focus.inputField.dispatchEvent(e);',
1382                   disabled : f.@tag < '010' ? "true" : "false",
1383                   tooltiptext : f.description }
1384             )
1385         );
1386     
1387         var i1_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'i1' });
1388         context_menus.appendChild( i1_popup );
1389     
1390         var i2_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'i2' });
1391         context_menus.appendChild( i2_popup );
1392     
1393         var sf_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'sf' });
1394         context_menus.appendChild( sf_popup );
1395     
1396         tooltip_hash['tag' + f.@tag] = f.description;
1397         for (var j in f.indicator) {
1398             var ind = f.indicator[j];
1399             tooltip_hash['tag' + f.@tag + 'ind' + ind.@position + 'val' + ind.@value] = ind.description;
1400     
1401             if (ind.@position == 1) {
1402                 i1_popup.appendChild(
1403                     createMenuitem(
1404                         { label : ind.@value,
1405                           oncommand : 
1406                               'current_focus.value = "' + ind.@value + '";' +
1407                             'var e = document.createEvent("MutationEvents");' +
1408                             'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1409                             'current_focus.inputField.dispatchEvent(e);',
1410                           tooltiptext : ind.description }
1411                     )
1412                 );
1413             }
1414     
1415             if (ind.@position == 2) {
1416                 i2_popup.appendChild(
1417                     createMenuitem(
1418                         { label : ind.@value,
1419                           oncommand : 
1420                               'current_focus.value = "' + ind.@value + '";' +
1421                             'var e = document.createEvent("MutationEvents");' +
1422                             'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1423                             'current_focus.inputField.dispatchEvent(e);',
1424                           tooltiptext : ind.description }
1425                     )
1426                 );
1427             }
1428         }
1429     
1430         for (var j in f.subfield) {
1431             var sf = f.subfield[j];
1432             tooltip_hash['tag' + f.@tag + 'sf' + sf.@code] = sf.description;
1433     
1434             sf_popup.appendChild(
1435                 createMenuitem(
1436                     { label : sf.@code,
1437                       oncommand : 
1438                           'current_focus.value = "' + sf.@code + '";' +
1439                         'var e = document.createEvent("MutationEvents");' +
1440                         'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1441                         'current_focus.inputField.dispatchEvent(e);',
1442                       tooltiptext : sf.description
1443                     }
1444                 )
1445             );
1446         }
1447     }
1448 }
1449
1450 function getTooltip (target, type) {
1451
1452     var tt = '';
1453     if (type == 'subfield')
1454         tt = 'tag' + target.parentNode.parentNode.parentNode.firstChild.value + 'sf' + target.parentNode.childNodes[1].value;
1455
1456     if (type == 'ind1')
1457         tt = 'tag' + target.parentNode.firstChild.value + 'ind1val' + target.value;
1458
1459     if (type == 'ind2')
1460         tt = 'tag' + target.parentNode.firstChild.value + 'ind2val' + target.value;
1461
1462     if (type == 'tag')
1463         tt = 'tag' + target.parentNode.firstChild.value;
1464
1465     if (!document.getElementById( tt )) {
1466         p.appendChild(
1467             createTooltip(
1468                 { id : tt,
1469                   flex : "1",
1470                   orient : 'vertical',
1471                   onpopupshown : 'this.width = this.firstChild.boxObject.width + 10; this.height = this.firstChild.boxObject.height + 10;',
1472                   class : 'tooltip' },
1473                 createDescription({}, document.createTextNode( tooltip_hash[tt] ) )
1474             )
1475         );
1476     }
1477
1478     target.tooltip = tt;
1479     return true;
1480 }
1481
1482 function getContextMenu (target, type) {
1483
1484     var tt = '';
1485     if (type == 'subfield')
1486         tt = 't' + target.parentNode.parentNode.parentNode.firstChild.value + 'sf';
1487
1488     if (type == 'ind1')
1489         tt = 't' + target.parentNode.firstChild.value + 'i1';
1490
1491     if (type == 'ind2')
1492         tt = 't' + target.parentNode.firstChild.value + 'i2';
1493
1494     target.setAttribute('context', tt);
1495     return true;
1496 }
1497
1498 var control_map = {
1499     100 : {
1500         'a' : { 100 : 'a' },
1501         'd' : { 100 : 'd' },
1502         'e' : { 100 : 'e' },
1503         'q' : { 100 : 'q' }
1504     },
1505     110 : {
1506         'a' : { 110 : 'a' },
1507         'd' : { 110 : 'd' }
1508     },
1509     111 : {
1510         'a' : { 111 : 'a' },
1511         'd' : { 111 : 'd' }
1512     },
1513     130 : {
1514         'a' : { 130 : 'a' },
1515         'd' : { 130 : 'd' }
1516     },
1517     240 : {
1518         'a' : { 130 : 'a' },
1519         'd' : { 130 : 'd' }
1520     },
1521     400 : {
1522         'a' : { 100 : 'a' },
1523         'd' : { 100 : 'd' }
1524     },
1525     410 : {
1526         'a' : { 110 : 'a' },
1527         'd' : { 110 : 'd' }
1528     },
1529     411 : {
1530         'a' : { 111 : 'a' },
1531         'd' : { 111 : 'd' }
1532     },
1533     440 : {
1534         'a' : { 130 : 'a' },
1535         'n' : { 130 : 'n' },
1536         'p' : { 130 : 'p' }
1537     },
1538     700 : {
1539         'a' : { 100 : 'a' },
1540         'd' : { 100 : 'd' },
1541         'q' : { 100 : 'q' },
1542         't' : { 100 : 't' }
1543     },
1544     710 : {
1545         'a' : { 110 : 'a' },
1546         'd' : { 110 : 'd' }
1547     },
1548     711 : {
1549         'a' : { 111 : 'a' },
1550         'c' : { 111 : 'c' },
1551         'd' : { 111 : 'd' }
1552     },
1553     730 : {
1554         'a' : { 130 : 'a' },
1555         'd' : { 130 : 'd' }
1556     },
1557     800 : {
1558         'a' : { 100 : 'a' },
1559         'd' : { 100 : 'd' }
1560     },
1561     810 : {
1562         'a' : { 110 : 'a' },
1563         'd' : { 110 : 'd' }
1564     },
1565     811 : {
1566         'a' : { 111 : 'a' },
1567         'd' : { 111 : 'd' }
1568     },
1569     830 : {
1570         'a' : { 130 : 'a' },
1571         'd' : { 130 : 'd' }
1572     },
1573     600 : {
1574         'a' : { 100 : 'a' },
1575         'd' : { 100 : 'd' },
1576         'q' : { 100 : 'q' },
1577         't' : { 100 : 't' },
1578         'v' : { 180 : 'v',
1579             100 : 'v',
1580             181 : 'v',
1581             182 : 'v',
1582             185 : 'v'
1583         },
1584         'x' : { 180 : 'x',
1585             100 : 'x',
1586             181 : 'x',
1587             182 : 'x',
1588             185 : 'x'
1589         },
1590         'y' : { 180 : 'y',
1591             100 : 'y',
1592             181 : 'y',
1593             182 : 'y',
1594             185 : 'y'
1595         },
1596         'z' : { 180 : 'z',
1597             100 : 'z',
1598             181 : 'z',
1599             182 : 'z',
1600             185 : 'z'
1601         }
1602     },
1603     610 : {
1604         'a' : { 110 : 'a' },
1605         'd' : { 110 : 'd' },
1606         't' : { 110 : 't' },
1607         'v' : { 180 : 'v',
1608             110 : 'v',
1609             181 : 'v',
1610             182 : 'v',
1611             185 : 'v'
1612         },
1613         'x' : { 180 : 'x',
1614             110 : 'x',
1615             181 : 'x',
1616             182 : 'x',
1617             185 : 'x'
1618         },
1619         'y' : { 180 : 'y',
1620             110 : 'y',
1621             181 : 'y',
1622             182 : 'y',
1623             185 : 'y'
1624         },
1625         'z' : { 180 : 'z',
1626             110 : 'z',
1627             181 : 'z',
1628             182 : 'z',
1629             185 : 'z'
1630         }
1631     },
1632     611 : {
1633         'a' : { 111 : 'a' },
1634         'd' : { 111 : 'd' },
1635         't' : { 111 : 't' },
1636         'v' : { 180 : 'v',
1637             111 : 'v',
1638             181 : 'v',
1639             182 : 'v',
1640             185 : 'v'
1641         },
1642         'x' : { 180 : 'x',
1643             111 : 'x',
1644             181 : 'x',
1645             182 : 'x',
1646             185 : 'x'
1647         },
1648         'y' : { 180 : 'y',
1649             111 : 'y',
1650             181 : 'y',
1651             182 : 'y',
1652             185 : 'y'
1653         },
1654         'z' : { 180 : 'z',
1655             111 : 'z',
1656             181 : 'z',
1657             182 : 'z',
1658             185 : 'z'
1659         }
1660     },
1661     630 : {
1662         'a' : { 130 : 'a' },
1663         'd' : { 130 : 'd' }
1664     },
1665     648 : {
1666         'a' : { 148 : 'a' },
1667         'v' : { 148 : 'v' },
1668         'x' : { 148 : 'x' },
1669         'y' : { 148 : 'y' },
1670         'z' : { 148 : 'z' }
1671     },
1672     650 : {
1673         'a' : { 150 : 'a' },
1674         'b' : { 150 : 'b' },
1675         'v' : { 180 : 'v',
1676             150 : 'v',
1677             181 : 'v',
1678             182 : 'v',
1679             185 : 'v'
1680         },
1681         'x' : { 180 : 'x',
1682             150 : 'x',
1683             181 : 'x',
1684             182 : 'x',
1685             185 : 'x'
1686         },
1687         'y' : { 180 : 'y',
1688             150 : 'y',
1689             181 : 'y',
1690             182 : 'y',
1691             185 : 'y'
1692         },
1693         'z' : { 180 : 'z',
1694             150 : 'z',
1695             181 : 'z',
1696             182 : 'z',
1697             185 : 'z'
1698         }
1699     },
1700     651 : {
1701         'a' : { 151 : 'a' },
1702         'v' : { 180 : 'v',
1703             151 : 'v',
1704             181 : 'v',
1705             182 : 'v',
1706             185 : 'v'
1707         },
1708         'x' : { 180 : 'x',
1709             151 : 'x',
1710             181 : 'x',
1711             182 : 'x',
1712             185 : 'x'
1713         },
1714         'y' : { 180 : 'y',
1715             151 : 'y',
1716             181 : 'y',
1717             182 : 'y',
1718             185 : 'y'
1719         },
1720         'z' : { 180 : 'z',
1721             151 : 'z',
1722             181 : 'z',
1723             182 : 'z',
1724             185 : 'z'
1725         }
1726     },
1727     655 : {
1728         'a' : { 155 : 'a' },
1729         'v' : { 180 : 'v',
1730             155 : 'v',
1731             181 : 'v',
1732             182 : 'v',
1733             185 : 'v'
1734         },
1735         'x' : { 180 : 'x',
1736             155 : 'x',
1737             181 : 'x',
1738             182 : 'x',
1739             185 : 'x'
1740         },
1741         'y' : { 180 : 'y',
1742             155 : 'y',
1743             181 : 'y',
1744             182 : 'y',
1745             185 : 'y'
1746         },
1747         'z' : { 180 : 'z',
1748             155 : 'z',
1749             181 : 'z',
1750             182 : 'z',
1751             185 : 'z'
1752         }
1753     }
1754 };
1755
1756 function getAuthorityContextMenu (target, sf) {
1757     var menu_id = sf.parent().@tag + ':' + sf.@code + '-authority-context-' + sf;
1758
1759     var page = 0;
1760     var old = dojo.byId( menu_id );
1761     if (old) {
1762         page = auth_pages[menu_id];
1763         old.parentNode.removeChild(old);
1764     } else {
1765         auth_pages[menu_id] = 0;
1766     }
1767
1768     var sf_popup = createMenuPopup({ id : menu_id, flex : 1 });
1769
1770     sf_popup.addEventListener("popuphiding", function(event) {
1771         if (show_auth_menu) {
1772             show_auth_menu = false;
1773             getAuthorityContextMenu(target, sf);
1774             dojo.byId(menu_id).openPopup();
1775         }  
1776     }, false);
1777
1778     context_menus.appendChild( sf_popup );
1779
1780     var found_acs = [];
1781     dojo.forEach( acs.controlSetList(), function (acs_id) {
1782         if (acs.controlSet(acs_id).control_map[sf.parent().@tag]) found_acs.push(acs_id);
1783     });
1784
1785     if (!found_acs.length) {
1786         sf_popup.appendChild(createLabel( { value : $('catStrings').getString('staff.cat.marcedit.not_authority_field.label') } ) );
1787         target.setAttribute('context', 'clipboard');
1788         return false;
1789     }
1790
1791     if (sf.toString().replace(/\s*/, '')) {
1792         return browseAuthority(sf_popup, menu_id, target, sf, 20, page);
1793     }
1794
1795     return true;
1796 }
1797
1798 /* Apply the complete 1xx */
1799 function applyFullAuthority ( target, ui_sf, e4x_sf ) {
1800     var new_vals = dojo.query('*[tag^="1"]', target);
1801     return applyAuthority( target, ui_sf, e4x_sf, new_vals );
1802 }
1803
1804 function applySelectedAuthority ( target, ui_sf, e4x_sf ) {
1805     var new_vals = target.getElementsByAttribute('checked','true');
1806     return applyAuthority( target, ui_sf, e4x_sf, new_vals );
1807 }
1808
1809 function applyAuthority ( target, ui_sf, e4x_sf, new_vals ) {
1810     var field = e4x_sf.parent();
1811
1812     for (var i = 0; i < new_vals.length; i++) {
1813
1814         var sf_list = field.subfield;
1815         for (var j in sf_list) {
1816
1817             if (sf_list[j].@code == new_vals[i].getAttribute('subfield')) {
1818                 sf_list[j] = new_vals[i].getAttribute('value');
1819                 new_vals[i].setAttribute('subfield','');
1820                 break;
1821             }
1822         }
1823     }
1824
1825     for (var i = 0; i < new_vals.length; i++) {
1826
1827         /* indicators for the authority datafield are carried over in the main entry linking subfield */
1828         if (new_vals[i].getAttribute('subfield') == '0') {
1829             field.@ind1 = new_vals[i].getAttribute('ind1');
1830             field.@ind2 = new_vals[i].getAttribute('ind2');
1831         }
1832
1833         if (!new_vals[i].getAttribute('subfield')) continue;
1834
1835         var val = new_vals[i].getAttribute('value');
1836
1837         var sf = <subfield code="" xmlns="http://www.loc.gov/MARC21/slim">{val}</subfield>;
1838         sf.@code = new_vals[i].getAttribute('subfield');
1839
1840         field.insertChildAfter(field.subfield[field.subfield.length() - 1], sf);
1841     }
1842
1843     var row = marcDatafield( field );
1844
1845     var node = ui_sf;
1846     while (node.nodeName != 'row') {
1847         node = node.parentNode;
1848     }
1849
1850     node.parentNode.replaceChild( row, node );
1851     return true;
1852 }
1853
1854 function validateAuthority (button) {
1855     var grid = document.getElementById('recGrid');
1856     var label = button.getAttribute('label');
1857
1858     //loop over rows
1859     var rows = grid.lastChild.childNodes;
1860     for (var i = 0; i < rows.length; i++) {
1861         var row = rows[i];
1862         var tag = row.firstChild;
1863
1864         var done = false;
1865         dojo.forEach(acs.controlSetList(), function (acs_id) {
1866             if (done) return;
1867             var control_map = acs.controlSet(acs_id).control_map;
1868     
1869             if (!control_map[tag.value]) return;
1870             button.setAttribute('label', label + ' - ' + tag.value);
1871     
1872             var ind1 = tag.nextSibling;
1873             var ind2 = ind1.nextSibling;
1874             var subfields = ind2.nextSibling.childNodes;
1875     
1876             var sf_list = [];
1877             for (var j = 0; j < subfields.length; j++) {
1878                 var sf = subfields[j];
1879                 sf_list.push( [ sf.childNodes[1].value, sf.childNodes[2].value ] );
1880             }
1881
1882             var matches = acs.findMatchingAuthorities(
1883                 new MARC.Field({
1884                     'tag'       : tag.value,
1885                     'subfields' : sf_list
1886                 })
1887             );
1888
1889             // matches = [ { "$csetId" : [ ... ] } ]
1890
1891             var found = false;
1892             if (matches[0]) { // probably set
1893                 for (var cset in matches[0]) {
1894                     var arr = matches[0][cset];
1895                     if (arr.length) {
1896                         // protect against errant empty string values
1897                         if (arr.length == 1 && arr[0] == '')
1898                             continue;
1899                         found = true;
1900                         break;
1901                     }
1902                 }
1903             }
1904
1905     
1906             // XXX If adt, etc should be validated separately from vxz, etc then move this up into the above for loop
1907             for (var j = 0; j < subfields.length; j++) {
1908                 var sf = subfields[j];
1909                 if (!found) {
1910                     dojo.removeClass(sf.childNodes[2], 'marcValidated');
1911                     dojo.addClass(sf.childNodes[2], 'marcUnvalidated');
1912                 } else {
1913                     dojo.removeClass(sf.childNodes[2], 'marcUnvalidated');
1914                     dojo.addClass(sf.childNodes[2], 'marcValidated');
1915                 }
1916             }
1917
1918             if (found) done = true;
1919         });
1920     }
1921
1922     button.setAttribute('label', label);
1923
1924     return true;
1925 }
1926
1927
1928 /*
1929 function validateBibField (tags, searches) {
1930     var url = "/gateway?input_format=json&format=xml&service=open-ils.search&method=open-ils.search.authority.validate.tag";
1931     url += '&param="tags"&param=' + js2JSON(tags);
1932     url += '&param="searches"&param=' + js2JSON(searches);
1933
1934
1935     var req = new XMLHttpRequest();
1936     req.open('GET',url,false);
1937     req.send(null);
1938
1939     return req;
1940
1941 }
1942 */
1943
1944 function searchAuthority (term, tag, sf, limit) {
1945     var url = "/gateway?input_format=json&format=xml&service=open-ils.search&method=open-ils.search.authority.fts";
1946     url += '&param="term"&param="' + term + '"';
1947     url += '&param="limit"&param=' + limit;
1948     url += '&param="tag"&param=' + tag;
1949     url += '&param="subfield"&param="' + sf + '"';
1950
1951
1952     var req = new XMLHttpRequest();
1953     req.open('GET',url,false);
1954     req.send(null);
1955
1956     return req;
1957
1958 }
1959
1960 /* TODO new authority browse support for context sets, and use that here */
1961 function browseAuthority (sf_popup, menu_id, target, sf, limit, page) {
1962     dojo.require('dojox.xml.parser');
1963
1964     // map tag + subfield to the appropriate authority browse axis:
1965     // currently authority.author, authority.subject, authority.title, authority.topic
1966     // based on mappings in OpenILS::Application::SuperCat, though Authority Control
1967     // Sets will change that
1968
1969     var axis_list = acs.bibFieldBrowseAxes( sf.parent().@tag.toString() );
1970
1971     // No matching tag means no authorities to search - shortcut
1972     if (axis_list.length == 0) {
1973         target.setAttribute('context', 'clipboard');
1974         return false;
1975     }
1976
1977     var type = 'authority.' + axis_list[0]; // Just take the first for now
1978                                             // TODO support multiple axes ... loop?
1979     if (!limit) {
1980         limit = 10;
1981     }
1982
1983     if (!page) {
1984         page = 0;
1985     }
1986
1987     var sf_string = '';
1988     var sf_list = sf.parent().subfield;
1989     for ( var i in sf_list) {
1990         sf_string += sf_list[i].toString() + ' ';
1991         if (sf_list[i] === sf) break;
1992     }
1993
1994     var url = '/opac/extras/browse/marcxml/'
1995         + type + '.refs'
1996         + '/1' // OU - currently unscoped
1997         + '/' + sf_string
1998         + '/' + page
1999         + '/' + limit
2000     ;
2001
2002     // would be good to carve this out into a separate function
2003     dojo.xhrGet({"url":url, "sync": true, "preventCache": true, "handleAs":"xml", "load": function(records) {
2004         var create_menu = createMenu({ label: $('catStrings').getString('staff.cat.marcedit.create_authority.label')});
2005
2006         var cm_popup = create_menu.appendChild(
2007             createMenuPopup()
2008         );
2009
2010         cm_popup.appendChild(
2011             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.create_authority_now.label'),
2012                 command : function() { 
2013                     // Call middle-layer function to create and save the new authority
2014                     var source_f = summarizeField(sf);
2015                     var new_auth = fieldmapper.standardRequest(
2016                         ["open-ils.cat", "open-ils.cat.authority.record.create_from_bib"],
2017                         [source_f, xulG.marc_control_number_identifier, ses()]
2018                     );
2019                     if (new_auth && new_auth.id()) {
2020                         addNewAuthorityID(new_auth, sf, target);
2021                     }
2022                 }
2023             })
2024         );
2025
2026         cm_popup.appendChild(
2027             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.create_authority_edit.label'),
2028                 command : function() { 
2029                     // Generate the new authority by calling the new middle-layer
2030                     // function (a non-saving variant), then display in another
2031                     // MARC editor
2032                     var source_f = summarizeField(sf);
2033                     var authtoken = ses();
2034                     dojo.require('openils.PermaCrud');
2035                     var pcrud = new openils.PermaCrud({"authtoken": authtoken});
2036                     var rec = fieldmapper.standardRequest(
2037                         ["open-ils.cat", "open-ils.cat.authority.record.create_from_bib.readonly"],
2038                         { "params": [source_f, xulG.marc_control_number_identifier] }
2039                     );
2040                     loadMarcEditor(pcrud, rec, target, sf);
2041                 }
2042             })
2043         );
2044
2045         sf_popup.appendChild(create_menu);
2046         sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
2047
2048         // append "Previous page" results browser
2049         sf_popup.appendChild(
2050             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.previous_page.label'),
2051                 command : function(event) { 
2052                     auth_pages[menu_id] -= 1;
2053                     show_auth_menu = true;
2054                 }
2055             })
2056         );
2057         sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
2058
2059         dojo.query('record', records).forEach(function(record) {
2060             var main_text = '';
2061             var see_from = [];
2062             var see_also = [];
2063             var auth_id = dojox.xml.parser.textContent(dojo.query('datafield[tag="901"]', record).query('subfield[code="c"]')[0]);
2064             var auth_org = '';
2065             if (dojo.query('controlfield[tag="003"]', record).length > 0) {
2066                 auth_org = dojox.xml.parser.textContent(dojo.query('controlfield[tag="003"]', record)[0]);
2067             }
2068
2069             // Grab the fields with tags beginning with 1 (main entries) and iterate through the subfields
2070             dojo.query('datafield[tag^="1"]', record).forEach(function(field) {
2071                 dojo.query('subfield', field).forEach(function(subfield) {
2072                     if (main_text) {
2073                         main_text += ' / ';
2074                     }
2075                     main_text += dojox.xml.parser.textContent(subfield);
2076                 });
2077             });
2078
2079             // Grab the fields with tags beginning with 4 (see from entries) and iterate through the subfields
2080             dojo.query('datafield[tag^="4"]', record).forEach(function(field) {
2081                 var see_text = '';
2082                 dojo.query('subfield', field).forEach(function(subfield) {
2083                     if (see_text) {
2084                         see_text += ' / ';
2085                     }
2086                     see_text += dojox.xml.parser.textContent(subfield);
2087                 });
2088                 see_from.push($('catStrings').getFormattedString('staff.cat.marcedit.authority_see_from', [see_text]));
2089             });
2090
2091             // Grab the fields with tags beginning with 5 (see also entries) and iterate through the subfields
2092             dojo.query('datafield[tag^="5"]', record).forEach(function(field) {
2093                 var see_text = '';
2094                 dojo.query('subfield', field).forEach(function(subfield) {
2095                     if (see_text) {
2096                         see_text += ' / ';
2097                     }
2098                     see_text += dojox.xml.parser.textContent(subfield);
2099                 });
2100                 see_also.push($('catStrings').getFormattedString('staff.cat.marcedit.authority_see_also', [see_text]));
2101             });
2102
2103             buildAuthorityPopup(main_text, record, auth_org, auth_id, sf_popup, target, sf);
2104
2105             dojo.forEach(see_from, function(entry_text) {
2106                 buildAuthorityPopup(entry_text, record, auth_org, auth_id, sf_popup, target, sf, "font-style: italic; margin-left: 2em;");
2107             });
2108
2109             // To-do: instead of launching the standard selector menu, invoke
2110             // a new authority search using the 5XX entry text
2111             dojo.forEach(see_also, function(entry_text) {
2112                 buildAuthorityPopup(entry_text, record, auth_org, auth_id, sf_popup, target, sf, "font-style: italic; margin-left: 2em;");
2113             });
2114
2115         });
2116
2117         if (sf_popup.childNodes.length == 0) {
2118             sf_popup.appendChild(createLabel( { value : $('catStrings').getString('staff.cat.marcedit.no_authority_match.label') } ) );
2119         } else {
2120             // append "Next page" results browser
2121             sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
2122             sf_popup.appendChild(
2123                 createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.next_page.label'),
2124                     command : function(event) { 
2125                         auth_pages[menu_id] += 1;
2126                         show_auth_menu = true;
2127                     }
2128                 })
2129             );
2130         }
2131
2132         target.setAttribute('context', menu_id);
2133         return true;
2134     }});
2135
2136 }
2137
2138 function buildAuthorityPopup (entry_text, record, auth_org, auth_id, sf_popup, target, sf, style) {
2139     var grid = dojo.query('[name="authority-marc-template"]')[0].cloneNode(true);
2140     grid.setAttribute('name','-none-');
2141     grid.setAttribute('style','overflow:scroll');
2142
2143     var submenu = createMenu( { "label": entry_text } );
2144
2145     var popup = createMenuPopup({ "flex": "1" });
2146     if (style) {
2147         submenu.setAttribute('style', style);
2148         popup.setAttribute('style', 'font-style: normal; margin-left: 0em;');
2149     }
2150     submenu.appendChild(popup);
2151
2152     dojo.query('datafield[tag^="1"]', record).forEach(function(field) {
2153         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
2154     });
2155     dojo.query('datafield[tag^="4"]', record).forEach(function(field) {
2156         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
2157     });
2158     dojo.query('datafield[tag^="5"]', record).forEach(function(field) {
2159         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
2160     });
2161
2162     grid.hidden = false;
2163     popup.appendChild( grid );
2164
2165     popup.appendChild(
2166         createMenuitem(
2167             { label : $('catStrings').getString('staff.cat.marcedit.apply_selected.label'),
2168               command : function (event) {
2169                     applySelectedAuthority(event.target.previousSibling, target, sf);
2170                     return true;
2171               }
2172             }
2173         )
2174     );
2175
2176     popup.appendChild( createComplexXULElement( 'menuseparator' ) );
2177
2178     popup.appendChild(
2179         createMenuitem(
2180             { label : $('catStrings').getString('staff.cat.marcedit.apply_full.label'),
2181               command : function (event) {
2182                     applyFullAuthority(event.target.previousSibling.previousSibling.previousSibling, target, sf);
2183                     return true;
2184               }
2185             }
2186         )
2187     );
2188
2189     sf_popup.appendChild( submenu );
2190 }
2191
2192 function buildAuthorityPopupSelector (field, grid, auth_org, auth_id) {
2193     var row = createRow(
2194         { },
2195         createLabel( { "value" : dojo.attr(field, 'tag') } ),
2196         createLabel( { "value" : dojo.attr(field, 'ind1') } ),
2197         createLabel( { "value" : dojo.attr(field, 'ind2') } )
2198     );
2199
2200     var sf_box = createHbox();
2201     dojo.query('subfield', field).forEach(function(subfield) {
2202         sf_box.appendChild(
2203             createCheckbox(
2204                 { "label"    : '\u2021' + dojo.attr(subfield, 'code') + ' ' + dojox.xml.parser.textContent(subfield),
2205                   "subfield" : dojo.attr(subfield, 'code'),
2206                   "tag"      : dojo.attr(field, 'tag'),
2207                   "value"    : dojox.xml.parser.textContent(subfield)
2208                 }
2209             )
2210         );
2211         row.appendChild(sf_box);
2212     });
2213
2214     // Append the authority linking subfield only for main entries
2215     if (dojo.attr(field, 'tag').charAt(0) == '1') {
2216         sf_box.appendChild(
2217             createCheckbox(
2218                 { "label"    : '\u2021' + '0' + ' (' + auth_org + ')' + auth_id,
2219                   "subfield" : '0',
2220                   "tag"      : dojo.attr(field, 'tag'),
2221                   "ind1"     : dojo.attr(field, 'ind1'),
2222                   "ind2"     : dojo.attr(field, 'ind2'),
2223                   "value"    : '(' + auth_org + ')' + auth_id
2224                 }
2225             )
2226         );
2227     }
2228     row.appendChild(sf_box);
2229
2230     grid.lastChild.appendChild(row);
2231 }
2232
2233 function summarizeField(sf) {
2234     var source_f= {
2235         "tag": '',
2236         "ind1": '',
2237         "ind2": '',
2238         "subfields": []
2239     };
2240
2241     source_f.tag = sf.parent().@tag.toString();
2242     source_f.ind1 = sf.parent().@ind1.toString();
2243     source_f.ind2 = sf.parent().@ind2.toString();
2244
2245     var found_acs = [];
2246     dojo.forEach( acs.controlSetList(), function (acs_id) {
2247         if (acs.controlSet(acs_id).control_map[sf.parent().@tag]) found_acs.push(acs_id);
2248     });
2249
2250     var cmap;
2251     if (!found_acs.length) {
2252         return false;
2253     } else {
2254         cmap = acs.controlSet(found_acs[0]).control_map;
2255     }
2256
2257     for (var i = 0; i < sf.parent().subfield.length(); i++) {
2258         var sf_iter = sf.parent().subfield[i];
2259
2260         /* Filter out subfields that are not controlled for this tag */
2261         if (!cmap[source_f.tag][sf_iter.@code.toString()]) {
2262             continue;
2263         }
2264
2265         source_f.subfields.push([sf_iter.@code.toString(), sf_iter.toString()]);
2266     }
2267
2268     return source_f;
2269 }
2270
2271 function buildBibSourceList (authtoken, recId) {
2272     /* TODO: Work out how to set the bib source of the bre that does not yet
2273      * exist - this is specifically in the case of Z39.50 imports. Right now
2274      * we just avoid populating and showing the config.bib_source list
2275      */
2276     if (!recId) {
2277         return false;
2278     }
2279
2280     var bib = xulG.record.bre;
2281
2282     dojo.require('openils.PermaCrud');
2283
2284     // cbsList = the XUL menulist that contains the available bib sources 
2285     var cbsList = dojo.byId('bib-source-list');
2286
2287     // bibSources = an array containing all of the bib source objects
2288     var bibSources = new openils.PermaCrud({"authtoken": authtoken}).retrieveAll('cbs');
2289
2290     // A tad ugly, but gives us the index of the bib source ID in cbsList
2291     var x = 0;
2292     var cbsListArr = [];
2293     dojo.forEach(bibSources, function (item) {
2294         cbsList.appendItem(item.source(), item.id());
2295         cbsListArr[item.id()] = x;
2296         x++;
2297     });
2298
2299     // Show the current value of the bib source for this record
2300     cbsList.selectedIndex = cbsListArr[bib.source()];
2301
2302     // Display the bib source selection widget
2303     dojo.byId('bib-source-list-caption').hidden = false;
2304     dojo.byId('bib-source-list').hidden = false;
2305     dojo.byId('bib-source-list-button').disabled = true;
2306     dojo.byId('bib-source-list-button').hidden = false;
2307 }
2308
2309 // Fired when the "Update Source" button is clicked
2310 // Updates the value of the bib source for the current record
2311 function updateBibSource() {
2312     var authtoken = ses();
2313     var cbs = dojo.byId('bib-source-list').selectedItem.value;
2314     var recId = xulG.record.id;
2315     var pcrud = new openils.PermaCrud({"authtoken": authtoken});
2316     var bib = pcrud.retrieve('bre', recId);
2317     if (bib.source() != cbs) {
2318         bib.source(cbs);
2319         bib.ischanged = true;
2320         pcrud.update(bib);
2321     }
2322 }
2323
2324 function onBibSourceSelect() {
2325     var cbs = dojo.byId('bib-source-list').selectedItem.value;
2326     var bib = xulG.record.bre;
2327     if (bib.source() != cbs) {
2328         dojo.byId('bib-source-list-button').disabled = false;   
2329     } else {
2330         dojo.byId('bib-source-list-button').disabled = true;   
2331     }
2332 }
2333
2334 function addNewAuthorityID(authority, sf, target) {
2335     var id_sf = <subfield code="0" xmlns="http://www.loc.gov/MARC21/slim">({xulG.marc_control_number_identifier}){authority.id()}</subfield>;
2336     sf.parent().appendChild(id_sf);
2337     var new_sf = marcSubfield(id_sf);
2338
2339     var node = target;
2340     while (dojo.attr(node, 'name') != 'sf_box') {
2341         node = node.parentNode;
2342     }
2343     node.appendChild( new_sf );
2344
2345     alert($('catStrings').getString('staff.cat.marcedit.create_authority_success.label'));
2346 }
2347
2348 function loadMarcEditor(pcrud, marcxml, target, sf) {
2349     /*
2350        To run in Firefox directly, must set signed.applets.codebase_principal_support
2351        to true in about:config
2352      */
2353     win = window.open('/xul/server/cat/marcedit.xul', '_blank', 'chrome'); // XXX version?
2354
2355     // Match marc2are.pl last_xact_id format, roughly
2356     var now = new Date;
2357     var xact_id = 'IMPORT-' + Date.parse(now);
2358     
2359     win.xulG = {
2360         "record": {"marc": marcxml, "rtype": "are"},
2361         "save": {
2362             "label": $('catStrings').getString('staff.cat.marcedit.save.label'),
2363             "func": function(xmlString) {
2364                 var rec = new are();
2365                 rec.marc(xmlString);
2366                 rec.last_xact_id(xact_id);
2367                 rec.isnew(true);
2368                 pcrud.create(rec, {
2369                     "oncomplete": function (r, objs) {
2370                         var new_rec = objs[0];
2371                         if (!new_rec) {
2372                             return '';
2373                         }
2374
2375                         addNewAuthorityID(new_rec, sf, target);
2376
2377                         win.close();
2378                     }
2379                 });
2380             }
2381         }
2382     };
2383 }
2384
2385