diff --git a/Changes b/Changes index de33e83b..0fdac7b5 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,4 @@ -0.55 2024-06-9 +0.55 2024-06-26 - Removed deprecated doc_link_to helper. (diewald) - Removed deprecated doc_ext_link_to helper. (diewald) - Removed deprecated doc_uc helper. (diewald) @@ -8,6 +8,7 @@ - Remove corpusQuery from statistics (as per Kudstvakt #758). (diewald) - Improve test suite for slim images. (diewald) + - Add pages to references in snippet view. (diewald) 0.54 2024-06-10 - Remove deprecated 'matchInfo' API path. (diewald, margaretha) diff --git a/kalamar.dict b/kalamar.dict index 70c8d769..41df1eb9 100644 --- a/kalamar.dict +++ b/kalamar.dict @@ -39,6 +39,10 @@ my $THOUSAND_SEP_RE = qr/( news => 'Neuigkeiten', in => 'in', by => 'von', + page => { + -sg => 'S.', + pl => 'S.' + }, pwd => 'Passwort', email => 'Email', username => 'Benutzername', @@ -158,6 +162,10 @@ my $THOUSAND_SEP_RE = qr/( searchplaceholder => 'Find ...', in => 'in', by => 'by', + page => { + -sg => 'p.', + pl => 'pp.', + }, pwd => 'Password', email => 'Email', username => 'Username', diff --git a/t/fixtures/response_query_baum_o0_c25.json b/t/fixtures/response_query_baum_o0_c25.json index a1727e31..9882f366 100644 --- a/t/fixtures/response_query_baum_o0_c25.json +++ b/t/fixtures/response_query_baum_o0_c25.json @@ -52,7 +52,8 @@ "snippet" : "sie etwas bedeuten zu wollen und machte mit der Oberlippe eine fatale Miene. ich sprach sehr viel mit ihr durch, sie war überall zu Hause und merkte gut auf die Gegenstände. so fragte sie mich einmal, was das für ein Baum sei. es war ein schöner großer Ahorn, der erste, der mir auf der ganzen Reise zu Gesichte kam. den hatte sie doch gleich bemerkt und freute sich, da mehrere nach und nach erschienen, daß sie auch diesen Baum unterscheiden könne", "matchID" : "match-GOE/AGI/00000-p2030-2031", "UID" : 0, - "pubDate" : "1982" + "pubDate" : "1982", + "pages":[109] }, { "field" : "tokens", @@ -69,7 +70,7 @@ "snippet" : "für ein Baum sei. es war ein schöner großer Ahorn, der erste, der mir auf der ganzen Reise zu Gesichte kam. den hatte sie doch gleich bemerkt und freute sich, da mehrere nach und nach erschienen, daß sie auch diesen Baum unterscheiden könne. sie gehe, sagte sie, nach Bozen auf die Messe, wo ich doch wahrscheinlich auch hinzöge. wenn sie mich dort anträfe, müsse ich ihr einen Jahrmarkt kaufen, welches ich ihr denn auch versprach. dort wollte sie auch ihre neue", "matchID" : "match-GOE/AGI/00000-p2068-2069", "UID" : 0, - "pubDate" : "1982" + "pages":[109,204] } ] } diff --git a/t/query.t b/t/query.t index 54f2a8f0..5e6869e2 100644 --- a/t/query.t +++ b/t/query.t @@ -78,8 +78,15 @@ my $err = $t->get_ok('/?q=baum') ->text_like('li:nth-of-type(1) div.snippet span.context-right',qr!es war!) ->text_is('li:nth-of-type(1) p.ref strong', 'Italienische Reise') ->text_like('li:nth-of-type(1) p.ref', qr!by Goethe, Johann Wolfgang!) - ->text_is('li:nth-of-type(1) p.ref time[datetime=1982]', 1982) ->text_is('li:nth-of-type(1) p.ref span.sigle', '[GOE/AGI/00000]') + ->text_is('li:nth-of-type(1) p.ref time[datetime=1982]', 1982) + ->text_like('li:nth-of-type(1) p.ref ', qr!von \(, \)!) + ->text_is('li:nth-of-type(1) p.ref span.pages', 'p. 109') + + ->element_exists_not('li:nth-of-type(2) p.ref time') + ->text_like('li:nth-of-type(2) p.ref ', qr!von \(\)!) + ->text_is('li:nth-of-type(2) p.ref span.pages', 'pp. 109–204') + ->header_isnt('X-Kalamar-Cache', 'true') ->attr_is('#pagination','data-page','1') ->attr_is('#pagination','data-total','3') diff --git a/templates/match.html.ep b/templates/match.html.ep index 038a7307..775008c9 100644 --- a/templates/match.html.ep +++ b/templates/match.html.ep @@ -30,9 +30,23 @@

\ <% if ($match->{title}) { %><%= $match->{title} %><% }; %>\ <%= $match->{author} ? ' ' . loc('by') . ' ' . $match->{author} : '' %>\ -% if ($match->{pubDate}) { - ()\ +% if ($match->{pubDate} || ($match->{pages} && ref $match->{pages} eq 'ARRAY')) { + (\ +% if ($match->{pubDate}) { +\ +% }; +% if ($match->{pages}) { +% if ($match->{pubDate}) { +, \ +% }; +% if (@{$match->{pages}} == 1) { +<%=loc 'page_sg' %> <%= $match->{pages}->[0] %>\ +% } else { +<%=loc 'page_pl' %> <%= $match->{pages}->[0] %>–<%= $match->{pages}->[-1] %>\ +% }; +% }; +) \ % }; - [<%= $text_sigle %>] \ +[<%= $text_sigle %>] \