Skip to content
Snippets Groups Projects
Commit 55d35750 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #14378 fix accented sensitivity

parent 7fe04fb6
Branches
Tags
5 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!215Dev#12992 Custom Fields,!209Hotline#13914 Album Link Config Menu,!190Dev#12691 Autocomplete,!185Dev#12691 Autocomplete
<?php
/**
* Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
*
* AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* AFI-OPAC 2.0 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class Class_Autocomplete_IndexSearcher {
public function search($file_path, $terms) {
$terms = str_replace("'", "'\''", $terms);
$terms = str_replace('e', '[éeèêë]', $terms);
exec("grep -ri -E -m10 --no-filename '(^|\s)" . $terms . "' " . $file_path . " | sort --unique", $out);
return $out;
}
}
?>
\ No newline at end of file
......@@ -96,6 +96,12 @@ class Class_Autocomplete_IndexSearcherTest extends Storm_Test_ModelTestCase{
public function autocompleteTermWithSimpleQuoteShouldBeFound() {
$this->assertContains('Centre interdépartemental', $this->searchFor("d'ile")[0]);
}
/** @test */
public function autocompleteTermAccentedShouldBeFound() {
$this->assertequals('Jacques Réda', $this->searchFor('reda')[0]);
}
}
?>
\ No newline at end of file
Jean-Pierre Cuq
Johnny Cash
Gérard Chappez
Laure Hinckel
Patrick Bacry
Pierre Bergounioux
Dominique Bertrand
Nicole de Buron
Jacqueline Ripart
Philippe Simonnot
Renaud de Rochebrune
Pierre Desfeuilles
Gretel Ehrlich
Valérie Malfoy
Alain Frontier
Jean-Benoît Hutier
Gilbert Millet
Denis Labbé
Luis Mizon
Jean-Michel Marchetti
Kien Nguyen
Erika Abrams
Emmanuelle Pireyre
Jacques Réda
Alain Rémond
Ben Schott
Boris Donné
Jean Teulé
Uwe Timm
Bernard Kreiss
Anne Weber
Centre interdépartemental de gestion de la Petite couronne de la région d'Ile-de-France
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment