Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!64
Restrict IIIF search to words
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Restrict IIIF search to words
iiif-words
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Erwan Rouchet
requested to merge
iiif-words
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Add type filtering on transcription search
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ae8c917c
1 commit,
6 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
arkindex/documents/api.py
+
1
−
1
Options
@@ -336,7 +336,7 @@ class TranscriptionSearchAnnotationList(RetrieveAPIView):
return
ESQuerySet
(
query
=
ESQuerySet
.
make_query
(
'
elastic/search_transcriptions.json
'
,
ctx
=
{
'
query
'
:
self
.
request
.
query_params
.
get
(
'
q
'
)},
ctx
=
{
'
query
'
:
self
.
request
.
query_params
.
get
(
'
q
'
)
,
'
type
'
:
'
word
'
},
),
es_index
=
settings
.
ES_INDEX_TRANSCRIPTIONS
,
es_type
=
Transcription
.
INDEX_TYPE
,
Loading