]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/record/summary.tt2
LP#1406013: Improve schema.org expression for electronic resources
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / record / summary.tt2
1 [%  PROCESS "opac/parts/misc_util.tt2";
2     USE ResolverResolver;
3     ctx.page_title = attrs.title | html
4 %]
5 <!-- ****************** rdetail_summary.xml ***************************** -->
6 <abbr class="unapi-id" title='tag:[% ctx.hostname %],[% date.format(date.now, '%Y') %]:biblio-record_entry/[% ctx.bre_id %]'></abbr>
7
8 <hr />
9
10 [%-# This holds the record summary information %]
11 <div id="rdetail_summary_header">
12     <div id='rdetail_title_div'>
13         <h1 id='rdetail_title' property="name">[% attrs.title_extended | html %]</h1>
14         [%-
15             FOR link880 IN attrs.graphic_titles;
16                 FOR alt IN link880.graphic;
17                     '<h2 class="graphic880"';
18                     IF alt.dir;
19                         ' dir="' _ alt.dir _ '"';
20                     END;
21                     '>'; alt.value | html; '</h2>';
22                 END;
23             END;
24         -%]
25         [%- INCLUDE "opac/parts/record/authors.tt2" %]
26     </div>
27     <div id="rdetail_image_div">
28         <a href='[% ctx.media_prefix %]/opac/extras/ac/jacket/large/r/[% ctx.bre_id | uri %]'><img
29             alt="[% l('Image of item') %]" id='rdetail_image'
30             src='[% ctx.media_prefix %]/opac/extras/ac/jacket/[% record.summary.jacket_size %]/r/[% ctx.bre_id | uri %]' /></a>
31         <br />
32     </div>
33     <div id="format_actions">
34         [%- IF attrs.format_label %]
35           [% FOR format IN attrs.all_formats %]
36               <img title="[% format.label | html %]" 
37                   alt="[% format.label | html %]" 
38                   src="[% format.icon %]" /> 
39               [% format.label | html %]
40           [% END %]
41         [%- END %]
42         <div id="rdetail_actions_div">
43             [%- search_ou = ctx.search_ou;
44                 IF ctx.place_unfillable ||
45                     ( attrs.marc_xml.findnodes('//*[local-name()="holdings" and @has_holdable="true"]').size
46                         && (ctx.holds_block.enabled != 'true' || !attrs.org_copy_counts.$search_ou.available)
47                     )
48              %]
49             <div class="rdetail_aux_utils place_hold">
50                 <a href="[% mkurl(ctx.opac_root _ '/place_hold', 
51                     {hold_target => ctx.bre_id, hold_type => 'T', hold_source_page => mkurl()}, stop_parms) %]" 
52                 class="no-dec"><img src="[% ctx.media_prefix %]/images/green_check.png" 
53                     [% img_alt(l('Place Hold on [_1]', attrs.title)) %]/>
54                 <span class="place_hold">[% l('Place Hold') %]</span></a>
55             </div>
56             [%- END -%]
57             <div class="rdetail_aux_utils toggle_list">
58             [%  IF ctx.user;
59                 INCLUDE "opac/parts/bookbag_actions.tt2";
60             %]
61             [%  ELSE;
62                 operation = ctx.mylist.grep(ctx.bre_id).size ? "delete" : "add";
63                 label = (operation == "add") ? l("Add to my list") : l("Remove from my list"); 
64             %]
65                 <a href="[% mkurl(ctx.opac_root _ '/mylist/' _ operation, {record => ctx.bre_id}, stop_parms) %]" class="no-dec">
66                     <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="" />
67                     [% label %]
68                 </a>
69             [% END %]
70             </div>
71             <div class="rdetail_aux_utils">
72                 <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="[% l('Print / Email Actions Image') %]" />
73                 <a href="[% mkurl(ctx.opac_root _ '/record/print/' _ ctx.bre_id) %]" class="no-dec">[% l('Print') %]</a> /
74                 <a href="[% mkurl(ctx.opac_root _ '/record/email/' _ ctx.bre_id) %]" class="no-dec">[% l('Email') %]</a>
75             </div>
76             [%- IF ctx.refworks.enabled == 'true' %]
77                 [%- INCLUDE 'opac/parts/record/refworks.tt2' %]
78             [%- END %]
79         </div>
80     </div>
81 </div>
82
83 [%- IF openurl.enabled == 'true';
84     openurls = [];
85     FOREACH issn IN args.issns;
86         NEXT IF issn == '';
87         openurls = openurls.import(ResolverResolver.resolve_issn(issn, openurl.baseurl));
88     END;
89     IF openurls.size && openurls.0 != '';
90 %]
91     <div id='rdetail_openurl'>
92         <strong class='rdetail_openurl_title'>[% l("Electronic resources") %]</strong>
93         <table><tbody>
94 [%-
95         FOREACH res IN openurls;
96 %]
97         <tr>
98             <td class='rdetail_openurl_entry'><a href="[% res.target_url %]">[% res.public_name | html %]</a></td>
99             <td>[% res.target_coverage | html %]
100             [%- IF res.target_embargo != '';
101                     ' - ';
102                     res.target_embargo | html;
103                 END;
104             -%]
105             </td>
106         </tr>
107     [%- END %]
108     </tbody></table>
109     </div>    
110 [%- END %]
111 [%- END %]
112 [%- merged_uris = args.uris.merge(args.online_res);
113 num_uris = merged_uris.size;
114 IF num_uris > 0;
115 -%]
116 <h2 class="rdetail_uris">[% l("Electronic resources") %]</h2>
117 <div class="rdetail_uris">
118     [%- IF num_uris > 1 %]<ul>[% END %]
119     [%- FOR uri IN merged_uris %]
120         [%- IF num_uris == 1 -%]
121             <p class="rdetail_uri" property="offers" vocab="http://schema.org/" typeof="Offer">
122         [%- ELSE -%]
123             <li class="rdetail_uri" property="offers" vocab="http://schema.org/" typeof="Offer">
124         [%- END -%]
125         <a href="[% uri.href %]" property="url">
126         [%- IF uri.href != uri.link;
127                 '<span property="description">' _ uri.link _ '</span>';
128             ELSE;
129                 uri.link;
130             END;
131         -%]
132         </a>
133         [%- ' - <span property="description">' _ uri.note _ '</span>' IF uri.note %]
134         <link property="availability" href="http://schema.org/OnlineOnly" />
135         [%- IF attrs.gtin13; '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />'; END; %]
136         [%- IF num_uris == 1 %]</p>[% ELSE %]</li>[% END %]
137     [%- END %]
138     [%- IF num_uris > 1 %]</ul>[% END %]
139 </div>
140 [%- END %]
141 [%- # Hold/copy summary
142     IF ctx.copy_summary.0.count
143 %]
144 <div id="copy_hold_counts">
145 [%- INCLUDE "opac/parts/record/copy_counts.tt2" %]
146     <span id="rdetail_hold_counts">
147         <h2>[% l('Current holds') %]</h2>
148         <p>
149             [% 
150                 # If org hiding is enabled/relevant, only show 
151                 # counts for copies within the hiding scope.
152                 count_entry = 0;
153                 FOR count_chunk IN ctx.copy_summary;
154                     IF ctx.org_within_hiding_scope(count_chunk.org_unit);
155                         # always true when hiding is disabled
156                         LAST;
157                     END;
158                     count_entry = count_entry + 1;
159                 END;
160                 l("[quant,_1,current hold,current holds] with [quant,_2,total copy,total copies].", 
161                     ctx.record_hold_count, ctx.copy_summary.$count_entry.count) 
162             %]
163         </p>
164     </span>
165 [%- INCLUDE "opac/parts/record/copy_table.tt2" copies=ctx.copies %]
166 </div>
167 [%- END %]
168
169 <h2 id='rdetail_record_details'>[% l("Record details") %]</h2>
170 <ul>
171     [%- IF attrs.isbns.0;
172           FOR isbn IN attrs.isbns;
173             isbn_extra = '';
174             IF (matches = isbn.match('^(.+?)(\s.+)$'));
175               isbn = matches.0;
176               isbn_extra = matches.1;
177             END;
178     %]
179     <li class='rdetail_isbns'>
180         <strong class='rdetail_label'>[% l('ISBN:'); %]</strong>
181         <span class='rdetail_value' property='isbn'>[% isbn | html  %]</span>[% isbn_extra | html %]
182     </li>
183         [%- END %]
184     [%- END %]
185     [%- IF attrs.issns.0; FOR issn IN attrs.issns %]
186     <li class='rdetail_issns'>
187         <strong class='rdetail_label'>[% l('ISSN:'); %]</strong>
188         <span class='rdetail_value'>[% issn | html  %]</span>
189     </li>
190         [%- END %]
191     [%- END %]
192     [%- IF attrs.phys_desc %]
193     <li id='rdetail_phys_desc'>
194         <strong class='rdetail_label'>[% l("Physical Description:") %]</strong>
195         <span class='rdetail_value'>[% attrs.phys_desc | html %]</span>
196     </li>
197     [%- END %]
198     [%- IF attrs.edition %]
199     <li id='rdetail_edition'>
200         <strong class='rdetail_label'>[% l("Edition:") %]</strong>
201         <span class='rdetail_value'>[% attrs.edition | html %]</span>
202         [%-
203         FOR entry IN attrs.graphic_editions;
204             FOR alt IN entry.graphic;
205                 diratt = "";
206                 IF alt.dir;
207                     diratt = ' dir="' _ alt.dir _ '"';
208                 END;
209         -%]
210         <div class="graphic880 rdetail_value"[% diratt %]>
211             [% alt.value | html %]
212         </div>
213         [%-
214             END;
215         END;
216         -%]
217     </li>
218     [%- END %]
219     [%- IF attrs.publisher %]
220     <li id='rdetail_publisher'>
221         <strong class='rdetail_label'>[% l("Publisher:") %]</strong>
222         <span class='rdetail_value' property="publisher" typeof="Organization">
223         [%- IF attrs.pubplace; %]
224             <span property="location">[% attrs.pubplace | html; %]</span>
225         [%- END; %]
226             <span property="name">[% attrs.publisher | html; %]</span>
227         </span>
228         [%- IF attrs.pubdate; %]
229             <span property="datePublished">[% attrs.pubdate | html; %]</span>
230         [%- END; %]
231         [%-
232         IF attrs.graphic_pubinfos.size > 0;
233             FOR entry IN attrs.graphic_pubinfos;
234                 FOR alt IN entry.graphic;
235                     diratt = "";
236                     IF alt.dir;
237                         diratt = ' dir="' _ alt.dir _ '"';
238                     END;
239         -%]
240         <div class="graphic880"[% diratt %]>
241             [% alt.value | html %]
242         </div>
243         [%-
244                 END;
245             END;
246         END
247         -%]
248     </li>
249     [%- END %]
250     [%- IF attrs.producer %]
251         <li id='rdetail_producer'>
252             <strong class='rdetail_label'>[% l("Producer:") %]</strong>
253             <span class='rdetail_value'>
254             [%- IF attrs.prodplace; %]
255                 <span>[% attrs.prodplace | html; %]</span>
256             [%- END; %]
257                 <span>[% attrs.producer | html; %]</span>
258             [%- IF attrs.proddate; %]
259                 <span>[% attrs.proddate | html; %]</span>
260             [%- END; %]
261             </span>
262         </li>
263     [%- END %]
264     [%- IF attrs.distributor %]
265         <li id='rdetail_distributor'>
266             <strong class='rdetail_label'>[% l("Distributor:") %]</strong>
267             <span class='rdetail_value'>
268             [%- IF attrs.distplace; %]
269                 <span>[% attrs.distplace | html; %]</span>
270             [%- END; %]
271                 <span>[% attrs.distributor | html; %]</span>
272             [%- IF attrs.distdate; %]
273                 <span>[% attrs.distdate | html; %]</span>
274             [%- END; %]
275             </span>
276         </li>
277     [%- END %]
278     [%- IF attrs.manufacturer %]
279         <li id='rdetail_manufacturer'>
280             <strong class='rdetail_label'>[% l("Manufacturer:") %]</strong>
281             <span class='rdetail_value' property="manufacturer" typeof="Organization">
282             [%- IF attrs.manplace; %]
283                 <span property="location">[% attrs.manplace | html; %]</span>
284             [%- END; %]
285                 <span property="name">[% attrs.manufacturer | html; %]</span>
286             [%- IF attrs.mandate; %]
287                 <span>[% attrs.mandate | html; %]</span>
288             [%- END; %]
289             </span>
290         </li>
291     [%- END %]
292     [%- IF attrs.copyright %]
293     <li id='rdetail_copyright'>
294         <strong class='rdetail_label'>[% l("Copyright:") %]</strong>
295         <span class='rdetail_value'>[% attrs.copyright | html_entity; %]
296         [%-# Provide the 4-digit year, cleansed of '@' and other junk %]
297         [%- IF attrs.copyrightYear -%]
298             <meta property='copyrightYear' content='[% attrs.copyrightYear | html; %]'>
299         [%- END -%]
300         </span>
301     </li>
302     [%- END %]
303 </ul>
304
305 [%- INCLUDE "opac/parts/record/contents.tt2" %]
306 [%- INCLUDE "opac/parts/record/subjects.tt2" %]
307 [%- INCLUDE "opac/parts/record/series.tt2" %]
308 [%- INCLUDE "opac/parts/record/extras.tt2" %]