]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/marcedit.js
Search clicked /and/ preceding sf values
[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                 createControlField('006','                                        ');
731                 loadRecord();
732             } else if (event.keyCode == 118 && event.ctrlKey) { // ctrl + F7
733                 createControlField('007','                                        ');
734                 loadRecord();
735             } else if (event.keyCode == 119 && event.ctrlKey) { // ctrl + F8
736                 createControlField('008','                                        ');
737                 loadRecord();
738             }
739
740             return true;
741
742         } else { // event on a control field
743             if (event.keyCode == 38) { 
744                 return setFocusToNextTag(row, 'up'); 
745             } else if (event.keyCode == 40) { 
746                 return setFocusToNextTag(row, 'down');
747             }
748         }
749     };
750
751     box.addEventListener(
752         'keypress', 
753         function () {
754             if (element.nodeKind() == 'attribute') element[0]=box.value;
755             else element.setChildren( box.value );
756             return true;
757         },
758         false
759     );
760
761     box.addEventListener(
762         'change', 
763         function () {
764             if (element.nodeKind() == 'attribute') element[0]=box.value;
765             else element.setChildren( box.value );
766             return true;
767         },
768         false
769     );
770
771     box.addEventListener(
772         'keypress', 
773         function () {
774             if (element.nodeKind() == 'attribute') element[0]=box.value;
775             else element.setChildren( box.value );
776             return true;
777         },
778         true
779     );
780
781     // 'input' event catches the box value after the keypress
782     box.addEventListener(
783         'input', 
784         function () {
785             if (element.nodeKind() == 'attribute') element[0]=box.value;
786             else element.setChildren( box.value );
787             return true;
788         },
789         true
790     );
791
792     box.addEventListener(
793         'keyup', 
794         function () {
795             if (element.localName() == 'controlfield')
796                 eval('fillFixedFields();');
797         },
798         true
799     );
800
801     return box;
802 }
803
804 function toggleFFE () {
805     var grid = document.getElementById('leaderGrid');
806     if (grid.hidden) {
807         grid.hidden = false;
808     } else {
809         grid.hidden = true;
810     }
811     return true;
812 }
813
814 function changeFFEditor (type) {
815     var grid = document.getElementById('leaderGrid');
816     grid.setAttribute('type',type);
817     document.getElementById('recordTypeLabel').setAttribute('value',type);
818
819     // Hide FFEditor rows that we don't need for our current type
820     // If all of the labels for a given row do not include our
821     // desired type in their set attribute, we can hide that row
822     dojo.query('rows', grid).query('row').forEach(function(node, index, arr) {
823         if (dojo.query('label[set~=' + type + ']', node).length == 0) {
824             node.hidden = true;
825         }
826     });
827
828 }
829
830 function fillFixedFields () {
831     try {
832             var grid = document.getElementById('leaderGrid');
833             var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
834
835             var list = [];
836             var pre_list = grid.getElementsByTagName('label');
837             for (var i in pre_list) {
838                 if ( pre_list[i].getAttribute && pre_list[i].getAttribute('set').indexOf(grid.getAttribute('type')) > -1 ) {
839                     list.push( pre_list[i] );
840                 }
841             }
842
843             for (var i in list) {
844                 var name = list[i].getAttribute('name');
845                 var value = marc_rec.extractFixedField(name, true);
846
847                 if (value === null) continue;
848
849                 list[i].nextSibling.value = value;
850             }
851
852             return true;
853     } catch(E) {
854         alert('FIXME, MARC Editor, fillFixedFields: ' + E);
855     }
856 }
857
858 function updateFixedFields (element) {
859     var grid = document.getElementById('leaderGrid');
860     var recGrid = document.getElementById('recGrid');
861     var new_value = element.value;
862     // Don't take focus away/adjust the record on partial changes
863     var length = element.getAttribute('maxlength');
864     if(new_value.length < length) return true;
865
866     var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
867     marc_rec.setFixedField(element.getAttribute('name'), new_value);
868
869     var xml_string = marc_rec.toXmlString();
870     xml_record = new XML( xml_string );
871     if (xml_record..record[0]) xml_record = xml_record..record[0];
872     loadRecord();
873     // Put the cursor back to the current fixed field
874     element.select();
875
876     return true;
877 }
878
879 function marcLeader (leader) {
880     var row = createRow(
881         { class : 'marcLeaderRow',
882           tag : 'ldr' },
883         createLabel(
884             { value : 'LDR',
885               class : 'marcTag',
886               tooltiptext : $('catStrings').getString('staff.cat.marcedit.marcTag.LDR.label') } ),
887         createLabel(
888             { value : '',
889               class : 'marcInd1' } ),
890         createLabel(
891             { value : '',
892               class : 'marcInd2' } ),
893         createLabel(
894             { value : leader.text(),
895               class : 'marcLeader' } )
896     );
897
898     return row;
899 }
900
901 function marcControlfield (field) {
902     tagname = field.@tag.toString().substr(2);
903     var row;
904     if (tagname == '1' || tagname == '3' || tagname == '6' || tagname == '7' || tagname == '8') {
905         row = createRow(
906             { class : 'marcControlfieldRow',
907               tag : '_' + tagname },
908             createLabel(
909                 { value : field.@tag,
910                   class : 'marcTag',
911                   context : 'tags_popup',
912                   onmouseover : 'getTooltip(this, "tag");',
913                   tooltipid : 'tag' + field.@tag } ),
914             createLabel(
915                 { value : field.@ind1,
916                   class : 'marcInd1',
917                   onmouseover : 'getTooltip(this, "ind1");',
918                   tooltipid : 'tag' + field.@tag + 'ind1val' + field.@ind1 } ),
919             createLabel(
920                 { value : field.@ind2,
921                   class : 'marcInd2',
922                   onmouseover : 'getTooltip(this, "ind2");',
923                   tooltipid : 'tag' + field.@tag + 'ind2val' + field.@ind2 } ),
924             createMARCTextbox(
925                 field,
926                 { value : field.text(),
927                   class : 'plain marcEditableControlfield',
928                   name : 'CONTROL' + tagname,
929                   context : 'clipboard',
930                   size : 50,
931                   maxlength : 50 } )
932             );
933     } else {
934         row = createRow(
935             { class : 'marcControlfieldRow',
936               tag : '_' + tagname },
937             createLabel(
938                 { value : field.@tag,
939                   class : 'marcTag',
940                   onmouseover : 'getTooltip(this, "tag");',
941                   tooltipid : 'tag' + field.@tag } ),
942             createLabel(
943                 { value : field.@ind1,
944                   class : 'marcInd1',
945                   onmouseover : 'getTooltip(this, "ind1");',
946                   tooltipid : 'tag' + field.@tag + 'ind1val' + field.@ind1 } ),
947             createLabel(
948                 { value : field.@ind2,
949                   class : 'marcInd2',
950                   onmouseover : 'getTooltip(this, "ind2");',
951                   tooltipid : 'tag' + field.@tag + 'ind2val' + field.@ind2 } ),
952             createLabel(
953                 { value : field.text(),
954                   class : 'marcControlfield' } )
955         );
956     }
957
958     return row;
959 }
960
961 function stackSubfields(checkbox) {
962     var list = document.getElementsByAttribute('name','sf_box');
963
964     var o = 'vertical';
965     if (!checkbox.checked) o = 'horizontal';
966     
967     for (var i = 0; i < list.length; i++) {
968         if (list[i]) list[i].setAttribute('orient',o);
969     }
970 }
971
972 function fastItemAdd_toggle(checkbox) {
973     var x = document.getElementById('fastItemAdd_textboxes');
974     if (checkbox.checked) {
975         x.hidden = false;
976         document.getElementById('fastItemAdd_callnumber').focus();
977         document.getElementById('fastItemAdd_callnumber').select();
978     } else {
979         x.hidden = true;
980     }
981 }
982
983 function fastItemAdd_attempt(doc_id) {
984     try {
985         if (typeof window.xulG.fast_add_item != 'function') { return; }
986         if (!document.getElementById('fastItemAdd_checkbox').checked) { return; }
987         if (!document.getElementById('fastItemAdd_callnumber').value) { return; }
988         if (!document.getElementById('fastItemAdd_barcode').value) { return; }
989         window.xulG.fast_add_item( doc_id, document.getElementById('fastItemAdd_callnumber').value, document.getElementById('fastItemAdd_barcode').value );
990         document.getElementById('fastItemAdd_barcode').value = '';
991     } catch(E) {
992         alert('fastItemAdd_attempt: ' + E);
993     }
994 }
995
996 function save_attempt(xml_string) {
997     try {
998         var result = window.xulG.save.func( xml_string );   
999         if (result) {
1000             oils_unlock_page();
1001             if (result.id) fastItemAdd_attempt(result.id);
1002             if (typeof result.on_complete == 'function') result.on_complete();
1003         }
1004     } catch(E) {
1005         alert('save_attempt: ' + E);
1006     }
1007 }
1008
1009 function marcDatafield (field) {
1010     var row = createRow(
1011         { class : 'marcDatafieldRow' },
1012         createMARCTextbox(
1013             field.@tag,
1014             { value : field.@tag,
1015               class : 'plain marcTag',
1016               name : 'marcTag',
1017               context : 'tags_popup',
1018               oninput : 'if (this.value.length == 3) { this.nextSibling.focus(); }',
1019               size : 3,
1020               maxlength : 3,
1021               onmouseover : 'current_focus = this; getTooltip(this, "tag");' } ),
1022         createMARCTextbox(
1023             field.@ind1,
1024             { value : field.@ind1,
1025               class : 'plain marcInd1',
1026               name : 'marcInd1',
1027               oninput : 'if (this.value.length == 1) { this.nextSibling.focus(); }',
1028               size : 1,
1029               maxlength : 1,
1030               onmouseover : 'current_focus = this; getContextMenu(this, "ind1"); getTooltip(this, "ind1");',
1031               oncontextmenu : 'getContextMenu(this, "ind1");' } ),
1032         createMARCTextbox(
1033             field.@ind2,
1034             { value : field.@ind2,
1035               class : 'plain marcInd2',
1036               name : 'marcInd2',
1037               oninput : 'if (this.value.length == 1) { this.nextSibling.firstChild.firstChild.focus(); }',
1038               size : 1,
1039               maxlength : 1,
1040               onmouseover : 'current_focus = this; getContextMenu(this, "ind2"); getTooltip(this, "ind2");',
1041               oncontextmenu : 'getContextMenu(this, "ind2");' } ),
1042         createHbox({ name : 'sf_box' })
1043     );
1044
1045     if (!current_focus && field.@tag == '') current_focus = row.childNodes[0];
1046     if (!current_focus && field.@ind1 == '') current_focus = row.childNodes[1];
1047     if (!current_focus && field.@ind2 == '') current_focus = row.childNodes[2];
1048
1049     var sf_box = row.lastChild;
1050     if (document.getElementById('stackSubfields').checked)
1051         sf_box.setAttribute('orient','vertical');
1052
1053     sf_box.addEventListener(
1054         'click',
1055         function (e) {
1056             if (sf_box === e.target) {
1057                 sf_box.lastChild.lastChild.focus();
1058             } else if (e.target.parentNode === sf_box) {
1059                 e.target.lastChild.focus();
1060             }
1061         },
1062         false
1063     );
1064
1065
1066     for (var i in field.subfield) {
1067         var sf = field.subfield[i];
1068         sf_box.appendChild(
1069             marcSubfield(sf)
1070         );
1071
1072         dojo.query('.marcSubfield', sf_box).forEach(wrap_long_fields);
1073
1074         if (sf.@code == '' && (!current_focus || current_focus.className.match(/Ind/)))
1075             current_focus = sf_box.lastChild.childNodes[1];
1076     }
1077
1078     return row;
1079 }
1080
1081 function marcSubfield (sf) {            
1082     return createHbox(
1083         { class : 'marcSubfieldBox' },
1084         createLabel(
1085             { value : "\u2021",
1086               class : 'plain marcSubfieldDelimiter',
1087               onmouseover : 'getTooltip(this.nextSibling, "subfield");',
1088               oncontextmenu : 'getContextMenu(this.nextSibling, "subfield");',
1089                 //onclick : 'this.nextSibling.focus();',
1090                 onfocus : 'this.nextSibling.focus();',
1091               size : 2 } ),
1092         createMARCTextbox(
1093             sf.@code,
1094             { value : sf.@code,
1095               class : 'plain marcSubfieldCode',
1096               align: 'start',
1097               name : 'marcSubfieldCode',
1098               onmouseover : 'current_focus = this; getContextMenu(this, "subfield"); getTooltip(this, "subfield");',
1099               oncontextmenu : 'getContextMenu(this, "subfield");',
1100               oninput : 'if (this.value.length == 1) { this.nextSibling.focus(); }',
1101               size : 2,
1102               maxlength : 1 } ),
1103         createMARCTextbox(
1104             sf,
1105             { value : sf.text(),
1106               name : sf.parent().@tag + ':' + sf.@code,
1107               class : 'plain marcSubfield', 
1108               align: 'start',
1109               onmouseover : 'getTooltip(this, "subfield");',
1110               contextmenu : function (event) { getAuthorityContextMenu(event.target, sf) },
1111               size : new String(sf.text()).length + 2,
1112               oninput : "this.setAttribute('size', this.value.length + 2);"
1113             } )
1114     );
1115 }
1116
1117 function loadRecord() {
1118     try {
1119             var grid_rows = document.getElementById('recGrid').lastChild;
1120
1121             while (grid_rows.firstChild) grid_rows.removeChild(grid_rows.firstChild);
1122
1123             grid_rows.appendChild( marcLeader( xml_record.leader ) );
1124
1125             for (var i in xml_record.controlfield) {
1126                 grid_rows.appendChild( marcControlfield( xml_record.controlfield[i] ) );
1127             }
1128
1129             for (var i in xml_record.datafield) {
1130                 grid_rows.appendChild( marcDatafield( xml_record.datafield[i] ) );
1131             }
1132
1133             grid_rows.getElementsByAttribute('class','marcDatafieldRow')[0].firstChild.focus();
1134
1135             var marc_rec = new MARC.Record ({ delimiter : '$', marcxml : xml_record.toXMLString() });
1136             changeFFEditor(marc_rec.recordType());
1137             fillFixedFields();
1138     } catch(E) {
1139         alert('FIXME, MARC Editor, loadRecord: ' + E);
1140     }
1141 }
1142
1143
1144 function genToolTips () {
1145     for (var i in bib_data.field) {
1146         var f = bib_data.field[i];
1147     
1148         tag_menu.appendChild(
1149             createMenuitem(
1150                 { label : f.@tag,
1151                   oncommand : 
1152                       'current_focus.value = "' + f.@tag + '";' +
1153                     'var e = document.createEvent("MutationEvents");' +
1154                     'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1155                     'current_focus.inputField.dispatchEvent(e);',
1156                   disabled : f.@tag < '010' ? "true" : "false",
1157                   tooltiptext : f.description }
1158             )
1159         );
1160     
1161         var i1_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'i1' });
1162         context_menus.appendChild( i1_popup );
1163     
1164         var i2_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'i2' });
1165         context_menus.appendChild( i2_popup );
1166     
1167         var sf_popup = createMenuPopup({position : 'after_start', id : 't' + f.@tag + 'sf' });
1168         context_menus.appendChild( sf_popup );
1169     
1170         tooltip_hash['tag' + f.@tag] = f.description;
1171         for (var j in f.indicator) {
1172             var ind = f.indicator[j];
1173             tooltip_hash['tag' + f.@tag + 'ind' + ind.@position + 'val' + ind.@value] = ind.description;
1174     
1175             if (ind.@position == 1) {
1176                 i1_popup.appendChild(
1177                     createMenuitem(
1178                         { label : ind.@value,
1179                           oncommand : 
1180                               'current_focus.value = "' + ind.@value + '";' +
1181                             'var e = document.createEvent("MutationEvents");' +
1182                             'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1183                             'current_focus.inputField.dispatchEvent(e);',
1184                           tooltiptext : ind.description }
1185                     )
1186                 );
1187             }
1188     
1189             if (ind.@position == 2) {
1190                 i2_popup.appendChild(
1191                     createMenuitem(
1192                         { label : ind.@value,
1193                           oncommand : 
1194                               'current_focus.value = "' + ind.@value + '";' +
1195                             'var e = document.createEvent("MutationEvents");' +
1196                             'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1197                             'current_focus.inputField.dispatchEvent(e);',
1198                           tooltiptext : ind.description }
1199                     )
1200                 );
1201             }
1202         }
1203     
1204         for (var j in f.subfield) {
1205             var sf = f.subfield[j];
1206             tooltip_hash['tag' + f.@tag + 'sf' + sf.@code] = sf.description;
1207     
1208             sf_popup.appendChild(
1209                 createMenuitem(
1210                     { label : sf.@code,
1211                       oncommand : 
1212                           'current_focus.value = "' + sf.@code + '";' +
1213                         'var e = document.createEvent("MutationEvents");' +
1214                         'e.initMutationEvent("change",1,1,null,0,0,0,0);' +
1215                         'current_focus.inputField.dispatchEvent(e);',
1216                       tooltiptext : sf.description
1217                     }
1218                 )
1219             );
1220         }
1221     }
1222 }
1223
1224 function getTooltip (target, type) {
1225
1226     var tt = '';
1227     if (type == 'subfield')
1228         tt = 'tag' + target.parentNode.parentNode.parentNode.firstChild.value + 'sf' + target.parentNode.childNodes[1].value;
1229
1230     if (type == 'ind1')
1231         tt = 'tag' + target.parentNode.firstChild.value + 'ind1val' + target.value;
1232
1233     if (type == 'ind2')
1234         tt = 'tag' + target.parentNode.firstChild.value + 'ind2val' + target.value;
1235
1236     if (type == 'tag')
1237         tt = 'tag' + target.parentNode.firstChild.value;
1238
1239     if (!document.getElementById( tt )) {
1240         p.appendChild(
1241             createTooltip(
1242                 { id : tt,
1243                   flex : "1",
1244                   orient : 'vertical',
1245                   onpopupshown : 'this.width = this.firstChild.boxObject.width + 10; this.height = this.firstChild.boxObject.height + 10;',
1246                   class : 'tooltip' },
1247                 createDescription({}, document.createTextNode( tooltip_hash[tt] ) )
1248             )
1249         );
1250     }
1251
1252     target.tooltip = tt;
1253     return true;
1254 }
1255
1256 function getContextMenu (target, type) {
1257
1258     var tt = '';
1259     if (type == 'subfield')
1260         tt = 't' + target.parentNode.parentNode.parentNode.firstChild.value + 'sf';
1261
1262     if (type == 'ind1')
1263         tt = 't' + target.parentNode.firstChild.value + 'i1';
1264
1265     if (type == 'ind2')
1266         tt = 't' + target.parentNode.firstChild.value + 'i2';
1267
1268     target.setAttribute('context', tt);
1269     return true;
1270 }
1271
1272 var control_map = {
1273     100 : {
1274         'a' : { 100 : 'a' },
1275         'd' : { 100 : 'd' },
1276         'e' : { 100 : 'e' },
1277         'q' : { 100 : 'q' }
1278     },
1279     110 : {
1280         'a' : { 110 : 'a' },
1281         'd' : { 110 : 'd' }
1282     },
1283     111 : {
1284         'a' : { 111 : 'a' },
1285         'd' : { 111 : 'd' }
1286     },
1287     130 : {
1288         'a' : { 130 : 'a' },
1289         'd' : { 130 : 'd' }
1290     },
1291     240 : {
1292         'a' : { 130 : 'a' },
1293         'd' : { 130 : 'd' }
1294     },
1295     400 : {
1296         'a' : { 100 : 'a' },
1297         'd' : { 100 : 'd' }
1298     },
1299     410 : {
1300         'a' : { 110 : 'a' },
1301         'd' : { 110 : 'd' }
1302     },
1303     411 : {
1304         'a' : { 111 : 'a' },
1305         'd' : { 111 : 'd' }
1306     },
1307     440 : {
1308         'a' : { 130 : 'a' },
1309         'n' : { 130 : 'n' },
1310         'p' : { 130 : 'p' }
1311     },
1312     700 : {
1313         'a' : { 100 : 'a' },
1314         'd' : { 100 : 'd' },
1315         'q' : { 100 : 'q' },
1316         't' : { 100 : 't' }
1317     },
1318     710 : {
1319         'a' : { 110 : 'a' },
1320         'd' : { 110 : 'd' }
1321     },
1322     711 : {
1323         'a' : { 111 : 'a' },
1324         'c' : { 111 : 'c' },
1325         'd' : { 111 : 'd' }
1326     },
1327     730 : {
1328         'a' : { 130 : 'a' },
1329         'd' : { 130 : 'd' }
1330     },
1331     800 : {
1332         'a' : { 100 : 'a' },
1333         'd' : { 100 : 'd' }
1334     },
1335     810 : {
1336         'a' : { 110 : 'a' },
1337         'd' : { 110 : 'd' }
1338     },
1339     811 : {
1340         'a' : { 111 : 'a' },
1341         'd' : { 111 : 'd' }
1342     },
1343     830 : {
1344         'a' : { 130 : 'a' },
1345         'd' : { 130 : 'd' }
1346     },
1347     600 : {
1348         'a' : { 100 : 'a' },
1349         'd' : { 100 : 'd' },
1350         'q' : { 100 : 'q' },
1351         't' : { 100 : 't' },
1352         'v' : { 180 : 'v',
1353             100 : 'v',
1354             181 : 'v',
1355             182 : 'v',
1356             185 : 'v'
1357         },
1358         'x' : { 180 : 'x',
1359             100 : 'x',
1360             181 : 'x',
1361             182 : 'x',
1362             185 : 'x'
1363         },
1364         'y' : { 180 : 'y',
1365             100 : 'y',
1366             181 : 'y',
1367             182 : 'y',
1368             185 : 'y'
1369         },
1370         'z' : { 180 : 'z',
1371             100 : 'z',
1372             181 : 'z',
1373             182 : 'z',
1374             185 : 'z'
1375         }
1376     },
1377     610 : {
1378         'a' : { 110 : 'a' },
1379         'd' : { 110 : 'd' },
1380         't' : { 110 : 't' },
1381         'v' : { 180 : 'v',
1382             110 : 'v',
1383             181 : 'v',
1384             182 : 'v',
1385             185 : 'v'
1386         },
1387         'x' : { 180 : 'x',
1388             110 : 'x',
1389             181 : 'x',
1390             182 : 'x',
1391             185 : 'x'
1392         },
1393         'y' : { 180 : 'y',
1394             110 : 'y',
1395             181 : 'y',
1396             182 : 'y',
1397             185 : 'y'
1398         },
1399         'z' : { 180 : 'z',
1400             110 : 'z',
1401             181 : 'z',
1402             182 : 'z',
1403             185 : 'z'
1404         }
1405     },
1406     611 : {
1407         'a' : { 111 : 'a' },
1408         'd' : { 111 : 'd' },
1409         't' : { 111 : 't' },
1410         'v' : { 180 : 'v',
1411             111 : 'v',
1412             181 : 'v',
1413             182 : 'v',
1414             185 : 'v'
1415         },
1416         'x' : { 180 : 'x',
1417             111 : 'x',
1418             181 : 'x',
1419             182 : 'x',
1420             185 : 'x'
1421         },
1422         'y' : { 180 : 'y',
1423             111 : 'y',
1424             181 : 'y',
1425             182 : 'y',
1426             185 : 'y'
1427         },
1428         'z' : { 180 : 'z',
1429             111 : 'z',
1430             181 : 'z',
1431             182 : 'z',
1432             185 : 'z'
1433         }
1434     },
1435     630 : {
1436         'a' : { 130 : 'a' },
1437         'd' : { 130 : 'd' }
1438     },
1439     648 : {
1440         'a' : { 148 : 'a' },
1441         'v' : { 148 : 'v' },
1442         'x' : { 148 : 'x' },
1443         'y' : { 148 : 'y' },
1444         'z' : { 148 : 'z' }
1445     },
1446     650 : {
1447         'a' : { 150 : 'a' },
1448         'b' : { 150 : 'b' },
1449         'v' : { 180 : 'v',
1450             150 : 'v',
1451             181 : 'v',
1452             182 : 'v',
1453             185 : 'v'
1454         },
1455         'x' : { 180 : 'x',
1456             150 : 'x',
1457             181 : 'x',
1458             182 : 'x',
1459             185 : 'x'
1460         },
1461         'y' : { 180 : 'y',
1462             150 : 'y',
1463             181 : 'y',
1464             182 : 'y',
1465             185 : 'y'
1466         },
1467         'z' : { 180 : 'z',
1468             150 : 'z',
1469             181 : 'z',
1470             182 : 'z',
1471             185 : 'z'
1472         }
1473     },
1474     651 : {
1475         'a' : { 151 : 'a' },
1476         'v' : { 180 : 'v',
1477             151 : 'v',
1478             181 : 'v',
1479             182 : 'v',
1480             185 : 'v'
1481         },
1482         'x' : { 180 : 'x',
1483             151 : 'x',
1484             181 : 'x',
1485             182 : 'x',
1486             185 : 'x'
1487         },
1488         'y' : { 180 : 'y',
1489             151 : 'y',
1490             181 : 'y',
1491             182 : 'y',
1492             185 : 'y'
1493         },
1494         'z' : { 180 : 'z',
1495             151 : 'z',
1496             181 : 'z',
1497             182 : 'z',
1498             185 : 'z'
1499         }
1500     },
1501     655 : {
1502         'a' : { 155 : 'a' },
1503         'v' : { 180 : 'v',
1504             155 : 'v',
1505             181 : 'v',
1506             182 : 'v',
1507             185 : 'v'
1508         },
1509         'x' : { 180 : 'x',
1510             155 : 'x',
1511             181 : 'x',
1512             182 : 'x',
1513             185 : 'x'
1514         },
1515         'y' : { 180 : 'y',
1516             155 : 'y',
1517             181 : 'y',
1518             182 : 'y',
1519             185 : 'y'
1520         },
1521         'z' : { 180 : 'z',
1522             155 : 'z',
1523             181 : 'z',
1524             182 : 'z',
1525             185 : 'z'
1526         }
1527     }
1528 };
1529
1530 function getAuthorityContextMenu (target, sf) {
1531     var menu_id = sf.parent().@tag + ':' + sf.@code + '-authority-context-' + sf;
1532
1533     var page = 0;
1534     var old = dojo.byId( menu_id );
1535     if (old) {
1536         page = auth_pages[menu_id];
1537         old.parentNode.removeChild(old);
1538     } else {
1539         auth_pages[menu_id] = 0;
1540     }
1541
1542     var sf_popup = createMenuPopup({ id : menu_id, flex : 1 });
1543
1544     sf_popup.addEventListener("popuphiding", function(event) {
1545         if (show_auth_menu) {
1546             show_auth_menu = false;
1547             getAuthorityContextMenu(target, sf);
1548             dojo.byId(menu_id).openPopup();
1549         }  
1550     }, false);
1551
1552     context_menus.appendChild( sf_popup );
1553
1554     var found_acs = [];
1555     dojo.forEach( acs.controlSetList(), function (acs_id) {
1556         if (acs.controlSet(acs_id).control_map[sf.parent().@tag]) found_acs.push(acs_id);
1557     });
1558
1559     if (!found_acs.length) {
1560         sf_popup.appendChild(createLabel( { value : $('catStrings').getString('staff.cat.marcedit.not_authority_field.label') } ) );
1561         target.setAttribute('context', 'clipboard');
1562         return false;
1563     }
1564
1565     if (sf.toString().replace(/\s*/, '')) {
1566         return browseAuthority(sf_popup, menu_id, target, sf, 20, page);
1567     }
1568
1569     return true;
1570 }
1571
1572 /* Apply the complete 1xx */
1573 function applyFullAuthority ( target, ui_sf, e4x_sf ) {
1574     var new_vals = dojo.query('*[tag^="1"]', target);
1575     return applyAuthority( target, ui_sf, e4x_sf, new_vals );
1576 }
1577
1578 function applySelectedAuthority ( target, ui_sf, e4x_sf ) {
1579     var new_vals = target.getElementsByAttribute('checked','true');
1580     return applyAuthority( target, ui_sf, e4x_sf, new_vals );
1581 }
1582
1583 function applyAuthority ( target, ui_sf, e4x_sf, new_vals ) {
1584     var field = e4x_sf.parent();
1585
1586     for (var i = 0; i < new_vals.length; i++) {
1587
1588         var sf_list = field.subfield;
1589         for (var j in sf_list) {
1590
1591             if (sf_list[j].@code == new_vals[i].getAttribute('subfield')) {
1592                 sf_list[j] = new_vals[i].getAttribute('value');
1593                 new_vals[i].setAttribute('subfield','');
1594                 break;
1595             }
1596         }
1597     }
1598
1599     for (var i = 0; i < new_vals.length; i++) {
1600
1601         /* indicators for the authority datafield are carried over in the main entry linking subfield */
1602         if (new_vals[i].getAttribute('subfield') == '0') {
1603             field.@ind1 = new_vals[i].getAttribute('ind1');
1604             field.@ind2 = new_vals[i].getAttribute('ind2');
1605         }
1606
1607         if (!new_vals[i].getAttribute('subfield')) continue;
1608
1609         var val = new_vals[i].getAttribute('value');
1610
1611         var sf = <subfield code="" xmlns="http://www.loc.gov/MARC21/slim">{val}</subfield>;
1612         sf.@code = new_vals[i].getAttribute('subfield');
1613
1614         field.insertChildAfter(field.subfield[field.subfield.length() - 1], sf);
1615     }
1616
1617     var row = marcDatafield( field );
1618
1619     var node = ui_sf;
1620     while (node.nodeName != 'row') {
1621         node = node.parentNode;
1622     }
1623
1624     node.parentNode.replaceChild( row, node );
1625     return true;
1626 }
1627
1628 function validateAuthority (button) {
1629     var grid = document.getElementById('recGrid');
1630     var label = button.getAttribute('label');
1631
1632     //loop over rows
1633     var rows = grid.lastChild.childNodes;
1634     for (var i = 0; i < rows.length; i++) {
1635         var row = rows[i];
1636         var tag = row.firstChild;
1637
1638         var done = false;
1639         dojo.forEach(acs.controlSetList(), function (acs_id) {
1640             if (done) return;
1641             var control_map = acs.controlSet(acs_id).control_map;
1642     
1643             if (!control_map[tag.value]) return;
1644             button.setAttribute('label', label + ' - ' + tag.value);
1645     
1646             var ind1 = tag.nextSibling;
1647             var ind2 = ind1.nextSibling;
1648             var subfields = ind2.nextSibling.childNodes;
1649     
1650             var sf_list = [];
1651             for (var j = 0; j < subfields.length; j++) {
1652                 var sf = subfields[j];
1653                 sf_list.push( [ sf.childNodes[1].value, sf.childNodes[2].value ] );
1654             }
1655
1656             var matches = acs.findMatchingAuthorities(
1657                 new MARC.Field({
1658                     'tag'       : tag.value,
1659                     'subfields' : sf_list
1660                 })
1661             );
1662
1663             // matches = [ { "$csetId" : [ ... ] } ]
1664
1665             var found = false;
1666             if (matches[0]) { // probably set
1667                 for (var cset in matches[0]) {
1668                     var arr = matches[0][cset];
1669                     if (arr.length) {
1670                         // protect against errant empty string values
1671                         if (arr.length == 1 && arr[0] == '')
1672                             continue;
1673                         found = true;
1674                         break;
1675                     }
1676                 }
1677             }
1678
1679     
1680             // XXX If adt, etc should be validated separately from vxz, etc then move this up into the above for loop
1681             for (var j = 0; j < subfields.length; j++) {
1682                 var sf = subfields[j];
1683                 if (!found) {
1684                     dojo.removeClass(sf.childNodes[2], 'marcValidated');
1685                     dojo.addClass(sf.childNodes[2], 'marcUnvalidated');
1686                 } else {
1687                     dojo.removeClass(sf.childNodes[2], 'marcUnvalidated');
1688                     dojo.addClass(sf.childNodes[2], 'marcValidated');
1689                 }
1690             }
1691
1692             if (found) done = true;
1693         });
1694     }
1695
1696     button.setAttribute('label', label);
1697
1698     return true;
1699 }
1700
1701
1702 /*
1703 function validateBibField (tags, searches) {
1704     var url = "/gateway?input_format=json&format=xml&service=open-ils.search&method=open-ils.search.authority.validate.tag";
1705     url += '&param="tags"&param=' + js2JSON(tags);
1706     url += '&param="searches"&param=' + js2JSON(searches);
1707
1708
1709     var req = new XMLHttpRequest();
1710     req.open('GET',url,false);
1711     req.send(null);
1712
1713     return req;
1714
1715 }
1716 */
1717
1718 function searchAuthority (term, tag, sf, limit) {
1719     var url = "/gateway?input_format=json&format=xml&service=open-ils.search&method=open-ils.search.authority.fts";
1720     url += '&param="term"&param="' + term + '"';
1721     url += '&param="limit"&param=' + limit;
1722     url += '&param="tag"&param=' + tag;
1723     url += '&param="subfield"&param="' + sf + '"';
1724
1725
1726     var req = new XMLHttpRequest();
1727     req.open('GET',url,false);
1728     req.send(null);
1729
1730     return req;
1731
1732 }
1733
1734 /* TODO new authority browse support for context sets, and use that here */
1735 function browseAuthority (sf_popup, menu_id, target, sf, limit, page) {
1736     dojo.require('dojox.xml.parser');
1737
1738     // map tag + subfield to the appropriate authority browse axis:
1739     // currently authority.author, authority.subject, authority.title, authority.topic
1740     // based on mappings in OpenILS::Application::SuperCat, though Authority Control
1741     // Sets will change that
1742
1743     var axis_list = acs.bibFieldBrowseAxes( sf.parent().@tag.toString() );
1744
1745     // No matching tag means no authorities to search - shortcut
1746     if (axis_list.length == 0) {
1747         target.setAttribute('context', 'clipboard');
1748         return false;
1749     }
1750
1751     var type = 'authority.' + axis_list[0]; // Just take the first for now
1752                                             // TODO support multiple axes ... loop?
1753     if (!limit) {
1754         limit = 10;
1755     }
1756
1757     if (!page) {
1758         page = 0;
1759     }
1760
1761     var sf_string = '';
1762     var sf_list = sf.parent().subfield;
1763     for ( var i in sf_list) {
1764         sf_string += sf_list[i].toString() + ' ';
1765         if (sf_list[i] === sf) break;
1766     }
1767
1768     var url = '/opac/extras/browse/marcxml/'
1769         + type + '.refs'
1770         + '/1' // OU - currently unscoped
1771         + '/' + sf_string
1772         + '/' + page
1773         + '/' + limit
1774     ;
1775
1776     // would be good to carve this out into a separate function
1777     dojo.xhrGet({"url":url, "sync": true, "preventCache": true, "handleAs":"xml", "load": function(records) {
1778         var create_menu = createMenu({ label: $('catStrings').getString('staff.cat.marcedit.create_authority.label')});
1779
1780         var cm_popup = create_menu.appendChild(
1781             createMenuPopup()
1782         );
1783
1784         cm_popup.appendChild(
1785             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.create_authority_now.label'),
1786                 command : function() { 
1787                     // Call middle-layer function to create and save the new authority
1788                     var source_f = summarizeField(sf);
1789                     var new_auth = fieldmapper.standardRequest(
1790                         ["open-ils.cat", "open-ils.cat.authority.record.create_from_bib"],
1791                         [source_f, xulG.marc_control_number_identifier, ses()]
1792                     );
1793                     if (new_auth && new_auth.id()) {
1794                         addNewAuthorityID(new_auth, sf, target);
1795                     }
1796                 }
1797             })
1798         );
1799
1800         cm_popup.appendChild(
1801             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.create_authority_edit.label'),
1802                 command : function() { 
1803                     // Generate the new authority by calling the new middle-layer
1804                     // function (a non-saving variant), then display in another
1805                     // MARC editor
1806                     var source_f = summarizeField(sf);
1807                     var authtoken = ses();
1808                     dojo.require('openils.PermaCrud');
1809                     var pcrud = new openils.PermaCrud({"authtoken": authtoken});
1810                     var rec = fieldmapper.standardRequest(
1811                         ["open-ils.cat", "open-ils.cat.authority.record.create_from_bib.readonly"],
1812                         { "params": [source_f, xulG.marc_control_number_identifier] }
1813                     );
1814                     loadMarcEditor(pcrud, rec, target, sf);
1815                 }
1816             })
1817         );
1818
1819         sf_popup.appendChild(create_menu);
1820         sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
1821
1822         // append "Previous page" results browser
1823         sf_popup.appendChild(
1824             createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.previous_page.label'),
1825                 command : function(event) { 
1826                     auth_pages[menu_id] -= 1;
1827                     show_auth_menu = true;
1828                 }
1829             })
1830         );
1831         sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
1832
1833         dojo.query('record', records).forEach(function(record) {
1834             var main_text = '';
1835             var see_from = [];
1836             var see_also = [];
1837             var auth_id = dojox.xml.parser.textContent(dojo.query('datafield[tag="901"]', record).query('subfield[code="c"]')[0]);
1838             var auth_org = dojox.xml.parser.textContent(dojo.query('controlfield[tag="003"]', record)[0]);
1839
1840             // Grab the fields with tags beginning with 1 (main entries) and iterate through the subfields
1841             dojo.query('datafield[tag^="1"]', record).forEach(function(field) {
1842                 dojo.query('subfield', field).forEach(function(subfield) {
1843                     if (main_text) {
1844                         main_text += ' / ';
1845                     }
1846                     main_text += dojox.xml.parser.textContent(subfield);
1847                 });
1848             });
1849
1850             // Grab the fields with tags beginning with 4 (see from entries) and iterate through the subfields
1851             dojo.query('datafield[tag^="4"]', record).forEach(function(field) {
1852                 var see_text = '';
1853                 dojo.query('subfield', field).forEach(function(subfield) {
1854                     if (see_text) {
1855                         see_text += ' / ';
1856                     }
1857                     see_text += dojox.xml.parser.textContent(subfield);
1858                 });
1859                 see_from.push($('catStrings').getFormattedString('staff.cat.marcedit.authority_see_from', [see_text]));
1860             });
1861
1862             // Grab the fields with tags beginning with 5 (see also entries) and iterate through the subfields
1863             dojo.query('datafield[tag^="5"]', record).forEach(function(field) {
1864                 var see_text = '';
1865                 dojo.query('subfield', field).forEach(function(subfield) {
1866                     if (see_text) {
1867                         see_text += ' / ';
1868                     }
1869                     see_text += dojox.xml.parser.textContent(subfield);
1870                 });
1871                 see_also.push($('catStrings').getFormattedString('staff.cat.marcedit.authority_see_also', [see_text]));
1872             });
1873
1874             buildAuthorityPopup(main_text, record, auth_org, auth_id, sf_popup, target, sf);
1875
1876             dojo.forEach(see_from, function(entry_text) {
1877                 buildAuthorityPopup(entry_text, record, auth_org, auth_id, sf_popup, target, sf, "font-style: italic; margin-left: 2em;");
1878             });
1879
1880             // To-do: instead of launching the standard selector menu, invoke
1881             // a new authority search using the 5XX entry text
1882             dojo.forEach(see_also, function(entry_text) {
1883                 buildAuthorityPopup(entry_text, record, auth_org, auth_id, sf_popup, target, sf, "font-style: italic; margin-left: 2em;");
1884             });
1885
1886         });
1887
1888         if (sf_popup.childNodes.length == 0) {
1889             sf_popup.appendChild(createLabel( { value : $('catStrings').getString('staff.cat.marcedit.no_authority_match.label') } ) );
1890         } else {
1891             // append "Next page" results browser
1892             sf_popup.appendChild( createComplexXULElement( 'menuseparator' ) );
1893             sf_popup.appendChild(
1894                 createMenuitem({ label : $('catStrings').getString('staff.cat.marcedit.next_page.label'),
1895                     command : function(event) { 
1896                         auth_pages[menu_id] += 1;
1897                         show_auth_menu = true;
1898                     }
1899                 })
1900             );
1901         }
1902
1903         target.setAttribute('context', menu_id);
1904         return true;
1905     }});
1906
1907 }
1908
1909 function buildAuthorityPopup (entry_text, record, auth_org, auth_id, sf_popup, target, sf, style) {
1910     var grid = dojo.query('[name="authority-marc-template"]')[0].cloneNode(true);
1911     grid.setAttribute('name','-none-');
1912     grid.setAttribute('style','overflow:scroll');
1913
1914     var submenu = createMenu( { "label": entry_text } );
1915
1916     var popup = createMenuPopup({ "flex": "1" });
1917     if (style) {
1918         submenu.setAttribute('style', style);
1919         popup.setAttribute('style', 'font-style: normal; margin-left: 0em;');
1920     }
1921     submenu.appendChild(popup);
1922
1923     dojo.query('datafield[tag^="1"]', record).forEach(function(field) {
1924         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
1925     });
1926     dojo.query('datafield[tag^="4"]', record).forEach(function(field) {
1927         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
1928     });
1929     dojo.query('datafield[tag^="5"]', record).forEach(function(field) {
1930         buildAuthorityPopupSelector(field, grid, auth_org, auth_id);
1931     });
1932
1933     grid.hidden = false;
1934     popup.appendChild( grid );
1935
1936     popup.appendChild(
1937         createMenuitem(
1938             { label : $('catStrings').getString('staff.cat.marcedit.apply_selected.label'),
1939               command : function (event) {
1940                     applySelectedAuthority(event.target.previousSibling, target, sf);
1941                     return true;
1942               }
1943             }
1944         )
1945     );
1946
1947     popup.appendChild( createComplexXULElement( 'menuseparator' ) );
1948
1949     popup.appendChild(
1950         createMenuitem(
1951             { label : $('catStrings').getString('staff.cat.marcedit.apply_full.label'),
1952               command : function (event) {
1953                     applyFullAuthority(event.target.previousSibling.previousSibling.previousSibling, target, sf);
1954                     return true;
1955               }
1956             }
1957         )
1958     );
1959
1960     sf_popup.appendChild( submenu );
1961 }
1962
1963 function buildAuthorityPopupSelector (field, grid, auth_org, auth_id) {
1964     var row = createRow(
1965         { },
1966         createLabel( { "value" : dojo.attr(field, 'tag') } ),
1967         createLabel( { "value" : dojo.attr(field, 'ind1') } ),
1968         createLabel( { "value" : dojo.attr(field, 'ind2') } )
1969     );
1970
1971     var sf_box = createHbox();
1972     dojo.query('subfield', field).forEach(function(subfield) {
1973         sf_box.appendChild(
1974             createCheckbox(
1975                 { "label"    : '\u2021' + dojo.attr(subfield, 'code') + ' ' + dojox.xml.parser.textContent(subfield),
1976                   "subfield" : dojo.attr(subfield, 'code'),
1977                   "tag"      : dojo.attr(field, 'tag'),
1978                   "value"    : dojox.xml.parser.textContent(subfield)
1979                 }
1980             )
1981         );
1982         row.appendChild(sf_box);
1983     });
1984
1985     // Append the authority linking subfield only for main entries
1986     if (dojo.attr(field, 'tag').charAt(0) == '1') {
1987         sf_box.appendChild(
1988             createCheckbox(
1989                 { "label"    : '\u2021' + '0' + ' (' + auth_org + ')' + auth_id,
1990                   "subfield" : '0',
1991                   "tag"      : dojo.attr(field, 'tag'),
1992                   "ind1"     : dojo.attr(field, 'ind1'),
1993                   "ind2"     : dojo.attr(field, 'ind2'),
1994                   "value"    : '(' + auth_org + ')' + auth_id
1995                 }
1996             )
1997         );
1998     }
1999     row.appendChild(sf_box);
2000
2001     grid.lastChild.appendChild(row);
2002 }
2003
2004 function summarizeField(sf) {
2005     var source_f= {
2006         "tag": '',
2007         "ind1": '',
2008         "ind2": '',
2009         "subfields": []
2010     };
2011
2012     source_f.tag = sf.parent().@tag.toString();
2013     source_f.ind1 = sf.parent().@ind1.toString();
2014     source_f.ind2 = sf.parent().@ind2.toString();
2015
2016     var found_acs = [];
2017     dojo.forEach( acs.controlSetList(), function (acs_id) {
2018         if (acs.controlSet(acs_id).control_map[sf.parent().@tag]) found_acs.push(acs_id);
2019     });
2020
2021     var cmap;
2022     if (!found_acs.length) {
2023         return false;
2024     } else {
2025         cmap = acs.controlSet(found_acs[0]).control_map;
2026     }
2027
2028     for (var i = 0; i < sf.parent().subfield.length(); i++) {
2029         var sf_iter = sf.parent().subfield[i];
2030
2031         /* Filter out subfields that are not controlled for this tag */
2032         if (!cmap[source_f.tag][sf_iter.@code.toString()]) {
2033             continue;
2034         }
2035
2036         source_f.subfields.push([sf_iter.@code.toString(), sf_iter.toString()]);
2037     }
2038
2039     return source_f;
2040 }
2041
2042 function buildBibSourceList (authtoken, recId) {
2043     /* TODO: Work out how to set the bib source of the bre that does not yet
2044      * exist - this is specifically in the case of Z39.50 imports. Right now
2045      * we just avoid populating and showing the config.bib_source list
2046      */
2047     if (!recId) {
2048         return false;
2049     }
2050
2051     var bib = xulG.record.bre;
2052
2053     dojo.require('openils.PermaCrud');
2054
2055     // cbsList = the XUL menulist that contains the available bib sources 
2056     var cbsList = dojo.byId('bib-source-list');
2057
2058     // bibSources = an array containing all of the bib source objects
2059     var bibSources = new openils.PermaCrud({"authtoken": authtoken}).retrieveAll('cbs');
2060
2061     // A tad ugly, but gives us the index of the bib source ID in cbsList
2062     var x = 0;
2063     var cbsListArr = [];
2064     dojo.forEach(bibSources, function (item) {
2065         cbsList.appendItem(item.source(), item.id());
2066         cbsListArr[item.id()] = x;
2067         x++;
2068     });
2069
2070     // Show the current value of the bib source for this record
2071     cbsList.selectedIndex = cbsListArr[bib.source()];
2072
2073     // Display the bib source selection widget
2074     dojo.byId('bib-source-list-caption').hidden = false;
2075     dojo.byId('bib-source-list').hidden = false;
2076     dojo.byId('bib-source-list-button').disabled = true;
2077     dojo.byId('bib-source-list-button').hidden = false;
2078 }
2079
2080 // Fired when the "Update Source" button is clicked
2081 // Updates the value of the bib source for the current record
2082 function updateBibSource() {
2083     var authtoken = ses();
2084     var cbs = dojo.byId('bib-source-list').selectedItem.value;
2085     var recId = xulG.record.id;
2086     var pcrud = new openils.PermaCrud({"authtoken": authtoken});
2087     var bib = pcrud.retrieve('bre', recId);
2088     if (bib.source() != cbs) {
2089         bib.source(cbs);
2090         bib.ischanged = true;
2091         pcrud.update(bib);
2092     }
2093 }
2094
2095 function onBibSourceSelect() {
2096     var cbs = dojo.byId('bib-source-list').selectedItem.value;
2097     var bib = xulG.record.bre;
2098     if (bib.source() != cbs) {
2099         dojo.byId('bib-source-list-button').disabled = false;   
2100     } else {
2101         dojo.byId('bib-source-list-button').disabled = true;   
2102     }
2103 }
2104
2105 function addNewAuthorityID(authority, sf, target) {
2106     var id_sf = <subfield code="0" xmlns="http://www.loc.gov/MARC21/slim">({xulG.marc_control_number_identifier}){authority.id()}</subfield>;
2107     sf.parent().appendChild(id_sf);
2108     var new_sf = marcSubfield(id_sf);
2109
2110     var node = target;
2111     while (dojo.attr(node, 'name') != 'sf_box') {
2112         node = node.parentNode;
2113     }
2114     node.appendChild( new_sf );
2115
2116     alert($('catStrings').getString('staff.cat.marcedit.create_authority_success.label'));
2117 }
2118
2119 function loadMarcEditor(pcrud, marcxml, target, sf) {
2120     /*
2121        To run in Firefox directly, must set signed.applets.codebase_principal_support
2122        to true in about:config
2123      */
2124     win = window.open('/xul/server/cat/marcedit.xul', '_blank', 'chrome'); // XXX version?
2125
2126     // Match marc2are.pl last_xact_id format, roughly
2127     var now = new Date;
2128     var xact_id = 'IMPORT-' + Date.parse(now);
2129     
2130     win.xulG = {
2131         "record": {"marc": marcxml, "rtype": "are"},
2132         "save": {
2133             "label": $('catStrings').getString('staff.cat.marcedit.save.label'),
2134             "func": function(xmlString) {
2135                 var rec = new are();
2136                 rec.marc(xmlString);
2137                 rec.last_xact_id(xact_id);
2138                 rec.isnew(true);
2139                 pcrud.create(rec, {
2140                     "oncomplete": function (r, objs) {
2141                         var new_rec = objs[0];
2142                         if (!new_rec) {
2143                             return '';
2144                         }
2145
2146                         addNewAuthorityID(new_rec, sf, target);
2147
2148                         win.close();
2149                     }
2150                 });
2151             }
2152         }
2153     };
2154 }
2155
2156