Skip to content

A bookmarklet to fill in details of a 583 field in the Alma Metadata Editor at UCL.

License

Notifications You must be signed in to change notification settings

Orangeaurochs/Update-583-on-Alma

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Update-583-on-Alma

A bookmarklet to fill in details of a 583 field in the Alma Metadata Editor at UCL. Also works on the 995 field.

It adds a standard $$a NBK-R as per Jisc book retention policy. The coded date 20 years in the future is in $$c YYYYMM. The $$5 is UCL's organisation code UkLUC. The bookmarklet prompts for a collection and assigns a code if recognised which then entered into $$x.

To install the bookmarklet, add the following code into the URL or Location section of a new bookmark:

javascript:(function() { var collections = { none:"", education:"ioe", instituteofeducation:"ioe", ioe:"ioe", slavoniceasteuropeanstudies:"ssees", ssees:"ssees", slavonicandeasteuropeanstudies:"ssees", archaeology:"archaeology", archeology:"archaeology", ioa:"archaeology", instarch:"archaeology", scand:"scandinavian", scandi:"scandinavian", scandinavian:"scandinavian", scandinavianstudies:"scandinavian", hebrewjewishstudies:"hebrewandjewish", hebrewstudies:"hebrewandjewish", jewishstudies:"hebrewandjewish", hebrew:"hebrewandjewish", jewish:"hebrewandjewish", handj:"hebrewandjewish", hs:"hebrewandjewish", poetrystore:"poetrystore", poetry:"poetrystore", ps:"poetrystore", neurology:"neurology", instituteofneurology:"neurology", ion:"neurology", rnid:"rnid", pharmacy:"pharmacy", schoolofpharmacy:"pharmacy", sop:"pharmacy"}; var getActiveElement = function (element = document.activeElement) { var shadowRoot = element.shadowRoot ; var contentDocument = element.contentDocument; if (shadowRoot && shadowRoot.activeElement) { return getActiveElement(shadowRoot.activeElement); }; if (contentDocument && contentDocument.activeElement) { return getActiveElement(contentDocument.activeElement); }; return element; }; var activeEl=getActiveElement(); var padding = function (number) { var strno = ""; if (number < 10) { strno+= "0" + number.toString(); } else { strno+=number.toString(); } return strno; }; var five83El = activeEl; var five83text = five83El.value; var dateNow = new Date(); var reviewYear = padding(dateNow.getFullYear()+20); var reviewMonth = padding(dateNow.getMonth()+1); var reviewDate = " " + reviewYear + reviewMonth; if (five83text.match (/^\$\$a ?$/)) { var fieldContents ="$$a NBK-R $$c" + reviewDate + " $$5 UkLUC"; var coll = prompt("Please enter a collection name (e.g. education) or abbreviation (e.g. ioe). Leave blank if no collection is to be assigned."); coll = coll.toLowerCase(); coll = coll.replace(/[^a-zA-Z]/gi,""); var thistag = ""; if (collections[coll]) {thistag = collections[coll]}; if (thistag) { fieldContents+=" $$x "+thistag; } var new583text = fieldContents; five83El.value = new583text; } else {alert ("The 583 needs to be blank, starting $$a, with the cursor next to the 533 ["+five83text+"]["+five83El+"].")}; var event = new Event('change'); five83El.dispatchEvent(event); })();

To use the bookmarklet:

  • Click on the 583 or 995 field in a record
  • Click on the bookmarklet on the your bookmarks toolbar

To work, it requires a 583$$a or 995$$a which is otherwise blank and with no other subfields.

About

A bookmarklet to fill in details of a 583 field in the Alma Metadata Editor at UCL.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published