Skip to content

Commit

Permalink
Merge pull request #100 from abes-esr/develop
Browse files Browse the repository at this point in the history
ajout de la gestion des accents pour la recherche dans plusieurs champs
  • Loading branch information
julg authored Jun 18, 2024
2 parents 552f5ef + 1604630 commit b94a0c4
Showing 1 changed file with 28 additions and 13 deletions.
41 changes: 28 additions & 13 deletions src/main/resources/indexs/theses.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@
}
},
"auteursPN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"auteursPpn": {
"type": "text"
Expand All @@ -256,10 +257,12 @@
}
},
"directeursNP": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"directeursPN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"directeursPpn": {
"type": "text"
Expand All @@ -279,10 +282,12 @@
}
},
"presidentJuryNP": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"presidentJuryPN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"presidentJuryPpn": {
"type": "text"
Expand All @@ -302,10 +307,12 @@
}
},
"membresJuryNP": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"membresJuryPN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"membresJuryPpn": {
"type": "text"
Expand All @@ -325,10 +332,12 @@
}
},
"rapporteursNP": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"rapporteursPN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"rapporteursPpn": {
"type": "text"
Expand All @@ -349,6 +358,7 @@
},
"etabSoutenanceN": {
"type": "text",
"analyzer": "francais",
"fields": {
"exact": {
"type": "keyword"
Expand All @@ -370,7 +380,8 @@
"type": "text"
},
"etabsCotutelleN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"ecolesDoctorales": {
"type": "nested",
Expand All @@ -388,6 +399,7 @@
},
"ecolesDoctoralesN": {
"type": "text",
"analyzer": "francais",
"fields": {
"exact": {
"type": "keyword"
Expand All @@ -412,7 +424,8 @@
"type": "text"
},
"partenairesRechercheN": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"sujetsRameau" : {
"type": "nested",
Expand All @@ -430,7 +443,8 @@
"type": "text"
},
"sujetsRameauLibelle": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"sujets": {
"type": "nested",
Expand All @@ -445,7 +459,8 @@
}
},
"sujetsLibelle": {
"type": "text"
"type": "text",
"analyzer": "francais"
},
"oaiSetNames": {
"type": "keyword"
Expand Down

0 comments on commit b94a0c4

Please sign in to comment.