]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/result/table.tt2
LP#1304462: Use other 264 types in search results if publisher is not available
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / result / table.tt2
1 [%  PROCESS "opac/parts/misc_util.tt2";
2
3     USE ResolverResolver;
4
5     ctx.result_start = 1 + ctx.page_size * page;
6     ctx.result_stop = ctx.page_size * (page + 1);
7     IF ctx.result_stop > ctx.hit_count; ctx.result_stop = ctx.hit_count; END;
8
9     result_count = ctx.result_start;
10
11 %]
12
13 [% PROCESS "opac/parts/result/paginate.tt2" %] 
14 [% ctx.results_count_header = PROCESS results_count_header;
15     ctx.results_count_header %]
16 [% IF ctx.bookbag %]
17 <div id="result-bookbag-heading">
18     <div class="result-bookbag-name">[% ctx.bookbag.name | html %]</div>
19     <div class="result-bookbag-description">[% ctx.bookbag.description | html %]</div>
20 </div>
21 [% END %]
22 <div id="result_table_div">
23     <div class="facet_sidebar_hidden" id="facet_sidebar">
24     <h3 class="sr-only">[% l('Saved Searches') %]</h3>
25     [% INCLUDE "opac/parts/staff_saved_searches.tt2" %]
26     <h3 class="sr-only">[% l('Search Results facets') %]</h3>
27     [% INCLUDE 'opac/parts/result/facets.tt2' %]
28     <h3 class="sr-only">[% l('Search Results List') %]</h3>
29     </div>
30             <div id="result_block" class="result_block_visible">
31                 <table id="result_table_table" title="[% l('Search Results') %]"
32                   class="table_no_border_space table_no_cell_pad">
33                     <thead class="sr-only">
34                       <tr>
35                         <th>[% l('Search result number') %]</th>
36                         <th>[% l('Book jacket cover art') %]</th>
37                         <th>[% l('Item details and Actions') %]</th>
38                       </tr>
39                     </thead>
40                     <tbody id="result_table">
41                     [%  FOR rec IN ctx.records;
42                             attrs = {marc_xml => rec.marc_xml};
43                             PROCESS get_marc_attrs args=attrs;
44                             IF CGI.param('detail_record_view');
45                                 attrs.title = attrs.title_extended;
46                             END;
47                             # note: rec.id refers to the record identifier, regardless
48                             # of the type of record. i.e. rec.id = mmr_id ? mmr_id : bre_id
49                             IF rec.mmr_id;
50                                 IF rec.mr_constituent_count > 1;
51                                     # metarecords link to record list page
52                                     record_url = mkurl(ctx.opac_root _ '/results', 
53                                         {metarecord => rec.mmr_id}, ['page']);
54                                 ELSE;
55                                     # for MR, bre_id refers to the master and in
56                                     # this case, only, record
57                                     record_url = mkurl(ctx.opac_root _ '/record/' _ rec.bre_id);
58                                 END;
59                                 hold_type = 'M';
60                             ELSE;
61                                 record_url = mkurl(ctx.opac_root _ '/record/' _ rec.bre_id);
62                                 hold_type = 'T';
63                             END;
64                     -%]
65                         <tr class="result_table_row">
66                                             <td class="results_row_count" name="results_row_count">[%
67                                                     result_count; result_count = result_count + 1
68                                                 %].</td>
69                                             <td class='result_table_pic_header'>
70                                                 <a href="[% record_url %]"><img alt="[% l('Book cover') %]"
71                                                         name='item_jacket' class='result_table_pic' width="55"
72                                                         src='[% ctx.media_prefix %]/opac/extras/ac/jacket/small/r/[% rec.bre_id | uri %]' /></a><br />
73                                             </td>
74                                             <td class='result_table_title_cell' name='result_table_title_cell'>
75                                                <div class="result_metadata">
76                                                     [% IF rec.mmr_id %]
77                                                     <abbr class="unapi-id" 
78                                                       title='tag:[% ctx.hostname %],[% date.format(date.now, '%Y') %]:metabib-metarecord/[% rec.mmr_id %]'>
79                                                     </abbr>
80                                                     [% ELSE %]
81                                                     <abbr class="unapi-id" 
82                                                       title='tag:[% ctx.hostname %],[% date.format(date.now, '%Y') %]:biblio-record_entry/[% rec.bre_id %]'>
83                                                     </abbr>
84                                                     [% END %]
85                                                     <a class='record_title search_link' name='record_[% rec.id %]'
86                                                         href="[% record_url %]"
87                                                         [% html_text_attr('title', l('Display record details for "[_1]"', attrs.title)) %]>
88                                                         [% attrs.title | html %]
89                                                      </a>
90                                                      [% IF rec.mr_constituent_count > 1 %]
91                                                      <span title="[% l('This group contains [_1] records', rec.mr_constituent_count) %]">
92                                                       ([% rec.mr_constituent_count %])
93                                                      </span>
94                                                      [% END %]
95
96 [%-
97 FOR entry IN attrs.graphic_titles;
98     FOR alt IN entry.graphic;
99         diratt = "";
100         IF alt.dir;
101             diratt = ' dir="' _ alt.dir _ '"';
102         END;
103 -%]
104 <div class="graphic880"[% diratt %]>
105     [% alt.value | html %]
106 </div>
107 [%-
108     END;
109 END;
110 -%]
111  
112                                                     <div>
113                                                         <a title="[% l("Perform an Author Search") %]"
114                                                                 class="record_author"
115                                                                 href="[%- 
116                                                                     authorquery = attrs.author | replace('[#"^$\+\-,\.:;&|\[\]()]', ' ');
117                                                                     mkurl(ctx.opac_root _ '/results', {qtype => 'author', query => authorquery}, ['page'])
118                                                                     -%]">[% attrs.author | html %]</a>
119 [%-
120 FOR entry IN attrs.graphic_authors;
121     FOR alt IN entry.graphic;
122         diratt = "";
123         IF alt.dir;
124             diratt = ' dir="' _ alt.dir _ '"';
125         END;
126 -%]
127 <div class="graphic880"[% diratt %]>
128     [% alt.value | html %]
129 </div>
130 [%-
131     END;
132 END;
133 -%]
134
135                                                     </div>
136                                                     <div class='result_table_title_cell'>
137                                                     [%- IF attrs.format_label; %]
138                                                         [% FOR format IN attrs.all_formats %]
139                                                             <img title="[% format.label | html %]" 
140                                                                 alt="[% format.label | html %]" 
141                                                                 src="[% format.icon %]" /> 
142                                                             [% format.label | html %]
143                                                         [% END %]
144                                                     [%- END %]
145                                                     [%- UNLESS CGI.param('detail_record_view')
146                                                             OR (show_more_details.default == 'true'
147                                                             OR show_more_details.default == 'hide');
148                                                             IF attrs.pubdate;
149                                                                 pubdate_clean = attrs.pubdate | html;
150                                                                 l(" ([_1])", pubdate_clean);
151                                                             ELSIF attrs.copyright;
152                                                                 copyright_clean = attrs.copyright | html;
153                                                                 l(" ([_1])", copyright_clean);                                                                
154                                                             END;
155                                                         END
156                                                     -%]
157                                                     </div>
158                                                     <table 
159                                                        role="presentation"
160                                                        title="[% l('Record Holdings Summary') %]"
161                                                        class="table_no_border_space table_no_cell_pad table_no_border results_info_table">
162                                                         [% IF args.holdings.size > 0 %]
163                                                         <tr name='bib_cn_list' class='result_table_title_cell'>
164                                                             <td valign='top'>
165                                                                 <strong>[% l('Call number:') %]</strong>
166                                                             </td>
167                                                             <td>[% args.holdings.0.label | html %]</td>
168                                                         </tr>
169                                                         [% END %]
170
171                                                         [% IF CGI.param('detail_record_view') %]
172                                                         <!-- These fields are visible when viewing the results page in 'detailed' mode -->
173
174                                                         [% IF attrs.publisher %]
175                                                             <tr name="results_pub_tr">
176                                                                 <td valign="top">
177                                                                     <strong>[% l('Publisher:') %]</strong>
178                                                                 </td>
179                                                                 <td>[% attrs.pubplace | html; %] [% attrs.publisher | html; %] [% attrs.pubdate | html; %]
180 [%-
181 FOR entry IN attrs.graphic_pubinfos;
182     FOR alt IN entry.graphic;
183         diratt = "";
184         IF alt.dir;
185             diratt = ' dir="' _ alt.dir _ '"';
186         END;
187 -%]
188 <div class="graphic880"[% diratt %]>
189     [% alt.value | html %]
190 </div>
191 [%-
192     END;
193 END;
194 -%]
195 </td>
196                                                             </tr>
197                                                         [% ELSIF attrs.producer %]
198                                                             <tr name="results_pub_tr">
199                                                                 <td valign="top">
200                                                                     <strong>[% l('Producer:') %]</strong>
201                                                                 </td>
202                                                                 <td>[% attrs.prodplace | html; %] [% attrs.producer | html; %] [% attrs.proddate | html; %]</td>
203                                                             </tr>
204                                                         [% ELSIF attrs.distributor %]
205                                                             <tr name="results_pub_tr">
206                                                                 <td valign="top">
207                                                                     <strong>[% l('Distributor:') %]</strong>
208                                                                 </td>
209                                                                 <td>[% attrs.distplace | html; %] [% attrs.distributor | html; %] [% attrs.distdate | html; %]</td>
210                                                             </tr>
211                                                         [% ELSIF attrs.manufacturer %]
212                                                             <tr name="results_pub_tr">
213                                                                 <td valign="top">
214                                                                     <strong>[% l('Manufacturer:') %]</strong>
215                                                                 </td>
216                                                                 <td>[% attrs.manplace | html; %] [% attrs.manufacturer | html; %] [% attrs.mandate | html; %]</td>
217                                                             </tr>
218                                                         [% END %]
219                                                         [% IF attrs.isbns.size > 0 %]
220                                                             <tr name="results_isbn_tr">
221                                                                 <td valign="top">
222                                                                     <strong>[% l('ISBN:') %]</strong>
223                                                                 </td>
224                                                                 <td>[% attrs.isbns.0 | html %]</td>
225                                                             </tr>
226                                                         [% END %]
227                                                         [%- IF attrs.issns.size > 0 %]
228                                                             <tr name="results_issn_tr">
229                                                                 <td valign="top">
230                                                                     <strong>[% l('ISSN:') %]</strong>
231                                                                 </td>
232                                                                 <td>[% attrs.issns.0 | html %]</td>
233                                                             </tr>
234                                                         [%- END %]
235                                                         [%- IF openurl.enabled == 'true';
236                                                             FOREACH issn IN args.issns;
237                                                                 NEXT IF issn == '';
238                                                                 res_urls = ResolverResolver.resolve_issn(issn, openurl.baseurl);
239                                                                 FOREACH res IN res_urls;
240                                                         %]
241                                                         <tr name="results_issn_tr">
242                                                             <td valign="top">
243                                                                 <strong><a href="[% res.target_url %]">
244                                                                 [% res.public_name | html %]</a></strong>
245                                                             </td>
246                                                             <td>[% res.target_coverage | html %]</td>
247                                                         </tr>
248                                                                 [% END %]
249                                                             [% END %]
250                                                         [% END %]
251
252                                                         [% IF attrs.edition %]
253                                                             <tr name="results_edition_tr">
254                                                                 <td valign="top">
255                                                                     <strong>[% l('Edition:') %]</strong>
256                                                                 </td>
257                                                                 <td>[% attrs.edition | html %]
258 [%-
259 FOR entry IN attrs.graphic_editions;
260     FOR alt IN entry.graphic;
261         diratt = "";
262         IF alt.dir;
263             diratt = ' dir="' _ alt.dir _ '"';
264         END;
265 -%]
266 <div class="graphic880"[% diratt %]>
267     [% alt.value | html %]
268 </div>
269 [%-
270     END;
271 END;
272 -%]
273 </td>
274                                                             </tr>
275                                                         [% END %]
276                                                         [% IF attrs.phys_desc %]
277                                                             <tr name="results_phys_desc_tr">
278                                                                 <td nowrap="nowrap" valign="top">
279                                                                     <strong>[% l('Phys. Desc.:') %]</strong>
280                                                                 </td>
281                                                                 <td>
282                                                                     [% args.phys_desc | html %]
283                                                                 </td>
284                                                             </tr>
285                                                         [% END %]
286                                                         [% FOR uri IN args.uris %]
287                                                             <tr name='bib_uri_list' class='result_table_title_cell'>
288                                                                 <td valign='top'>
289                                                                     <strong>[% l('Electronic resource') %]</strong>
290                                                                 </td>
291                                                                 <td><a href="[% uri.href %]">[% uri.link | html %]</a>[% ' - ' _ uri.note | html IF uri.note %]</td>
292                                                             </tr>
293                                                             [% END %]
294                                                             [%- IF args.holdings.size > 0;
295                                                                 FOREACH copy IN args.holdings;
296                                                                     IF copy.part_label != '';
297                                                                         has_parts = 'true';
298                                                                         LAST;
299                                                                     END;
300                                                                 END;
301                                                             %]
302                                                             <tr name='bib_cn_list' class='result_table_title_cell'>
303                                                                 <td colspan='2'>
304                                                                     <table title="[% l('Record Holdings Details') %]"
305                                                                            class='result_holdings_table'>
306                                                                         <thead><tr>
307                                                                             <th>[% l('Library') %]</th>
308                                                                             <th>[% l('Shelving location') %]</th>
309                                                                             <th>[% l('Call number') %]</th>
310                                                                             [%- IF has_parts == 'true'; %]
311                                                                             <th>[% l('Part') %]</th>
312                                                                             [%- END %]
313                                                                             <th>[% l('Status') %]</th>
314                                                                         </tr></thead>
315                                                                         <tbody>
316                                                                 [% FOR copy IN args.holdings %]
317                                                                         <tr>
318                                                                             <td>
319 [%- copy_info = copy;
320     INCLUDE "opac/parts/library_name_link.tt2"; %]
321                                                                             </td>
322                                                                             <td>[% copy.location | html %]</td>
323                                                                             <td>[% copy.label | html %]</td>
324                                                                             [%- IF has_parts == 'true'; %]
325                                                                             <td>[% copy.part_label %]</td>
326                                                                             [%- END %]
327                                                                             <td>[% copy.status | html %]</td>
328                                                                         </tr>
329                                                                 [% END %]
330                                                                         </tbody>
331                                                                     </table>
332                                                                 </td>
333                                                             </tr>
334                                                             [%- has_parts = 'false';
335                                                                 END;
336                                                              %]
337                                                         [% END %] <!-- END detail_record_view -->
338                                                     </table>
339                                                     [% PROCESS "opac/parts/result/copy_counts.tt2" %]
340                                                     [% IF rec.user_circulated %]
341                                                     <div class="result_item_circulated">
342                                                         <img src="[% ctx.media_prefix %]/images/green_check.png" alt="[% l('Checked Out Before') %]"/>
343                                                         <span>[% l('I have checked this item out before') %]</span>
344                                                     </div>
345                                                     [% END %]
346                                                     [% IF ctx.bookbag;
347                                                         rec_id = rec.id;
348                                                         FOR note IN ctx.bookbag_items_by_bre_id.$rec_id.notes %]
349                                                     <div class="result-bookbag-item-note">
350                                                         [% note.note | html %]
351                                                     </div>
352                                                         [% END %]
353                                                     [% END %]
354                                                 </div>
355                                                 <div class="result_table_utils_cont">
356                                                     <div class="result_table_utils">
357 [%- search_ou = ctx.search_ou;
358     num_holdable_copies = attrs.marc_xml.findnodes('//*[local-name()="holdings" and @has_holdable="true"]').size || 0;
359     IF ctx.place_unfillable ||
360         ( num_holdable_copies > 0
361             && (ctx.holds_block.enabled != 'true' || attrs.org_copy_counts.$search_ou.available == 0)
362         )
363 %]
364                                                         <div class="results_aux_utils place_hold"><a
365                                                                 href="[% mkurl(ctx.opac_root _ '/place_hold',
366                                                                     {hold_target => rec.id, hold_type => hold_type, 
367                                                                       hold_source_page => mkurl()}, ['query']) %]"
368                                                                 [% html_text_attr('title', l('Place Hold on [_1]', attrs.title)) %]
369                                                                     class="no-dec"><img
370                                                                 src="[% ctx.media_prefix %]/images/green_check.png"
371                                                                 alt=""/><span class="result_place_hold">[% l('Place Hold') %]</span></a>
372                                                         </div>
373 [%- END -%]
374                                                         <div class="results_aux_utils result_util">
375                                                             [%  IF ctx.user;
376                                                                 INCLUDE "opac/parts/bookbag_actions.tt2";
377                                                             %]
378                                                             [%  ELSE;
379                                                                 operation = ctx.mylist.grep(rec.id).size ? "delete" : "add";
380                                                                 label = (operation == "add") ?  l("Add to my list") : l("Remove from my list");
381                                                                 title_label = (operation == "add") ? 
382                                                                   l("Add [_1] to my list", attrs.title) : 
383                                                                   l("Remove [_1] from my list", attrs.title);
384                                                                 href = mkurl(ctx.opac_root _ '/mylist/' _ operation, 
385                                                                         {record => rec.id, anchor => 'record_' _ rec.id}, 1);
386                                                             %]      
387                                                             <a href="[% href %]" class="no-dec" 
388                                                                 [% html_text_attr('title', title_label) %]>
389                                                                 <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="" />
390                                                                 [% label %]
391                                                             </a>
392                                                             [% END %]
393                                                         </div>
394                                                         [% IF ENV.OILS_CONTENT_CAFE_USER %]
395                                                         [% ident = attrs.isbn_clean || attrs.upc %]
396                                                         <div class="results_aux_utils result_util">
397                                                             <a target='_blank' 
398                                                                [% html_text_attr('title', l('Reviews and More for [_1]', attrs.title)) %]
399                                                                 href="[% ctx.ext_proto %]://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=[%- 
400                                                                     ENV.OILS_CONTENT_CAFE_USER %]&amp;Password=[%-
401                                                                     ENV.OILS_CONTENT_CAFE_PASS %]&amp;ItemKey=[% ident | uri %]&amp;Options=Y">
402                                                                 <img src='[% ctx.media_prefix %]/images/starz.png' alt="[% l('Ratings Icon') %]"/> 
403                                                                 <span class="results_reviews">[% l('Reviews &amp; More') %]</span>
404                                                             </a>
405                                                         </div>
406                                                         [% END %]
407                                                     </div>
408                                                 </div>
409
410                                             </td>
411
412                                         </tr>
413                                         [%- IF ENV.OILS_CHILIFRESH_ACCOUNT %]
414                                         <tr>
415                                             <td/>
416                                             <td align='center'> <!-- Chilifresh reviews link --> 
417                                                 <span class="chili_review" id="isbn_[% attrs.isbn_clean | html %]"> </span>
418                                             </td>
419                                         </tr>
420                                         <tr>
421                                             <td/>
422                                             <td colspan='5'> <!-- Chilifresh reviews panel -->
423                                                 <div id="chili_review_[% attrs.isbn_clean | html %]" style="display: none;" align="center"></div>
424                                             </td>
425                                         </tr>
426                                         [%- END %]
427                     [% END %]
428                     </tbody>
429                 </table>
430             </div>
431 </div>
432 <div class="result_footer_nav1">
433     [% ctx.results_count_header %]
434 </div>
435 <script>
436 resultBlock = document.getElementById('result_block');
437 resultButton = document.getElementById('return_to_hits');
438 facetSidebar = document.getElementById('facet_sidebar');
439 facetButton =  document.getElementById('refine_hits');
440 function getFacety() {
441     resultBlock.setAttribute('class', 'result_block_hidden');
442     resultButton.setAttribute('class', 'results_header_btns result_block_visible');
443     facetSidebar.setAttribute('class', 'facet_sidebar_visible');
444     facetButton.setAttribute('class', 'result_block_hidden');
445     window.location.hash = 'return_to_hits';
446 }
447 function getResulty() {
448     resultBlock.setAttribute('class', 'result_block_visible');
449     resultButton.setAttribute('class', 'result_block_hidden');
450     facetSidebar.setAttribute('class', 'facet_sidebar_hidden');
451     facetButton.setAttribute('class', 'results_header_btns result_block_visible');
452     window.location.hash = 'refine_hits';
453 }
454 </script>