Skip to content

Commit

Permalink
Add query for finding web pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mconlon17 committed Mar 22, 2014
1 parent f2d69fd commit dd67650
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sparql/find_url_containing_shands.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Find all the web pages that have a web address containing the text "shands"

SELECT ?uri ?linktext
WHERE {
?uri vivo:webpage ?w .
?w vivo:linkURI ?linkuri .
FILTER(regex(?linkuri,"shands"))
}
1 change: 1 addition & 0 deletions sparql/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ <h3>Reports</h3>
<p><a href="contact_list_for_unit.txt">Contact list for unit</a></p>
<p><a href="nih_open_access_compliance_report.txt">NIH Open Access Compliance Report</a></p>
<h3>Data Management</h3>
<p><a href="find_url_containing_shands.txt">Find all web pages that have a web address containing the text "shands"</a></p>
<p><a href="find_unlinked_authorships.txt">Find unlinked authorships</a></p>
<p><a href="find_people_to_remove.txt">Find people to remove from VIVO</a></p>
<p><a href="find_orgs_without_labels.txt">Find organizations without labels</a></p>
Expand Down

0 comments on commit dd67650

Please sign in to comment.