Skip to content

Commit

Permalink
Hack to make missing english version of note missing appear
Browse files Browse the repository at this point in the history
See #46
  • Loading branch information
Jean-Baptiste RUDANT committed Nov 22, 2016
1 parent 01d4067 commit bc8e052
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/js/sparql/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,14 @@ const itemDetails = item => `
OPTIONAL {
<${item}> xkos:coreContentNote ?content .
?content xkos:plainText ?text .
FILTER ( langMatches(lang(?content), "EN"))
# HACK see #46
# FILTER ( langMatches(lang(?content), "EN"))
}
FILTER (
# langMatches(lang(?label), "EN") &&
# langMatches(lang(?clLabel), "EN"))
# HACK english label missing http://classification-explorer.noknot.fr/classification/nafr2/sousClasse/23_69Z
# HACK english label missing (see #45)
# http://classification-explorer.noknot.fr/classification/nafr2/sousClasse/23_69Z
langMatches(lang(?label), "EN"))
}
`
Expand Down

0 comments on commit bc8e052

Please sign in to comment.