View | Details | Raw Unified | Return to bug 3347
Collapse All | Expand All

(-)a/C4/VirtualShelves.pm (-1 / +2 lines)
Lines 126-131 sub GetShelves ($$$$) { Link Here
126
           	$firstname,   $category,  $sortfield, $count ) = $sth2->fetchrow ) {
126
           	$firstname,   $category,  $sortfield, $count ) = $sth2->fetchrow ) {
127
        $shelflist{$shelfnumber}->{'shelfname'} = $shelfname;
127
        $shelflist{$shelfnumber}->{'shelfname'} = $shelfname;
128
        $shelflist{$shelfnumber}->{'count'}     = $count;
128
        $shelflist{$shelfnumber}->{'count'}     = $count;
129
        if($count eq 1){ $shelflist{$shelfnumber}->{'single'} = 1; }
129
        $shelflist{$shelfnumber}->{'sortfield'} = $sortfield;
130
        $shelflist{$shelfnumber}->{'sortfield'} = $sortfield;
130
        $shelflist{$shelfnumber}->{'category'}  = $category;
131
        $shelflist{$shelfnumber}->{'category'}  = $category;
131
        $shelflist{$shelfnumber}->{'owner'}     = $owner;
132
        $shelflist{$shelfnumber}->{'owner'}     = $owner;
Lines 266-272 sub GetShelfContents ($;$$$) { Link Here
266
	}
267
	}
267
    my $query =
268
    my $query =
268
       " SELECT vc.biblionumber, vc.shelfnumber, vc.dateadded, itemtypes.*,
269
       " SELECT vc.biblionumber, vc.shelfnumber, vc.dateadded, itemtypes.*,
269
	   			biblio.*, biblioitems.itemtype, biblioitems.publicationyear
270
            biblio.*, biblioitems.itemtype, biblioitems.publicationyear, biblioitems.publishercode, biblioitems.place, biblioitems.size, biblioitems.pages
270
         FROM   virtualshelfcontents vc
271
         FROM   virtualshelfcontents vc
271
		 LEFT JOIN biblio      ON      vc.biblionumber =      biblio.biblionumber
272
		 LEFT JOIN biblio      ON      vc.biblionumber =      biblio.biblionumber
272
		 LEFT JOIN biblioitems ON  biblio.biblionumber = biblioitems.biblionumber
273
		 LEFT JOIN biblioitems ON  biblio.biblionumber = biblioitems.biblionumber
