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