The 'subject heading thesaurus' basically defines the issuing authority
that created the authority record. For example, a value of "a" means that
it came from LoC. A value of "n" means that it is a locally created
authority. Note that within the authority MARC editor the 'Subject
Heading Thesaurus' is stored/displayed in the 'Subj' fixed field.
Signed-off-by: Yamil Suarez <yamil@yamil.com>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
.authEntry { clear: both; height: 1.5em; }
.authEntry > *:first-child { float: left; width: 20%; }
.authEntry > .text { float: left; width: 46%; }
- .authEntry > .authority-control-set { float: right; width: 33%; ; font-style: italic; }
+ .authEntry > .authority-control-set-thesaurus { float: right; width: 33%; }
+ .authority-control-set { font-style: italic; }
.authority-control-set .acs-name { font-weight: bold; }
.authority-control-set .acs-id { }
+ .authority-control-set-thesaurus .authority-thesaurus { margin-left: 15px; }
.authEntry:nth-child(even) { background-color:#D3D3D3;}
</style>
<div dojoType="dijit.form.Form" id="myForm" jsId="myForm" encType="multipart/form-data" action="" method="">
'<div class="authEntry" id="auth' + auth.id + '">' +
'<div class="text" id="authLabel' + auth.id + '">' +
'<span class="text">' + auth.text + '</span></div>' +
- '<div class="authority-control-set">Control Set: <span class="acs-name">' +
+ '<div class="authority-control-set-thesaurus"><span class="authority-control-set">Control Set: <span class="acs-name">' +
fetch_control_set(auth.thesaurus).name() +
'</span> <span class="acs-id">(#' +
- fetch_control_set(auth.thesaurus).id() + ')</span></div></div>',
+ fetch_control_set(auth.thesaurus).id() + ')</span>' +
+ '</span> <span class="authority-thesaurus">Thes: ' + auth.thesaurus + '</span></div></div>',
"authlist-div", "last"
);