(-)a/C4/VirtualShelves/Page.pm (-10 / +24 lines)
Lines 31-36 use C4::Auth qw/get_session/; Link Here
31
use C4::Members;
31
use C4::Members;
32
use C4::Output;
32
use C4::Output;
33
use C4::Dates qw/format_date/;
33
use C4::Dates qw/format_date/;
34
use C4::Tags qw(get_tags);
34
use Exporter;
35
use Exporter;
35
use Data::Dumper;
36
use Data::Dumper;
36
use C4::Csv;
37
use C4::Csv;
Lines 61-66 sub shelfpage ($$$$$) { Link Here
61
    my $itemoff     = ( $query->param('itemoff')  ? $query->param('itemoff')  : 1 );
62
    my $itemoff     = ( $query->param('itemoff')  ? $query->param('itemoff')  : 1 );
62
    my $displaymode = ( $query->param('display')  ? $query->param('display')  : 'publicshelves' );
63
    my $displaymode = ( $query->param('display')  ? $query->param('display')  : 'publicshelves' );
63
    my ( $shelflimit, $shelfoffset, $shelveslimit, $shelvesoffset );
64
    my ( $shelflimit, $shelfoffset, $shelveslimit, $shelvesoffset );
65
    my $marcflavour = C4::Context->preference("marcflavour");
64
66
65
    # FIXME: These limits should not be hardcoded...
67
    # FIXME: These limits should not be hardcoded...
66
    $shelflimit    = 20;                        # Limits number of items returned for a given query
68
    $shelflimit    = 20;                        # Limits number of items returned for a given query
Lines 177-195 sub shelfpage ($$$$$) { Link Here
177
            # explicitly fetch this shelf
179
            # explicitly fetch this shelf
178
            my ($shelfnumber2,$shelfname,$owner,$category,$sorton) = GetShelf($shelfnumber);
180
            my ($shelfnumber2,$shelfname,$owner,$category,$sorton) = GetShelf($shelfnumber);
179
181
182
            $template->param( 'AllowOnShelfHolds' => C4::Context->preference('AllowOnShelfHolds') );
183
            if (C4::Context->preference('TagsEnabled')) {
184
                $template->param(TagsEnabled => 1);
185
                    foreach (qw(TagsShowOnList TagsInputOnList)) {
186
                    C4::Context->preference($_) and $template->param($_ => 1);
187
                }
188
            }
180
            #check that the user can view the shelf
189
            #check that the user can view the shelf
181
            if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'view' ) ) {
190
            if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'view' ) ) {
182
                my $items;
191
                my $items;
183
                my $authorsort;
192
                my $authorsort;
184
                my $yearsort;
193
                my $yearsort;
185
                my $sortfield;
194
                my $tag_quantity;
186
                if ( $query->param('sortfield')) {
195
                my $sortfield = ( $query->param('sortfield') ? $query->param('sortfield') : 'title' );
187
                   $sortfield = $query->param('sortfield');
188
                } elsif ($sorton) {
189
                   $sortfield = $sorton;
190
                } else {
191
                   $sortfield = 'title';
192
                }
193
                if ( $sortfield eq 'author' ) {
196
                if ( $sortfield eq 'author' ) {
194
                    $authorsort = 'author';
197
                    $authorsort = 'author';
195
                }
198
                }
Lines 208-218 sub shelfpage ($$$$$) { Link Here
208
                    $this_item->{'imageurl'}  = getitemtypeinfo( $this_item->{'itemtype'} )->{'imageurl'};
211
                    $this_item->{'imageurl'}  = getitemtypeinfo( $this_item->{'itemtype'} )->{'imageurl'};
209
                    $this_item->{'coins'}     = GetCOinSBiblio( $this_item->{'biblionumber'} );
212
                    $this_item->{'coins'}     = GetCOinSBiblio( $this_item->{'biblionumber'} );
210
                    $this_item->{'subtitle'} = GetRecordValue('subtitle', $record, GetFrameworkCode($this_item->{'biblionumber'}));
213
                    $this_item->{'subtitle'} = GetRecordValue('subtitle', $record, GetFrameworkCode($this_item->{'biblionumber'}));
211
214
                    $this_item->{'normalized_upc'}  = GetNormalizedUPC(       $record,$marcflavour);
215
                    $this_item->{'normalized_ean'}  = GetNormalizedEAN(       $record,$marcflavour);
216
                    $this_item->{'normalized_oclc'} = GetNormalizedOCLCNumber($record,$marcflavour);
217
                    $this_item->{'normalized_isbn'} = GetNormalizedISBN(undef,$record,$marcflavour);
212
                    # Getting items infos for location display
218
                    # Getting items infos for location display
213
                    my @items_infos = &GetItemsInfo( $this_item->{'biblionumber'}, $type );
219
                    my @items_infos = &GetItemsInfo( $this_item->{'biblionumber'}, $type );
220
                    $this_item->{'itemsissued'} = CountItemsIssued( $this_item->{'biblionumber'} );
214
                    $this_item->{'ITEM_RESULTS'} = \@items_infos;
221
                    $this_item->{'ITEM_RESULTS'} = \@items_infos;
215
222
223
                    if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnList')) {
224
                        $this_item->{'TagLoop'} = get_tags({
225
                            biblionumber=>$this_item->{'biblionumber'}, approved=>1, 'sort'=>'-weight',
226
                            limit=>$tag_quantity
227
                            });
228
                    }
229
216
                }
230
                }
217
                push @paramsloop, { display => 'privateshelves' } if $category == 1;
231
                push @paramsloop, { display => 'privateshelves' } if $category == 1;
218
                $showadd = 1;
232
                $showadd = 1;
