Merge branch 'maint-rel-1.6' into develop

This commit is contained in:
tworrall 2013-10-23 11:47:43 -04:00
commit cb7f873c1d

View file

@ -42,10 +42,10 @@ display:researcherCountDataGetter
PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX vivoc: <http://vivo.library.cornell.edu/ns/0.1#> PREFIX vivoc: <http://vivo.library.cornell.edu/ns/0.1#>
SELECT DISTINCT (COUNT(?person) AS ?count) SELECT DISTINCT (COUNT(DISTINCT ?person) AS ?count)
WHERE { WHERE {
?person rdf:type foaf:Person . ?person rdf:type foaf:Person .
FILTER (EXISTS {?person core:geographicFocus ?focus}) ?person core:geographicFocus ?focus
} }
""" . """ .