Lines 265-271 sub shelfpage ($$$$$) { Link Here
265
                if ( my $count = scalar @$contents ) {
279
                if ( my $count = scalar @$contents ) {
266
                    unless ( scalar grep { /^CONFIRM-$number$/ } $query->param() ) {
280
                    unless ( scalar grep { /^CONFIRM-$number$/ } $query->param() ) {
267
                        if ( defined $shelflist->{$number} ) {
281
                        if ( defined $shelflist->{$number} ) {
268
                            push( @paramsloop, { need_confirm => $shelflist->{$number}->{shelfname}, count => $count } );
282
                            push( @paramsloop, { need_confirm => $shelflist->{$number}->{shelfname}, count => $count, single => ($count eq 1 ? 1:0) } );
269
                            $shelflist->{$number}->{confirm} = $number;
283
                            $shelflist->{$number}->{confirm} = $number;
270
                        } else {
284
                        } else {
271
                            push( @paramsloop, { need_confirm => $privshelflist->{$number}->{shelfname}, count => $count } );
285
                            push( @paramsloop, { need_confirm => $privshelflist->{$number}->{shelfname}, count => $count } );
(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac.css (-35 / +18 lines)
Lines 443-448 a .term { Link Here
443
443
444
/* toolbar buttons */
444
/* toolbar buttons */
445
445
446
#toolbar { 
447
background-color:#EEEEEE;
448
border:1px solid #E8E8E8;
449
margin : .5em 0;
450
padding:3px 3px 5px 5px;
451
vertical-align:middle;
452
}
453
446
#toolbar a,
454
#toolbar a,
447
#toolbar input {
455
#toolbar input {
448
	white-space : nowrap;
456
	white-space : nowrap;
Lines 1091-1128 td.resultscontrol img { Link Here
1091
	line-height : 1.8em;
1099
	line-height : 1.8em;
1092
	text-align: center;
1100
	text-align: center;
1093
}
1101
}
1094
a:link.current {
1095
	background-color: transparent;
1096
	color: #3366CC;
1097
	font-weight: bold;
1098
	padding: 1px 5px 1px 5px;
1099
	text-decoration: none;
1100
}
1101
a:visited.current {
1102
	background-color: transparent;
1103
	color: #3366CC;
1104
	font-weight: bold;
1105
	padding: 1px 5px 1px 5px;
1106
	text-decoration: none;
1107
}
1108
1109
a:hover.current {
1110
	background-color: #CCFF00;
1111
	color: #CC3333;
1112
	font-weight: bold;
1113
	padding: 1px 5px 1px 5px;
1114
	text-decoration: none;
1115
}
1116
1117
a:active.current {
1118
	background-color: #99CC00;
1119
	color: #FFFF99;
1120
	font-weight: bold;
1121
	padding: 1px 5px 1px 5px;
1122
	text-decoration: none;
1123
}
1124
1102
1125
.current {
1103
.current,
1104
.currentPage {
1126
	background-color: #FFFFFF;
1105
	background-color: #FFFFFF;
1127
	color: #3366CC;
1106
	color: #3366CC;
1128
	font-weight: bold;
1107
	font-weight: bold;
Lines 1130-1136 a:active.current { Link Here
1130
	text-decoration: none;
1109
	text-decoration: none;
1131
}
1110
}
1132
1111
1133
a:link.nav {
1112
a:link.nav,
1113
div.pages a:link {
1134
	background-color: #EEE;
1114
	background-color: #EEE;
1135
	border: 1px solid #CCCC99;
1115
	border: 1px solid #CCCC99;
1136
	color: #3366CC;
1116
	color: #3366CC;
Lines 1139-1145 a:link.nav { Link Here
1139
	text-decoration: none;
1119
	text-decoration: none;
1140
}
1120
}
1141
1121
1142
a:visited.nav {
1122
a:visited.nav,
1123
div.pages a:visited {
1143
	background-color: #EEE;
1124
	background-color: #EEE;
1144
	border: 1px solid #CCCC99;
1125
	border: 1px solid #CCCC99;
1145
	color: #3366CC;
1126
	color: #3366CC;
Lines 1148-1154 a:visited.nav { Link Here
1148
	text-decoration: none;
1129
	text-decoration: none;
1149
}
1130
}
1150
1131
1151
a:hover.nav {
1132
a:hover.nav,
1133
div.pages a:hover {
1152
	background-color: #FFFFCC;
1134
	background-color: #FFFFCC;
1153
	border: 1px solid #CCCC99;
1135
	border: 1px solid #CCCC99;
1154
	color: #CC3333;
1136
	color: #CC3333;
Lines 1157-1163 a:hover.nav { Link Here
1157
	text-decoration: none;
1139
	text-decoration: none;
1158
}
1140
}
1159
1141
1160
a:active.nav {
1142
a:active.nav,
1143
div.pages a:active {
1161
	background-color: #FFFFCC;
1144
	background-color: #FFFFCC;
1162
	border: 1px solid #CCCC99;
1145
	border: 1px solid #CCCC99;
1163
	color: #D25500;
1146
	color: #D25500;
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tmpl (-73 / +126 lines)
Lines 6-17 Link Here
6
var MSG_NO_TAG_SPECIFIED = _("No tag was specified.");
6
var MSG_NO_TAG_SPECIFIED = _("No tag was specified.");
7
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
7
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
8
var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to delete this list?");
8
var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to delete this list?");
9
$.tablesorter.addParser({
10
    id: 'articles', 
11
    is: function(s) {return false;  }, 
12
    format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, 
13
    type: 'text' 
14
});
15
9
16
function holdSelections() {
10
function holdSelections() {
17
    var checkedBoxes = $(":checkbox:checked");
11
    var checkedBoxes = $(":checkbox:checked");
Lines 73-78 function tagAdded() { Link Here
73
}
67
}
74
68
75
$(function() {
69
$(function() {
70
    <!-- TMPL_IF name="opacbookbag" -->$(".addtocart").show();<!-- /TMPL_IF -->
76
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear All')+"<\/a>|");
71
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear All')+"<\/a>|");
77
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select All')+"<\/a>");
72
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select All')+"<\/a>");
78
  $("a.print").show();
73
  $("a.print").show();
Lines 81-98 $(function() { Link Here
81
		 holdSelections();
76
		 holdSelections();
82
		 return false;
77
		 return false;
83
	});<!-- /TMPL_IF -->
78
	});<!-- /TMPL_IF -->
84
    $("#listcontents").tablesorter({
85
        widgets : ['zebra'],
86
          <!-- TMPL_IF NAME="authorsort" -->
87
          sortList: [[2,0]],
88
          <!-- TMPL_ELSIF NAME="yearsort" -->
89
          sortList: [[3,1]],
90
          <!-- TMPL_ELSE -->
91
          sortList: [[1,0]],
92
          <!-- /TMPL_IF -->
93
          headers: { 0: { sorter: false },1:{sorter: 'articles'}
94
        }
95
    }); 
96
    $("#CheckAll").click(function(){
79
    $("#CheckAll").click(function(){
97
        $(".checkboxed").checkCheckboxes();
80
        $(".checkboxed").checkCheckboxes();
98
        return false;
81
        return false;
Lines 101-117 $(function() { Link Here
101
        $(".checkboxed").unCheckCheckboxes();
84
        $(".checkboxed").unCheckCheckboxes();
102
        return false;
85
        return false;
103
    });
86
    });
104
    <!-- TMPL_IF NAME="TagsEnabled" -->
87
  <!-- TMPL_IF NAME="TagsEnabled" -->
105
	$("#addtags").click(function(){
88
  $("#addtags").html("<a id=\"tagsel_tag\" href=\"#\">"+_("Tag")+"<\/a> |");
106
		tagSelected();
89
        $(".tagbutton").click(KOHA.Tags.add_tag_button);
107
		return false;
90
      <!-- TMPL_IF NAME="TagsInputOnList" -->
108
	});
91
      <!-- TMPL_IF NAME="loggedinusername" -->
109
	$("#addtags").html("<a id=\"tagsel_tag\" href=\"#\">"+_("Tag")+"<\/a> |");
92
            $("#tagsel_tag").click(function(){
110
    $("#tagsel_button").click(function(){
93
                tagSelected();
111
        tagAdded();
94
                return false;
112
        return false;
95
            });
113
    });
96
            $("#tagsel_cancel").click(function(){
97
                tagCanceled();
98
                return false;
99
            });
100
            $("#tagsel_button").click(function(){
101
                tagAdded();
102
                return false;
103
            });
104
        <!-- TMPL_ELSE -->
105
            $("#tagsel_tag").click(function(){
106
                window.location = "/cgi-bin/koha/opac-user.pl";
107
                return false;
108
            });
109
        <!-- /TMPL_IF -->
110
        <!-- /TMPL_IF -->
114
    <!-- /TMPL_IF -->
111
    <!-- /TMPL_IF -->
112
  <!-- TMPL_IF NAME="GoogleJackets" -->KOHA.Google.GetCoverFromIsbn();<!-- /TMPL_IF -->
115
});
113
});
116
      function Check(f) {
114
      function Check(f) {
117
		var _alertString="";
115
		var _alertString="";
Lines 152-158 $(function() { Link Here
152
                    <!-- TMPL_IF NAME="need_confirm" -->
150
                    <!-- TMPL_IF NAME="need_confirm" -->
153
                      <div class="dialog alert">
151
                      <div class="dialog alert">
154
                        The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty.
152
                        The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty.
155
                        <br />It has <b><!-- TMPL_VAR NAME="count" --></b> entries.
153
                        <br />It has <b><!-- TMPL_VAR NAME="count" --></b> <!-- TMPL_IF NAME="single" -->entry<!-- TMPL_ELSE -->entries<!-- /TMPL_IF -->.
156
                        <br />Use the "Confirm" button below to confirm deletion.
154
                        <br />Use the "Confirm" button below to confirm deletion.
157
                     </div>
155
                     </div>
158
                    <!-- /TMPL_IF -->
156
                    <!-- /TMPL_IF -->
Lines 180-186 $(function() { Link Here
180
            <!-- /TMPL_IF --> <!-- /paramsloop -->
178
            <!-- /TMPL_IF --> <!-- /paramsloop -->
181
179
182
            <div class="yui-g">
180
            <div class="yui-g">
183
            
184
181
185
            <!-- TMPL_IF NAME="viewshelf" --><!--  Viewing a particular shelf -->
182
            <!-- TMPL_IF NAME="viewshelf" --><!--  Viewing a particular shelf -->
186
              <h3><a href="/cgi-bin/koha/opac-shelves.pl">Lists</a> <img src="<!-- TMPL_VAR NAME="themelang" -->/../images/caret.gif" width="16" height="16" alt="&gt;" border="0" /> <em><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></em></h3>
183
              <h3><a href="/cgi-bin/koha/opac-shelves.pl">Lists</a> <img src="<!-- TMPL_VAR NAME="themelang" -->/../images/caret.gif" width="16" height="16" alt="&gt;" border="0" /> <em><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></em></h3>
Lines 227-242 $(function() { Link Here
227
                    <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
224
                    <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
228
                    <input type="hidden" name="modifyshelfcontents" value="1" />
225
                    <input type="hidden" name="modifyshelfcontents" value="1" />
229
                <!-- /TMPL_IF -->
226
                <!-- /TMPL_IF -->
230
                <!-- TMPL_VAR name='pagination_bar'-->
227
                <div class="searchresults">
231
                <table id="listcontents">
228
                <table id="listcontents">
232
                  <thead><tr>
233
                    <th>&nbsp;</th>
234
                    <!-- TMPL_UNLESS NAME="item-level_itypes" --><th>Item Type</th><!-- /TMPL_UNLESS -->
235
                    <th>Title</th>
236
                    <th>Author</th>
237
                    <th>Year</th>
238
                    <th>Location</th>
239
                  </tr></thead>
240
                  <tbody>
229
                  <tbody>
241
                  <!-- TMPL_LOOP NAME="itemsloop" -->
230
                  <!-- TMPL_LOOP NAME="itemsloop" -->
242
                    <!-- TMPL_UNLESS NAME="__odd__" -->
231
                    <!-- TMPL_UNLESS NAME="__odd__" -->
Lines 254-288 $(function() { Link Here
254
                          <!-- TMPL_VAR NAME="description" -->
243
                          <!-- TMPL_VAR NAME="description" -->
255
                        </td>
244
                        </td>
256
                    <!-- /TMPL_UNLESS -->
245
                    <!-- /TMPL_UNLESS -->
257
                        <td><!-- TMPL_IF NAME="BiblioDefaultViewmarc" --><a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- TMPL_ELSE -->
246
                        <td>
258
                        <!-- TMPL_IF NAME="BiblioDefaultViewisbd" --><a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- TMPL_ELSE --><a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- /TMPL_IF --><!-- /TMPL_IF -->
247
                                <!-- TMPL_IF name="BiblioDefaultViewmarc" --><a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title">
248
                                <!-- TMPL_ELSE -->
249
                                <!-- TMPL_IF name="BiblioDefaultViewisbd" --><a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title">
250
                                <!-- TMPL_ELSE --><a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title">
251
                                <!-- /TMPL_IF -->
252
                                <!-- /TMPL_IF -->
253
                <!-- TMPL_IF NAME="title" --><!-- TMPL_VAR NAME="title" ESCAPE="html" --><!-- TMPL_ELSE -->No title<!-- /TMPL_IF --> <!-- TMPL_LOOP NAME="subtitle"  --><!--TMPL_VAR Name="subfield"--><!--/TMPL_LOOP--></a>
254
                                <!-- TMPL_IF NAME="author" -->by <a href="/cgi-bin/koha/opac-search.pl?q=au:<!-- TMPL_VAR NAME="author" ESCAPE="URL" -->" title="Search for works by this author" class="author"><!-- TMPL_VAR NAME="author" --></a>
255
                                <!-- TMPL_ELSE -->&nbsp;
256
                                <!-- /TMPL_IF -->
257
        <span class="results_summary"><span class="label">Publication:</span>
258
                        <!-- TMPL_IF name="place" --><!-- TMPL_VAR name="place" --> <!-- /TMPL_IF --><!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF --><!-- TMPL_IF name="publicationyear" --> <!-- TMPL_VAR name="publicationyear" -->
259
                    <!-- TMPL_ELSE --><!-- TMPL_IF name="copyrightdate" --> <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF --><!-- /TMPL_IF -->
260
                        <!-- TMPL_IF name="pages" -->. <!-- TMPL_VAR name="pages" --><!-- /TMPL_IF -->
261
                        <!-- TMPL_IF name="notes" -->, <!-- TMPL_VAR name="notes" --><!-- /TMPL_IF -->
262
                        <!-- TMPL_IF name="size" --> <!-- TMPL_VAR name="size" --><!-- /TMPL_IF -->
263
                </span>
264
                <span class="results_summary"><span class="label">Holdings:</span><!-- TMPL_IF NAME="ITEM_RESULTS" --><!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
265
          <!-- TMPL_VAR NAME="branchname" --><!-- TMPL_IF NAME="location" -->, <!-- TMPL_VAR NAME="location" --><!-- /TMPL_IF -->
266
          <!-- TMPL_IF name="itemcallnumber" -->
267
        (<!-- TMPL_VAR NAME="itemcallnumber" -->)<!-- TMPL_IF NAME="__LAST__" -->.<!-- TMPL_ELSE -->,<!-- /TMPL_IF -->
268
          <!-- /TMPL_IF -->
269
          <!-- /TMPL_LOOP --><!-- TMPL_ELSE -->This record has no items.<!-- /TMPL_IF --></span>
270
271
        <!-- TMPL_IF NAME="TagsEnabled" -->
272
                <!-- TMPL_IF NAME="TagsShowOnList" -->
273
                <!-- TMPL_IF NAME="TagLoop" -->
274
          <div class="results_summary">
275
                        <span class="label">Tags:</span>
276
                        <ul style="display: inline; list-style: none;"><!-- TMPL_LOOP NAME="TagLoop" --><li style="display: inline; list-style: none;"><a href="/cgi-bin/koha/opac-search.pl?tag=<!-- TMPL_VAR NAME="term" ESCAPE="URL" -->&amp;q=<!-- TMPL_VAR NAME="term" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="term" --></a> <span class="weight">(<!-- TMPL_VAR NAME="weight_total" -->)</span></li>
277
                            <!-- /TMPL_LOOP -->
278
                        </ul>
279
                <!-- /TMPL_IF -->
280
                <!-- TMPL_IF NAME="TagsInputOnList" -->
281
          <!-- TMPL_IF NAME="loggedinusername" -->
282
                    <form name="tagform<!-- TMPL_VAR NAME="biblionumber" -->" method="post" action="/cgi-bin/koha/opac-tags.pl">
283
                        <label for="newtag<!-- TMPL_VAR NAME="biblionumber" -->">New tag:</label>
284
                        <input name="newtag<!-- TMPL_VAR NAME="biblionumber" -->" id="newtag<!-- TMPL_VAR NAME="biblionumber" -->" maxlength="100" />
285
                        <input name="tagbutton" class="tagbutton" title="<!-- TMPL_VAR NAME="biblionumber" -->" type="submit" value="Add" />
286
                    </form>
287
                    <span id="newtag<!-- TMPL_VAR NAME="biblionumber" -->_status" class="tagstatus" style="display:none;">
288
                        Tag status here.
289
                    </span>
290
                    <!-- TMPL_ELSIF NAME="__first__" --><span class="tagstatus" id="login4tags">Log in to add tags.</span>
291
                  <!-- /TMPL_IF -->
292
                <!-- /TMPL_IF -->
293
                  <!-- TMPL_IF NAME="TagLoop" -->
294
          </div><!-- /TMPL_IF -->
295
        <!-- /TMPL_IF -->
296
                <!-- /TMPL_IF -->
297
298
<span class="results_summary actions"><span class="label">Actions:</span>
299
      <!-- TMPL_IF name="RequestOnOpac" -->
300
          <!-- TMPL_UNLESS NAME="norequests" -->
301
            <!-- TMPL_IF NAME="opacuserlogin" -->
302
              <!-- TMPL_IF NAME="AllowOnShelfHolds" -->
303
                <a class="hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a><!-- add back when available 0 holds in queue-->
304
              <!-- TMPL_ELSE -->
305
                <!-- TMPL_IF NAME="itemsissued" -->
306
                  <a class="hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a><!-- add back when available 0 holds in queue-->
307
                <!-- /TMPL_IF -->
308
              <!-- /TMPL_IF -->
309
            <!-- /TMPL_IF -->
310
          <!-- /TMPL_UNLESS -->
311
        <!-- /TMPL_IF -->
312
313
        <!-- TMPL_IF NAME="opacuserlogin" --><!-- TMPL_IF NAME="loggedinusername" --><!-- TMPL_IF NAME="virtualshelves" --><a class="addtolist" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">Save to another list</a>
314
          <!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF -->
315
316
            <!-- TMPL_IF NAME="opacbookbag" --><a class="addtocart" href="#" onclick="addRecord('<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">Add to Cart</a><!-- tmpl_else -->nocart<!-- /TMPL_IF -->
317
        </span>
318
319
320
259
                    <!-- COinS / OpenURL -->
321
                    <!-- COinS / OpenURL -->
260
                          <!-- COinS / OpenURL --><span class="Z3988" title="<!-- TMPL_VAR NAME="coins" -->"></span>
322
                          <!-- COinS / OpenURL --><span class="Z3988" title="<!-- TMPL_VAR NAME="coins" -->"></span>
261
                          <br/>
323
                          <br/>
262
                          <div id="newtag<!-- TMPL_VAR NAME="biblionumber">_status" class="tagstatus results_summary" style="display:none">Tag status here.</div>
324
                          <div id="newtag<!-- TMPL_VAR NAME="biblionumber">_status" class="tagstatus results_summary" style="display:none">Tag status here.</div>
263
                        </td>
325
                        </td>
264
                        <td><!-- TMPL_VAR NAME="author" --></td>
326
          <td>
265
                        <td>
327
          <a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">
266
			            	<!-- TMPL_IF NAME="publicationyear" -->
328
                    <!-- TMPL_IF NAME="OPACAmazonEnabled" --><!-- TMPL_IF NAME="OPACAmazonCoverImages" --><!-- TMPL_IF NAME="normalized_isbn" --><img src="http://images.amazon.com/images/P/<!-- TMPL_VAR NAME="normalized_isbn" -->.01.TZZZZZZZ.jpg" alt="" class="thumbnail" /><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF -->
267
			            		<!-- TMPL_VAR NAME="publicationyear" -->
329
268
			            	<!-- TMPL_ELSE -->
330
          <!-- TMPL_IF NAME="SyndeticsEnabled" --><!-- TMPL_IF NAME="SyndeticsCoverImages" --><!-- TMPL_IF NAME="using_https" -->
269
			            		<!-- TMPL_VAR NAME="copyrightdate" -->
331
                <img src="https://secure.syndetics.com/index.aspx?isbn=<!-- TMPL_VAR NAME="normalized_isbn" -->/SC.GIF&amp;client=<!-- TMPL_VAR NAME="SyndeticsClientCode" -->&amp;type=xw10&amp;upc=<!-- TMPL_VAR NAME="normalized_upc" -->&amp;oclc=<!-- TMPL_VAR NAME="normalized_oclc" -->" alt="" class="thumbnail" />
270
			            	<!-- /TMPL_IF -->
332
                <!--TMPL_ELSE -->
271
                        </td>
333
                <img src="http://www.syndetics.com/index.aspx?isbn=<!-- TMPL_VAR NAME="normalized_isbn" -->/SC.GIF&amp;client=<!-- TMPL_VAR NAME="SyndeticsClientCode" -->&amp;type=xw10&amp;upc=<!-- TMPL_VAR NAME="normalized_upc" -->&amp;oclc=<!-- TMPL_VAR NAME="normalized_oclc" -->" alt="" class="thumbnail" /><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF -->
272
			<td>
334
273
			    <!-- TMPL_IF NAME="ITEM_RESULTS" --><!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
335
                <!-- TMPL_IF NAME="GoogleJackets" --><!-- TMPL_IF NAME="normalized_isbn" --><div style="block" title="<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" class="<!-- TMPL_VAR name="normalized_isbn" -->" id="gbs-thumbnail<!--TMPL_VAR NAME="__counter__"-->"></div><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF -->
274
			    <p>
336
                </a>
275
			    <!-- TMPL_VAR NAME="branchname" --><!-- TMPL_IF NAME="location" -->, <!-- TMPL_VAR NAME="location" --><!-- /TMPL_IF -->
337
                <!-- TMPL_IF NAME="BakerTaylorEnabled" --><!-- TMPL_IF NAME="normalized_isbn" --><a href="https://<!-- TMPL_VAR name="BakerTaylorBookstoreURL" ESCAPE="HTML" --><!-- TMPL_VAR name="normalized_isbn" -->"><img alt="See Baker &amp; Taylor" src="<!-- TMPL_VAR name="BakerTaylorImageURL" ESCAPE="HTML" --><!-- TMPL_VAR name="normalized_isbn" -->" /></a><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF -->
276
			    <!-- TMPL_IF name="itemcallnumber" -->
338
        </td>
277
				(<!-- TMPL_VAR NAME="itemcallnumber" -->)
278
			    <!-- /TMPL_IF -->
279
			    </p>
280
			    <!-- /TMPL_LOOP --><!-- TMPL_ELSE -->This record has no items.<!-- /TMPL_IF -->
281
			</td>
282
                      </tr>
339
                      </tr>
283
                  <!-- /TMPL_LOOP --><!-- /itemsloop -->
340
                  <!-- /TMPL_LOOP --><!-- /itemsloop -->
284
                    </tbody>
341
                    </tbody>
285
                  </table>
342
                  </table>
343
                  </div>
344
                  <!-- TMPL_IF NAME="pagination_bar" --><div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div><!-- /TMPL_IF -->
286
                <!-- TMPL_ELSE -->
345
                <!-- TMPL_ELSE -->
287
                  <div class="dialog message">This List is empty.  You can add to your lists from the results of any <a href="opac-main.pl">search</a>!</div>
346
                  <div class="dialog message">This List is empty.  You can add to your lists from the results of any <a href="opac-main.pl">search</a>!</div>
288
              <!-- /TMPL_IF --><!-- /itemsloop -->
347
              <!-- /TMPL_IF --><!-- /itemsloop -->
Lines 342-355 $(function() { Link Here
342
                  <h2>Lists</h2>
401
                  <h2>Lists</h2>
343
                  <ul class="link-tabs">
402
                  <ul class="link-tabs">
344
                  <!-- TMPL_IF NAME="showprivateshelves" -->
403
                  <!-- TMPL_IF NAME="showprivateshelves" -->
345
                    <li id="privateshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your Lists</a></li>
404
                    <li id="privateshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your private lists</a></li>
346
                  <!-- TMPL_ELSE -->
405
                  <!-- TMPL_ELSE -->
347
                    <li id="privateshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your Lists</a></li>
406
                    <li id="privateshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your private lists</a></li>
348
                  <!-- /TMPL_IF -->
407
                  <!-- /TMPL_IF -->
349
                  <!-- TMPL_IF NAME="showpublicshelves" -->
408
                  <!-- TMPL_IF NAME="showpublicshelves" -->
350
                    <li id="publicshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public Lists</a></li>
409
                    <li id="publicshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public lists</a></li>
351
                  <!-- TMPL_ELSE -->
410
                  <!-- TMPL_ELSE -->
352
                    <li id="publicshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public Lists</a></li>
411
                    <li id="publicshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public lists</a></li>
353
                  <!-- /TMPL_IF -->
412
                  <!-- /TMPL_IF -->
354
                  </ul>
413
                  </ul>
355
                  
414
                  
Lines 363-374 $(function() { Link Here
363
                    <div id="toolbar"><a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?shelves=1">New List</a></div>
422
                    <div id="toolbar"><a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?shelves=1">New List</a></div>
364
                  <!-- TMPL_IF NAME="showprivateshelves" -->
423
                  <!-- TMPL_IF NAME="showprivateshelves" -->
365
                    <!-- TMPL_IF NAME="shelveslooppriv" -->
424
                    <!-- TMPL_IF NAME="shelveslooppriv" -->
366
                      <!-- TMPL_VAR name='pagination_bar'-->
367
                      <table>
425
                      <table>
368
                        <tr>
426
                        <tr>
369
                          <th>List Name</th>
427
                          <th>List Name</th>
370
                          <th>Contents</th>
428
                          <th>Contents</th>
371
                          <th>Sort by</th>
372
                          <th>Type</th>
429
                          <th>Type</th>
373
                          <th>&nbsp;</th>
430
                          <th>&nbsp;</th>
374
                        </tr>
431
                        </tr>
Lines 379-387 $(function() { Link Here
379
                            <tr>
436
                            <tr>
380
                          <!-- /TMPL_UNLESS -->
437
                          <!-- /TMPL_UNLESS -->
381
                              <td><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves&amp;viewshelf=<!-- TMPL_VAR NAME="shelf" -->&amp;sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
438
                              <td><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves&amp;viewshelf=<!-- TMPL_VAR NAME="shelf" -->&amp;sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
382
                              <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
439
                              <td><!-- TMPL_IF NAME="count" --><!-- TMPL_VAR NAME="count" --> <!-- TMPL_IF NAME="single" -->item<!-- TMPL_ELSE -->items<!-- /TMPL_IF --><!-- TMPL_ELSE -->Empty<!-- /TMPL_IF --></td>
383
                              <td><!-- TMPL_IF NAME="authorsort" -->Author<!-- TMPL_ELSIF NAME="yearsort" -->Year<!-- TMPL_ELSE -->Title<!-- /TMPL_IF -->
384
                          </td>
385
                              <td>
440
                              <td>
386
                                <!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
441
                                <!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
387
                                <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
442
                                <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
Lines 411-416 $(function() { Link Here
411
                          </tr>
466
                          </tr>
412
                        <!-- /TMPL_LOOP -->
467
                        <!-- /TMPL_LOOP -->
413
                      </table>
468
                      </table>
469
                      <div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div>
414
                    <!-- TMPL_ELSE -->
470
                    <!-- TMPL_ELSE -->
415
                         No Private Lists.
471
                         No Private Lists.
416
                    <!-- /TMPL_IF --><!-- /shelveslooppriv -->
472
                    <!-- /TMPL_IF --><!-- /shelveslooppriv -->
Lines 433-444 $(function() { Link Here
433
                  <div><a href="/cgi-bin/koha/opac-user.pl">Log in</a> to create new Lists.</div>
489
                  <div><a href="/cgi-bin/koha/opac-user.pl">Log in</a> to create new Lists.</div>
434
                  <!-- /TMPL_IF -->
490
                  <!-- /TMPL_IF -->
435
                  <!-- TMPL_IF NAME="shelvesloop" -->
491
                  <!-- TMPL_IF NAME="shelvesloop" -->
436
                    <!-- TMPL_VAR name='pagination_bar'-->
437
                      <table>
492
                      <table>
438
                        <tr>
493
                        <tr>
439
                          <th>List Name</th>
494
                          <th>List Name</th>
440
                          <th>Contents</th>
495
                          <th>Contents</th>
441
                          <th>Sort by</th>
442
                          <th>Type</th><th>&nbsp;</th>
496
                          <th>Type</th><th>&nbsp;</th>
443
                        </tr>
497
                        </tr>
444
                    <!-- TMPL_LOOP NAME="shelvesloop" -->
498
                    <!-- TMPL_LOOP NAME="shelvesloop" -->
Lines 448-456 $(function() { Link Here
448
                        <tr>
502
                        <tr>
449
                      <!-- /TMPL_UNLESS -->
503
                      <!-- /TMPL_UNLESS -->
450
                          <td><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->&amp;sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
504
                          <td><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->&amp;sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
451
                          <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
505
                          <td><!-- TMPL_VAR NAME="count" --> <!-- TMPL_IF NAME="single" -->item<!-- TMPL_ELSE -->item(s)<!-- /TMPL_IF --></td>
452
                          <td><!-- TMPL_IF NAME="authorsort" -->Author<!-- TMPL_ELSIF NAME="yearsort" -->Year<!-- TMPL_ELSE -->Title<!-- /TMPL_IF -->
453
                          </td>
454
                          <td>
506
                          <td>
455
                            <!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
507
                            <!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
456
                            <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
508
                            <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
Lines 478-483 $(function() { Link Here
478
                        </tr>
530
                        </tr>
479
                    <!-- /TMPL_LOOP --><!-- /shelvesloop -->
531
                    <!-- /TMPL_LOOP --><!-- /shelvesloop -->
480
                      </table>
532
                      </table>
533
                  <!-- TMPL_IF NAME="pagination_bar" --><div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div><!-- /TMPL_IF -->
481
                  <!-- TMPL_ELSE --><!-- /shelvesloop -->
534
                  <!-- TMPL_ELSE --><!-- /shelvesloop -->
482
                    <!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF -->
535
                    <!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF -->
483
                  <!-- /TMPL_IF --><!-- /shelvesloop -->
536
                  <!-- /TMPL_IF --><!-- /shelvesloop -->

Return to bug 3347